/* =============================================================================
   REAL ESTATE MBA — realestatemba.org
   Mobile-first stylesheet. No framework, no preprocessor.

   CONTENTS
   01 Tokens              08 Hero              15 Presenter
   02 Reset & base        09 Strip             16 Takeaways
   03 Layout              10 About             17 Registration
   04 Section furniture   11 Benefits          18 FAQ
   05 Buttons             12 Audience          19 Final CTA
   06 Reveal motion       13 Experience        20 Footer
   07 Header & menu       14 Timeline & Host   21 Modal, sticky & float CTA
   ============================================================================= */

/* -----------------------------------------------------------------------------
   01 · TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Greens */
  --ink:          #050D0A;
  --night:        #0A140F;
  --forest-900:   #07150F;
  --forest-800:   #0B2018;
  --forest-700:   #102C21;
  --forest-600:   #17392B;

  /* Warm neutrals */
  --ivory:        #F7F3EB;
  --ivory-2:      #EFE9DD;
  --ivory-3:      #E2DACA;

  /* Gold */
  --gold:         #C8A45C;
  --gold-2:       #E0C68F;
  --gold-3:       #A8873F;
  --gold-line:    rgba(200, 164, 92, .30);
  --gold-wash:    rgba(200, 164, 92, .09);

  /* Type colour */
  --text:         #14201A;
  --text-2:       #4C5C53;
  --text-3:       #7B8A81;
  --on-dark:      #F3EFE6;
  --on-dark-2:    rgba(243, 239, 230, .70);
  --on-dark-3:    rgba(243, 239, 230, .46);

  /* Lines */
  --line-light:   rgba(20, 32, 26, .12);
  --line-dark:    rgba(243, 239, 230, .13);

  /* Type */
  --serif: "Playfair Display", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Metrics */
  --header-h:     62px;
  --sticky-h:     62px;
  --pad-x:        20px;
  --section-y:    clamp(4rem, 11vw, 8.25rem);
  --radius:       2px;

  /* Motion */
  --ease:         cubic-bezier(.22, .61, .36, 1);
  --ease-out:     cubic-bezier(.16, 1, .3, 1);
}

@media (min-width: 768px)  { :root { --header-h: 72px; --pad-x: 40px; } }
@media (min-width: 1280px) { :root { --header-h: 78px; --pad-x: 56px; } }

/* -----------------------------------------------------------------------------
   02 · RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  /* Dark, so the strip reserved for the sticky CTA reads as part of the footer
     when the bar retracts, and so iOS overscroll never flashes ivory. */
  background: var(--forest-900);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /* Room for the mobile sticky CTA so it never covers content */
  padding-bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 1024px) { body { padding-bottom: 0; } }

