/* ═══════════════════════════════════════════════════════════════════════════
   SOULFORCE ARTS INSTITUTE — Home
   Brand voice: Sage. Beautifully made hardcover. Lit from within.
   ═══════════════════════════════════════════════════════════════════════════ */

@font-face {
  font-family: "TheQueen";
  src: url("assets/TheQueen-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

/* Drop-cap-only alias: TheQueen ships oversized vertical metrics
   (winAscent 1.4em, cap height only 0.7em), which bake ~0.7em of
   invisible space above every capital. Overriding the metrics to the
   real cap height makes the glyph box top == the cap's visual top, so
   the drop cap aligns predictably at any (responsive) font size.
   Scoped to a separate family so headings keep the original metrics. */
@font-face {
  font-family: "TheQueen Cap";
  src: url("assets/TheQueen-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  ascent-override: 70%;
  descent-override: 0%;
  line-gap-override: 0%;
}

:root {
  /* Forest greens — emotional / immersive grounds */
  --green-deep:    #163230;
  --green-deeper:  #0F2422;
  --green-mid:     #1E4D2B;
  --green-warm:    #173404;
  --green-nature:  #5A6C37;
  --green-leaf:    #A3C468;
  --green-mist:    #EAF3DE;

  /* Gold — precious, sparing */
  --gold:          #DEBE51;
  --gold-hot:      #EFDB66;
  --gold-warm:     #BB8326;
  --gold-deep:     #8E5F18;
  --gold-pale:     #FAC775;
  --gold-ink:      rgba(187, 131, 38, 0.95);
  --gold-ghost:    rgba(222, 190, 81, 0.12);

  /* Cobalt — secondary, ONE section only + secondary CTA */
  --cobalt:        #335686;
  --cobalt-deep:   #233E63;
  --teal:          #2E4B55;

  /* Paper light grounds */
  --paper:         #FBFAF5;
  --paper-warm:    #F4EFE3;
  --paper-mist:    #F1EEDF;
  --cream:         #EDE6D6;
  --ink:           #181E1B;
  --ink-soft:      #36403B;
  --ink-mute:      #6F766E;
  --ink-faint:     #A8AEA5;
  --rule:          rgba(24, 30, 27, 0.10);
  --rule-on-dark:  rgba(255, 255, 255, 0.12);

  /* Type */
  --serif:   "TheQueen", "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans:    "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --gut:        clamp(1.25rem, 4vw, 2rem);
  --page-pad:   clamp(1.5rem, 6vw, 5rem);
  --section-y:  clamp(6rem, 13vw, 11rem);
  --max-w:      1280px;
  --read-w:     62ch;
  --copy-w:     520px;

  /* Kicker */
  --kicker-size: 11px;
  --kicker-track: 0.28em;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; padding: 0; color: inherit; }
a { color: inherit; text-decoration: none; }

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

/* ─── Subtle paper grain overlay ─────────────────────────────────────────── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ─── Typography primitives ─────────────────────────────────────────────── */

.serif-only { font-family: var(--serif); font-weight: 400; }

.h-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0;
  text-wrap: balance;
}
.h-section {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: 0.008em;
  text-transform: uppercase;
  margin: 0;
  text-wrap: balance;
}
.h-sub {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.15;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  margin: 0;
}

/* Kicker — small label above each heading */
.kicker {
  font-family: var(--sans);
  font-weight: 600;
  font-size: var(--kicker-size);
  letter-spacing: var(--kicker-track);
  text-transform: uppercase;
  color: var(--gold-warm);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.kicker::before {
  content: "";
  width: 36px; height: 1px;
  background: currentColor;
  display: inline-block;
}
.on-dark .kicker, .kicker.on-dark { color: var(--gold); }

/* Centered sections: balance the kicker with a line on both sides */
.s-pillars .kicker::after,
.s-plan .kicker::after,
.s-proof .head .kicker::after,
.s-stakes .kicker::after {
  content: "";
  width: 36px; height: 1px;
  background: currentColor;
  display: inline-block;
}

/* Lead paragraph — first text after a heading */
.lead {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: var(--read-w);
}
.on-dark .lead { color: rgba(255,255,255,0.86); }

.body {
  font-family: var(--sans);
  color: var(--ink-soft);
  line-height: 1.75;
}
.on-dark .body { color: rgba(255,255,255,0.82); }

/* Drop cap — for opening narrative paragraphs */
.dropcap-letter {
  float: left;
  font-family: "TheQueen Cap", var(--serif);
  font-weight: 400;
  font-size: 5.6em;
  /* line-height == ascent-override (0.7) → zero half-leading, so the
     box top sits exactly at the cap top and box height == cap height */
  line-height: 0.7;
  /* top nudges the cap down to meet the body text's cap height; all em
     units, so it scales with the responsive body size and stays put */
  margin: 0.06em 0.07em 0 0.02em;
  color: var(--gold-warm);
}
.on-dark .dropcap-letter { color: var(--gold); }
.dropcap::first-letter {
  /* legacy fallback — superseded by .dropcap-letter span */
  color: inherit;
}
.on-dark .dropcap-letter, .on-dark .dropcap::first-letter { color: var(--gold); }

/* Inline gold accent (for key phrases) */
em.gold {
  font-style: normal;
  color: var(--gold-warm);
  font-weight: 500;
}
.on-dark em.gold { color: var(--gold); }
.section.on-cobalt em.gold { color: var(--gold); }

/* Two-tone headline accent (second clause) */
.h-display .hl, .h-section .hl { color: var(--gold-warm); }
.section.on-dark .hl, .section.on-cobalt .hl, .on-dark .hl { color: var(--gold); }
.hero .hero-copy .h-display .hl { color: var(--paper-warm); }

/* ─── Ink mark — single quiet gold rule ─── */
.ink-mark {
  width: 48px;
  height: 1.5px;
  background: var(--gold-warm);
  margin: 0 0 22px;
  display: block;
  border-radius: 1px;
}
.ink-mark.center { margin-left: auto; margin-right: auto; }
.on-dark .ink-mark,
.section.on-dark .ink-mark,
.section.on-cobalt .ink-mark,
.hero .ink-mark,
.footer .ink-mark { background: var(--gold); }

/* Section numeral — large serif chapter mark */
.numeral-mark {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1;
  color: var(--gold-warm);
  display: block;
  margin-bottom: 6px;
}
.on-dark .numeral-mark { color: var(--gold); }

/* ─── Layout ─────────────────────────────────────────────────────────────── */

.page { width: 100%; }

.section {
  position: relative;
  padding: var(--section-y) var(--page-pad);
  overflow: hidden;
  isolation: isolate;
}
.section .wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section.on-dark   { background: var(--green-deep); color: #fff; }
.section.on-dark.deeper { background: var(--green-deeper); }
.section.on-light  { background: var(--paper); color: var(--ink); }
.section.on-mist   {
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(163,196,104,0.10) 0%, transparent 50%),
    radial-gradient(ellipse 70% 60% at 80% 80%, rgba(222,190,81,0.06) 0%, transparent 50%),
    var(--paper);
}
.section.on-cobalt {
  background: linear-gradient(135deg, #1a3038 0%, #2E4B55 50%, #335686 100%);
  color: #fff;
}

/* density */
body.density-compact { --section-y: clamp(4rem, 8vw, 7rem); }
body.density-comfy   { --section-y: clamp(7.5rem, 16vw, 14rem); }

/* ═══════════════════════════════════════════════════════════════════════════
   BUTTONS — printed-foil feel
   ═══════════════════════════════════════════════════════════════════════════ */

.btn {
  --bg: var(--gold);
  --bg-hover: var(--gold-hot);
  --fg: #20180a;

  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 17px 32px;
  border-radius: 2px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg);
  background: var(--bg);
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform .3s cubic-bezier(.2,.7,.2,1),
    box-shadow .3s ease,
    background .25s ease;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}
.btn::before { display: none; }
.btn:hover {
  transform: translateY(-2px);
  background: var(--bg-hover);
  box-shadow: 0 12px 24px -12px rgba(0,0,0,0.4);
}
.btn:active { transform: translateY(0); box-shadow: 0 1px 2px rgba(0,0,0,0.1); }

.btn .arr {
  display: inline-block;
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
  font-size: 14px;
  margin-left: -2px;
}
.btn:hover .arr { transform: translateX(4px); }

/* Secondary — cobalt (read / book actions) */
/* ── Secondary = OUTLINE (transparent, thin border). Two tint tiers. ── */
/* Default outline = cream (free / exploratory actions) */
.btn.outline {
  background: transparent;
  border: 1px solid rgba(237,230,214,0.45);
  color: var(--cream);
  box-shadow: none;
}
.btn.outline:hover {
  background: rgba(237,230,214,0.08);
  border-color: var(--cream);
  transform: translateY(-2px);
  box-shadow: none;
}
/* Gold outline = high-intent conversation (Talk with Joseph) when secondary */
.btn.outline.gold {
  border-color: rgba(222,190,81,0.55);
  color: var(--gold);
}
.btn.outline.gold:hover {
  border-color: var(--gold);
  background: rgba(222,190,81,0.10);
  color: var(--gold);
}
/* Outline on light grounds */
.section.on-light .btn.outline,
.section.on-mist .btn.outline {
  border-color: rgba(24,30,27,0.4);
  color: var(--ink);
}
.section.on-light .btn.outline:hover,
.section.on-mist .btn.outline:hover {
  background: rgba(24,30,27,0.05);
  border-color: var(--ink);
}
.section.on-light .btn.outline.gold,
.section.on-mist .btn.outline.gold {
  border-color: var(--gold-warm);
  color: var(--gold-warm);
}
/* Outline inside modals (paper ground) — same dark treatment as on-light sections */
.modal .btn.outline {
  border-color: rgba(24,30,27,0.4);
  color: var(--ink);
}
.modal .btn.outline:hover {
  background: rgba(24,30,27,0.05);
  border-color: var(--ink);
}

/* Tertiary = text + arrow (no box) */
.btn-link {
  background: none;
  border: none;
  padding: 4px 0;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  transition: color .25s ease;
}
.btn-link .arr { transition: transform .3s cubic-bezier(.2,.7,.2,1); }
.btn-link:hover { color: #fff; }
.btn-link:hover .arr { transform: translateX(4px); }
.section.on-light .btn-link,
.section.on-mist .btn-link { color: var(--gold-warm); }
.section.on-light .btn-link:hover,
.section.on-mist .btn-link:hover { color: var(--ink); }

/* Small button */
.btn.sm { padding: 12px 22px; font-size: 11px; }

/* Text link */
.linkish {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-warm);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  display: inline-block;
  transition: color .25s ease;
}
.linkish::after {
  content: "";
  position: absolute;
  left: 0; right: 30%; bottom: 0;
  height: 1px;
  background: currentColor;
  transition: right .35s cubic-bezier(.2,.7,.2,1);
}
.linkish:hover::after { right: 0; }
.on-dark .linkish { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════════════ */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transition: background .4s ease, padding .25s ease, box-shadow .4s ease;
  color: #fff;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 36px;
}
.header.scrolled {
  background: rgba(15, 36, 34, 0.92);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  padding: 12px var(--page-pad);
  box-shadow: 0 1px 0 rgba(222,190,81,0.16);
}
.header .brand {
  display: flex; align-items: center;
  text-decoration: none;
  color: inherit;
  height: 46px;
  transition: height .25s ease;
}
.header .brand img {
  height: 100%;
  width: auto;
  display: block;
  max-width: 260px;
  object-fit: contain;
  object-position: left center;
}
.header.scrolled .brand {
  height: 38px;
}

.header nav {
  display: flex; align-items: center; justify-content: center;
  gap: 38px;
}
.header nav a {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.86);
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
  transition: color .25s ease;
}
.header nav a::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%; bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: left .3s ease, right .3s ease;
}
.header nav a:hover { color: var(--gold); }
.header nav a:hover::after { left: 0; right: 0; }
.header nav a.current { color: var(--gold); }
.header nav a.current::after { left: 0; right: 0; }

.header .cta-row {
  display: flex; align-items: center; gap: 10px;
}

.header .menu-toggle {
  display: none;
  width: 36px; height: 36px;
}
.header .menu-toggle svg { width: 22px; height: 22px; }

@media (max-width: 1200px) {
  .header nav { gap: 22px; }
  .header nav a { font-size: 11.5px; letter-spacing: 0.1em; }
  .header .brand { height: 40px; }
  .header .brand img { max-width: 220px; }
}
@media (max-width: 1099px) {
  .header { gap: 12px; }
  .header nav, .header .cta-row .full-cta { display: none; }
  .header .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .header .cta-row .btn { padding: 12px 16px; font-size: 11px; }
  .header .brand { height: 36px; }
  .header .brand img { max-width: 180px; }
}
@media (max-width: 900px) {
  .header .brand { height: 32px; }
  .header .brand img { max-width: 170px; }
}

/* Mobile drawer */
.mob-drawer {
  position: fixed;
  inset: 0;
  background: var(--green-deeper);
  z-index: 99;
  padding: 100px var(--page-pad) var(--page-pad);
  display: flex;
  flex-direction: column;
  gap: 0;
  color: #fff;
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  visibility: hidden;
}
.mob-drawer.open { transform: translateY(0); visibility: visible; }
.mob-drawer a {
  font-family: var(--serif);
  font-size: 26px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  border-bottom: 1px solid rgba(222,190,81,0.18);
  padding: 18px 0;
}
.mob-drawer .ctas { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.mob-drawer .btn { width: 100%; }

/* ═══════════════════════════════════════════════════════════════════════════
   ENSO — recurring brushstroke watermark
   ═══════════════════════════════════════════════════════════════════════════ */

.enso-bg {
  position: absolute;
  background: url("assets/enso.png") center/contain no-repeat;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transition: opacity .4s ease;
}
body.enso-off .enso-bg { display: none; }
body.enso-subtle .enso-bg { opacity: 0.16; }
body.enso-prominent .enso-bg { opacity: 0.32; }

.section.on-light .enso-bg,
.section.on-mist  .enso-bg {
  filter: brightness(0.95) saturate(0.7);
}
body.enso-subtle .section.on-light .enso-bg,
body.enso-subtle .section.on-mist  .enso-bg { opacity: 0.18; }
body.enso-prominent .section.on-light .enso-bg,
body.enso-prominent .section.on-mist  .enso-bg { opacity: 0.32; }

/* ═══════════════════════════════════════════════════════════════════════════
   01 HERO
   ═══════════════════════════════════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: clamp(3rem, 7vw, 6rem);
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
  background: var(--green-deeper);
}

/* Variant: fullbleed sunset photo — violinist is the subject, type lives in right column */
.hero.v-fullbleed {
  background: var(--green-deeper);
}
.hero.v-fullbleed .hero-photo {
  position: absolute;
  inset: 0;
  background: url("assets/hero-sunset.jpg") left center / cover no-repeat;
  background-color: var(--green-deeper);
  z-index: 0;
}
/* Soft vignette on RIGHT only — where type sits. Subject on the left stays clean. */
.hero.v-fullbleed .hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      transparent 0%,
      transparent 38%,
      rgba(15,36,34,0.4) 52%,
      rgba(15,36,34,0.68) 68%,
      rgba(15,36,34,0.78) 100%),
    linear-gradient(180deg,
      rgba(15,36,34,0.2) 0%,
      transparent 28%,
      transparent 72%,
      rgba(15,36,34,0.5) 100%);
}
.hero.v-fullbleed .hero-wrap {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--page-pad);
  display: grid;
  grid-template-columns: 1fr;
}
.hero.v-fullbleed .hero-copy {
  max-width: 440px;
  justify-self: end;
  width: 100%;
}
.hero.v-fullbleed .hero-copy .h-display {
  color: var(--gold);
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  line-height: 1.0;
}
.hero.v-fullbleed .hero-copy .lead {
  color: rgba(255,255,255,0.88);
  max-width: 42ch;
}
/* Stack at viewports too narrow for safe overlay — photo on top, type on solid dark below. */
@media (max-width: 1099px) {
  .hero.v-fullbleed {
    min-height: 0;
    padding-top: 0;
    display: block;
    background: var(--green-deeper);
  }
  .hero.v-fullbleed .hero-photo {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: url("assets/hero-sunset.jpg") center 30% / cover no-repeat;
    margin-top: 84px;
  }
  .hero.v-fullbleed .hero-photo::after {
    background: linear-gradient(180deg,
      transparent 0%, transparent 55%,
      rgba(15,36,34,0.4) 80%,
      rgba(15,36,34,0.95) 100%);
  }
  .hero.v-fullbleed .hero-wrap {
    padding: clamp(3rem, 7vw, 5rem) var(--page-pad) clamp(4rem, 8vw, 6rem);
    display: block;
  }
  .hero.v-fullbleed .hero-copy {
    max-width: 620px;
    justify-self: start;
    width: 100%;
    margin: 0 auto;
  }
  .hero.v-fullbleed .hero-copy .h-display {
    font-size: clamp(2.4rem, 6vw, 4rem);
  }
  .hero.v-fullbleed .enso-hero {
    right: -25%; top: 0; bottom: auto;
    transform: none;
    width: min(70vw, 520px); height: min(70vw, 520px);
    opacity: 0.5;
  }
}
@media (max-width: 600px) {
  .hero.v-fullbleed .hero-photo {
    aspect-ratio: 4 / 3;
    margin-top: 72px;
  }
  .hero.v-fullbleed .enso-hero {
    left: -50%; top: -25%;
    width: 90vw; height: 90vw;
    opacity: 0.35;
  }
}

