/* ============================================================
   ASHARA NOVA — design system
   Ivory stone institution. Sharp corners. Dawn-line motion.
   ============================================================ */

:root {
  --ivory: #F3EEE3;
  --ivory-deep: #EAE3D2;
  --ivory-warm: #F0E8D8;
  --stone: #C9C0AD;
  --stone-pale: #F7F4EC;
  --navy: #0E1626;
  --navy-mid: #16233C;
  --navy-soft: #1C2B47;
  --ink: #1C2333;
  --ink-soft: #4A5163;
  --gold: #C29A4B;
  --gold-light: #E3C888;
  --gold-deep: #9C7833;
  --bronze: #8A6B42;
  --terracotta: #A9603F;

  --display: "Fraunces", "Times New Roman", serif;
  --body: "Inter", -apple-system, sans-serif;

  --ease-major: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 6px;      /* buttons, chips */
  --radius-lg: 12px;  /* cards, frames, media */

  --pad-section: clamp(96px, 14vh, 180px);
  --pad-x: clamp(24px, 6vw, 96px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

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

/* anchor jumps land below the sticky nav */
section[id], footer[id] { scroll-margin-top: 96px; }

.container { max-width: 1240px; margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.container--narrow { max-width: 920px; }

/* ---------- shared type ---------- */

.eyebrow {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 28px;
}
.eyebrow--gold { color: var(--gold); }
.eyebrow--center { text-align: center; }

.h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 24px;
}
.h2--light { color: var(--ivory); }
.h2 em, .moment__thesis em, .serve__close em, .story__turn em { font-style: italic; color: var(--gold-deep); }

/* section base color chapters */
.section--ivory { background: var(--ivory); }
.section--warm { background: var(--ivory-warm); }
.section--stone { background: var(--ivory-deep); }
.section--stonewhite { background: var(--stone-pale); }
.section--navy { background: var(--navy); color: var(--ivory); }
.section--gold { background: linear-gradient(160deg, #E8D8B0 0%, var(--gold-light) 55%, #D9BC78 100%); }

/* reveal defaults — content visible w/o JS; JS adds .js-anim to body */
.js-anim .reveal { opacity: 0; transform: translateY(26px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity 0.75s var(--ease-major), transform 0.75s var(--ease-major); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 17px 32px;
  border-radius: var(--radius);
  border: 1px solid currentColor;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease-out, border-color 0.3s ease-out, background-color 0.3s ease-out;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,244,214,0.35) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 0.7s var(--ease-major);
  pointer-events: none;
}
.btn:hover::after { transform: translateX(110%); }

.btn--solid { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.btn--solid:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn--ghost { color: var(--ivory); border-color: rgba(243,238,227,0.5); }
.btn--ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }

.btn--outline { color: var(--ink); border-color: rgba(28,35,51,0.4); }
.btn--outline:hover { border-color: var(--gold-deep); color: var(--gold-deep); }
.section--navy .btn--outline { color: var(--ivory); border-color: rgba(243,238,227,0.4); }

.btn--solid-navy { background: var(--navy); border-color: var(--navy); color: var(--ivory); }
.btn--solid-navy:hover { background: var(--navy-mid); }

.btn--play { padding-left: 20px; }
.btn__ring {
  width: 36px; height: 36px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.btn__ring svg { width: 14px; height: 14px; }

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: transform 0.5s var(--ease-major), background-color 0.4s ease-out, box-shadow 0.4s ease-out;
  color: var(--ivory);
}
.nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 26px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transition: padding 0.4s ease-out;
}
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__mark { width: 26px; height: 26px; color: var(--gold); }
.nav__wordmark {
  /* mirrors the hero headline: Fraunces light, uppercase */
  font-family: var(--display);
  font-weight: 300;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.nav__links { display: flex; gap: 36px; }
.nav__links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  position: relative;
  padding: 12px 2px;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-major);
}
.nav__links a:hover::after { transform: scaleX(1); }

.btn--nav {
  padding: 12px 22px;
  font-size: 11px;
  border-color: rgba(243,238,227,0.5);
  color: var(--ivory);
}
.btn--nav:hover { border-color: var(--gold); color: var(--gold-light); }

.nav.is-solid {
  background: rgba(243,238,227,0.94);
  backdrop-filter: blur(12px);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(28,35,51,0.08);
}
.nav.is-solid .nav__inner { padding-top: 16px; padding-bottom: 16px; }
.nav.is-solid .nav__mark { color: var(--navy); }
.nav.is-solid .btn--nav { border-color: rgba(28,35,51,0.35); color: var(--ink); }
.nav.is-solid .btn--nav:hover { border-color: var(--gold-deep); color: var(--gold-deep); }
.nav.is-hidden { transform: translateY(-100%); }
.nav.is-menu-open { color: var(--ink); background: transparent; box-shadow: none; }

/* mobile menu toggle */
.nav__toggle {
  display: none;
  width: 48px; height: 48px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: var(--radius);
}
.nav__toggle-line {
  display: block;
  width: 22px; height: 1.5px;
  background: currentColor;
  transition: transform 0.35s var(--ease-major);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-line:first-child { transform: translateY(4.25px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-line:last-child { transform: translateY(-4.25px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(243,238,227,0.98);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 96px var(--pad-x) 48px;
  overscroll-behavior: contain; /* iOS: no rubber-band scroll bleeding to the page */
  touch-action: none;
  opacity: 1;
  transition: opacity 0.35s var(--ease-major), display 0.35s allow-discrete;
}
.mobile-menu[hidden] { display: none; opacity: 0; }
@starting-style {
  .mobile-menu { opacity: 0; }
}
.mobile-menu__nav { display: flex; flex-direction: column; align-items: center; }
.mobile-menu__nav a {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(26px, 7vw, 34px);
  color: var(--ink);
  padding: 14px 24px;
  transition: color 0.3s ease-out;
}
.mobile-menu__nav a:hover { color: var(--gold-deep); }
.mobile-menu__cta { margin-top: 28px; }

/* ============================================================
   1 · HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--navy);
  color: var(--ivory);
}

.hero__bg { position: absolute; inset: 0; }
.hero__stone {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,22,38,0.72) 0%, rgba(14,22,38,0.25) 45%, rgba(14,22,38,0.78) 100%),
    url("../assets/web/hero-sanctuary.jpg") center 35% / cover no-repeat,
    linear-gradient(160deg, #2A2C33 0%, #4D4437 38%, #8A7250 62%, #3A3630 100%);
}
.hero__stone::before {
  /* faint stone coursing lines */
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(180deg, transparent 0 119px, rgba(243,238,227,0.05) 119px 120px),
    repeating-linear-gradient(90deg, transparent 0 219px, rgba(243,238,227,0.035) 219px 220px);
}
.hero__light {
  position: absolute;
  top: -30%; left: 50%;
  width: 130vmax; height: 130vmax;
  transform: translateX(-58%);
  background: radial-gradient(circle at 50% 18%, rgba(227,200,136,0.5) 0%, rgba(194,154,75,0.22) 26%, transparent 58%);
  z-index: 1;
  pointer-events: none;
}
.hero__particles { position: absolute; inset: 0; z-index: 2; }

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 980px;
  padding: 140px var(--pad-x) 120px;
}
.hero__headline {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.hero__phrase { display: block; }
.hero__sub {
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(243,238,227,0.82);
}
.hero__actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__guide {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  height: 110px;
  display: flex;
  justify-content: center;
}
.hero__guide-line {
  display: block;
  width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent, var(--gold-light));
  transform-origin: top;
}

/* JS load-sequence initial states */
.js-anim .hero__phrase,
.js-anim .hero__sub,
.js-anim .hero__actions,
.js-anim .hero__guide-line { opacity: 0; }

/* ============================================================
   2 · THE MOMENT
   ============================================================ */

.moment { padding: var(--pad-section) 0; }
.moment__headline {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 80px;
}
.moment__headline span { display: block; }
.moment__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  padding: 56px 0;
  border-top: 1px solid rgba(28,35,51,0.14);
  border-bottom: 1px solid rgba(28,35,51,0.14);
  margin-bottom: 80px;
}
.stat__number {
  display: block;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(44px, 4.4vw, 68px);
  line-height: 1;
  color: var(--ink);
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.stat__label {
  display: block;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 220px;
}
.moment__thesis {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.3;
  max-width: 760px;
}

/* ============================================================
   3 · PAULETTE'S STORY
   ============================================================ */

.story { padding: var(--pad-section) 0; }
.story__grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: minmax(320px, 460px) 1fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
}
.story__portrait { position: sticky; top: 120px; }
.story__portrait-frame {
  border: 1px solid rgba(28,35,51,0.15);
  padding: 14px;
  border-radius: var(--radius-lg);
  background: var(--ivory);
  box-shadow: 0 24px 60px -44px rgba(28,35,51,0.5);
}
.portrait-photo {
  width: 100%;
  aspect-ratio: 4 / 5.1;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.portrait-photo--small { aspect-ratio: 4 / 4.6; }

.story__headline {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.25;
  margin-bottom: 56px;
}
.story__headline span { display: block; }
.story__turn { margin-top: 18px; font-size: clamp(32px, 3.6vw, 50px); line-height: 1.15; }

.story__timeline { position: relative; margin-bottom: 56px; padding-left: 34px; }
.story__timeline-track {
  position: absolute;
  left: 8px; top: 8px; bottom: 8px;
  width: 1px;
  background: rgba(28,35,51,0.15);
}
.story__timeline-progress {
  display: block;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  transform: scaleY(0);
  transform-origin: top;
}
.milestone { position: relative; padding: 20px 0; }
.milestone__dot {
  position: absolute;
  left: -30px; top: 28px;
  width: 9px; height: 9px;
  border: 1px solid var(--bronze);
  border-radius: 50%;
  background: var(--ivory-warm);
  transition: background-color 0.5s ease-out, border-color 0.5s ease-out, box-shadow 0.5s ease-out;
}
.milestone.is-lit .milestone__dot {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(194,154,75,0.55);
}
.milestone__label {
  display: block;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 400;
  color: var(--ink);
  transition: color 0.5s ease-out;
}
.milestone.is-lit .milestone__label { color: var(--gold-deep); }
.milestone__note { display: block; font-size: 14px; color: var(--ink-soft); max-width: 420px; margin-top: 4px; }

/* ============================================================
   4 · THE QUESTION
   ============================================================ */

.question { padding: var(--pad-section) 0 calc(var(--pad-section) * 1.1); text-align: center; }
.question__headline {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 64px;
}
.question__line { display: block; }
.js-anim .question__line { opacity: 0; transform: translateY(30px); }
.question__lede {
  font-size: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243,238,227,0.72);
  margin-bottom: 56px;
}
.constellation {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 34px;
  max-width: 820px;
  margin: 0 auto;
  padding: 24px 0;
}
.constellation__lines { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; overflow: visible; }
.constellation__lines line { stroke: var(--gold); stroke-width: 0.6; opacity: 0; }
.constellation__word {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(21px, 2.6vw, 32px);
  color: var(--ivory);
  position: relative;
  z-index: 1;
}
.js-anim .constellation__word { opacity: 0; transform: translateY(18px); }

/* ============================================================
   5 · WHAT IS ASHARA NOVA — blueprint
   ============================================================ */

.academy { padding: var(--pad-section) 0; }
.academy__grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}
.blueprint-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 24px 60px -48px rgba(28,35,51,0.45);
}
.js-anim .blueprint-img {
  opacity: 0;
  transform: translateY(24px);
  clip-path: inset(100% 0 0 0);
}
.blueprint-img.is-in {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 0% 0);
  transition: opacity 1.1s var(--ease-major), transform 1.1s var(--ease-major), clip-path 1.6s var(--ease-major);
}

