@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Montserrat:wght@400;500;600&display=swap');

:root {
  --parchment: #FAF7F2;
  --sand:      #F2EDE3;
  --sand-mid:  #EAE2D5;
  --cream:     #E9E6E1;
  --white:     #FFFFFF;
  --navy:      #12263F;
  --navy-mid:  #1C3450;
  --charcoal:  #2F343B;
  --gold:      #B28A42;
  --gold-warm: #C9A84C;
  --text:      #222222;
  --text-mid:  #2F343B;
  --border:    #EAE2D5;
  --gold-rule: #B28A42;
  --nav-h: 112px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--navy); color: var(--parchment);
  padding: 10px 16px; z-index: 200; font-size: 13px;
}
.skip:focus { left: 12px; top: 12px; }

/* ——— HEADER ——— */
nav.site-nav {
  position: static;
  z-index: 100;
  min-height: var(--nav-h);
  background: var(--parchment);
  border-bottom: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 6%;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand svg { display: block; width: 64px; height: 64px; flex-shrink: 0; }
.nav-rule {
  width: 1px;
  height: 52px;
  background: var(--gold);
  flex-shrink: 0;
}
.nav-wm { display: flex; flex-direction: column; line-height: 1; }
.nav-wm .nm {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.nav-wm .nm-exec {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
  white-space: nowrap;
}
.nav-wm .nm-out {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
  white-space: nowrap;
}
.nav-wm .sub {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
  line-height: 1.4;
  max-width: 248px;
  white-space: normal;
}
.nav-toggle { display: none; }
.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--sand-mid);
  background: transparent;
  cursor: pointer;
  position: relative;
}
.nav-burger span,
.nav-burger span::before,
.nav-burger span::after {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 1.5px;
  background: var(--navy);
}
.nav-burger span { top: 21px; }
.nav-burger span::before { content: ''; top: -6px; }
.nav-burger span::after { content: ''; top: 6px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a[aria-current="page"] {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.nav-btn {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  padding: 14px 28px !important;
  border-bottom: none !important;
  transition: background 0.2s !important;
}
.nav-btn:hover {
  background: var(--gold-warm) !important;
  color: var(--navy) !important;
}
.nav-links a.nav-btn[aria-current] { border-bottom: none; }

/* ——— TYPE ——— */
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; }
.e-line { width: 30px; height: 1px; background: var(--gold); flex-shrink: 0; }
.eyebrow span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5vw, 62px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 22px;
}
h1 em { font-style: italic; color: var(--gold); }
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}
h2 em { font-style: italic; color: var(--gold); }
h2.on-dark { color: var(--parchment); }
h2.on-dark em { color: var(--gold-warm); }
h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 14px;
}
h3.on-dark { color: var(--parchment); }
.lbl { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.lbl-line { width: 26px; height: 1px; background: var(--gold); flex-shrink: 0; }
.lbl span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.bp,
.hero-body,
.door-note,
.gold-list li,
.buyer p,
.case p,
.step p,
.lede {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-mid);
}
.bp.on-dark { color: rgba(250,247,242,0.82); }
.bp + .bp { margin-top: 16px; }
.lede { max-width: 580px; }

/* ——— BUTTONS ——— */
.btn-gold,
.btn-solid,
.btn-line,
.btn-ghost {
  display: inline-block;
  padding: 18px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-warm); }
.btn-solid { background: var(--navy); color: var(--white); }
.btn-solid:hover { background: var(--navy-mid); }
.btn-solid.on-dark { background: var(--parchment); color: var(--navy); }
.btn-solid.on-dark:hover { background: var(--white); }
.btn-line { border-color: var(--navy); color: var(--navy); }
.btn-line:hover { background: var(--navy); color: var(--white); }
.btn-ghost {
  border-color: rgba(250,247,242,0.4);
  color: var(--parchment);
  font-weight: 500;
}
.btn-ghost:hover { border-color: var(--gold-warm); color: var(--gold-warm); }
.hero-btns, .cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-btns { justify-content: center; margin-top: 40px; }
.cta-phone {
  margin-top: 28px;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-mid);
}
.cta-phone a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.cta-phone a:hover { color: var(--gold); }