h1, h2, h3, h4 { margin: 0; font-weight: 500; line-height: 1.12; letter-spacing: -0.015em; }
p  { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a  { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
em { font-style: italic; }
strong { font-weight: 600; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 1px;
}

::selection { background: var(--gold); color: var(--ink); }

.skip-link {
  position: absolute; top: 0; left: 50%;
  transform: translate(-50%, -120%);
  z-index: 200;
  padding: .75rem 1.25rem;
  background: var(--gold); color: var(--ink);
  font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

.icon { width: 18px; height: 18px; flex: 0 0 auto; }

/* -----------------------------------------------------------------------------
   03 · LAYOUT
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.container--narrow { max-width: 860px; }

.section {
  position: relative;
  padding-block: var(--section-y);
}
.section--light { background: var(--ivory); color: var(--text); }
.section--dark  { background: var(--forest-900); color: var(--on-dark); }
.section--deep  { background: var(--ink); color: var(--on-dark); }

/* Hairline top edge on dark sections keeps the stack from muddying together */
.section--dark + .section--deep { border-top: 1px solid rgba(243, 239, 230, .07); }

/* -----------------------------------------------------------------------------
   04 · SECTION FURNITURE
   -------------------------------------------------------------------------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.25rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-3);
}
.eyebrow--light { color: var(--gold); }
.eyebrow__index {
  display: inline-flex; align-items: center;
  font-size: .66rem; letter-spacing: .12em;
  color: var(--gold);
}
.eyebrow__index::after {
  content: ""; display: inline-block;
  width: 26px; height: 1px; margin-left: .7rem;
  background: currentColor; opacity: .55;
}
@media (min-width: 768px) { .eyebrow { font-size: .72rem; } .eyebrow__index::after { width: 38px; } }

.section-head { max-width: 46rem; margin-bottom: clamp(2.25rem, 6vw, 3.75rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 7.4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
}
.section-title em { font-style: italic; color: var(--gold-3); }
.section-title--light { color: var(--on-dark); }
.section-title--light em { color: var(--gold-2); }
.section-title__over {
  display: block;
  margin-bottom: .5rem;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-3);
}

.section-lede {
  margin-top: 1.25rem;
  font-size: clamp(1rem, 3.4vw, 1.175rem);
  line-height: 1.65;
  color: var(--text-2);
  max-width: 40rem;
}
.section-head--center .section-lede { margin-inline: auto; }
.section-lede--light { color: var(--on-dark-2); }

.lede {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 5vw, 1.9rem);
  line-height: 1.38;
  letter-spacing: -0.01em;
  color: var(--text);
}

.link-gold {
  color: var(--gold-3);
  font-weight: 500;
  border-bottom: 1px solid var(--gold-line);
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.link-gold:hover { color: var(--gold); border-color: var(--gold); }

/* -----------------------------------------------------------------------------
   05 · BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 52px;
  padding: .85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-align: center;
  overflow: hidden;
  transition: background-color .3s var(--ease), color .3s var(--ease),
              border-color .3s var(--ease), transform .3s var(--ease),
              box-shadow .3s var(--ease);
}
.btn__label { position: relative; z-index: 1; }
.btn .icon { position: relative; z-index: 1; width: 17px; height: 17px; transition: transform .3s var(--ease); }
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:hover .icon--arrow, .btn:hover svg:last-child { transform: translateX(3px); }

.btn--lg { min-height: 60px; padding: 1rem 2rem; font-size: .78rem; }
.btn--sm { min-height: 42px; padding: .55rem 1.1rem; font-size: .68rem; letter-spacing: .12em; }
.btn--block { display: flex; width: 100%; }

.btn--gold {
  background: var(--gold);
  color: #14201A;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .25) inset;
}
.btn--gold:hover { background: var(--gold-2); box-shadow: 0 12px 30px -14px rgba(200, 164, 92, .8); }

.btn--ivory { background: var(--ivory); color: var(--ink); }
.btn--ivory:hover { background: #fff; box-shadow: 0 12px 30px -16px rgba(0, 0, 0, .55); }

.btn--ghost {
  background: transparent;
  color: var(--on-dark);
  border-color: rgba(243, 239, 230, .28);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-2); background: rgba(200, 164, 92, .07); }

.btn--outline { background: transparent; color: var(--text); border-color: rgba(20, 32, 26, .22); }
.btn--outline:hover { border-color: var(--forest-800); background: rgba(20, 32, 26, .04); }

.btn--dark { background: var(--forest-800); color: var(--ivory); }
.btn--dark:hover { background: var(--forest-700); box-shadow: 0 14px 30px -18px rgba(7, 21, 15, .9); }

.btn--wa { background: #1B7F4F; color: #fff; }
.btn--wa:hover { background: #1E9159; box-shadow: 0 12px 30px -16px rgba(27, 127, 79, .9); }

/* Reusable CTA band */
.cta-band {
  margin-top: clamp(2.5rem, 7vw, 4.5rem);
  padding-top: clamp(1.75rem, 5vw, 2.75rem);
  border-top: 1px solid var(--line-dark);
  text-align: center;
}
.cta-band__text {
  margin-bottom: 1.5rem;
  font-size: .95rem;
  color: var(--on-dark-2);
  letter-spacing: .01em;
}
.cta-band--split .cta-band__text {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.cta-band__sep { margin-inline: .5rem; opacity: .6; }
.cta-band__actions { display: grid; gap: .75rem; }

@media (min-width: 640px) {
  .cta-band__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: .875rem; }
}
@media (min-width: 900px) {
  .cta-band--split {
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; text-align: left;
  }
  .cta-band--split .cta-band__text { margin-bottom: 0; }
  .cta-band--split .cta-band__actions { justify-content: flex-end; }
}

/* -----------------------------------------------------------------------------
   06 · REVEAL MOTION
   -------------------------------------------------------------------------- */
.no-js .reveal { opacity: 1; transform: none; }

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  will-change: opacity, transform;
}
.js .reveal.is-in { opacity: 1; transform: none; will-change: auto; }
/* Kept short on purpose: the hero CTA is the last item in the stagger and must
   not be waiting on a long queue before it is tappable. */
.js .reveal[data-delay="1"] { transition-delay: .05s; }
.js .reveal[data-delay="2"] { transition-delay: .10s; }
.js .reveal[data-delay="3"] { transition-delay: .15s; }
.js .reveal[data-delay="4"] { transition-delay: .20s; }
.js .reveal[data-delay="5"] { transition-delay: .25s; }
.js .reveal[data-delay="6"] { transition-delay: .30s; }
.js .reveal[data-delay="7"] { transition-delay: .35s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* -----------------------------------------------------------------------------
   07 · HEADER & MOBILE MENU
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color .4s var(--ease), border-color .4s var(--ease),
              backdrop-filter .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
}
.site-header.is-stuck {
  background: rgba(7, 21, 15, .92);
  border-bottom-color: rgba(200, 164, 92, .18);
  box-shadow: 0 10px 40px -24px rgba(0, 0, 0, .9);
}
@supports (backdrop-filter: blur(12px)) {
  .site-header.is-stuck { background: rgba(7, 21, 15, .78); backdrop-filter: blur(14px) saturate(140%); }
}
/* With the menu down, the bar and the panel must read as one surface */
.site-header.is-menu-open,
.site-header.is-menu-open.is-stuck { background: rgba(7, 21, 15, .98); backdrop-filter: none; }

.wordmark { display: flex; align-items: center; gap: .6rem; color: var(--ivory); }
.wordmark__mark {
  display: grid; place-items: center;
  width: 30px; height: 30px;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  border-radius: 1px;
  transition: border-color .3s var(--ease);
}
.wordmark__mark svg { width: 20px; height: 20px; }
.wordmark:hover .wordmark__mark { border-color: var(--gold); }
.wordmark__text {
  display: flex; align-items: baseline; gap: .35rem;
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: .01em;
  line-height: 1;
  white-space: nowrap;
}
.wordmark__line--accent { color: var(--gold); letter-spacing: .06em; }
@media (min-width: 400px) { .wordmark__text { font-size: 1.075rem; } }
@media (min-width: 768px) { .wordmark__mark { width: 34px; height: 34px; } .wordmark__text { font-size: 1.2rem; } }

.site-nav { display: none; }
@media (min-width: 1080px) {
  .site-nav { display: block; }
  .site-nav__list { display: flex; align-items: center; gap: 2.1rem; }
  .site-nav__link {
    position: relative;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: rgba(243, 239, 230, .78);
    transition: color .25s var(--ease);
  }
  .site-nav__link::after {
    content: ""; position: absolute; left: 0; bottom: -6px;
    width: 100%; height: 1px; background: var(--gold);
    transform: scaleX(0); transform-origin: right;
    transition: transform .35s var(--ease);
  }
  .site-nav__link:hover { color: var(--ivory); }
  .site-nav__link:hover::after { transform: scaleX(1); transform-origin: left; }
}

.site-header__actions { display: flex; align-items: center; gap: .5rem; }

.header-phone { display: none; }
@media (min-width: 1080px) {
  .header-phone {
    display: inline-flex; align-items: center; gap: .5rem;
    padding-right: 1.1rem;
    margin-right: .25rem;
    border-right: 1px solid rgba(243, 239, 230, .16);
    color: var(--gold);
    font-size: .84rem; font-weight: 600; letter-spacing: .06em;
    transition: color .25s var(--ease);
  }
  .header-phone:hover { color: var(--gold-2); }
}

.header-cta { display: none; }
@media (min-width: 640px) { .header-cta { display: inline-flex; } }

.icon-btn {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  color: var(--ivory);
  border: 1px solid rgba(243, 239, 230, .2);
  border-radius: var(--radius);
  transition: border-color .25s var(--ease), color .25s var(--ease), background-color .25s var(--ease);
}
.icon-btn:hover { border-color: var(--gold); color: var(--gold); }
.icon-btn--call { color: var(--gold); border-color: var(--gold-line); }
@media (min-width: 640px) { .icon-btn--call { display: none; } }
@media (min-width: 1080px) { .icon-btn { display: none; } }

.icon-btn__menu { display: grid; gap: 4px; width: 17px; }
.icon-btn__menu i {
  display: block; height: 1.4px; width: 100%;
  background: currentColor; border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), width .3s var(--ease);
}
.icon-btn[aria-expanded="true"] .icon-btn__menu i:nth-child(1) { transform: translateY(5.4px) rotate(45deg); }
.icon-btn[aria-expanded="true"] .icon-btn__menu i:nth-child(2) { opacity: 0; }
.icon-btn[aria-expanded="true"] .icon-btn__menu i:nth-child(3) { transform: translateY(-5.4px) rotate(-45deg); }

.mobile-menu {
  background: rgba(7, 21, 15, .98);
  border-top: 1px solid rgba(200, 164, 92, .16);
  padding: 1.25rem var(--pad-x) 1.75rem;
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
}
@supports (backdrop-filter: blur(12px)) {
  .mobile-menu { background: rgba(7, 21, 15, .9); backdrop-filter: blur(18px) saturate(140%); }
}
.mobile-menu[hidden] { display: none; }
.mobile-menu__list { border-top: 1px solid var(--line-dark); }
.mobile-menu__list a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-dark);
  color: var(--on-dark);
  font-size: 1rem; font-weight: 500; letter-spacing: .02em;
}
.mobile-menu__list a .icon { width: 16px; height: 16px; color: var(--gold); opacity: .7; }
.mobile-menu__meta { padding: 1.35rem 0 1.25rem; }
.mobile-menu__date {
  font-size: .8rem; font-weight: 600; letter-spacing: .18em; color: var(--gold);
}
.mobile-menu__loc {
  margin-top: .25rem;
  font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--on-dark-3);
}
@media (min-width: 1080px) { .mobile-menu { display: none !important; } }

