/* ============================================================================
   KROSS EFFECT · Direction 2 · DARK CINEMATIC
   A luxury brand film on black: centered serif, a single warm gold glow,
   film grain + vignette. Silver reads; gold is the light in the room.
   ============================================================================ */

:root {
  --bg:        #0A0A0C;
  --bg-2:      #101013;
  --panel:     #121114;

  --silver:    #E8E9ED;   /* primary readable text                 */
  --muted:     #A7A29A;   /* body copy (>= 7:1 on ground)          */
  --dim:       #8E897C;   /* small labels / eyebrows (>= 5.5:1)    */
  --faint:     #565349;   /* decorative marks ONLY, never text     */

  --gold:      #C6A253;   /* champagne accent                      */
  --gold-brt:  #E3C77C;   /* hover / emphasis                      */
  --gold-deep: #A6863F;
  --ink:       #100D06;   /* near-black text on any gold fill      */

  --line:      rgba(231,232,236,0.11);
  --line-2:    rgba(231,232,236,0.24);
  --gold-line: rgba(198,162,83,0.34);
  --gold-glow: rgba(198,162,83,0.16);

  --serif: "Bodoni Moda", Didot, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  --wrap: 1140px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-line: cubic-bezier(.19,1,.22,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  background: var(--bg);
  color: var(--silver);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--gold); color: var(--ink); }
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(22px, 5vw, 56px); }
.measure { max-width: 58ch; margin-left: auto; margin-right: auto; }

/* ---- Skip link ---------------------------------------------------------- */
.skip-link {
  position: fixed; top: 10px; left: 50%; transform: translateX(-50%) translateY(-160%);
  z-index: 400; background: var(--gold); color: var(--ink);
  padding: 11px 20px; border-radius: 3px; font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none; font-weight: 600;
  transition: transform .25s var(--ease);
}
.skip-link:focus { transform: translateX(-50%) translateY(0); }

/* ---- Cinematic overlays ------------------------------------------------- */
.grain {
  position: fixed; inset: 0; z-index: 40; pointer-events: none;
  opacity: 0.05; mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='170' height='170'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.vignette {
  position: fixed; inset: 0; z-index: 30; pointer-events: none;
  background: radial-gradient(135% 95% at 50% 36%, transparent 50%, rgba(0,0,0,0.55) 100%);
}

/* ---- Shared type helpers ------------------------------------------------ */
.eyebrow {
  font-family: var(--sans); font-weight: 500; font-size: 12px;
  letter-spacing: 0.30em; text-transform: uppercase; color: var(--dim);
}
.serif { font-family: var(--serif); }
.serif em, em.emph { font-style: italic; font-weight: 400; }

.section-head { text-align: center; margin: 0 auto clamp(48px, 7vh, 84px); }
.section-head .eyebrow { margin-bottom: 20px; }
.section-title {
  font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em;
  font-size: clamp(2rem, 5.2vw, 3.5rem); line-height: 1.04; color: var(--silver);
}
.section-title em { font-style: italic; }
.section-sub {
  margin: 22px auto 0; max-width: 52ch; color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem); font-weight: 300;
}

/* centered hairline divider */
.hair { width: 38px; height: 1px; background: var(--line-2); margin: 26px auto; }
.hair-gold { background: var(--gold-line); }

/* ---- Text links (italic serif, underline wipe) -------------------------- */
.textlink {
  position: relative; display: inline-block; font-family: var(--serif);
  font-style: italic; font-size: 1.18rem; color: var(--silver); text-decoration: none;
  padding-bottom: 3px;
}
.textlink::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--gold); transform: scaleX(1); transform-origin: left;
  transition: transform .5s var(--ease);
}
.textlink:hover { color: var(--silver); }
.textlink:hover::after { transform: scaleX(0); transform-origin: right; }
.textlink .arw { font-style: normal; margin-left: 7px; color: var(--gold); }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  --bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: 12px;
  letter-spacing: 0.20em; text-transform: uppercase; line-height: 1;
  padding: 16px 32px; border: 1px solid var(--bd); border-radius: 2px;
  background: transparent; color: var(--silver); cursor: pointer; text-decoration: none;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--ink); --bd: var(--gold); }