/* Variant: inset — green ground with portrait card right */
.hero.v-inset {
  background: var(--green-deeper);
}
.hero.v-inset .hero-wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--page-pad);
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero.v-inset .hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: url("assets/joseph-garden.jpg") center/cover no-repeat;
}
.hero.v-inset .hero-photo::before {
  content: "";
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1px solid var(--gold);
  z-index: -1;
  opacity: 0.5;
}

/* Variant: split */
.hero.v-split {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero.v-split .hero-left {
  background: var(--green-deeper);
  display: flex; align-items: center;
  padding: 140px var(--page-pad) var(--section-y);
  position: relative;
  overflow: hidden;
}
.hero.v-split .hero-right {
  background: url("assets/hero-sunset.jpg") center/cover no-repeat;
  position: relative;
  min-height: 100vh;
}
.hero.v-split .hero-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(22,50,48,0) 70%, rgba(15,36,34,0.7) 100%);
}
.hero.v-split .hero-copy { max-width: 540px; position: relative; z-index: 2; }
@media (max-width: 880px) {
  .hero.v-split { grid-template-columns: 1fr; }
  .hero.v-split .hero-right { min-height: 50vh; }
}

.hero-copy .ink-mark { margin-bottom: 22px; }
.hero-copy .h-display { margin-bottom: 32px; }
.hero-copy .lead { margin-bottom: 48px; }
.hero-copy .lead em.gold-em { font-style: normal; color: var(--gold); font-weight: 500; }
.hero-copy .lead em.gold-em-i { font-style: italic; color: #fff; font-weight: 500; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

.hero .scroll-cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 3;
}
.hero .scroll-cue::after {
  content: "";
  width: 1px; height: 44px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Hero enso — BIG, bleeding off, confident */
.hero .enso-hero {
  position: absolute;
  background: url("assets/enso.png") center/contain no-repeat;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
  opacity: 0.7;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 24px rgba(15,36,34,0.45));
}
body.enso-off .hero .enso-hero { display: none; }
body.enso-subtle .hero .enso-hero { opacity: 0.7; }
body.enso-prominent .hero .enso-hero { opacity: 0.9; }