/* -----------------------------------------------------------------------------
   08 · HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  min-height: 100svh;
  /* Mobile: the whole proposition — headline, date, CTA — must clear the fold,
     so the bottom padding also clears the sticky CTA bar. */
  padding-top: calc(var(--header-h) + 1.25rem);
  padding-bottom: calc(1.5rem + var(--sticky-h));
  background: var(--forest-900);
  color: var(--on-dark);
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 1024px) {
  .hero { padding-top: calc(var(--header-h) + 2.5rem); padding-bottom: clamp(3rem, 8vw, 5rem); }
}

.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__img, .hero__media .scene {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  will-change: transform;
}
/* Dark enough for AA text contrast, light enough that the scene still reads */
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 13, 10, .66) 0%, rgba(5, 13, 10, .28) 26%, rgba(5, 13, 10, .68) 60%, rgba(5, 13, 10, .95) 100%),
    linear-gradient(90deg, rgba(5, 13, 10, .62) 0%, rgba(5, 13, 10, .08) 58%, rgba(5, 13, 10, .38) 100%);
}
.hero__grain {
  position: absolute; inset: 0;
  opacity: .35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.hero__inner { position: relative; width: 100%; display: flex; flex-direction: column; }

/* On phones the supporting line is promoted above the buttons so the CTA pair
   is the last thing in the hero and cannot be half-hidden by the sticky bar. */
@media (max-width: 699px) {
  .hero__actions { order: 1; }
}

.hero__vertical { display: none; }
@media (min-width: 1200px) {
  .hero__vertical {
    position: absolute;
    right: 26px;
    top: 50%;
    display: flex;
    align-items: center;
    gap: .75rem;
    margin: 0;
    writing-mode: vertical-rl;
    transform: translateY(-50%);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .42em;
    text-transform: uppercase;
    color: rgba(243, 239, 230, .5);
  }
  .hero__vertical .dot { color: var(--gold); }
  .hero__vertical::after {
    content: ""; width: 1px; height: 68px;
    background: linear-gradient(to bottom, var(--gold-line), transparent);
  }
}

.hero__title {
  margin-block: .35rem .6rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 13.2vw, 8.5rem);
  line-height: .94;
  letter-spacing: -0.035em;
  color: var(--ivory);
}
.hero__title-line { display: block; }
.hero__title-line--accent {
  color: var(--gold);
  letter-spacing: .01em;
}
@media (min-width: 900px) {
  .hero__title-line { display: inline; }
  .hero__title-line--accent { margin-left: .18em; }
}

.hero__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.075rem, 4.5vw, 2rem);
  line-height: 1.25;
  color: var(--gold-2);
  letter-spacing: -0.01em;
}

.hero__lede {
  margin-top: .7rem;
  max-width: 34rem;
  font-size: clamp(.9rem, 3.4vw, 1.075rem);
  line-height: 1.58;
  color: var(--on-dark-2);
}