.btn-gold:hover { background: var(--gold-brt); --bd: var(--gold-brt); }
.btn-ghost { --bd: var(--line-2); color: var(--silver); }
.btn-ghost:hover { --bd: var(--gold-line); background: rgba(198,162,83,0.06); }
.btn:disabled { opacity: .6; cursor: progress; }
.btn-block { width: 100%; }

/* ---- Focus ring --------------------------------------------------------- */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold-brt); outline-offset: 3px; border-radius: 1px;
}

/* ============================================================================
   HEADER / NAV
   No backdrop-filter on the header: it is a fixed ancestor of the mobile
   drawer, and filter/transform on an ancestor would trap that fixed drawer.
   A near-solid ground keeps the drawer anchored to the viewport.
   ============================================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,12,0.72);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(9,9,11,0.94);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; }
.brand-badge {
  width: 38px; height: 38px; border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line-2);
}
.brand-word {
  font-family: var(--serif); font-weight: 500; font-size: 15px;
  letter-spacing: 0.40em; text-transform: uppercase; text-indent: 0.40em;
  color: var(--silver);
}

.site-nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 38px); }
.site-nav a:not(.nav-cta) {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--dim); text-decoration: none; transition: color .3s var(--ease);
}
.site-nav a:not(.nav-cta):hover { color: var(--silver); }
.nav-cta { font-size: 11px; padding: 11px 22px; }

/* nav toggle (mobile only) */
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line-2);
  border-radius: 3px; background: transparent; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  /* Stay above the open drawer (z-index:200) so the X remains tappable. */
  position: relative; z-index: 300;
}
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: var(--silver); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.site-nav.is-open ~ .nav-toggle span:first-child,
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child  { transform: translateY(-3px) rotate(-45deg); }

/* ============================================================================
   HERO
   ============================================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 128px 0 96px;
}
.hero-glow {
  position: absolute; top: 44%; left: 50%; z-index: 0; pointer-events: none;
  width: min(94vw, 860px); height: 64vh; transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, var(--gold-glow), rgba(198,162,83,0.05) 46%, transparent 72%);
  filter: blur(12px);
}
.hero-inner { position: relative; z-index: 1; }
.hero .eyebrow { margin-bottom: 32px; }
.hero h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(3rem, 11vw, 8.6rem); line-height: 0.98; letter-spacing: -0.012em;
  color: var(--silver);
}
.hero h1 .line { display: block; overflow: hidden; padding-bottom: 0.14em; }
.hero h1 .line > span { display: inline-block; }
.hero h1 em { font-style: italic; font-weight: 400; }
.hero-lead {
  margin: 34px auto 0; max-width: 46ch; color: var(--muted); font-weight: 300;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem); line-height: 1.6;
}
.hero-cta {
  margin-top: 44px; display: flex; gap: 26px 34px; align-items: center;
  justify-content: center; flex-wrap: wrap;
}
.hero-scroll {
  position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%);
  z-index: 1; font-size: 10.5px; letter-spacing: 0.30em; text-transform: uppercase;
  color: var(--dim); display: inline-flex; flex-direction: column; align-items: center; gap: 12px;
  text-decoration: none;
}
.hero-scroll .bar { width: 1px; height: 40px; background: linear-gradient(var(--gold-line), transparent); }
.hero-scroll:hover { color: var(--silver); }

/* ============================================================================
   SECTION RHYTHM
   ============================================================================ */
.section { position: relative; padding: clamp(84px, 13vh, 168px) 0; }
.section + .section, .ethos + .section { border-top: 1px solid var(--line); }

/* ---- ETHOS -------------------------------------------------------------- */
.ethos { position: relative; padding: clamp(84px, 13vh, 168px) 0; border-top: 1px solid var(--line); }
.ethos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; text-align: center; align-items: start;
}
.ethos-col { padding: 0 clamp(14px, 3vw, 40px); position: relative; }
.ethos-col + .ethos-col { border-left: 1px solid var(--line); }
.ethos-word {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1; color: var(--silver);
  letter-spacing: -0.01em;
}
.ethos-col .hair { margin: 22px auto; }
.ethos-col p { color: var(--muted); font-weight: 300; max-width: 32ch; margin: 0 auto; font-size: 1rem; }