.hero.v-fullbleed .enso-hero {
  left: -25%; top: -25%; right: auto; bottom: auto;
  transform: none;
  width: min(85vh, 880px); height: min(85vh, 880px);
}
.hero.v-inset .enso-hero {
  left: -16%; bottom: -22%;
  width: min(60vh, 620px); height: min(60vh, 620px);
  opacity: 0.45;
}
body.enso-subtle .hero.v-inset .enso-hero { opacity: 0.35; }
body.enso-prominent .hero.v-inset .enso-hero { opacity: 0.6; }
.hero.v-split .enso-hero {
  right: -30%; top: 50%;
  transform: translateY(-50%);
  width: min(70vh, 720px); height: min(70vh, 720px);
}

@media (max-width: 760px) {
  .hero { padding-top: 100px; min-height: auto; padding-bottom: 80px; }
  .hero.v-fullbleed .enso-hero {
    right: -45%; width: 90vw; height: 90vw;
    opacity: 0.4;
  }
  .hero.v-fullbleed .hero-photo {
    background-position: 70% center;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   02 PROBLEM
   ═══════════════════════════════════════════════════════════════════════════ */

.s-problem .wrap {
  max-width: var(--max-w);
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
@media (max-width: 880px) {
  .s-problem .wrap { grid-template-columns: 1fr; gap: 2rem; }
  .s-problem .problem-visual { order: 2; }
}
.problem-visual {
  position: relative;
  align-self: stretch;
}
.problem-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #0d1513 url("assets/problem-pianist.jpg") center 18% / cover no-repeat;
  filter: grayscale(1) contrast(1.04) brightness(0.96);
}
.problem-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,50,48,0.10) 0%, rgba(22,50,48,0.16) 55%, rgba(15,36,34,0.42) 100%);
  mix-blend-mode: multiply;
}
.problem-photo::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--gold-warm);
  opacity: 0.45;
  z-index: -1;
}
@media (max-width: 880px) {
  .problem-photo { aspect-ratio: 16 / 11; background-position: center 20%; max-width: 460px; }
}
.s-problem .problem-copy .kicker { margin-bottom: 38px; }
.s-problem .h-section { max-width: 14ch; margin: 0; }
.s-problem .narrative {
  margin: 32px 0 0;
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 54ch;
}
.s-problem .narrative p { margin: 0 0 1.2em; }
.s-problem .narrative p:first-child { margin-top: 0; }
.s-problem .narrative p.tight { margin-bottom: 1.2em; font-style: italic; color: var(--ink-soft); }
.s-problem .pull {
  border-left: 2px solid var(--gold-warm);
  padding-left: 32px;
  margin: 48px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.25;
  letter-spacing: 0.012em;
  text-transform: uppercase;
  color: var(--ink);
  max-width: 54ch;
}
.s-problem .enso-bg {
  right: -12%; top: -30%;
  width: 440px; height: 440px;
  transform: rotate(15deg);
}