.hero__facts {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: clamp(1.1rem, 4vw, 2.5rem);
  padding: .85rem 0 .85rem 1.15rem;
  border-left: 2px solid var(--gold);
  background: linear-gradient(90deg, rgba(200, 164, 92, .10), transparent 70%);
}
.hero__fact { display: flex; flex-direction: column; gap: .3rem; }
.hero__fact-label {
  font-size: .62rem; font-weight: 600; letter-spacing: .24em;
  text-transform: uppercase; color: var(--on-dark-3);
}
.hero__fact-value {
  font-size: clamp(.95rem, 3.8vw, 1.05rem);
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--ivory);
}
.hero__fact-value--date {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.45rem, 6.6vw, 2.15rem);
  letter-spacing: .015em;
  color: var(--gold);
  line-height: 1.1;
}
.hero__fact-rule { display: none; }
@media (min-width: 700px) {
  .hero__facts { flex-direction: row; align-items: center; gap: 2rem; padding-right: 1.5rem; }
  .hero__fact-rule { display: block; width: 1px; align-self: stretch; background: var(--gold-line); }
}

/* Mobile: the two credits collapse into compact single lines so "who is behind
   this" still clears the fold alongside the date and the CTA. */
.hero__credits {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-top: clamp(1.1rem, 4vw, 2rem);
}
.hero__credit {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .2rem .6rem;
}
.hero__credit-label {
  font-size: .58rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--on-dark-3);
  flex: 0 0 auto;
}
.hero__credit-name {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: .04em;
  color: var(--ivory);
}
.hero__credit-role { font-size: .74rem; color: var(--on-dark-3); letter-spacing: .02em; }
.hero__credit-role::before { content: "•"; margin-right: .45rem; color: var(--gold); opacity: .7; }

@media (min-width: 700px) {
  .hero__credits { flex-direction: row; flex-wrap: wrap; gap: 1.1rem 2.5rem; }
  .hero__credit { flex-direction: column; gap: .2rem; }
  .hero__credit-name { font-size: 1.05rem; }
  .hero__credit-role { font-size: .78rem; }
  .hero__credit-role::before { content: none; }
}

.hero__actions {
  display: grid;
  gap: .7rem;
  margin-top: clamp(1.05rem, 4vw, 2.5rem);
}
@media (min-width: 560px) {
  .hero__actions { display: flex; flex-wrap: wrap; gap: .875rem; }
}

.hero__note {
  margin-top: .8rem;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--on-dark-3);
}
.hero__note span { color: var(--gold); margin-inline: .35rem; }

.hero__scroll { display: none; }
@media (min-width: 1024px) {
  .hero__scroll {
    position: absolute;
    left: 50%; bottom: 26px;
    display: grid; place-items: center;
    width: 34px; height: 58px;
    transform: translateX(-50%);
  }
  .hero__scroll-line {
    width: 1px; height: 46px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    transform-origin: top;
    animation: scrollCue 2.4s var(--ease) infinite;
  }
}
@keyframes scrollCue {
  0%   { transform: scaleY(.25); opacity: 0; }
  35%  { opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* -----------------------------------------------------------------------------
   09 · STRIP
   -------------------------------------------------------------------------- */
.strip {
  position: relative;
  background: var(--forest-800);
  color: var(--on-dark);
  padding-block: clamp(1.75rem, 6vw, 2.5rem);
  border-top: 1px solid rgba(200, 164, 92, .22);
  border-bottom: 1px solid rgba(200, 164, 92, .12);
}
.strip__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1rem;
}
.strip__item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: .6rem;
  align-items: center;
}
.strip__icon { grid-row: span 2; color: var(--gold); opacity: .85; }
.strip__icon .icon { width: 20px; height: 20px; }
.strip__label {
  font-size: .58rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--on-dark-3);
}
.strip__value {
  font-size: .82rem; font-weight: 600; letter-spacing: .09em;
  color: var(--ivory); line-height: 1.3;
}
.strip__value--gold { color: var(--gold); }
.strip__action { margin-top: 1.75rem; }
.strip__action .btn { width: 100%; }

@media (min-width: 640px) {
  .strip__list { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
  .strip__action .btn { width: auto; }
  .strip__action { text-align: center; }
}
@media (min-width: 1024px) {
  .strip .container {
    display: flex; align-items: center; justify-content: space-between; gap: 2.5rem;
  }
  .strip__list { flex: 1; gap: 2rem; }
  .strip__action { margin-top: 0; flex: 0 0 auto; }
  .strip__value { font-size: .875rem; }
}

/* -----------------------------------------------------------------------------
   10 · ABOUT
   -------------------------------------------------------------------------- */
.about__body { display: grid; gap: 1.75rem; }
.about__text { display: grid; gap: 1.1rem; color: var(--text-2); font-size: 1rem; }
@media (min-width: 900px) {
  .about__body { grid-template-columns: 1.05fr 1fr; gap: 4rem; align-items: start; }
  .about__text { font-size: 1.0625rem; }
}

.pillars {
  margin-top: clamp(2.5rem, 8vw, 4.5rem);
  padding-top: clamp(1.75rem, 5vw, 2.5rem);
  border-top: 1px solid var(--line-light);
}
.pillars__title {
  margin-bottom: 1.5rem;
  font-size: .68rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold-3);
}
.pillars__list { display: grid; grid-template-columns: 1fr; }
.pillars__item {
  display: flex; align-items: baseline; gap: .9rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--line-light);
}
.pillars__num {
  font-size: .68rem; font-weight: 600; letter-spacing: .08em;
  color: var(--gold-3); font-variant-numeric: tabular-nums;
}
.pillars__name {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 4.4vw, 1.3rem);
  letter-spacing: -0.01em;
  color: var(--text);
}
@media (min-width: 600px) { .pillars__list { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 3rem; } }
@media (min-width: 1024px) { .pillars__list { grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 3.5rem; } }