/* ---- COACH (centered campaign portrait + copy) -------------------------- */
.coach { text-align: center; }
.coach-inner { max-width: 760px; margin: 0 auto; }
.plate {
  position: relative; aspect-ratio: 4 / 5; width: min(88vw, 400px); margin: 0 auto 46px;
  border: 1px solid var(--line-2);
  background:
    radial-gradient(130% 110% at 50% 24%, #1b1a18 0%, #101011 58%, #0b0b0c 100%);
  display: grid; place-items: center; overflow: hidden;
}
.plate::after {
  content: ""; position: absolute; inset: 12px; border: 1px solid var(--gold-line);
  pointer-events: none;
}
.plate img { width: 100%; height: 100%; object-fit: cover; }
.plate-placeholder {
  position: relative; z-index: 1; font-size: 11px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--dim);
}
.coach .eyebrow { margin-bottom: 18px; }
.coach .section-title { margin-bottom: 30px; }
.coach-copy p { color: var(--muted); font-weight: 300; max-width: 56ch; margin: 0 auto 18px; }
.cred-row {
  list-style: none; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  margin-top: 34px;
}
.cred-row li {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--dim);
  border: 1px dashed var(--line-2); border-radius: 40px; padding: 9px 18px;
}

/* ---- SERVICES (two symmetric panels) ------------------------------------ */
.services-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  max-width: 940px; margin: 0 auto; border: 1px solid var(--line);
}
.svc {
  text-align: center; padding: clamp(34px, 5vw, 56px) clamp(24px, 4vw, 48px);
}
.svc + .svc { border-left: 1px solid var(--line); }
.svc .eyebrow { margin-bottom: 16px; }
.svc-title {
  font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.05; color: var(--silver); margin-bottom: 18px;
}
.svc > p { color: var(--muted); font-weight: 300; max-width: 42ch; margin: 0 auto; }
.svc-list { list-style: none; margin: 26px auto 30px; max-width: 34ch; }
.svc-list li {
  color: var(--muted); font-size: 15px; padding: 11px 0; border-top: 1px solid var(--line);
}
.svc-list li:first-child { border-top: 0; }

/* ---- METHOD (centered serif ledger) ------------------------------------- */
.method-list { list-style: none; max-width: 640px; margin: 0 auto; }
.method-step { text-align: center; padding: clamp(30px, 5vh, 52px) 0; position: relative; }
.method-step + .method-step { border-top: 1px solid var(--line); }
.method-num {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.6rem, 4vw, 2.4rem); color: var(--gold); line-height: 1;
  display: block; margin-bottom: 14px;
}
.method-name {
  font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  color: var(--silver); line-height: 1.05; margin-bottom: 14px;
}
.method-step p { color: var(--muted); font-weight: 300; max-width: 46ch; margin: 0 auto; }

/* ============================================================================
   STORE
   ============================================================================ */
.store { text-align: center; }

.seg-control {
  display: inline-flex; align-items: stretch; gap: 4px; margin: 0 auto clamp(40px, 6vh, 66px);
  padding: 5px; border: 1px solid var(--line-2); border-radius: 46px; background: rgba(255,255,255,0.015);
}
.seg {
  font-family: var(--sans); font-weight: 500; font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--dim); background: transparent; border: 0;
  border-radius: 40px; padding: 11px 26px; cursor: pointer;
  transition: color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.seg:hover { color: var(--silver); }
.seg[aria-pressed="true"] {
  color: var(--silver); background: rgba(231,232,236,0.055);
  box-shadow: inset 0 -1px 0 0 var(--gold);
}