/* ═══════════════════════════════════════════════════════════════════════════
   03 REFRAME — Try-Harder Trap
   ═══════════════════════════════════════════════════════════════════════════ */

.s-reframe .wrap {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}
@media (max-width: 880px) {
  .s-reframe .wrap { grid-template-columns: 1fr; }
}
.s-reframe .h-section { margin: 22px 0 28px; max-width: 16ch; }
.s-reframe .body {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 50ch;
  margin: 0 0 1.1em;
}
.s-reframe .trap-name {
  display: inline;
  color: var(--gold);
  padding-bottom: 1px;
  font-weight: 500;
}
/* Sections whose enso straddles into the neighbour above */
.s-problem, .s-pillars, .s-plan { overflow: visible; }
.s-reframe { overflow: visible; z-index: 3; }
/* Sections whose enso should read as a whole circle, bleeding into the section below */
.s-findpath, .s-studio, .s-book { overflow: visible; z-index: 2; }

.s-reframe .summary {
  margin-top: 32px;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.32;
  text-transform: uppercase;
  letter-spacing: 0.012em;
  color: var(--gold);
  max-width: none;
}
.s-reframe .summary .summary-line { font-style: normal; color: var(--gold); white-space: nowrap; }
@media (max-width: 600px) {
  .s-reframe .summary .summary-line { white-space: normal; }
}
.s-reframe .enso-bg {
  left: -14%; bottom: -30%;
  width: 540px; height: 540px;
}

.loop-diagram {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1;
  margin: 0 auto;
}
.loop-diagram svg { width: 100%; height: 100%; overflow: visible; }
.loop-diagram .loop-node-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  fill: var(--gold);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════════════
   04 JOSEPH
   ═══════════════════════════════════════════════════════════════════════════ */

.s-joseph .wrap {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
}
@media (max-width: 880px) {
  .s-joseph .wrap { grid-template-columns: 1fr; }
}
.s-joseph .portrait-wrap { position: relative; }
.s-joseph .portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  background: url("assets/joseph-enso.jpg") center/cover no-repeat;
  max-width: 460px;
  width: 100%;
}
.s-joseph .portrait::after {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid var(--gold-warm);
  z-index: -1;
  opacity: 0.55;
}
.s-joseph .h-section { margin: 22px 0 28px; max-width: 12ch; }
.s-joseph .signature {
  font-family: var(--sans);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--gold-warm);
  margin: 32px 0 0;
  letter-spacing: 0.02em;
}
.s-joseph .signature::before {
  content: "— ";
  margin-right: 2px;
}
.s-joseph .body { font-size: 1.05rem; }
.s-joseph .body p { margin: 0 0 1.2em; max-width: 56ch; }