/* -----------------------------------------------------------------------------
   11 · BENEFITS
   -------------------------------------------------------------------------- */
.benefits__grid { display: grid; grid-template-columns: 1fr; }
.benefit {
  position: relative;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line-dark);
}
.benefit__num {
  display: block;
  font-size: .68rem; font-weight: 600; letter-spacing: .2em;
  color: var(--gold); font-variant-numeric: tabular-nums;
}
.benefit__icon {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  margin: 1rem 0 1.1rem;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  transition: border-color .35s var(--ease), background-color .35s var(--ease), transform .35s var(--ease);
}
.benefit__icon .icon { width: 20px; height: 20px; }
.benefit:hover .benefit__icon { border-color: var(--gold); background: var(--gold-wash); transform: translateY(-2px); }
.benefit__title {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 5.4vw, 1.6rem);
  color: var(--ivory);
  letter-spacing: -0.01em;
}
.benefit__body {
  margin-top: .6rem;
  max-width: 30rem;
  font-size: .95rem;
  line-height: 1.68;
  color: var(--on-dark-2);
}
@media (min-width: 640px) {
  .benefits__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 3rem; }
}
@media (min-width: 1024px) {
  .benefits__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 3.25rem; }
  .benefit { padding: 2.25rem 0; }
}

/* -----------------------------------------------------------------------------
   12 · AUDIENCE
   -------------------------------------------------------------------------- */
.audience__list { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--line-light); }
.audience__item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.05rem .5rem 1.05rem 0;
  border-bottom: 1px solid var(--line-light);
  transition: padding-left .35s var(--ease), background-color .35s var(--ease);
}
.audience__item:hover { padding-left: .75rem; background: rgba(200, 164, 92, .07); }
.audience__index {
  font-size: .66rem; font-weight: 600; letter-spacing: .12em;
  color: var(--gold-3); font-variant-numeric: tabular-nums;
  flex: 0 0 auto;
}
.audience__role {
  flex: 1;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 5vw, 1.5rem);
  letter-spacing: -0.015em;
  color: var(--text);
}
.audience__mark { color: var(--gold-3); opacity: 0; transform: translateX(-6px); transition: opacity .3s var(--ease), transform .3s var(--ease); }
.audience__item:hover .audience__mark { opacity: 1; transform: none; }

@media (min-width: 768px) {
  .audience__list { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 3.5rem; }
}

.audience__foot {
  margin-top: clamp(2rem, 6vw, 3rem);
  font-size: .95rem;
  color: var(--text-2);
}

/* -----------------------------------------------------------------------------
   13 · EXPERIENCE
   -------------------------------------------------------------------------- */
.experience { overflow: hidden; isolation: isolate; }
.experience__media { position: absolute; inset: 0; z-index: -1; }
.experience__media img, .experience__media .scene { width: 100%; height: 100%; object-fit: cover; }
.experience__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7, 21, 15, .93) 0%, rgba(7, 21, 15, .70) 42%, rgba(7, 21, 15, .95) 100%);
}
.experience__inner { position: relative; }

.quality__grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.quality {
  padding: 1.6rem 0;
  border-top: 1px solid var(--line-dark);
}
.quality__icon {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px;
  margin-bottom: .9rem;
  color: var(--gold);
  border: 1px solid var(--gold-line);
}
.quality__icon .icon { width: 19px; height: 19px; }
.quality__title {
  font-size: .78rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--ivory);
}
.quality__body {
  margin-top: .55rem;
  max-width: 26rem;
  font-size: .94rem; line-height: 1.68;
  color: var(--on-dark-2);
}
@media (min-width: 640px) {
  .quality__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 3rem; }
}
@media (min-width: 1024px) {
  .quality__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); column-gap: 2.5rem; }
  .quality { padding: 2rem 0; }
}

/* -----------------------------------------------------------------------------
   14 · TIMELINE
   -------------------------------------------------------------------------- */
.timeline__track {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-left: 1.75rem;
}
.timeline__track::before {
  content: "";
  position: absolute;
  left: 5px; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(200, 164, 92, .18));
}
.tl-day { position: relative; }
.tl-day__node {
  position: absolute;
  left: -1.75rem; top: 6px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--ink);
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 164, 92, .12);
}
.tl-day__label {
  font-size: .68rem; font-weight: 600; letter-spacing: .26em;
  text-transform: uppercase; color: var(--gold);
}
.tl-day__date {
  margin-top: .4rem;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 6.6vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ivory);
}
.tl-day__focus {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-top: 1rem;
}
.tl-day__focus li {
  padding: .38rem .8rem;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  font-size: .68rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold-2);
  white-space: nowrap;
}
.tl-day__note {
  margin-top: 1rem;
  max-width: 28rem;
  font-size: .94rem; line-height: 1.68;
  color: var(--on-dark-2);
}

@media (min-width: 860px) {
  .timeline__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3.5rem;
    padding-left: 0;
    padding-top: 2.5rem;
  }
  .timeline__track::before {
    left: 0; right: 0; top: 5px; bottom: auto;
    width: auto; height: 1px;
    background: linear-gradient(to right, var(--gold), rgba(200, 164, 92, .18));
  }
  .tl-day__node { left: 0; top: -2.5rem; margin-top: 5px; transform: translateY(-5px); }
}

/* -----------------------------------------------------------------------------
   15 · HOST
   -------------------------------------------------------------------------- */
.host__grid { display: grid; gap: clamp(2.25rem, 7vw, 3.5rem); }
@media (min-width: 940px) {
  .host__grid { grid-template-columns: .82fr 1.18fr; gap: 4.5rem; align-items: start; }
}