.program-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px; max-width: 860px; margin: 0 auto; align-items: stretch;
}
.program-card {
  position: relative; display: flex; flex-direction: column; text-align: center;
  padding: 42px 30px 34px; border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.016), rgba(255,255,255,0) 60%);
}
.program-card.is-featured {
  border-color: var(--gold-line);
  box-shadow: 0 0 0 1px rgba(198,162,83,0.16), 0 40px 90px -50px rgba(198,162,83,0.5);
  background:
    radial-gradient(120% 70% at 50% 0%, rgba(198,162,83,0.09), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0) 60%);
}
.program-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  padding: 6px 14px; border-radius: 40px; white-space: nowrap;
  color: var(--silver); background: var(--bg-2); border: 1px solid var(--line-2);
}
.program-card.is-featured .program-badge {
  color: var(--ink); background: var(--gold); border-color: var(--gold);
}
.program-kicker {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--dim);
  margin-bottom: 14px;
}
.program-name {
  font-family: var(--serif); font-weight: 400; font-size: clamp(1.6rem, 3vw, 2rem);
  line-height: 1.04; color: var(--silver); margin-bottom: 18px;
}
.program-price {
  display: flex; align-items: baseline; justify-content: center; gap: 8px;
  margin-bottom: 20px; min-height: 42px;
}
.price-amount {
  font-family: var(--serif); font-weight: 500; font-size: clamp(2rem, 4.4vw, 2.7rem);
  color: var(--gold); line-height: 1;
}
.price-interval { font-size: 12px; letter-spacing: 0.06em; color: var(--dim); }
.price-consult {
  font-family: var(--serif); font-style: italic; font-size: 1.6rem; color: var(--gold);
}
.program-summary { color: var(--muted); font-weight: 300; font-size: 15px; margin: 0 auto 22px; max-width: 34ch; }

.program-specs { margin: 0 auto 22px; max-width: 30ch; width: 100%; }
.spec-row { display: flex; align-items: baseline; gap: 8px; font-size: 13px; padding: 5px 0; }
.spec-label { color: var(--dim); letter-spacing: 0.02em; white-space: nowrap; }
.spec-dots { flex: 1; border-bottom: 1px dotted var(--line-2); transform: translateY(-3px); }
.spec-val { color: var(--muted); white-space: nowrap; }

.program-features { list-style: none; margin: 0 0 28px; text-align: center; }
.program-features li {
  color: var(--muted); font-size: 14px; padding: 10px 0; border-top: 1px solid var(--line);
}
.program-card .btn-buy { margin-top: auto; }
.program-card:not(.is-featured) .btn-buy { border: 1px solid var(--line-2); color: var(--silver); background: transparent; }
.program-card:not(.is-featured) .btn-buy:hover { border-color: var(--gold-line); background: rgba(198,162,83,0.06); }
.program-card.is-featured .btn-buy { background: var(--gold); color: var(--ink); }
.program-card.is-featured .btn-buy:hover { background: var(--gold-brt); }
.program-delivery { margin-top: 16px; font-size: 12px; color: var(--dim); font-weight: 300; }

.store-note { margin: clamp(40px, 6vh, 64px) auto 0; max-width: 48ch; color: var(--dim); font-size: 14px; font-weight: 300; }
.store-error { color: var(--muted); max-width: 44ch; margin: 0 auto; }

/* ============================================================================
   PROOF / TESTIMONIAL
   ============================================================================ */
.proof { text-align: center; position: relative; }
.proof .eyebrow { margin-bottom: 40px; }
.proof-quote { position: relative; max-width: 20ch; margin: 0 auto; }
.proof-quote::before {
  content: "\201C"; font-family: var(--serif); font-size: 6rem; line-height: 0.6;
  color: var(--gold-line); display: block; margin-bottom: 6px;
}
.proof-quote p {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(1.6rem, 4.4vw, 3rem); line-height: 1.18; color: var(--silver);
  letter-spacing: -0.01em; max-width: 22ch; margin: 0 auto;
}
.proof-quote cite {
  display: block; margin-top: 30px; font-style: normal; font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--dim);
}

/* ============================================================================
   CONTACT
   ============================================================================ */
.contact { text-align: center; }
.contact-crest { width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 26px; box-shadow: 0 0 0 1px var(--line-2); }
.contact-form { max-width: 540px; margin: clamp(44px, 6vh, 66px) auto 0; text-align: left; }
.field { margin-bottom: 22px; }
.field label {
  display: block; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 10px;
}
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 16px; color: var(--silver);
  background: rgba(255,255,255,0.02); border: 1px solid var(--line-2); border-radius: 3px;
  padding: 14px 16px; transition: border-color .3s var(--ease), background .3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold-line); background: rgba(255,255,255,0.035);
}
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%238E897C' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.field textarea { resize: vertical; min-height: 120px; }
.contact-form .btn-block { margin-top: 6px; }