.award-strip {
  display: flex; flex-wrap: wrap;
  gap: 20px 28px;
  align-items: center;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.award-strip .seals,
.book-awards .seals {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.award-strip .award-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-right: 4px;
  font-weight: 600;
}
.award-strip .award-seal {
  height: 56px;
  width: auto;
  opacity: 0.9;
  transition: opacity .25s ease, transform .35s ease;
}
.award-strip .award-seal:hover { opacity: 1; transform: scale(1.06); }

.s-joseph .enso-bg {
  right: -14%; top: -18%;
  width: 460px; height: 460px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   05 PILLARS — architectural
   ═══════════════════════════════════════════════════════════════════════════ */

.s-pillars .wrap { text-align: center; }
.s-pillars .h-section { margin: 22px auto 22px; max-width: 22ch; }
.s-pillars .intro-body { margin: 0 auto; max-width: 60ch; font-size: 1.05rem; }

/* ── Three Strands diagram (continuity with the book) ── */
.strands {
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  max-width: 940px;
}
.strands-title {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: 36px;
}
.strands-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(8px, 2vw, 20px);
}
.strand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 220px;
  max-width: 30vw;
}
.strand .ring {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-warm);
  background:
    radial-gradient(circle at 50% 38%, rgba(255,255,255,0.7), rgba(244,239,227,0.25) 70%, transparent 72%),
    rgba(255,255,255,0.35);
  box-shadow: 0 10px 30px -16px rgba(187,131,38,0.5), inset 0 0 0 6px rgba(255,255,255,0.5);
  display: grid;
  place-items: center;
}
.strand .ring-inner {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid rgba(187,131,38,0.25);
  display: grid;
  place-items: center;
  color: var(--gold-warm);
}
.strand .strand-svg { width: 40px; height: 40px; }
.strand .strand-enso {
  width: 46px; height: 46px;
  background: url("assets/enso.png") center/contain no-repeat;
}
.strand-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  text-transform: uppercase;
  letter-spacing: 0.015em;
  color: var(--ink);
  margin: 22px 0 12px;
  line-height: 1.05;
}
.strand-words {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.strand-words li {
  font-family: var(--sans);
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--ink-mute);
  letter-spacing: 0.01em;
}
.strand-arrow {
  font-family: var(--sans);
  font-size: 28px;
  line-height: 1;
  color: var(--gold-warm);
  margin-top: 48px;
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .strands-row { flex-direction: column; align-items: center; gap: 6px; }
  .strand { width: 100%; max-width: 320px; }
  .strand-arrow { margin-top: 6px; transform: rotate(90deg); }
}

/* Tighten the transition between Meet Joseph and Soulforce Mastery */
.s-joseph { padding-bottom: clamp(3.5rem, 7vw, 6rem); }
.s-pillars { padding-top: clamp(3.5rem, 7vw, 6rem); padding-bottom: clamp(3rem, 5vw, 4.5rem); }
.s-plan { padding-top: clamp(3rem, 5vw, 4.5rem); }

.pillars {
  margin-top: clamp(3.5rem, 7vw, 6rem);
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 0;
  align-items: stretch;
  text-align: left;
  position: relative;
}
.pillars::after {
  /* Ground line */
  content: "";
  position: absolute;
  left: -10%; right: -10%; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-warm) 30%, var(--gold-warm) 70%, transparent 100%);
  opacity: 0.4;
}
@media (max-width: 880px) {
  .pillars { grid-template-columns: 1fr; gap: 18px; }
  .pillars::after { display: none; }
}
.pillar {
  position: relative;
  padding: 44px 36px 48px;
  border: 1px solid var(--rule);
  border-right: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.95) 100%);
  min-height: 440px;
  display: flex; flex-direction: column;
  transition: all .35s ease;
}
.pillar:last-child { border-right: 1px solid var(--rule); }
.pillar.mid {
  background: linear-gradient(180deg, #FDFAEE 0%, #F9F2D8 100%);
  border: 1px solid var(--gold);
  min-height: 440px;
  z-index: 2;
  margin: 0 -1px;
  box-shadow:
    0 8px 30px -14px rgba(187,131,38,0.28);
}
@media (max-width: 880px) {
  .pillar { border-right: 1px solid var(--rule); min-height: 0; }
  .pillar.mid { min-height: 0; margin: 0; }
}
.pillar .numeral {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  color: var(--gold-warm);
  height: 78px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.pillar.mid .numeral { font-size: 76px; }
.pillar .pname {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  line-height: 1.1;
  margin: 0 0 6px;
  min-height: 2.2em;
  text-transform: uppercase;
  letter-spacing: 0.015em;
}
.pillar .pmeta {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 22px;
  font-weight: 600;
}
.pillar.mid .pmeta { color: var(--gold-warm); }
.pillar .pdesc {
  font-family: var(--sans);
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.7;
  flex: 1;
}
.pillar .pdesc-examples {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 18px;
  line-height: 1.6;
}
.pillar.mid .pdesc-examples { color: var(--gold-warm); opacity: 0.75; }
.pillar .tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  display: inline-block;
  padding: 6px 12px;
  background: var(--gold);
  color: var(--green-deep);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.pillar .tag.muted {
  background: var(--paper);
  color: var(--ink-mute);
  border: 1px solid rgba(24,30,27,0.18);
  font-weight: 600;
}

.s-pillars .enso-bg {
  left: -8%; top: -30%; right: auto; bottom: auto;
  width: 460px; height: 460px;
  transform: rotate(-20deg);
}

/* ═══════════════════════════════════════════════════════════════════════════
   06 PLAN — river / path
   ═══════════════════════════════════════════════════════════════════════════ */

.s-plan .wrap { text-align: center; }
.s-plan .h-section { margin: 22px auto 20px; max-width: 18ch; }
.s-plan .intro-body { margin: 0 auto 64px; max-width: 56ch; font-size: 1.05rem; }

.plan-path {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  gap: 0;
}
.plan-path .river {
  position: absolute;
  left: 0; right: 0; top: 24px;
  height: 32px;
  z-index: 0;
  pointer-events: none;
}
.plan-path .river path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  opacity: 0.6;
}
.plan-path.in .river path {
  animation: drawRiver 2.8s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes drawRiver { to { stroke-dashoffset: 0; } }
@media (max-width: 880px) {
  .plan-path { grid-template-columns: 1fr; gap: 40px; }
  .plan-path .river { display: none; }
}

.plan-step {
  position: relative;
  text-align: center;
  padding: 0 22px;
  z-index: 1;
}
.plan-step .dot {
  width: 50px; height: 50px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
  padding-top: 4px;
  color: var(--gold-warm);
  position: relative;
  text-transform: uppercase;
}
.plan-step .dot::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid var(--gold-warm);
  border-radius: 50%;
  opacity: 0.25;
}
.plan-step h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  margin: 0 0 14px;
  min-height: 2.5em;
  text-wrap: balance;
  text-transform: uppercase;
  letter-spacing: 0.012em;
  line-height: 1.15;
}
.plan-step p {
  font-family: var(--sans);
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.7;
  margin: 0;
  max-width: 28ch;
  margin-inline: auto;
}