.host__portrait {
  position: relative;
  margin: 0;
  border: 1px solid var(--line-light);
  padding: 10px;
  background: var(--ivory-2);
}
.host__portrait::after {
  content: "";
  position: absolute; inset: 10px;
  border: 1px solid var(--gold-line);
  pointer-events: none;
}
.host__portrait img { width: 100%; aspect-ratio: 9 / 11; object-fit: cover; }
.host__placeholder {
  display: grid; place-items: center;
  aspect-ratio: 9 / 11;
  background:
    radial-gradient(120% 80% at 50% 0%, var(--forest-700), var(--forest-900) 70%);
}
.host__monogram {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 14vw, 5.5rem);
  letter-spacing: .04em;
  color: var(--gold);
  opacity: .55;
}
.host__badge {
  position: absolute;
  left: 10px; bottom: 10px; right: 10px;
  padding: .9rem 1.1rem;
  background: rgba(7, 21, 15, .88);
  border-top: 1px solid var(--gold-line);
}
@supports (backdrop-filter: blur(8px)) {
  .host__badge { background: rgba(7, 21, 15, .68); backdrop-filter: blur(10px); }
}
.host__badge-label {
  display: block;
  font-size: .58rem; font-weight: 600; letter-spacing: .24em;
  text-transform: uppercase; color: var(--on-dark-3);
}
.host__badge-name {
  display: block; margin-top: .15rem;
  font-family: var(--serif); font-size: 1.15rem; color: var(--gold);
}

.host__name { font-size: clamp(2.1rem, 8.5vw, 3.5rem); }
.host__role {
  margin-top: .6rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold-3);
}
.host__bio { display: grid; gap: 1.05rem; color: var(--text-2); }
.host__bio p { font-size: 1rem; line-height: 1.72; }

.quote {
  position: relative;
  margin: clamp(2rem, 6vw, 2.75rem) 0 0;
  padding: 1.75rem 0 0 1.35rem;
  border-left: 2px solid var(--gold);
}
.quote__mark { position: absolute; top: 0; left: 1.35rem; color: var(--gold); opacity: .5; }
.quote__mark .icon { width: 26px; height: 26px; }
.quote blockquote {
  margin: 1.9rem 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 4.8vw, 1.65rem);
  line-height: 1.42;
  letter-spacing: -0.01em;
  color: var(--text);
}
.quote figcaption {
  margin-top: .9rem;
  font-size: .66rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--text-3);
}

.host__actions { display: grid; gap: .75rem; margin-top: clamp(2rem, 6vw, 2.75rem); }
@media (min-width: 560px) { .host__actions { display: flex; flex-wrap: wrap; gap: .875rem; } }

/* -----------------------------------------------------------------------------
   16 · PRESENTER
   -------------------------------------------------------------------------- */
.presenter { text-align: center; }
.presenter__inner { max-width: 46rem; margin-inline: auto; }
.presenter__eyebrow { justify-content: center; }
.presenter__wordmark {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 11vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: .06em;
  color: var(--ivory);
}
.presenter__logo { max-height: 88px; width: auto; margin-inline: auto; }
.presenter__rule {
  display: block;
  width: 56px; height: 1px;
  margin: clamp(1.5rem, 5vw, 2.25rem) auto;
  background: var(--gold);
}
.presenter__text {
  font-size: clamp(.98rem, 3.6vw, 1.075rem);
  line-height: 1.72;
  color: var(--on-dark-2);
}

/* -----------------------------------------------------------------------------
   17 · TAKEAWAYS
   -------------------------------------------------------------------------- */
.takeaways__list { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--line-light); }
.takeaway {
  display: flex; align-items: flex-start; gap: .9rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-light);
}
.takeaway__check {
  display: grid; place-items: center;
  flex: 0 0 auto;
  width: 26px; height: 26px;
  margin-top: 1px;
  color: var(--gold-3);
  border: 1px solid var(--gold-line);
  border-radius: 50%;
}
.takeaway__check .icon { width: 13px; height: 13px; stroke-width: 1.8; }
.takeaway__text {
  font-size: clamp(1rem, 4.2vw, 1.1rem);
  line-height: 1.5;
  color: var(--text);
}
@media (min-width: 640px)  { .takeaways__list { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 3rem; } }
@media (min-width: 1100px) { .takeaways__list { grid-template-columns: repeat(4, minmax(0, 1fr)); column-gap: 2.5rem; } }

/* -----------------------------------------------------------------------------
   18 · REGISTRATION
   -------------------------------------------------------------------------- */
.register { overflow: hidden; isolation: isolate; text-align: center; }
.register__glow {
  position: absolute;
  z-index: -1;
  top: -30%; left: 50%;
  width: min(900px, 130%);
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(200, 164, 92, .16) 0%, rgba(200, 164, 92, .04) 42%, transparent 68%);
  pointer-events: none;
}
.register__inner { position: relative; max-width: 54rem; margin-inline: auto; }
.register .eyebrow { justify-content: center; }

.register__title {
  font-family: var(--serif);
  font-size: clamp(2.15rem, 9vw, 4.25rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--ivory);
}
.register__title em { font-style: italic; color: var(--gold-2); }

.register__lede {
  margin-top: 1.1rem;
  font-size: clamp(1rem, 3.8vw, 1.2rem);
  color: var(--on-dark-2);
}

.register__date {
  display: inline-flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: clamp(2rem, 6vw, 2.75rem);
  padding: 1.15rem 1.6rem;
  border: 1px solid var(--gold-line);
  background: var(--gold-wash);
}
.register__date-value {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 7vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: .01em;
  color: var(--gold);
}
.register__date-loc {
  font-size: .68rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--on-dark-2);
}

.register__actions {
  display: grid; gap: .75rem;
  margin-top: clamp(2rem, 6vw, 2.75rem);
}
@media (min-width: 640px) {
  .register__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .875rem; }
}