/* honeypot: removed from view AND from the a11y / tab order */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.contact-status { margin-top: 18px; font-size: 14px; min-height: 1.2em; text-align: center; }
.contact-status.is-pending { color: var(--dim); }
.contact-status.is-ok { color: var(--gold-brt); }
.contact-status.is-error { color: #E7A6A0; }

.contact-alt { margin-top: 40px; color: var(--muted); font-weight: 300; font-size: 15px; }
.contact-alt a {
  font-family: var(--serif); font-style: italic; font-size: 1.12rem; color: var(--silver);
  text-decoration: none; position: relative; padding-bottom: 2px;
}
.contact-alt a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--gold); transform-origin: left; transition: transform .45s var(--ease);
}
.contact-alt a:hover::after { transform: scaleX(0); transform-origin: right; }
.contact-alt .sep { color: var(--faint); margin: 0 10px; }

/* ============================================================================
   FOOTER
   ============================================================================ */
.site-footer {
  border-top: 1px solid var(--line); text-align: center;
  padding: clamp(64px, 10vh, 120px) 0 56px;
}
.footer-badge { width: 46px; height: 46px; border-radius: 50%; margin: 0 auto 24px; box-shadow: 0 0 0 1px var(--line-2); }
.footer-tag { margin-bottom: 34px; }
.footer-nav { display: flex; gap: 14px 30px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.footer-nav a {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--dim);
  text-decoration: none; transition: color .3s var(--ease);
}
.footer-nav a:hover { color: var(--silver); }
.footer-copy { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dim); }

/* ============================================================================
   MOTION · reveal system (gated behind .js so no-JS shows everything)
   ============================================================================ */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1.1s var(--ease); }
.js .reveal.is-revealed { opacity: 1; transform: none; }

/* grouped stagger */
.js .ethos-grid .reveal.is-revealed:nth-child(2) { transition-delay: .12s; }
.js .ethos-grid .reveal.is-revealed:nth-child(3) { transition-delay: .24s; }
.js .method-step.reveal.is-revealed:nth-child(2) { transition-delay: .08s; }
.js .method-step.reveal.is-revealed:nth-child(3) { transition-delay: .16s; }
.js .method-step.reveal.is-revealed:nth-child(4) { transition-delay: .24s; }
.js .program-card.reveal.is-revealed:nth-child(2) { transition-delay: .1s; }
.js .program-card.reveal.is-revealed:nth-child(3) { transition-delay: .2s; }
.js .program-card.reveal.is-revealed:nth-child(4) { transition-delay: .3s; }
.js .hero-cta.reveal.is-revealed { transition-delay: .2s; }

/* hero line reveal */
.js .hero h1 .line > span { transform: translateY(118%); transition: transform 1.1s var(--ease-line); }
.js .hero h1.is-in .line:nth-child(2) > span { transition-delay: .12s; }
.js .hero h1.is-in .line > span { transform: translateY(0); }

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 900px) {
  .ethos-grid { grid-template-columns: 1fr; }
  .ethos-col { padding: 40px 0; }
  .ethos-col + .ethos-col { border-left: 0; border-top: 1px solid var(--line); }
  .ethos-col .hair { margin: 18px auto; }
  .services-grid { grid-template-columns: 1fr; }
  .svc + .svc { border-left: 0; border-top: 1px solid var(--line); }
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }

  /* Mobile drawer. It is fixed to the viewport; the header carries NO
     filter/transform so it does not become the drawer's containing block.
     Closed = visibility:hidden -> out of the tab order and a11y tree. */
  .site-nav {
    position: fixed; inset: 0; z-index: 200;
    flex-direction: column; align-items: center; justify-content: center; gap: 30px;
    background: rgba(9,9,11,0.98);
    visibility: hidden; opacity: 0; transform: translateY(-8px);
    transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s var(--ease);
  }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .site-nav a:not(.nav-cta) {
    font-family: var(--serif); font-style: italic; font-size: 1.9rem; letter-spacing: 0;
    text-transform: none; color: var(--silver);
  }
  .nav-cta { margin-top: 10px; font-size: 12px; padding: 15px 30px; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .hero { padding-top: 116px; }
  .program-card { padding: 38px 24px 30px; }
  .cred-row li { padding: 8px 14px; }
}