/* ——— HERO ——— */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.hero-l {
  background: var(--sand);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 7% 72px 8%;
}
.hero-r {
  position: relative;
  overflow: hidden;
  min-height: 0;
}
.hero-r img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-body { max-width: 540px; margin-bottom: 32px; }
.hero-body p + p { margin-top: 16px; }
.hero-note {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--navy);
  margin-bottom: 8px;
  max-width: 540px;
}

/* ——— TWO DOORS ——— */
.doors-sec {
  background: var(--cream);
  padding: 72px 6%;
}
.doors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}
.door {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--sand-mid);
  min-height: 100%;
}
.door { border-top: 3px solid var(--gold); }
.door-ex { background: var(--white); }
.door-frame {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  flex-shrink: 0;
}
.door-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.door-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 32px 32px 36px;
}
.door-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.door-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 14px;
}
.door-note { margin-bottom: 28px; }
.door-go {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.door-go i {
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: currentColor;
  position: relative;
}
.door-go i::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  border: 4px solid transparent;
  border-left: 6px solid currentColor;
  border-right: 0;
}

/* ——— SECTIONS ——— */
.sec { padding: 100px 8%; }
.sec-inner { max-width: 1100px; margin: 0 auto; }
.sec.sand { background: var(--sand); }
.sec.parch { background: var(--parchment); }
.sec.navy { background: var(--navy); }
.sec.white { background: var(--white); }
.narrow { max-width: 740px; }
.center { text-align: center; }
.center .lbl { justify-content: center; }
.center .lede, .center .bp { margin-left: auto; margin-right: auto; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.split-img {
  overflow: hidden;
  min-height: 560px;
  position: relative;
}
.split-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 10%;
  min-height: 560px;
}
.split-content.bg-sand { background: var(--sand); }
.split-content.bg-parch { background: var(--parchment); }
.split-content.bg-navy { background: var(--navy); }
.split-content.bg-white { background: var(--white); }

.gold-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gold-list li { display: flex; gap: 14px; align-items: flex-start; }
.gold-list li::before {
  content: '';
  width: 2px;
  min-height: 20px;
  margin-top: 8px;
  background: var(--gold);
  flex-shrink: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--sand-mid);
  border: 1px solid var(--sand-mid);
  margin-top: 44px;
}
.step { background: var(--parchment); padding: 36px 28px; }
.step-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 { font-size: 28px; margin-bottom: 10px; }

.buyers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--sand-mid);
  border: 1px solid var(--sand-mid);
  margin-top: 44px;
}
.buyer { background: var(--parchment); padding: 48px 40px; }
.buyer.navy { background: var(--navy); }
.buyer .lbl { margin-bottom: 18px; }
.buyer p { margin-bottom: 32px; }
.buyer.navy p { color: rgba(250,247,242,0.82); }
.buyer.navy h3 { color: var(--parchment); }

.inc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 8px; }
.inc-grid h3 { margin-top: 8px; }

.case {
  border-left: 2px solid var(--gold);
  padding: 8px 0 8px 32px;
  margin-top: 32px;
}
.case p + p { margin-top: 18px; }
.case .close-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.4;
}

.cta-sec { background: var(--sand-mid); text-align: center; padding: 100px 8%; }
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta-inner .lbl { justify-content: center; }

.kylie-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
}
.kylie-photo {
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 10%;
}
.kylie-photo img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}
.kylie-copy {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 10%;
}

/* ——— VIDEO ——— */
.video-sec .sec-inner { max-width: 1100px; }
.video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 36px;
  background: var(--navy);
  overflow: hidden;
}
.video-poster {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-poster .play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 96px;
  height: 96px;
  margin: -48px 0 0 -48px;
  border-radius: 50%;
  background: rgba(18,38,63,0.82);
  box-shadow: 0 0 0 2px #B28A42;
  transition: background 0.2s, transform 0.2s;
}
.video-poster .play::after {
  content: "";
  position: absolute;
  left: 40px;
  top: 33px;
  border-style: solid;
  border-width: 15px 0 15px 26px;
  border-color: transparent transparent transparent #FAF7F2;
}
.video-poster .watch {
  position: absolute;
  left: 28px;
  bottom: 26px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FAF7F2;
}
.video-poster:hover .play { background: #12263F; transform: scale(1.04); }

.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}