.register__phone {
  display: inline-flex;
  flex-direction: column;
  gap: .35rem;
  margin-top: clamp(2rem, 6vw, 2.75rem);
  padding-top: clamp(1.75rem, 5vw, 2.25rem);
  border-top: 1px solid var(--line-dark);
  min-width: min(100%, 20rem);
}
.register__phone-label {
  font-size: .62rem; font-weight: 600; letter-spacing: .24em;
  text-transform: uppercase; color: var(--on-dark-3);
}
.register__phone-num {
  font-family: var(--serif);
  font-size: clamp(2rem, 9.5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: .02em;
  color: var(--ivory);
  transition: color .3s var(--ease);
}
.register__phone:hover .register__phone-num { color: var(--gold); }

.register__note {
  margin-top: 1.25rem;
  font-size: .85rem;
  color: var(--on-dark-3);
}

/* -----------------------------------------------------------------------------
   19 · FAQ
   -------------------------------------------------------------------------- */
.faq__list { border-top: 1px solid var(--line-light); }
.faq__item { border-bottom: 1px solid var(--line-light); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 1.25rem;
  padding: 1.15rem 0;
  cursor: pointer;
  list-style: none;
  transition: color .25s var(--ease);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q-text {
  font-family: var(--serif);
  font-size: clamp(1.075rem, 4.4vw, 1.35rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--text);
}
.faq__q:hover .faq__q-text { color: var(--gold-3); }
.faq__q-icon {
  display: grid; place-items: center;
  flex: 0 0 auto;
  width: 30px; height: 30px;
  color: var(--gold-3);
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  transition: background-color .3s var(--ease), border-color .3s var(--ease);
}
.faq__q-icon .icon { width: 15px; height: 15px; }
.faq__q-icon .icon__bar { transform-origin: center; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.faq__item[open] .faq__q-icon { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.faq__item[open] .faq__q-icon .icon__bar { transform: rotate(90deg); opacity: 0; }
.faq__a {
  padding: 0 3rem 1.5rem 0;
  font-size: 1rem;
  line-height: 1.72;
  color: var(--text-2);
}
.faq__item[open] .faq__a { animation: faqIn .34s var(--ease-out) both; }
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
.faq__foot {
  margin-top: clamp(2rem, 6vw, 2.75rem);
  font-size: .95rem;
  color: var(--text-2);
}

/* -----------------------------------------------------------------------------
   20 · FINAL CTA
   -------------------------------------------------------------------------- */
.final-cta {
  position: relative;
  padding-block: clamp(4.5rem, 14vw, 9rem);
  background: var(--ink);
  color: var(--on-dark);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.final-cta__media { position: absolute; inset: 0; z-index: -1; }
.final-cta__media img, .final-cta__media .scene { width: 100%; height: 100%; object-fit: cover; }
.final-cta__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5, 13, 10, .90) 0%, rgba(5, 13, 10, .62) 48%, rgba(5, 13, 10, .94) 100%);
}
.final-cta__inner { position: relative; max-width: 52rem; margin-inline: auto; }
.final-cta__title {
  font-family: var(--serif);
  font-size: clamp(2.05rem, 8.6vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ivory);
}
.final-cta__title em { font-style: italic; color: var(--gold); }
.final-cta__meta {
  margin-top: 1.25rem;
  font-size: .74rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold-2);
}
.final-cta__meta span { margin-inline: .45rem; opacity: .6; }
.final-cta__actions { display: grid; gap: .75rem; margin-top: clamp(2rem, 6vw, 2.75rem); }
@media (min-width: 640px) {
  .final-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .875rem; }
}

/* -----------------------------------------------------------------------------
   21 · FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--forest-900);
  color: var(--on-dark-2);
  padding-block: clamp(2.75rem, 8vw, 4.5rem) clamp(1.75rem, 5vw, 2.25rem);
  border-top: 1px solid rgba(200, 164, 92, .16);
}
.site-footer__top { display: grid; gap: 2.25rem; }
@media (min-width: 768px) {
  .site-footer__top { grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: start; }
}

.site-footer__mark {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 6vw, 2rem);
  letter-spacing: .02em;
  color: var(--ivory);
}
.site-footer__mark span { color: var(--gold); letter-spacing: .08em; }
.site-footer__credit { margin-top: .55rem; font-size: .9rem; }
.site-footer__credit strong { color: var(--ivory); font-weight: 600; }

.site-footer__label {
  font-size: .6rem; font-weight: 600; letter-spacing: .24em;
  text-transform: uppercase; color: var(--on-dark-3);
}
.site-footer__label--spaced { margin-top: 1.5rem; }
.site-footer__value { margin-top: .3rem; font-size: .95rem; color: var(--ivory); letter-spacing: .04em; }
.site-footer__value--gold { color: var(--gold); font-weight: 600; letter-spacing: .1em; }

.site-footer__phone {
  display: block;
  width: fit-content;
  margin-top: .5rem;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 7vw, 2.1rem);
  letter-spacing: .02em;
  color: var(--ivory);
  transition: color .3s var(--ease);
}
.site-footer__phone:hover { color: var(--gold); }
.site-footer__wa {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: .75rem;
  padding: .55rem 1rem;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold);
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.site-footer__wa:hover { border-color: var(--gold); background: var(--gold-wash); }

.site-footer__bottom {
  display: grid; gap: 1rem;
  margin-top: clamp(2.25rem, 7vw, 3.25rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  font-size: .8rem;
  color: var(--on-dark-3);
}
.site-footer__domain { display: block; margin-top: .25rem; color: var(--gold-3); letter-spacing: .06em; }
.site-footer__links { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.site-footer__links a { transition: color .25s var(--ease); }
.site-footer__links a:hover { color: var(--gold); }
@media (min-width: 768px) {
  .site-footer__bottom { grid-template-columns: 1fr auto; align-items: center; }
  .site-footer__domain { display: inline; margin-left: .75rem; margin-top: 0; }
  .site-footer__links { justify-content: flex-end; }
}

/* -----------------------------------------------------------------------------
   22 · MODAL
   -------------------------------------------------------------------------- */