.s-plan .enso-bg {
  left: -14%; top: -30%; right: auto; bottom: auto;
  width: 480px; height: 480px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   LAB BANNER — thin echo strip under the hero
   ═══════════════════════════════════════════════════════════════════════════ */

.lab-banner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 32px);
  padding: 16px var(--page-pad);
  background: var(--green-deeper);
  border-top: 1px solid rgba(222,190,81,0.28);
  border-bottom: 1px solid rgba(222,190,81,0.14);
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: background .3s ease;
  position: relative;
  z-index: 3;
}
.lab-banner:hover { background: #0c1d1b; }
.lab-banner-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b6cd7e;
  white-space: nowrap;
}
.lab-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #8fb04e;
  box-shadow: 0 0 0 0 rgba(143,176,78,0.6);
  animation: labPulse 2.4s ease-out infinite;
  flex-shrink: 0;
}
@keyframes labPulse {
  0% { box-shadow: 0 0 0 0 rgba(143,176,78,0.5); }
  70% { box-shadow: 0 0 0 7px rgba(143,176,78,0); }
  100% { box-shadow: 0 0 0 0 rgba(143,176,78,0); }
}
.lab-banner-text {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.82);
  flex: 0 1 auto;
}
.lab-banner-text strong { color: #fff; font-weight: 600; }
.lab-banner-cta {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 8px;
}
.lab-banner:hover .lab-banner-cta .arr { transform: translateX(4px); }
.lab-banner .arr { transition: transform .3s cubic-bezier(.2,.7,.2,1); }
@media (max-width: 720px) {
  .lab-banner { flex-wrap: wrap; gap: 8px 16px; }
  .lab-banner-text { flex-basis: 100%; order: 3; font-size: 13px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   06.5 FIND YOUR PATH
   ═══════════════════════════════════════════════════════════════════════════ */

.s-findpath .wrap {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}
@media (max-width: 880px) { .s-findpath .wrap { grid-template-columns: 1fr; } }
.s-findpath .h-section { margin: 22px 0 26px; max-width: 16ch; }
.s-findpath .body { max-width: 50ch; font-size: 1.05rem; }
.s-findpath .ctas { margin-top: 34px; }
.s-findpath .enso-bg {
  right: -14%; bottom: -26%; left: auto; top: auto;
  width: 520px; height: 520px;
}

.path-fan {
  position: relative;
  border: 1px solid rgba(222,190,81,0.22);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
  padding: 40px 32px 40px 28px;
  display: grid;
  grid-template-columns: 172px 1fr;
  align-items: center;
  gap: 16px;
}
.path-fan svg { width: 100%; height: 250px; display: block; }
.path-fan-labels { display: flex; flex-direction: column; justify-content: space-between; height: 250px; padding: 8px 0; }
.pf-path { stroke-dasharray: none; stroke-dashoffset: 0; }
.pf-end { opacity: 1; }
.pf-row { padding: 6px 0; }
.pf-label {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pf-accent, #fff);
  line-height: 1.2;
}
.pf-sub {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
@media (max-width: 480px) {
  .path-fan { grid-template-columns: 90px 1fr; padding: 24px 20px; }
  .pf-label { font-size: 0.82rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   06.6 TENSION RESET LAB
   ═══════════════════════════════════════════════════════════════════════════ */

.s-lab .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}
@media (max-width: 880px) {
  .s-lab .wrap { grid-template-columns: 1fr; }
  .s-lab .lab-visual { order: 2; }
}
.s-lab .h-section { margin: 22px 0 26px; max-width: 14ch; }
.s-lab .body { max-width: 50ch; font-size: 1.05rem; }
.s-lab .ctas { margin-top: 32px; }
.lab-note {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-mute);
  margin: 18px 0 0;
}
.lab-note a {
  color: var(--gold-warm);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.lab-note a:hover { color: var(--ink); }

.lab-visual { position: relative; }
.lab-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(24,30,27,0.12);
  box-shadow: 0 24px 50px -28px rgba(24,30,27,0.5);
  aspect-ratio: 1024 / 581;
  background: #0c1d1b;
}
.lab-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lab-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,29,27,0.05) 0%, rgba(12,29,27,0) 30%, rgba(12,29,27,0.35) 100%);
  pointer-events: none;
}
.lab-card::before {
  content: "";
  position: absolute;
  inset: -16px 16px 16px -16px;
  border: 1px solid rgba(187,131,38,0.5);
  z-index: -1;
}
.lab-badge {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 13px;
  background: rgba(12,29,27,0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(143,176,78,0.5);
  color: #cde09a;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.lab-play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(251,250,245,0.92);
  z-index: 2;
  transition: transform .3s ease, background .3s ease;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.5);
}
.lab-play::after {
  content: "";
  position: absolute;
  left: 53%; top: 50%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent var(--green-deep);
}
.lab-card:hover .lab-play { transform: translate(-50%, -50%) scale(1.08); background: #fff; }
.lab-caption {
  font-family: var(--sans);
  font-style: italic;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-mute);
  margin: 16px 2px 0;
  max-width: 46ch;
}
.s-lab .enso-bg {
  right: -12%; top: -24%; left: auto; bottom: auto;
  width: 460px; height: 460px;
}

/* ─── Find Your Path modal — choice chips ─── */
.choice-grid { display: grid; grid-template-columns: 1fr; gap: 8px; margin-top: 4px; }
.choice {
  text-align: left;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(24,30,27,0.18);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.choice:hover { border-color: var(--gold-warm); }
.choice.active {
  border-color: var(--gold-warm);
  background: var(--gold-ghost);
  color: var(--ink);
  font-weight: 500;
  box-shadow: inset 0 0 0 1px var(--gold-warm);
}

/* ─── Lab modal — session chip + segmented toggle ─── */
.lab-session-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  margin-bottom: 20px;
  background: rgba(111,139,60,0.1);
  border: 1px solid rgba(111,139,60,0.35);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
}
.lab-session-chip strong { color: var(--ink); font-weight: 600; }
.lab-session-chip .lab-dot { background: #6f8b3c; }
.seg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  background: rgba(24,30,27,0.05);
  border-radius: 3px;
  margin-bottom: 20px;
}
.seg-btn {
  padding: 11px 12px;
  border-radius: 2px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  background: transparent;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}
.seg-btn.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

/* ═══════════════════════════════════════════════════════════════════════════
   07 STUDIO — cobalt band (sole cobalt section)
   ═══════════════════════════════════════════════════════════════════════════ */

.s-studio { color: #fff; }
.s-studio .wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}
@media (max-width: 880px) {
  .s-studio .wrap { grid-template-columns: 1fr; }
}
.s-studio .h-section { color: #fff; margin: 22px 0 26px; max-width: 16ch; }
.s-studio .body { color: rgba(255,255,255,0.85); font-size: 1.05rem; }
.s-studio .studio-list {
  list-style: none;
  padding: 0;
  margin: 36px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}
@media (max-width: 600px) {
  .s-studio .studio-list { grid-template-columns: 1fr; }
}
.s-studio .studio-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
}
.s-studio .studio-list li::before {
  content: "";
  width: 20px; height: 1px;
  background: var(--gold);
  margin-top: 11px;
  flex-shrink: 0;
}
.s-studio .ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.s-studio .studio-visual {
  position: relative;
  aspect-ratio: 5 / 6;
  background: url("assets/joseph-garden.jpg") center/cover no-repeat;
}
.s-studio .studio-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46,75,85,0.35), rgba(51,86,134,0.45));
  mix-blend-mode: multiply;
}
.s-studio .studio-visual::after {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 1px solid rgba(222,190,81,0.5);
  z-index: -1;
}
.s-studio .enso-bg {
  right: -14%; top: -15%;
  width: 500px; height: 500px;
  transform: rotate(180deg);
}