.academy__headline {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.12;
  margin-bottom: 48px;
}
.academy__stages { margin-bottom: 40px; }
.academy__stage {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(21px, 2.2vw, 28px);
  line-height: 1.4;
  padding: 14px 0 14px 24px;
  border-left: 2px solid rgba(28,35,51,0.12);
  color: var(--ink-soft);
  transition: color 0.6s ease-out, border-color 0.6s ease-out;
}
.academy__stage strong { font-weight: 400; }
.academy__stage.is-active { color: var(--ink); border-left-color: var(--gold); }
.academy__body { font-size: 16px; color: var(--ink-soft); max-width: 460px; }

/* ============================================================
   6 · PARTICIPANT JOURNEY
   ============================================================ */

.journey { padding-top: var(--pad-section); }
.journey__intro { padding-bottom: 64px; }
.journey__pin { overflow: hidden; }
.journey__track {
  position: relative;
  display: flex;
  gap: clamp(24px, 3vw, 44px);
  padding: 70px var(--pad-x) var(--pad-section);
  width: max-content;
}
.journey__line {
  position: absolute;
  top: 34px; left: var(--pad-x); right: var(--pad-x);
  height: 1px;
  background: rgba(28,35,51,0.15);
}
.journey__line-progress {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
}
.jstage {
  width: clamp(300px, 26vw, 380px);
  flex: none;
  background: var(--ivory);
  border: 1px solid rgba(28,35,51,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.5s ease-out, box-shadow 0.5s ease-out, transform 0.5s var(--ease-major);
}
.jstage::before {
  content: "";
  position: absolute;
  top: -37px; left: 32px;
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1px solid var(--bronze);
  background: var(--ivory-deep);
  transition: background-color 0.5s ease-out, box-shadow 0.5s ease-out;
}
.jstage.is-active { border-color: var(--gold); box-shadow: 0 18px 50px -30px rgba(28,35,51,0.35); transform: translateY(-6px); }
.jstage.is-active::before { background: var(--gold); box-shadow: 0 0 10px rgba(194,154,75,0.6); }
.jstage__index {
  font-family: var(--display);
  font-size: 15px;
  color: var(--bronze);
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 14px;
}
.jstage__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 29px;
  margin-bottom: 22px;
}
.jstage p { font-size: 13.5px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 14px; }
.jstage p strong { color: var(--ink); font-weight: 600; display: block; margin-bottom: 2px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }

/* ============================================================
   7 · WHO WE SERVE
   ============================================================ */

.serve { padding: var(--pad-section) var(--pad-x); background: var(--ivory); text-align: center; }
.serve__list { max-width: 1000px; margin: 0 auto 72px; }
.serve__item {
  padding: 26px 0;
  border-bottom: 1px solid rgba(28,35,51,0.1);
  cursor: default;
}
.serve__item:first-child { border-top: 1px solid rgba(28,35,51,0.1); }
.serve__word {
  display: block;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.4s ease-out, letter-spacing 0.4s var(--ease-major);
}
.serve__item:hover .serve__word,
.serve__item:focus-visible .serve__word { color: var(--gold-deep); letter-spacing: 0.005em; }
.serve__detail-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s var(--ease-major);
}
.serve__detail {
  display: block;
  overflow: hidden;
  min-height: 0;
  opacity: 0;
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto;
  transition: opacity 0.45s ease-out, padding 0.55s var(--ease-major);
}
/* hover reveal only where hover exists — touch uses the .is-open tap toggle */
@media (hover: hover) and (pointer: fine) {
  .serve__item:hover .serve__detail-wrap { grid-template-rows: 1fr; }
  .serve__item:hover .serve__detail { opacity: 1; padding-top: 12px; }
}
.serve__item:focus-visible .serve__detail-wrap,
.serve__item.is-open .serve__detail-wrap { grid-template-rows: 1fr; }
.serve__item:focus-visible .serve__detail,
.serve__item.is-open .serve__detail { opacity: 1; padding-top: 12px; }
.serve__close {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.35;
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================================
   8 · WHAT WE BELIEVE — pinned
   ============================================================ */

.beliefs__pin { position: relative; }
.beliefs__grid {
  min-height: 100vh;
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px var(--pad-x);
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.beliefs__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
  margin-bottom: 40px;
}
.beliefs__counter {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: flex;
  gap: 8px;
  font-variant-numeric: tabular-nums;
}
.beliefs__counter-sep { color: rgba(243,238,227,0.35); }
.beliefs__right { position: relative; min-height: 240px; }
.belief {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(26px, 3.4vw, 46px);
  line-height: 1.22;
  color: var(--ivory);
  position: absolute;
  inset: auto 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}
.belief.is-current { opacity: 1; }
/* no-JS / reduced-motion fallback: stack them */
body:not(.js-anim) .belief { position: static; transform: none; opacity: 1; margin-bottom: 32px; font-size: clamp(20px, 2.4vw, 30px); }
body:not(.js-anim) .beliefs__grid { min-height: 0; }

/* ============================================================
   9 · A WEEK INSIDE
   ============================================================ */

.week { padding: var(--pad-section) 0; }
.week__timeline { position: relative; margin-top: 72px; }
.week__line {
  position: absolute;
  top: 10px; left: 0; right: 0;
  height: 1px;
  background: rgba(28,35,51,0.14);
}
.week__line-progress {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, rgba(194,154,75,0.35), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
}
.week__days {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  padding-top: 44px;
}
.wday { position: relative; cursor: default; }
.wday::before {
  content: "";
  position: absolute;
  top: -39px; left: 0;
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1px solid var(--bronze);
  background: var(--ivory-warm);
  transition: background-color 0.5s ease-out;
}
.wday.is-lit::before { background: var(--gold); box-shadow: 0 0 10px rgba(194,154,75,0.5); }
.wday__name {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 8px;
}
.wday__theme {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: 27px;
  color: var(--ink);
  margin-bottom: 10px;
}
.wday__detail {
  display: block;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  opacity: 0.85;
  transition: opacity 0.4s ease-out;
}
.wday:hover .wday__detail, .wday:focus-visible .wday__detail { opacity: 1; }

/* ============================================================
   10 · MEMBERSHIP
   ============================================================ */

.membership { padding: var(--pad-section) 0; }
.membership__ladder {
  display: flex;
  gap: 20px;
  align-items: baseline;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 30px);
  color: var(--ink-soft);
  margin: 8px 0 20px;
}
.membership__arrow { color: var(--gold-deep); font-size: 0.8em; }
.membership__anchor {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border-left: 2px solid var(--gold);
  padding-left: 14px;
  margin-bottom: 64px;
  min-height: 20px;
  transition: opacity 0.3s ease-out;
}
.membership__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}
.tier {
  background: var(--stone-pale);
  border: 1px solid rgba(28,35,51,0.14);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.45s ease-out, background-color 0.45s ease-out, box-shadow 0.45s ease-out;
}
.tier:hover { border-color: var(--gold); background: #FAF6EA; box-shadow: 0 24px 60px -40px rgba(28,35,51,0.4); }
.tier--emphasis { border-color: rgba(194,154,75,0.55); background: #FAF5E7; }
.tier__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 18px;
}
.tier--invite .tier__eyebrow { color: var(--terracotta); }
.tier__name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 31px;
  line-height: 1.15;
  margin-bottom: 18px;
}
.tier__identity { font-size: 14.5px; line-height: 1.65; color: var(--ink-soft); margin-bottom: 28px; }
.tier__list { margin-bottom: 36px; flex: 1; }
.tier__list li {
  font-size: 13.5px;
  padding: 10px 0 10px 24px;
  border-bottom: 1px solid rgba(28,35,51,0.08);
  position: relative;
  color: var(--ink);
}
.tier__list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 50%;
  width: 10px; height: 1px;
  background: var(--gold-deep);
}
.tier__cta { justify-content: center; }