.modal {
  width: 100%;
  max-width: 100%;
  max-height: 100dvh;
  margin: auto;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}
.modal::backdrop { background: rgba(5, 13, 10, .78); }
@supports (backdrop-filter: blur(6px)) {
  .modal::backdrop { backdrop-filter: blur(7px); }
}

.modal__panel {
  position: relative;
  width: min(28rem, calc(100vw - 2rem));
  margin-inline: auto;
  padding: 2.25rem 1.5rem 1.75rem;
  background: var(--ivory);
  border-top: 3px solid var(--gold);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .7);
  text-align: center;
}
.modal[open] .modal__panel { animation: modalIn .4s var(--ease-out) both; }
@keyframes modalIn {
  from { opacity: 0; transform: translateY(18px) scale(.98); }
  to   { opacity: 1; transform: none; }
}

.modal__close {
  position: absolute; top: .75rem; right: .75rem;
  display: grid; place-items: center;
  width: 38px; height: 38px;
  color: var(--text-2);
  border-radius: 50%;
  transition: background-color .25s var(--ease), color .25s var(--ease);
}
.modal__close:hover { background: rgba(20, 32, 26, .07); color: var(--text); }

.modal__eyebrow { justify-content: center; margin-bottom: .75rem; }
.modal__title {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 7vw, 2.1rem);
  letter-spacing: -0.02em;
  color: var(--text);
}
.modal__event {
  margin: 1.25rem 0;
  padding: .9rem 1rem;
  border: 1px solid var(--gold-line);
  background: var(--gold-wash);
}
.modal__date {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 5.2vw, 1.4rem);
  color: var(--gold-3);
  letter-spacing: .01em;
}
.modal__loc {
  margin-top: .2rem;
  font-size: .66rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--text-2);
}
.modal__text { font-size: .92rem; line-height: 1.68; color: var(--text-2); }
.modal__actions { display: grid; gap: .7rem; margin-top: 1.5rem; }
.modal__note {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-light);
  font-size: .66rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-3);
}

@media (min-width: 480px) {
  .modal__panel { padding: 2.75rem 2.25rem 2rem; }
}

/* -----------------------------------------------------------------------------
   23 · STICKY CTA (mobile) & FLOAT CTA (desktop)
   -------------------------------------------------------------------------- */
.sticky-cta {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 1px;
  background: rgba(200, 164, 92, .18);
  border-top: 1px solid rgba(200, 164, 92, .28);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  transform: translateY(0);
  transition: transform .35s var(--ease);
}
.sticky-cta.is-hidden { transform: translateY(115%); }

.sticky-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  min-height: var(--sticky-h);
  padding: .5rem .35rem;
  background: var(--forest-900);
  color: var(--ivory);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  transition: background-color .25s var(--ease);
}
.sticky-cta__btn .icon { width: 16px; height: 16px; }
.sticky-cta__btn--call { color: var(--gold); }
.sticky-cta__btn--call .icon { color: var(--gold); }
.sticky-cta__btn--wa .icon { color: #4FCB7E; }
.sticky-cta__btn--register {
  background: var(--gold);
  color: #14201A;
  font-weight: 700;
  letter-spacing: .1em;
}
.sticky-cta__btn--register:active { background: var(--gold-2); }
.sticky-cta__btn:active { background: var(--forest-700); }

@media (max-width: 359px) {
  .sticky-cta__btn { font-size: .62rem; letter-spacing: .05em; gap: .3rem; }
  .sticky-cta__btn .icon { width: 14px; height: 14px; }
}
@media (min-width: 1024px) { .sticky-cta { display: none; } }

.float-cta { display: none; }
@media (min-width: 1024px) {
  .float-cta {
    position: fixed;
    right: 26px; bottom: 26px;
    z-index: 80;
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .7rem 1.15rem .7rem .7rem;
    background: rgba(7, 21, 15, .94);
    border: 1px solid var(--gold-line);
    border-radius: 999px;
    box-shadow: 0 22px 45px -24px rgba(0, 0, 0, .85);
    transition: transform .35s var(--ease), border-color .3s var(--ease), opacity .35s var(--ease);
  }
  .float-cta:hover { transform: translateY(-3px); border-color: var(--gold); }
  .float-cta.is-hidden { opacity: 0; transform: translateY(16px); pointer-events: none; }
  .float-cta__icon {
    display: grid; place-items: center;
    width: 36px; height: 36px;
    background: var(--gold);
    color: #14201A;
    border-radius: 50%;
  }
  .float-cta__text { display: grid; line-height: 1.25; }
  .float-cta__label {
    font-size: .58rem; font-weight: 600; letter-spacing: .2em;
    text-transform: uppercase; color: var(--on-dark-3);
  }
  .float-cta__num {
    font-size: .95rem; font-weight: 600; letter-spacing: .06em; color: var(--gold);
  }
}

/* Body scroll lock while a dialog / mobile menu is open */
body.is-locked { overflow: hidden; }

/* -----------------------------------------------------------------------------
   24 · LEGAL PAGES
   -------------------------------------------------------------------------- */
.legal { padding-top: calc(var(--header-h) + clamp(2.5rem, 8vw, 5rem)); }
.legal__title { font-family: var(--serif); font-size: clamp(2rem, 8vw, 3.25rem); letter-spacing: -0.02em; }
.legal__updated {
  margin-top: .75rem;
  font-size: .68rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--text-3);
}
.legal__body { margin-top: clamp(2rem, 6vw, 3rem); }
.legal__body h2 {
  margin-top: 2.25rem;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 5vw, 1.6rem);
  color: var(--text);
}
.legal__body p, .legal__body li { margin-top: .9rem; color: var(--text-2); font-size: 1rem; line-height: 1.72; }
.legal__body ul { list-style: disc; padding-left: 1.25rem; }
.legal__body a { color: var(--gold-3); border-bottom: 1px solid var(--gold-line); }