/* ═══════════════════════════════════════════════════════════════════════════
   08 BOOK
   ═══════════════════════════════════════════════════════════════════════════ */

.s-book { background: var(--green-deeper); }
.s-book .wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
}
@media (max-width: 880px) {
  .s-book .wrap { grid-template-columns: 1fr; text-align: center; }
  .s-book .cover-wrap { justify-content: center; display: flex; }
}
.s-book .cover-wrap {
  position: relative;
  perspective: 1400px;
}
.s-book .cover-wrap img {
  max-width: 100%;
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(20px 30px 60px rgba(0,0,0,0.55));
  transform: rotateY(-4deg);
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
}
.s-book .cover-wrap:hover img { transform: rotateY(-8deg) translateY(-6px); }

.s-book .blurb-meta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0;
  font-weight: 600;
}
.s-book .h-section { color: #fff; margin: 22px 0 24px; max-width: 14ch; }
.s-book .body { color: rgba(255,255,255,0.86); font-size: 1.05rem; max-width: 52ch; }
.s-book .body em.title-italic { font-style: italic; color: #fff; }
.s-book .pull-quote {
  font-family: var(--sans);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  border-left: 1px solid var(--gold);
  padding: 6px 0 6px 22px;
  margin: 28px 0;
  max-width: 50ch;
}
.s-book .pull-quote .attrib {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}
.book-awards {
  display: flex; flex-wrap: wrap; gap: 28px;
  align-items: center;
  margin: 32px 0;
  padding: 28px 0;
  border-top: 1px solid rgba(222,190,81,0.18);
  border-bottom: 1px solid rgba(222,190,81,0.18);
}
.book-awards .award-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-right: 8px;
  font-weight: 600;
}
.book-awards .award-seal {
  height: 72px;
  width: auto;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.35));
  transition: transform .35s ease;
}
.book-awards .award-seal:hover { transform: scale(1.06); }
.s-book .ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
.s-book .enso-bg {
  right: -16%; bottom: -22%;
  width: 540px; height: 540px;
}
@media (max-width: 880px) {
  .s-book .ctas, .s-book .book-awards { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   09 SOCIAL PROOF
   ═══════════════════════════════════════════════════════════════════════════ */

.s-proof .wrap { max-width: 1000px; }
.s-proof .head { text-align: center; }
.s-proof .head .kicker { justify-content: center; }
.s-proof .head .h-section { margin: 22px 0 44px; max-width: 22ch; margin-inline: auto; }

.testimonial {
  position: relative;
  text-align: center;
  padding: 0 clamp(0px, 4vw, 60px);
}
.testi-portrait {
  width: 184px;
  height: 184px;
  margin: 0 auto 36px;
  border-radius: 50%;
  background-size: cover;
  background-position: center 20%;
  position: relative;
  filter: sepia(0.18) saturate(0.85) brightness(0.96);
  box-shadow: 0 0 0 1px var(--gold), 0 0 0 8px var(--paper), 0 0 0 9px rgba(187,131,38,0.25);
}
.testimonial blockquote {
  font-family: var(--sans);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 32px;
  text-wrap: pretty;
}
.testimonial blockquote::before { content: "\201C"; color: var(--gold-warm); margin-right: 2px; }
.testimonial blockquote::after  { content: "\201D"; color: var(--gold-warm); margin-left: 2px; }
.testimonial cite {
  font-style: normal;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.testimonial cite strong { color: var(--gold-warm); font-weight: 700; margin-right: 4px; }

.testi-stage {
  position: relative;
  min-height: 460px;
}
.testi-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .9s ease, transform .9s ease;
  pointer-events: none;
}
.testi-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
}
.testi-controls .arrow {
  width: 40px; height: 40px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 14px;
  color: var(--ink-soft);
  transition: all .25s ease;
}
.testi-controls .arrow:hover {
  border-color: var(--gold-warm);
  color: var(--gold-warm);
}
.testi-dots {
  display: flex; gap: 8px;
}
.testi-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(24,30,27,0.2);
  border: none;
  padding: 0;
  transition: all .3s ease;
}
.testi-dots button.active {
  background: var(--gold-warm);
  width: 28px;
  border-radius: 4px;
}

