:root {
  --black: #090909;
  --cream: #f2eadc;
  --paper: #fffaf1;
  --red: #e13a2f;
  --muted: #a69e92;
  --line: rgba(242, 234, 220, 0.18);
  --dark-line: rgba(9, 9, 9, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--black);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
figure, h1, h2, h3, p { margin-top: 0; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(20px, 4.5vw, 76px);
  color: var(--paper);
}
.site-header.solid {
  position: sticky;
  background: rgba(9, 9, 9, 0.96);
  border-bottom: 1px solid var(--line);
}
.brand { width: clamp(118px, 11vw, 168px); line-height: 0; }
.brand img { width: 100%; filter: drop-shadow(0 8px 20px rgba(0,0,0,.35)); }
.nav-links { display: flex; gap: clamp(14px, 2.5vw, 34px); font-size: .7rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.nav-links a { padding: 7px 0; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a[aria-current="page"] { border-color: var(--red); }

h1, h2 { margin-bottom: 24px; font-weight: 900; letter-spacing: -.065em; line-height: .9; }
h1 { font-size: clamp(4rem, 9.7vw, 10rem); }
h2 { font-size: clamp(3rem, 6.3vw, 7rem); }
h1 em, h2 em { color: var(--red); font-family: Georgia, serif; font-weight: 400; letter-spacing: -.055em; }
.eyebrow, .event-label, .section-number {
  margin: 0 0 18px;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow { color: var(--red); }
.event-label { color: rgba(255,250,241,.7); }
.section-number { color: rgba(9,9,9,.48); }
.section-number.light { color: rgba(255,250,241,.56); }
.lead { max-width: 800px; color: #564f47; font-size: clamp(1.18rem, 2vw, 1.65rem); font-weight: 600; }

.home-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 150px clamp(20px, 5vw, 88px) clamp(54px, 7vw, 100px);
  background: var(--black);
  color: var(--paper);
}
.home-hero-image, .home-hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.home-hero-image { object-fit: cover; object-position: center; }
.home-hero-shade { background: linear-gradient(90deg, rgba(9,9,9,.92) 0%, rgba(9,9,9,.5) 48%, rgba(9,9,9,.06) 78%), linear-gradient(0deg, rgba(9,9,9,.65), transparent 55%); }
.home-hero-content { position: relative; z-index: 1; width: min(1120px, 100%); }
.home-hero h1 { max-width: 1000px; margin-bottom: 25px; font-size: clamp(4.2rem, 10vw, 10.5rem); }
.home-hero-content > p:not(.event-label) { max-width: 650px; margin-bottom: 30px; color: rgba(255,250,241,.75); font-size: clamp(1rem, 1.5vw, 1.25rem); font-weight: 650; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 25px; }
.hero-note { position: absolute; z-index: 1; right: clamp(20px,5vw,88px); bottom: 22px; margin: 0; color: rgba(255,250,241,.5); font-size: .63rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; writing-mode: vertical-rl; }

.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; border: 0; padding: 14px 22px; font: inherit; font-size: .75rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.button-red { background: var(--red); color: var(--paper); }
.button-red:hover { background: #bd281f; }
.text-link { display: inline-flex; gap: 14px; align-items: center; color: var(--paper); font-size: .75rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.text-link span { color: var(--red); font-size: 1.2rem; }
.dark-link { color: var(--black); }

.section { padding: clamp(78px, 11vw, 170px) clamp(20px, 5vw, 88px); }
.section-inner { width: min(1320px, 100%); margin: 0 auto; }
.statement-grid, .story-grid { display: grid; grid-template-columns: minmax(160px,.32fr) minmax(0,1fr); gap: clamp(35px,8vw,130px); align-items: start; }
.statement h2, .story-grid h2 { max-width: 1040px; }

.feature-photo { position: relative; min-height: clamp(440px, 72vw, 900px); overflow: hidden; background: var(--black); }
.feature-photo > img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; }
.photo-caption { position: absolute; left: clamp(20px,5vw,88px); bottom: clamp(20px,5vw,70px); max-width: 560px; padding: 20px 24px; background: rgba(9,9,9,.88); color: var(--paper); }
.photo-caption span { display: block; margin-bottom: 5px; color: var(--red); font-size: .65rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.photo-caption strong { font-size: clamp(1.1rem,2vw,1.7rem); line-height: 1.15; }

.red-section { background: var(--red); color: var(--paper); }
.play-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,.75fr); gap: clamp(40px,8vw,120px); align-items: end; }
.eyebrow.dark { color: var(--black); }
.play-copy > p { margin-bottom: 40px; color: rgba(255,250,241,.82); font-size: clamp(1.05rem,1.5vw,1.3rem); font-weight: 650; }
.play-steps { border-top: 1px solid rgba(255,250,241,.35); }
.play-steps article { display: grid; grid-template-columns: 40px 1fr; gap: 15px; padding: 18px 0; border-bottom: 1px solid rgba(255,250,241,.35); }
.play-steps span { font-size: .68rem; font-weight: 900; }
.play-steps strong { line-height: 1.25; }

.encounter-section { background: var(--paper); }
.encounter-grid { display: grid; grid-template-columns: minmax(0,1.12fr) minmax(320px,.88fr); gap: clamp(40px,7vw,100px); align-items: center; }
.portrait-photo { margin: 0; min-height: clamp(420px,55vw,720px); overflow: hidden; }
.portrait-photo img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; }
.encounter-copy p:not(.eyebrow,.section-number) { max-width: 560px; margin-bottom: 28px; color: #625b52; font-size: 1.06rem; font-weight: 600; }

.detail-strip { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(320px,.75fr); background: var(--black); color: var(--paper); }
.detail-strip figure { min-height: 620px; margin: 0; overflow: hidden; }
.detail-strip img { width: 100%; height: 100%; object-fit: cover; }
.detail-strip > div { display: flex; flex-direction: column; justify-content: center; padding: clamp(50px,7vw,105px); }
.detail-strip h2 { font-size: clamp(3rem,5vw,6rem); }
.detail-strip p:last-child { color: var(--muted); font-weight: 600; }

.final-cta { background: var(--cream); text-align: center; }
.final-cta .event-label { color: rgba(9,9,9,.48); }
.final-cta h2 { margin-bottom: 38px; }

.page-main { min-height: 70svh; }
.page-hero { min-height: 72svh; display: flex; flex-direction: column; justify-content: flex-end; padding: 150px clamp(20px,5vw,88px) clamp(55px,8vw,110px); background-size: cover; background-position: center; color: var(--paper); }
.page-hero h1 { max-width: 1100px; font-size: clamp(4rem,9vw,9rem); }
.page-hero > p:last-child { max-width: 650px; margin-bottom: 0; color: rgba(255,250,241,.76); font-size: clamp(1rem,1.5vw,1.25rem); font-weight: 650; }
.about-hero { background-image: linear-gradient(90deg,rgba(9,9,9,.92),rgba(9,9,9,.2)), url("assets/montenegro-brand-team.jpg"); }
.contact-hero { background-image: linear-gradient(90deg,rgba(9,9,9,.95),rgba(9,9,9,.25)), url("assets/montenegro-coast.jpg"); }
.privacy-hero { background-image: linear-gradient(90deg,rgba(9,9,9,.94),rgba(9,9,9,.35)), url("assets/montenegro-brand-detail.jpg"); }

.about-image-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 8px; padding: 0 8px 8px; background: var(--black); }
.about-image-grid figure { min-height: clamp(350px,45vw,680px); margin: 0; overflow: hidden; }
.about-image-grid img { width: 100%; height: 100%; object-fit: cover; }
.dark-section { background: var(--black); color: var(--paper); }
.principle-grid { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 45px; border-top: 1px solid var(--line); }
.principle-grid article { padding: 25px 25px 25px 0; border-bottom: 1px solid var(--line); }
.principle-grid span { display: block; margin-bottom: 12px; color: var(--red); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.principle-grid p { margin: 0; color: var(--muted); font-weight: 600; }

.contact-section { background: var(--cream); }
.contact-layout { display: grid; grid-template-columns: minmax(300px,.75fr) minmax(0,1fr); gap: clamp(45px,9vw,140px); align-items: start; }
.contact-copy h2 { font-size: clamp(3.2rem,6vw,6.5rem); }
.contact-copy > p:not(.section-number) { max-width: 480px; color: #625b52; font-weight: 600; }
.contact-details { display: grid; gap: 4px; margin-top: 38px; padding-top: 22px; border-top: 1px solid var(--dark-line); }
.contact-details span { color: var(--red); font-size: .65rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.contact-details a { font-weight: 900; }
.contact-form { display: grid; gap: 20px; padding: clamp(25px,5vw,55px); background: var(--black); }
label { display: grid; gap: 8px; color: var(--muted); font-size: .66rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
input, textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(255,250,241,.3); border-radius: 0; outline: 0; padding: 12px 0; background: transparent; color: var(--paper); font: inherit; }
input:focus, textarea:focus { border-color: var(--red); }
textarea { resize: vertical; }
.contact-form .button { justify-self: start; margin-top: 10px; }

.policy-section { background: var(--paper); }
.policy-content { border-top: 1px solid var(--dark-line); }
.policy-content article { display: grid; grid-template-columns: 50px minmax(220px,.55fr) minmax(300px,1fr); gap: clamp(20px,5vw,70px); padding: clamp(30px,5vw,60px) 0; border-bottom: 1px solid var(--dark-line); }
.policy-content span { color: var(--red); font-size: .68rem; font-weight: 900; }
.policy-content h2 { margin: 0; font-size: clamp(1.8rem,3vw,3.4rem); }
.policy-content p { margin: 0; color: #625b52; font-weight: 600; }
.policy-content a { color: var(--red); text-decoration: underline; }

.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 28px clamp(20px,5vw,88px); border-top: 1px solid var(--line); background: var(--black); color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .05em; }
.site-footer p { margin: 0; }
.site-footer div { display: flex; gap: 22px; }

@media (max-width: 900px) {
  .statement-grid, .story-grid, .play-grid, .encounter-grid, .detail-strip, .contact-layout { grid-template-columns: 1fr; }
  .detail-strip figure { min-height: 450px; }
  .principle-grid { grid-template-columns: 1fr; }
  .policy-content article { grid-template-columns: 35px 1fr; }
  .policy-content p { grid-column: 2; }
}

@media (max-width: 650px) {
  .site-header { align-items: flex-start; flex-direction: column; gap: 14px; padding-top: 18px; }
  .nav-links { width: 100%; justify-content: space-between; gap: 8px; font-size: .58rem; }
  .home-hero { min-height: 780px; padding-top: 190px; }
  .home-hero h1 { font-size: clamp(4rem,20vw,6.2rem); }
  .home-hero-shade { background: linear-gradient(0deg,rgba(9,9,9,.94),rgba(9,9,9,.18) 85%); }
  .hero-note { display: none; }
  .hero-actions, .hero-actions .button { width: 100%; }
  .section { padding-top: 75px; padding-bottom: 75px; }
  .feature-photo { min-height: 520px; }
  .feature-photo > img { object-position: center; }
  .photo-caption { right: 20px; }
  .about-image-grid { grid-template-columns: 1fr; }
  .about-image-grid figure { min-height: 360px; }
  .detail-strip figure { min-height: 360px; }
  .page-hero { min-height: 650px; padding-top: 190px; }
  .policy-content article { grid-template-columns: 1fr; }
  .policy-content p { grid-column: auto; }
  .site-footer { align-items: flex-start; flex-direction: column; }
}