/* ——— CREDIBILITY STRIP ——— */
.cred-strip {
  background: var(--navy);
  border-top: 1px solid rgba(178,138,66,0.28);
}
.cred-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 6%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 0;
}
.cred-inner span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 22px;
  border-left: 1px solid rgba(178,138,66,0.35);
}
.cred-inner span:first-child { border-left: none; }

/* ——— FOOTER ——— */
footer.foot-simple {
  background: var(--navy);
  border-top: 1px solid rgba(178,138,66,0.15);
  padding: 36px 6% 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px 36px;
}
.fb-brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.fb-brand svg { width: 48px; height: 48px; display: block; }
.fb-rule {
  width: 1px;
  height: 40px;
  background: var(--gold);
  flex-shrink: 0;
}
.fb-wm { display: flex; flex-direction: column; line-height: 1; }
.fb-wm .nm {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.fb-wm .nm-exec {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--parchment);
  line-height: 1;
}
.fb-wm .nm-out {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--parchment);
  line-height: 1;
}
.fb-wm .sub {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 7px;
  line-height: 1.4;
  max-width: 240px;
}
.foot-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.foot-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.78);
  text-decoration: none;
  transition: color 0.2s;
}
.foot-links a:hover { color: var(--gold-warm); }
footer.foot-simple .foot-copy {
  width: 100%;
  font-size: 13px;
  font-weight: 400;
  color: rgba(250,247,242,0.4);
  margin: 0;
}

/* ——— RESPONSIVE ——— */
@media (max-width: 1100px) {
  .nav-links { gap: 24px; }
}
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero-r {
    position: relative;
    aspect-ratio: 3 / 2;
    min-height: 0;
  }
  .doors { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-img {
    aspect-ratio: 3 / 2;
    min-height: 0;
    order: -1;
  }
  .split-content { min-height: 0; }
  .steps { grid-template-columns: 1fr 1fr; }
  .buyers { grid-template-columns: 1fr; }
  .inc-grid { grid-template-columns: 1fr; gap: 40px; }
  .kylie-band { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  nav.site-nav { padding: 14px 5%; }
  .nav-burger { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--parchment);
    border-bottom: 1px solid var(--gold);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0 20px;
  }
  .nav-links a {
    display: block;
    padding: 16px 5%;
    width: 100%;
    font-size: 15px;
    border-bottom: none;
  }
  .nav-links a[aria-current="page"] {
    box-shadow: inset 4px 0 0 var(--gold);
  }
  .nav-links .nav-btn {
    margin: 10px 5% 4px;
    width: auto;
    display: inline-block;
    padding: 14px 28px !important;
  }
  .nav-toggle:checked ~ .nav-links { display: flex; }
}
@media (max-width: 720px) {
  .hero-l, .sec, .cta-sec, .split-content, .kylie-copy, .doors-sec { padding-left: 5%; padding-right: 5%; }
  .sec { padding-top: 72px; padding-bottom: 72px; }
  .cta-sec { padding-top: 72px; padding-bottom: 72px; }
  .split-content, .kylie-copy { padding-top: 56px; padding-bottom: 56px; }
  .doors-sec { padding-top: 48px; padding-bottom: 48px; }
  .door-inner { padding: 28px 24px 32px; }
  .steps { grid-template-columns: 1fr; }
  .hero-btns .btn-gold,
  .hero-btns .btn-solid,
  .hero-btns .btn-line,
  .cta-btns .btn-gold,
  .cta-btns .btn-solid,
  .cta-btns .btn-line { width: 100%; text-align: center; }
  .foot-links { width: 100%; }
  .video-poster .play { width: 72px; height: 72px; margin: -36px 0 0 -36px; }
  .video-poster .play::after { left: 29px; top: 24px; border-width: 12px 0 12px 20px; }
  .nav-wm .nm-exec { font-size: 18px; letter-spacing: 0.12em; }
  .nav-wm .nm-out { font-size: 11px; letter-spacing: 0.2em; }
  .nav-wm .sub { display: none; }
  .nav-rule { height: 40px; }
  .nav-brand svg { width: 52px; height: 52px; }
  .cred-inner span { border-left: none; padding: 4px 12px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