.s-proof .enso-bg {
  left: calc(50% - 330px); top: calc(50% - 330px); right: auto; bottom: auto;
  width: 660px; height: 660px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   10 STAKES — final
   ═══════════════════════════════════════════════════════════════════════════ */

.s-stakes { text-align: center; padding-block: clamp(8rem, 16vw, 13rem); }
.s-stakes.on-dark.deeper { background: #1C3F37; }
.s-stakes .wrap { max-width: 920px; }
.s-stakes .h-display { font-size: clamp(2.2rem, 5.4vw, 4rem); margin-bottom: 32px; }
.s-stakes .body { margin: 0 auto 48px; max-width: 56ch; font-size: 1.1rem; color: rgba(255,255,255,0.86); }
.s-stakes .body em.gold {
  font-style: normal;
  color: var(--gold);
  font-weight: 500;
}
.s-stakes .ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.stakes-third {
  margin: 26px 0 0;
  text-align: center;
}
.stakes-third a {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9cbd56;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .25s ease;
}
.stakes-third a:hover { color: #b6cd7e; }
.stakes-third a .arr { transition: transform .3s cubic-bezier(.2,.7,.2,1); }
.stakes-third a:hover .arr { transform: translateX(4px); }
.s-stakes .enso-bg {
  left: 50%; top: 50%;
  width: min(80vw, 760px); height: min(80vw, 760px);
  transform: translate(-50%, -50%);
  opacity: 0.12;
}
body.enso-prominent .s-stakes .enso-bg { opacity: 0.24; }
body.enso-off .s-stakes .enso-bg { display: none; }

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER — newsletter + socials
   ═══════════════════════════════════════════════════════════════════════════ */

.footer {
  background: var(--green-deeper);
  color: rgba(255,255,255,0.7);
  padding: 0 var(--page-pad);
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--rule-on-dark);
}
.footer .wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.footer-enso {
  position: absolute;
  right: -4%;
  top: clamp(-340px, -22vw, -180px);
  width: min(72vw, 720px);
  height: min(72vw, 720px);
  background: url("assets/enso.png") center/contain no-repeat;
  opacity: 0.13;
  pointer-events: none;
  z-index: 0;
}
body.enso-off .footer-enso { display: none; }
body.enso-prominent .footer-enso { opacity: 0.22; }

.footer-newsletter {
  padding: clamp(4rem, 8vw, 6rem) 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  border-bottom: 1px solid var(--rule-on-dark);
  position: relative;
}
.footer-newsletter .enso-foot {
  display: none;
}
@media (max-width: 880px) {
  .footer-newsletter { grid-template-columns: 1fr; }
}
.footer-newsletter .kicker { color: var(--gold); justify-content: flex-start; }
.footer-newsletter h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.012em;
  color: #fff;
  margin: 16px 0 14px;
  max-width: 16ch;
}
.footer-newsletter p {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.65;
  max-width: 44ch;
  color: rgba(255,255,255,0.75);
  margin: 0;
}
.newsletter-form {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.newsletter-form input {
  font-family: var(--sans);
  font-size: 15px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(222,190,81,0.3);
  color: #fff;
  outline: none;
  transition: all .25s ease;
  letter-spacing: 0.01em;
  min-width: 0;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); letter-spacing: 0.01em; }
.newsletter-form input:focus {
  background: rgba(255,255,255,0.07);
  border-color: var(--gold);
}
.newsletter-form button {
  grid-column: 1;
  justify-self: start;
  align-self: start;
}
.footer-newsletter .newsletter-foot {
  grid-column: 2;
  align-self: center;
  margin-top: 0;
}
@media (max-width: 520px) {
  .footer-newsletter .newsletter-foot { grid-column: 1; align-self: start; margin-top: 6px; }
}
@media (max-width: 520px) {
  .newsletter-form { grid-template-columns: 1fr; }
}
.footer-newsletter .newsletter-foot {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 28px;
  letter-spacing: 0.01em;
}

.footer-confirm {
  background: rgba(222,190,81,0.08);
  border: 1px solid rgba(222,190,81,0.3);
  padding: 24px 28px;
  color: var(--gold);
  font-family: var(--sans);
  display: flex; align-items: center; gap: 16px;
}
.footer-confirm::before {
  content: "\2713";
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  font-size: 14px;
  flex-shrink: 0;
}

.footer-meta {
  padding: 28px 0 32px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
}
@media (max-width: 720px) {
  .footer-meta { grid-template-columns: 1fr; text-align: center; }
}
.footer-meta .brand-row {
  display: flex; align-items: center; gap: 16px;
}
.footer-meta .brand-row .mark {
  width: 44px; height: 44px;
  background: url("assets/enso.png") center/contain no-repeat;
}
.footer-meta .brand-row .name {
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 14px;
  color: #fff;
  line-height: 1.2;
}
.footer-meta .brand-row .name small {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.34em;
  color: var(--gold);
  margin-top: 4px;
  font-weight: 600;
}
.footer-socials {
  display: flex; gap: 8px; align-items: center;
}
.footer-socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--rule-on-dark);
  border-radius: 50%;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.7);
  transition: all .25s ease;
}
.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-socials a svg { width: 16px; height: 16px; }

.footer-legal {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .enso-bg, .enso-hero { transform: none !important; }
  .scroll-cue::after { animation: none; }
  .plan-path.in .river path { animation: none; stroke-dashoffset: 0; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MODALS
   ═══════════════════════════════════════════════════════════════════════════ */

.modal-scrim {
  position: fixed; inset: 0;
  background: rgba(15, 36, 34, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 200;
  display: grid; place-items: center;
  padding: 24px;
  animation: scrimIn .4s ease;
}
@keyframes scrimIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--paper);
  color: var(--ink);
  max-width: 580px;
  width: 100%;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  position: relative;
  padding: clamp(32px, 5vw, 60px);
  animation: modalIn .5s cubic-bezier(.2,.7,.2,1);
  border-top: 3px solid var(--gold);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.modal .close {
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  color: var(--ink-mute);
  font-size: 22px;
  border-radius: 50%;
  transition: all .25s ease;
}
.modal .close:hover { color: var(--ink); background: rgba(0,0,0,0.05); }
.modal .kicker { color: var(--gold-warm); }
.modal .h-section { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 18px 0 14px; }
.modal .lead { margin: 0 0 28px; }
.modal .form { display: flex; flex-direction: column; gap: 16px; }
.modal .field { display: flex; flex-direction: column; gap: 8px; }
.modal .field label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.modal .field input,
.modal .field select,
.modal .field textarea {
  font-family: var(--sans);
  font-size: 15px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 1px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.modal .field input:focus,
.modal .field select:focus,
.modal .field textarea:focus {
  border-color: var(--gold-warm);
  box-shadow: 0 0 0 3px var(--gold-ghost);
}
.modal .field textarea { resize: vertical; min-height: 90px; }
.modal .btn { margin-top: 8px; align-self: flex-start; }
.modal .fine {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 6px;
  line-height: 1.55;
}
.modal-success { text-align: center; padding: 24px 0; }
.calendly-host {
  min-width: 280px;
  height: 600px;
  margin-top: 6px;
}
.modal-success .check {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--gold-ghost);
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  color: var(--gold-warm);
  font-size: 26px;
}

/* Reader */
.reader { font-family: var(--sans); }
.reader .ch-num {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: 14px;
  font-weight: 600;
}
.reader .ch-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin: 0 0 24px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.012em;
}
.reader p {
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0 0 1.1em;
}
.reader .gate {
  margin-top: 28px;
  padding: 28px;
  background: var(--paper-warm);
  border-top: 1px solid var(--gold);
  text-align: center;
}
.reader .gate p { text-align: center; }


/* Footer offerings nav */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.footer-nav a { color: rgba(255,255,255,0.72); text-decoration: none; }
.footer-nav a:hover { color: var(--gold); }
@media (max-width: 720px) { .footer-nav { justify-content: center; } }

/* Inline link on book-title "Soulforce" mentions -> /book */
.soulforce-link { color: inherit; text-decoration: none; border-bottom: 1px solid currentColor; transition: opacity .2s ease; }
.soulforce-link:hover { opacity: 0.7; }