/* ============================================================
   11 · IMPACT
   ============================================================ */

.impact { padding: var(--pad-section) 0; }
.impact__note { max-width: 560px; color: var(--ink-soft); margin-bottom: 72px; }
.impact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 56px;
}
.metric { border-top: 1px solid rgba(28,35,51,0.16); padding-top: 24px; }
.metric__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  border: 1px solid rgba(169,96,63,0.35);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 16px;
}
.metric__number {
  display: block;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.metric__label { display: block; font-size: 13.5px; color: var(--ink-soft); margin-bottom: 18px; }
.metric__bar {
  display: block;
  height: 2px;
  background: rgba(28,35,51,0.1);
  overflow: hidden;
}
.metric__fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
}

/* ============================================================
   12 · FOUNDER VIDEO
   ============================================================ */

.video { padding: var(--pad-section) 0; }
.video__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 30px 70px -50px rgba(28,35,51,0.6);
}
.video__still {
  position: absolute; inset: 0;
  background: linear-gradient(155deg, #201F1C 0%, #45392A 45%, #7A6344 75%, #2C271F 100%);
}
.video__still-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.video__still-light {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 25%, rgba(255,235,190,0.35), transparent 55%);
  transition: opacity 0.6s ease-out;
}
.video__still-mark {
  position: absolute;
  left: 50%; top: 42%;
  width: 70px;
  transform: translate(-50%, -50%);
  color: rgba(243,238,227,0.18);
}
.video__play {
  position: absolute;
  left: 50%; top: 42%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  border: 1px solid rgba(243,238,227,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  transition: border-color 0.35s ease-out, box-shadow 0.35s ease-out;
}
.video__play svg { width: 26px; height: 26px; margin-left: 4px; }
.video__frame:hover .video__play { border-color: var(--gold-light); box-shadow: 0 0 0 1px rgba(227,200,136,0.4), 0 0 30px rgba(227,200,136,0.25); }
.video__frame:hover .video__still-light { opacity: 1.4; }
.video__caption {
  position: absolute;
  left: 0; right: 0; top: 28px;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(19px, 2vw, 26px);
  color: var(--ivory);
  text-shadow: 0 2px 18px rgba(14,22,38,0.55);
}
.video__caption em { color: var(--gold-light); font-style: italic; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(14,22,38,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6vh var(--pad-x);
}
.lightbox[hidden] { display: none; }
.lightbox__close {
  position: absolute;
  top: 20px; right: 24px;
  padding: 14px 18px;
  color: var(--ivory);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.lightbox__close:hover { color: var(--gold-light); }
.lightbox__body { width: min(1080px, 100%); aspect-ratio: 16/9; background: #000; border: 1px solid rgba(243,238,227,0.14); border-radius: var(--radius-lg); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.lightbox__body video { width: 100%; height: 100%; object-fit: contain; background: #000; }

/* ============================================================
   14 · BUILD WITH US
   ============================================================ */

.build { padding: var(--pad-section) 0; }
.build__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 64px;
}
.bpath {
  border: 1px solid rgba(243,238,227,0.16);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: border-color 0.45s ease-out, background-color 0.45s ease-out;
}
.bpath:hover, .bpath:focus-visible { border-color: var(--gold); background: rgba(194,154,75,0.06); }
.bpath__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 30px;
  color: var(--ivory);
  margin-bottom: 20px;
}
.bpath p { font-size: 13.5px; line-height: 1.6; color: rgba(243,238,227,0.8); margin-bottom: 12px; }
.bpath p strong { color: var(--gold-light); font-weight: 600; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; display: block; margin-bottom: 2px; }
.bpath__cta {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease-out;
}
.bpath__cta:hover { border-color: var(--gold-light); }

/* ============================================================
   15 · DONOR
   ============================================================ */

.donor { padding: var(--pad-section) 0; color: var(--navy); }
.donor .eyebrow { color: var(--navy-mid); }
.donor .h2 { color: var(--navy); }
.donor__flow { position: relative; margin: 80px 0 72px; }
.donor__flow-line {
  position: absolute;
  top: 10px; left: 0; right: 0;
  height: 1px;
  background: rgba(14,22,38,0.25);
}
.donor__flow-progress {
  display: block;
  height: 100%;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
}
.donor__stages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 40px;
}
.dstage { position: relative; opacity: 0.7; transition: opacity 0.5s ease-out; }
.dstage.is-lit { opacity: 1; }
.dstage::before {
  content: "";
  position: absolute;
  top: -35px; left: 0;
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1px solid var(--navy);
  background: transparent;
  transition: background-color 0.5s ease-out;
}
.dstage.is-lit::before { background: var(--navy); }
.dstage__amount {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(30px, 3vw, 44px);
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.dstage__result { display: block; font-size: 14px; line-height: 1.55; color: rgba(14,22,38,0.75); max-width: 230px; }
.donor__actions { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.donor__secondary {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid rgba(14,22,38,0.4);
  padding: 10px 0 3px;
  transition: border-color 0.3s ease-out;
}
.donor__secondary:hover { border-color: var(--navy); }
.donor__filetype { text-transform: none; letter-spacing: 0.02em; font-weight: 500; opacity: 0.75; }

/* ============================================================
   CLOSING CTA
   ============================================================ */

.closing { padding: calc(var(--pad-section) * 0.7) 0; }
.closing__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.closing__line {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.2;
  color: var(--ink);
}

/* ============================================================
   16 · FOOTER
   ============================================================ */

.footer {
  background: #0A101D;
  color: rgba(243,238,227,0.7);
  padding: 0 0 48px;
}
.footer__rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
}
.footer.is-in .footer__rule { transform: scaleX(1); transition: transform 1.2s var(--ease-major); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px;
  padding-top: 88px;
  padding-bottom: 72px;
}
.footer__mark { width: 30px; height: 30px; color: var(--gold); margin-bottom: 16px; }
.footer__wordmark {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 300;
  color: var(--ivory);
  display: block;
  margin-bottom: 10px;
}
.footer__tag { font-size: 13.5px; }
.footer__nav { display: flex; flex-direction: column; gap: 14px; }
.footer__nav a { font-size: 14px; transition: color 0.3s ease-out; }
.footer__nav a:hover { color: var(--gold-light); }
.footer__contact a { font-size: 15px; color: var(--ivory); display: inline-block; margin-bottom: 14px; border-bottom: 1px solid rgba(194,154,75,0.5); padding-bottom: 2px; }
.footer__contact p { font-size: 12.5px; line-height: 1.7; color: rgba(243,238,227,0.6); }
.footer__final {
  text-align: center;
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(243,238,227,0.85);
  padding: 0 var(--pad-x) 40px;
}
.footer__legal { text-align: center; font-size: 12px; color: rgba(243,238,227,0.55); }
.footer__nav a { padding: 4px 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1080px) {
  .moment__stats { grid-template-columns: repeat(2, 1fr); }
  .impact__grid { grid-template-columns: repeat(2, 1fr); }
  .build__grid { grid-template-columns: repeat(2, 1fr); }
  .membership__grid { grid-template-columns: 1fr; max-width: 560px; }
  .week__days { grid-template-columns: repeat(2, 1fr); gap: 40px 28px; }
  .week__line { display: none; }
  .wday::before { display: none; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .btn--nav { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-hidden { transform: none; } /* the only nav must never disappear on mobile */
  .story__grid, .academy__grid, .beliefs__grid { grid-template-columns: 1fr; }
  .story__portrait { position: static; max-width: 420px; }
  /* journey: vertical on mobile */
  .journey__track { flex-direction: column; width: auto; padding-top: 24px; }
  .journey__line { display: none; }
  .jstage { width: 100%; }
  .jstage::before { display: none; }
  .beliefs__grid { min-height: 0; padding: 88px var(--pad-x); }
  .belief { position: static; transform: none; opacity: 1; margin-bottom: 28px; font-size: clamp(21px, 5.4vw, 30px); }
  .beliefs__counter { display: none; }
  .donor__stages { grid-template-columns: repeat(2, 1fr); gap: 40px 28px; }
  .dstage { opacity: 1; }
  .dstage::before { display: none; }
  .donor__flow-line { display: none; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 560px) {
  .moment__stats { grid-template-columns: 1fr; }
  .impact__grid { grid-template-columns: 1fr; }
  .build__grid { grid-template-columns: 1fr; }
  .week__days { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .donor__actions { flex-direction: column; align-items: stretch; }
  .donor__actions .btn { justify-content: center; }
  .membership__ladder { flex-wrap: wrap; }
}

/* no-anim (reduced motion / no JS animation): journey wraps instead of scrubbing */
body.no-anim .journey__track { flex-wrap: wrap; width: auto; }
body.no-anim .journey__line { display: none; }
body.no-anim .jstage::before { display: none; }
body:not(.js-anim) .journey__track { flex-wrap: wrap; width: auto; }
body:not(.js-anim) .journey__line { display: none; }
body:not(.js-anim) .jstage::before { display: none; }

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js-anim .reveal,
  .js-anim .hero__phrase,
  .js-anim .hero__sub,
  .js-anim .hero__actions,
  .js-anim .hero__guide-line,
  .js-anim .question__line,
  .js-anim .constellation__word { opacity: 1 !important; transform: none !important; }
  .hero__particles { display: none; }
}