/* ============================================================================
   REDUCED MOTION · kill all motion, show everything immediately
   ============================================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal,
  .js .reveal.is-revealed,
  .js .hero h1 .line > span,
  .js .hero h1.is-in .line > span {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
  * { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
}

/* ============================================================================
   MULTI-PAGE ADDITIONS (promotion of Direction 2 to a multi-page site)
   ============================================================================ */

/* active page marker in the nav */
.site-nav a[aria-current="page"] { color: var(--silver); }
.site-nav a:not(.nav-cta)[aria-current="page"] { position: relative; }
.site-nav a:not(.nav-cta)[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -7px; height: 1px;
  background: var(--gold);
}
.footer-nav a[aria-current="page"] { color: var(--silver); }

/* interior page hero (shorter than the home hero) */
.page-hero {
  position: relative; text-align: center;
  padding: clamp(150px, 22vh, 212px) 0 clamp(56px, 9vh, 100px);
}
.page-glow {
  position: absolute; top: 34%; left: 50%; z-index: 0; pointer-events: none;
  width: min(90vw, 640px); height: 46vh; transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, var(--gold-glow), rgba(198,162,83,0.04) 46%, transparent 72%);
  filter: blur(12px);
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .eyebrow { margin-bottom: 22px; }
.page-hero h1 {
  font-family: var(--serif); font-weight: 400; letter-spacing: -0.012em;
  font-size: clamp(2.6rem, 7.5vw, 5.6rem); line-height: 1.0; color: var(--silver);
}
.page-hero h1 em { font-style: italic; }
.page-hero .lead {
  margin: 26px auto 0; max-width: 50ch; color: var(--muted); font-weight: 300;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

/* next-step band at the bottom of each page */
.cta-band {
  border-top: 1px solid var(--line); text-align: center;
  padding: clamp(76px, 12vh, 140px) 0; position: relative; overflow: hidden;
}
.cta-band .band-glow {
  position: absolute; top: 60%; left: 50%; pointer-events: none;
  width: min(90vw, 560px); height: 50vh; transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(198,162,83,0.10), transparent 70%);
  filter: blur(12px);
}
.cta-band .wrap { position: relative; }
.cta-band h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.9rem, 4.6vw, 3.2rem); line-height: 1.06; color: var(--silver);
  margin-bottom: 34px;
}
.cta-band h2 em { font-style: italic; }
.cta-band .sub { color: var(--dim); font-size: 14px; margin-top: 24px; font-weight: 300; }

/* home page: compact teaser block that sends people deeper */
.teaser { text-align: center; }
.teaser .btn { margin-top: 8px; }
.teaser-link { margin-top: clamp(34px, 5vh, 52px); }

/* results page: placeholder plates for future client proof */
.result-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px; max-width: 940px; margin: 0 auto;
}
.result-plate {
  aspect-ratio: 4 / 5; border: 1px solid var(--line-2); position: relative;
  display: grid; place-items: center; padding: 24px;
  background: radial-gradient(130% 110% at 50% 24%, #1b1a18 0%, #101011 58%, #0b0b0c 100%);
}
.result-plate::after {
  content: ""; position: absolute; inset: 12px; border: 1px solid var(--gold-line);
  pointer-events: none;
}
.result-plate span {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--dim);
  text-align: center; line-height: 2.1; max-width: 24ch;
}
.results-note {
  margin: clamp(40px, 6vh, 60px) auto 0; max-width: 52ch; text-align: center;
  color: var(--dim); font-size: 14px; font-weight: 300;
}

/* proof quote: widen the measure. The base system's 20ch cap is computed at
   body font size (~170px) and collapses the quote to one word per line. */
.proof-quote { max-width: 760px; }
