  :root {
    --parchment:        #F5F3ED;
    --parchment-deep:   #E8E5DB;
    --parchment-soft:   #FBF9F3;
    --slate:            #313A44;
    --slate-soft:       #6A7280;
    --saffron:          #E8D047;
    --olive-deep:       #473C16;
    --brick:            #CB4837;
    --teal-deep:        #27484C;

    --bg:               var(--parchment);
    --bg-soft:          var(--parchment-soft);
    --bg-deep:          var(--parchment-deep);
    --ink:              var(--slate);
    --ink-soft:         var(--slate-soft);
    --accent:           var(--saffron);
    --emphasis:         #2D5BE0;

    --hairline:         rgba(49, 58, 68, 0.14);
    --hairline-strong:  rgba(49, 58, 68, 0.32);

    --serif:         'Noto Serif', 'Times New Roman', serif;
    --serif-display: 'Noto Serif Display', 'Noto Serif', serif;
    --sans:          'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --max: 1240px;
    --gutter: clamp(20px, 4vw, 56px);
  }

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

  a, button, [role="button"] {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  html {
    scroll-behavior: smooth;
    overflow-x: clip;
    color-scheme: light only;
    background: var(--parchment);
    forced-color-adjust: none;
  }

  body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
  }

  .wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter);
  }

  /* ─── SCROLL-DARKEN / FOCUS ─────────────────────────── */
  .scroll-darken { color: var(--ink); }
  .scroll-darken .word { opacity: 0.18; transition: opacity 0.4s ease-out; }
  .scroll-darken .word.is-active { opacity: 1; }
  .scroll-darken .em-blue,
  .scroll-darken .em-blue .word { color: var(--emphasis); }

  .scroll-focus {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(12px);
    transition: opacity 0.9s cubic-bezier(0.2, 0.65, 0.3, 1),
                filter   0.9s cubic-bezier(0.2, 0.65, 0.3, 1),
                transform 0.9s cubic-bezier(0.2, 0.65, 0.3, 1);
    will-change: opacity, filter, transform;
  }
  .scroll-focus.is-visible { opacity: 1; filter: blur(0); transform: translateY(0); }

  @media (prefers-reduced-motion: reduce) {
    .scroll-focus { opacity: 1; filter: none; transform: none; transition: none; }
    .scroll-darken .word { transition: none; opacity: 1; }
  }

  .label {
    font-family: var(--serif);
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-soft);
  }
  .label-ink { color: var(--ink); }
  em.em-blue, .em-blue { color: var(--emphasis); font-style: italic; font-weight: inherit; }

  /* ─── NAV (mirrors index.html) ──────────────────────── */
  nav {
    border-bottom: 1px solid var(--hairline);
    background: rgba(245, 243, 237, 0.92);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(8px);
  }
  nav .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .logo {
    color: var(--ink);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    line-height: 1;
  }
  .brand-icon {
    display: inline-block;
    width: 20px;
    height: 22px;
    background: var(--ink);
    -webkit-mask: radial-gradient(circle at 35% 50%, var(--ink) 7px, transparent 7.5px) no-repeat;
            mask: radial-gradient(circle at 35% 50%, var(--ink) 7px, transparent 7.5px) no-repeat;
    flex-shrink: 0;
  }
  .logo-word {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 400;
    letter-spacing: -0.005em;
    color: var(--ink);
  }
  nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
    align-items: center;
  }
  nav ul li:has(.nav-soft) + li:has(.nav-cta) { margin-left: -22px; }
  nav a {
    font-family: var(--serif);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    color: var(--ink);
    transition: opacity 0.15s;
  }
  nav a:hover { opacity: 0.6; }
  .nav-soft {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--ink);
    border-radius: 4px;
    padding: 7px 16px 9px;
    line-height: 1;
    background: transparent;
    transition: background 0.18s, color 0.18s;
  }
  .nav-soft:hover { background: var(--ink); color: var(--bg) !important; opacity: 1 !important; }
  .reveal-arrow { display: inline-block; transition: transform 180ms cubic-bezier(0.23, 1, 0.32, 1); }
  .nav-soft:hover .reveal-arrow, .nav-cta:hover .reveal-arrow { transform: translateX(3px); }
  .nav-cta {
    background: var(--saffron);
    color: var(--ink);
    padding: 8px 18px 10px;
    border-radius: 4px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    transition: filter 0.18s;
  }
  .nav-cta:hover { filter: brightness(0.94); opacity: 1 !important; }
  @media (max-width: 900px) { nav ul { display: none; } }

  /* ─── PAGE HERO ─────────────────────────────────────── */
  .page-hero {
    padding: clamp(80px, 12vh, 140px) 0 clamp(48px, 8vh, 96px);
    border-bottom: 1px solid var(--hairline);
    text-align: center;
  }
  .page-hero .kicker {
    font-family: var(--serif);
    font-size: 13px;
    color: var(--ink-soft);
    margin-bottom: 28px;
    display: inline-block;
  }
  .page-hero .kicker::before,
  .page-hero .kicker::after {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--ink-soft);
    vertical-align: middle;
    margin: 0 14px;
  }
  h1.hero-headline {
    font-family: var(--serif);
    font-stretch: 75%;
    font-weight: 300;
    font-size: clamp(48px, 6vw, 84px);
    line-height: 1.04;
    letter-spacing: -0.018em;
    color: var(--ink);
    max-width: 22ch;
    margin: 0 auto 32px;
  }
  .page-hero .lede-sub {
    font-family: var(--serif);
    font-stretch: 75%;
    font-weight: 300;
    font-size: clamp(20px, 2vw, 28px);
    color: var(--ink-soft);
    line-height: 1.4;
    max-width: 50ch;
    margin: 0 auto 56px;
  }
  /* ─── HERO RECEIPTS (subtle parchment cards floating in bg) ─ */
  .page-hero { position: relative; overflow: hidden; }
  .page-hero .wrap { position: relative; z-index: 2; }
  .hero-receipts {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.55;
    z-index: 0;
  }
  .receipt {
    position: absolute;
    background: var(--parchment-soft);
    border: 1px solid var(--hairline);
    padding: 12px 14px 11px;
    font-family: var(--sans);
    font-size: 10px;
    color: var(--ink-soft);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    width: 158px;
    box-shadow: 0 10px 24px rgba(49, 58, 68, 0.06);
    transform: rotate(var(--r));
    animation: receipt-float 9s ease-in-out infinite;
    animation-delay: var(--d);
    will-change: transform;
  }
  .receipt::before {
    content: '';
    display: block;
    height: 5px;
    background: repeating-linear-gradient(
      to right,
      transparent 0 3px,
      var(--bg) 3px 6px
    );
    margin: -12px -14px 9px;
  }
  .receipt .date {
    font-size: 8px;
    color: var(--ink-soft);
    opacity: 0.7;
    margin-top: 3px;
    letter-spacing: 0;
    text-transform: none;
    font-family: var(--serif);
  }
  .receipt .total {
    font-family: var(--serif);
    font-size: 14px;
    font-weight: 500;
    color: var(--brick);
    margin-top: 9px;
    padding-top: 7px;
    border-top: 1px dashed var(--hairline-strong);
    text-transform: none;
    letter-spacing: 0;
  }
  @keyframes receipt-float {
    0%,100% { transform: rotate(var(--r)) translate(0, 0); }
    25%     { transform: rotate(calc(var(--r) + 1.5deg)) translate(-4px, -8px); }
    50%     { transform: rotate(var(--r)) translate(2px, -22px); }
    75%     { transform: rotate(calc(var(--r) - 1.5deg)) translate(5px, -12px); }
  }
  @media (prefers-reduced-motion: reduce) {
    .receipt { animation: none; }
  }
  @media (max-width: 700px) {
    .hero-receipts { opacity: 0.32; }
    .receipt { width: 118px; padding: 9px 11px 8px; font-size: 9px; }
    .receipt .total { font-size: 11px; margin-top: 6px; padding-top: 5px; }
    .receipt .date { font-size: 7.5px; }
  }
  @media (max-width: 420px) {
    .hero-receipts { opacity: 0.28; }
    .receipt { width: 96px; padding: 7px 9px 6px; }
  }

  .hero-meta-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    margin: 0 auto;
    text-align: left;
  }
  .hero-meta-bar .cell {
    padding: 24px 24px 22px 0;
    border-right: 1px solid var(--hairline);
  }
  .hero-meta-bar .cell:last-child { border-right: none; padding-right: 0; }
  .hero-meta-bar .cell:not(:first-child) { padding-left: 24px; }
  .hero-meta-bar .cell-label {
    font-family: var(--serif);
    font-size: 11px;
    color: var(--ink-soft);
    margin-bottom: 10px;
  }
  .hero-meta-bar .cell-value {
    font-family: var(--serif);
    font-stretch: 75%;
    font-weight: 300;
    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1.1;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  @media (max-width: 700px) {
    .page-hero { padding: clamp(56px, 9vh, 96px) 0 clamp(40px, 6vh, 64px); }
    h1.hero-headline { font-size: clamp(38px, 8.5vw, 54px); margin-bottom: 22px; max-width: 16ch; line-height: 1.05; }
    .page-hero .lede-sub { font-size: clamp(16px, 4vw, 21px); margin-bottom: 36px; }
    .page-hero .kicker { margin-bottom: 20px; font-size: 10.5px; }
    .page-hero .kicker::before, .page-hero .kicker::after { width: 18px; margin: 0 10px; }
    .hero-meta-bar { grid-template-columns: 1fr 1fr; }
    .hero-meta-bar .cell { padding: 16px 14px 14px; border-right: 1px solid var(--hairline); }
    .hero-meta-bar .cell:nth-child(2n) { border-right: none; padding-right: 0; }
    .hero-meta-bar .cell:nth-child(odd) { padding-left: 0; }
    .hero-meta-bar .cell:nth-child(1),
    .hero-meta-bar .cell:nth-child(2) { border-bottom: 1px solid var(--hairline); }
    .hero-meta-bar .cell-value { font-size: 18px; }
    .hero-meta-bar .cell-label { font-size: 10px; margin-bottom: 5px; }
  }
  @media (max-width: 420px) {
    h1.hero-headline { font-size: 32px; margin-bottom: 18px; }
    .page-hero .lede-sub { font-size: 15.5px; margin-bottom: 28px; }
    .hero-meta-bar .cell-value { font-size: 16px; }
    .hero-meta-bar .cell { padding: 13px 10px 12px; }
  }

  /* ─── CHAPTER SHELL ─────────────────────────────────── */
  section.chapter {
    padding: clamp(80px, 14vh, 160px) 0;
    border-bottom: 1px solid var(--hairline);
  }
  section.chapter.soft { background: var(--bg-soft); }

  .section-head {
    margin-bottom: 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
  }
  .section-head .label { display: block; margin-bottom: 24px; }
  .section-head h2 {
    font-family: var(--serif);
    font-stretch: 75%;
    font-weight: 300;
    font-size: clamp(36px, 4.6vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.015em;
    max-width: 16ch;
  }
  .section-head h2 em { font-style: italic; color: var(--emphasis); font-weight: inherit; }
  .section-head p {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.55;
    max-width: 40ch;
  }
  @media (max-width: 800px) {
    .section-head { grid-template-columns: 1fr; gap: 32px; margin-bottom: 48px; }
  }
  @media (max-width: 700px) {
    section.chapter { padding: clamp(56px, 10vh, 96px) 0; }
    .section-head { margin-bottom: 40px; gap: 24px; }
    .section-head h2 { font-size: clamp(30px, 8vw, 44px); }
    .section-head p { font-size: 16px; }
  }

  /* ─── LONGFORM PROSE ────────────────────────────────── */
  .longform {
    max-width: 42em;
  }
  .longform.center { margin: 0 auto; }
  .longform p {
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.6;
    color: var(--ink);
    margin-bottom: 28px;
  }
  .longform p.lede {
    font-family: var(--serif);
    font-stretch: 75%;
    font-weight: 300;
    font-size: clamp(24px, 2.4vw, 32px);
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: 36px;
    letter-spacing: -0.005em;
  }
  .longform p strong { font-weight: 600; color: var(--ink); }
  .longform .pullquote {
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    padding: 28px 0;
    margin: 40px 0;
    font-family: var(--serif);
    font-stretch: 75%;
    font-weight: 300;
    font-size: clamp(22px, 2.3vw, 32px);
    line-height: 1.3;
    color: var(--ink);
    font-style: italic;
  }
  .longform .pullquote cite {
    display: block;
    font-style: normal;
    font-family: var(--serif);
    font-size: 13px;
    font-stretch: 100%;
    color: var(--ink-soft);
    margin-top: 16px;
    letter-spacing: 0;
  }
  @media (max-width: 700px) {
    .longform p { font-size: 17px; margin-bottom: 22px; line-height: 1.55; }
    .longform p.lede { font-size: clamp(20px, 5.5vw, 26px); margin-bottom: 26px; }
    .longform .pullquote { padding: 22px 0; margin: 28px 0; font-size: clamp(19px, 5vw, 24px); }
  }

  /* ─── CHOICE ────────────────────────────────────────── */
  .choice {
    max-width: 880px;
    margin: 32px auto 0;
    border-top: 1px solid var(--hairline);
  }
  .choice-prompt {
    font-family: var(--serif);
    font-stretch: 75%;
    font-weight: 300;
    font-size: clamp(24px, 2.6vw, 36px);
    line-height: 1.25;
    color: var(--ink);
    padding: 36px 0 32px;
    text-align: center;
    border-bottom: 1px solid var(--hairline);
  }
  .choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .choice-btn {
    background: transparent;
    border: none;
    border-right: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    padding: 28px 32px;
    cursor: pointer;
    font-family: var(--serif);
    font-size: 19px;
    color: var(--ink);
    text-align: left;
    transition: background 0.18s;
    line-height: 1.3;
  }
  .choice-btn:nth-child(2n) { border-right: none; }
  .choice-btn:nth-last-child(-n+2) { border-bottom: none; }
  .choice-btn:hover { background: var(--bg-deep); }
  .choice-btn .opt {
    font-family: var(--serif);
    font-size: 11px;
    color: var(--ink-soft);
    display: block;
    margin-bottom: 8px;
  }
  .choice-btn.is-selected { background: var(--saffron); }
  .choice-btn.is-selected .opt { color: var(--olive-deep); }
  .choice-reveal {
    margin-top: 40px;
    padding: 32px 36px;
    background: var(--bg-deep);
    font-family: var(--serif);
    font-stretch: 75%;
    font-weight: 300;
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.4;
    color: var(--ink);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s, transform 0.5s;
  }
  .choice-reveal.show { opacity: 1; transform: translateY(0); }
  .choice-reveal strong { color: var(--emphasis); font-weight: inherit; font-style: italic; }
  @media (max-width: 600px) {
    .choice-grid { grid-template-columns: 1fr; }
    .choice-btn { border-right: none; }
    .choice-btn:nth-last-child(-n+2) { border-bottom: 1px solid var(--hairline); }
    .choice-btn:last-child { border-bottom: none; }
  }

  /* ─── CONTACT (messages alongside prose) ────────────── */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: start;
  }
  @media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  }
  .contact-grid .longform { max-width: none; }

  /* ─── REAL PHONE + WHATSAPP MOCKUP ──────────────────── */
  .phone-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .phone {
    width: 100%;
    max-width: 360px;
    background: #0E1418;
    border-radius: 44px;
    padding: 9px;
    position: relative;
    box-shadow:
      0 30px 60px rgba(14, 20, 24, 0.28),
      0 8px 18px rgba(14, 20, 24, 0.18),
      inset 0 0 0 2px rgba(255,255,255,0.04);
  }
  /* Side buttons */
  .phone::before,
  .phone::after {
    content: '';
    position: absolute;
    background: #0E1418;
    border-radius: 2px;
  }
  .phone::before {
    /* volume / power on right */
    width: 3px;
    height: 70px;
    right: -3px;
    top: 130px;
    box-shadow: 0 90px 0 #0E1418;
  }
  .phone::after {
    /* mute / volume on left */
    width: 3px;
    height: 30px;
    left: -3px;
    top: 110px;
    box-shadow: 0 50px 0 0 #0E1418, 0 95px 0 0 #0E1418;
  }
  .phone-screen {
    background: #ECE5DD;
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 9 / 19.5;
    display: flex;
    flex-direction: column;
  }
  .phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 95px;
    height: 28px;
    background: #0E1418;
    border-radius: 999px;
    z-index: 10;
  }
  .phone-statusbar {
    height: 44px;
    padding: 14px 24px 4px;
    background: #075E54;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
  }
  .phone-statusbar .time { letter-spacing: 0.02em; }
  .phone-statusbar .icons {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .phone-statusbar svg { display: block; }
  .wa-header {
    background: #075E54;
    color: #fff;
    padding: 6px 12px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    box-shadow: 0 1px 0 rgba(0,0,0,0.1);
  }
  .wa-back {
    background: none;
    border: none;
    color: #fff;
    padding: 0;
    font-size: 22px;
    line-height: 1;
    cursor: default;
    width: 16px;
    display: flex;
    align-items: center;
  }
  .wa-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--saffron);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-weight: 500;
    font-size: 16px;
    flex-shrink: 0;
    position: relative;
  }
  .wa-info {
    flex: 1;
    min-width: 0;
    line-height: 1.1;
  }
  .wa-name {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .wa-status {
    font-family: var(--sans);
    font-size: 11px;
    color: rgba(255,255,255,0.85);
    margin-top: 2px;
  }
  .wa-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    opacity: 0.9;
  }
  .wa-actions svg { display: block; }
  .wa-chat {
    flex: 1;
    padding: 14px 10px 8px;
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background-color: #ECE5DD;
    background-image:
      radial-gradient(rgba(218, 207, 188, 0.55) 1px, transparent 1px),
      radial-gradient(rgba(218, 207, 188, 0.35) 1px, transparent 1px);
    background-size: 28px 28px, 36px 36px;
    background-position: 0 0, 14px 18px;
  }
  .wa-date-pill {
    align-self: center;
    background: #DDE5DC;
    color: #5C6661;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 3px 12px 4px;
    border-radius: 999px;
    margin: 4px 0 8px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.05);
  }
  .wa-msg {
    max-width: 78%;
    padding: 6px 9px 5px;
    font-family: var(--sans);
    font-size: 13px;
    line-height: 1.35;
    color: #111;
    position: relative;
    box-shadow: 0 1px 0.5px rgba(0,0,0,0.13);
    word-wrap: break-word;
  }
  .wa-msg.in {
    background: #FFFFFF;
    align-self: flex-end;
    border-radius: 8px 8px 0 8px;
  }
  .wa-msg.out {
    background: #DCF8C6;
    align-self: flex-start;
    border-radius: 8px 8px 8px 0;
  }
  .wa-msg .meta {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    color: rgba(0,0,0,0.45);
    margin-left: 8px;
    float: right;
    margin-top: 4px;
    line-height: 1;
  }
  .wa-msg .meta .ticks {
    color: #4FC3F7;
    font-weight: 600;
    letter-spacing: -2px;
    margin-left: 1px;
  }
  .wa-msg::after {
    content: '';
    display: block;
    clear: both;
  }
  .wa-input {
    padding: 7px 8px;
    background: #ECE5DD;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
  }
  .wa-input-field {
    flex: 1;
    background: #fff;
    border-radius: 22px;
    padding: 8px 14px;
    font-family: var(--sans);
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 1px 0.5px rgba(0,0,0,0.08);
  }
  .wa-input-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #128C7E;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .phone-home-indicator {
    position: absolute;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 4px;
    background: rgba(0,0,0,0.35);
    border-radius: 999px;
    z-index: 10;
  }

  @media (max-width: 900px) {
    .phone { max-width: 320px; margin: 0 auto; }
    .wa-chat { padding: 12px 8px 6px; gap: 5px; }
    .wa-msg { font-size: 12.5px; padding: 5px 8px 4px; line-height: 1.3; }
  }
  @media (max-width: 420px) {
    .phone { max-width: 270px; padding: 7px; border-radius: 38px; }
    .phone-screen { border-radius: 32px; }
    .phone-notch { width: 78px; height: 24px; top: 8px; }
    .phone-statusbar { padding: 11px 18px 3px; font-size: 11.5px; height: 38px; }
    .wa-header { padding: 5px 10px 8px; gap: 8px; }
    .wa-avatar { width: 32px; height: 32px; font-size: 14px; }
    .wa-name { font-size: 13px; }
    .wa-status { font-size: 10px; }
    .wa-actions { gap: 10px; }
    .wa-chat { padding: 10px 7px 5px; gap: 4px; }
    .wa-msg { font-size: 12px; padding: 5px 7px 4px; max-width: 82%; }
    .wa-msg .meta { font-size: 9px; }
    .wa-input { padding: 6px 7px; }
    .wa-input-field { padding: 7px 12px; font-size: 11px; }
    .wa-input-icon { width: 32px; height: 32px; }
    .wa-date-pill { font-size: 9px; padding: 2px 10px 3px; margin: 2px 0 5px; }
    .phone-home-indicator { width: 90px; height: 3px; bottom: 5px; }
  }

  /* ─── INTAKE STEPS GRID (apply → intake → interview → assess) ─ */
  .intake-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--hairline);
    margin-bottom: 48px;
  }
  .intake-cell {
    padding: 36px 28px 32px 0;
    border-right: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    position: relative;
  }
  .intake-cell:last-child { border-right: none; }
  .intake-cell .step-num {
    font-family: var(--serif);
    font-size: 11px;
    color: var(--ink-soft);
    margin-bottom: 28px;
  }
  .intake-cell h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 26px;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }
  .intake-cell h3 em { font-style: italic; color: var(--emphasis); }
  .intake-cell .what {
    font-family: var(--sans);
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.55;
  }
  .intake-cell .what strong { color: var(--ink); font-weight: 600; }
  .intake-cell .meta {
    margin-top: 18px;
    font-family: var(--serif);
    font-size: 11px;
    color: var(--ink-soft);
    font-style: italic;
  }
  @media (max-width: 900px) {
    .intake-grid { grid-template-columns: repeat(2, 1fr); }
    .intake-cell { padding: 28px 20px 24px 0; }
    .intake-cell:nth-child(2) { border-right: none; }
    .intake-cell:nth-child(2n) { border-right: none; padding-right: 0; }
    .intake-cell:nth-child(2n+1) { padding-left: 0; }
    .intake-cell:nth-child(odd) ~ .intake-cell:nth-child(even) { padding-left: 20px; }
  }
  @media (max-width: 500px) {
    .intake-grid { grid-template-columns: 1fr; }
    .intake-cell { border-right: none; padding: 24px 0; }
    .intake-cell:nth-child(2n+1) ~ .intake-cell { padding-left: 0; }
    .intake-cell h3 { font-size: 22px; }
    .intake-cell .step-num { margin-bottom: 18px; }
  }

  /* ─── TEAM CIRCLE SCROLLYTELLING ────────────────────── */
  .team-scrolly {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
    position: relative;
  }
  @media (max-width: 900px) {
    .team-scrolly { grid-template-columns: 1fr; gap: 32px; }
  }
  .team-sticky {
    position: sticky;
    top: 100px;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  @media (max-width: 900px) {
    .team-sticky { height: 55vh; top: 70px; }
  }
  @media (max-width: 600px) {
    .team-sticky { height: 50vh; }
  }
  .team-stage {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1;
    position: relative;
  }
  .family-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: var(--saffron);
    border: 1px solid var(--olive-deep);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    box-shadow: 0 12px 28px rgba(184, 134, 11, 0.15);
  }
  .family-center .fam-name {
    font-family: var(--serif);
    font-stretch: 75%;
    font-weight: 300;
    font-size: 22px;
    line-height: 1.05;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .family-center .fam-meta {
    font-family: var(--serif);
    font-size: 10px;
    color: var(--olive-deep);
    margin-top: 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .pro-circle {
    position: absolute;
    width: 104px;
    text-align: center;
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.6s, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .pro-circle.show { opacity: 1; transform: scale(1); }
  .pro-bubble {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--hairline-strong);
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.02em;
    transition: background 0.35s, border-color 0.35s, box-shadow 0.35s, transform 0.35s;
  }
  section.chapter.soft .pro-bubble { background: var(--bg-soft); }
  .pro-circle.active .pro-bubble {
    background: var(--saffron);
    border-color: var(--olive-deep);
    transform: scale(1.08);
    box-shadow: 0 8px 18px rgba(184, 134, 11, 0.2);
  }
  .pro-circle .pro-name {
    font-family: var(--serif);
    font-size: 12px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 3px;
    letter-spacing: -0.005em;
  }
  .pro-circle .pro-role {
    font-family: var(--serif);
    font-style: italic;
    font-size: 11px;
    color: var(--emphasis);
    line-height: 1.3;
  }
  /* Position the 8 pros around the family in the stage (clock positions). */
  #pro1 { top: 1%;  left: 50%; transform: translateX(-50%) scale(0.6); }
  #pro1.show { transform: translateX(-50%) scale(1); }
  #pro2 { top: 14%; right: 6%; }     /* 1:30 */
  #pro3 { top: 40%; right: -1%; }    /* 3:00 */
  #pro4 { bottom: 14%; right: 6%; }  /* 4:30 */
  #pro5 { bottom: 1%; left: 50%; transform: translateX(-50%) scale(0.6); }
  #pro5.show { transform: translateX(-50%) scale(1); }
  #pro6 { bottom: 14%; left: 6%; }   /* 7:30 */
  #pro7 { top: 40%; left: -1%; }     /* 9:00 */
  #pro8 { top: 14%; left: 6%; }      /* 10:30 */

  @media (max-width: 600px) {
    .family-center { width: 96px; height: 96px; }
    .family-center .fam-name { font-size: 16px; }
    .pro-circle { width: 76px; }
    .pro-bubble { width: 46px; height: 46px; font-size: 17px; }
    .pro-circle .pro-name { font-size: 10.5px; }
    .pro-circle .pro-role { font-size: 9.5px; }
    #pro3 { right: 1%; }
    #pro7 { left: 1%; }
  }
  @media (max-width: 420px) {
    .family-center { width: 80px; height: 80px; }
    .family-center .fam-name { font-size: 13px; line-height: 1; }
    .family-center .fam-meta { font-size: 8.5px; margin-top: 5px; }
    .pro-circle { width: 66px; }
    .pro-bubble { width: 38px; height: 38px; font-size: 14px; margin-bottom: 6px; }
    .pro-circle .pro-name { font-size: 9.5px; margin-bottom: 1px; line-height: 1.15; }
    .pro-circle .pro-role { font-size: 8.5px; line-height: 1.2; }
    #pro2, #pro8 { top: 12%; }
    #pro4, #pro6 { bottom: 12%; }
    #pro2 { right: 2%; }
    #pro4 { right: 2%; }
    #pro6 { left: 2%; }
    #pro8 { left: 2%; }
    #pro3 { right: 2%; top: 42%; }
    #pro7 { left: 2%; top: 42%; }
  }

  .team-text {
    display: flex;
    flex-direction: column;
    padding: 10vh 0;
  }
  .team-step {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 0;
  }
  .team-step .when {
    font-family: var(--serif);
    font-size: 11px;
    color: var(--ink-soft);
    margin-bottom: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .team-step h3 {
    font-family: var(--serif);
    font-stretch: 75%;
    font-weight: 300;
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -0.015em;
    color: var(--ink);
  }
  .team-step h3 em { color: var(--emphasis); font-style: italic; font-weight: inherit; }
  .team-step p {
    font-family: var(--serif);
    font-size: 18px;
    color: var(--ink);
    line-height: 1.55;
    max-width: 38ch;
  }
  .team-step p em { color: var(--emphasis); font-style: italic; }
  @media (max-width: 900px) {
    .team-text { padding: 4vh 0; }
    .team-step { min-height: 60vh; padding: 16px 0; }
  }
  @media (max-width: 600px) {
    .team-step { min-height: 52vh; padding: 12px 0; }
    .team-step h3 { font-size: clamp(22px, 6.5vw, 30px); margin-bottom: 12px; }
    .team-step p { font-size: 15.5px; max-width: 40ch; }
    .team-step .when { margin-bottom: 8px; font-size: 10px; }
    .team-text { padding: 2vh 0; }
  }
  @media (max-width: 420px) {
    .team-step { min-height: 48vh; }
    .team-step h3 { font-size: 22px; }
    .team-step p { font-size: 15px; line-height: 1.5; }
  }
  .team-footnote {
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--hairline);
    font-family: var(--serif);
    font-stretch: 75%;
    font-weight: 300;
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1.4;
    color: var(--ink);
    max-width: 44ch;
  }
  .team-footnote em { color: var(--emphasis); font-style: italic; }

  /* ─── P&L STICKY SCROLLYTELLING ─────────────────────── */
  .pl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: flex-start;
    position: relative;
  }
  @media (max-width: 900px) { .pl-grid { grid-template-columns: 1fr; gap: 32px; } }

  .pl-sticky {
    position: sticky;
    top: 100px;
    align-self: flex-start;
  }
  @media (max-width: 900px) {
    .pl-sticky { position: sticky; top: 80px; }
  }

  .pl-card {
    border-top: 1px solid var(--ink);
    background: var(--bg);
  }
  section.chapter.soft .pl-card { background: var(--bg-soft); }
  .pl-month-label {
    font-family: var(--serif);
    font-size: 11px;
    color: var(--ink-soft);
    padding: 14px 0;
    border-bottom: 1px solid var(--hairline);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
  .pl-month-label .stage {
    font-family: var(--serif);
    font-style: italic;
    font-size: 13px;
    color: var(--emphasis);
    transition: opacity 0.4s;
  }
  .pl-row {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 16px 0;
    border-bottom: 1px solid var(--hairline);
    font-family: var(--serif);
    font-size: 16px;
    align-items: baseline;
  }
  .pl-row .label-cell { color: var(--ink); }
  .pl-row .label-cell .annot {
    font-family: var(--serif);
    font-style: italic;
    font-size: 13px;
    color: var(--emphasis);
    margin-left: 8px;
    opacity: 0;
    transition: opacity 0.5s;
  }
  .pl-row .val {
    font-family: var(--serif);
    font-feature-settings: "tnum";
    color: var(--ink);
    font-weight: 500;
    transition: color 0.5s;
  }
  .pl-row.expense .val { color: var(--brick); }
  .pl-row.expense.fixed .val { color: var(--ink); }
  .pl-row.income .val { color: var(--teal-deep); }
  .pl-net {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 22px 0 4px;
    margin-top: 4px;
    border-top: 2px solid var(--ink);
    font-family: var(--serif);
    font-stretch: 75%;
    font-weight: 300;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1;
    letter-spacing: -0.01em;
  }
  .pl-net .val { font-feature-settings: "tnum"; color: var(--brick); transition: color 0.7s; }
  .pl-card.month-3 .label-cell .annot.m3,
  .pl-card.month-5 .label-cell .annot.m3,
  .pl-card.month-5 .label-cell .annot.m5 { opacity: 1; }
  .pl-card.month-5 .pl-net .val { color: var(--teal-deep); }

  .pl-step {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px 0;
    border-bottom: 1px solid var(--hairline);
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.4s;
  }
  @media (max-width: 900px) {
    .pl-step { min-height: 50vh; }
  }
  .pl-step:first-child { padding-top: 0; }
  .pl-step:last-child { border-bottom: none; }
  .pl-step.is-active { opacity: 1; }
  .pl-step .when {
    font-family: var(--serif);
    font-size: 11px;
    color: var(--ink-soft);
    margin-bottom: 12px;
  }
  .pl-step h3 {
    font-family: var(--serif);
    font-stretch: 75%;
    font-weight: 300;
    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }
  .pl-step h3 em { color: var(--emphasis); font-style: italic; }
  .pl-step p {
    font-family: var(--serif);
    font-size: 16px;
    color: var(--ink-soft);
    line-height: 1.55;
  }
  .pl-step p strong { color: var(--ink); font-weight: 600; }

  @media (max-width: 600px) {
    .pl-step { min-height: 55vh; padding: 14px 0; }
    .pl-step h3 { font-size: clamp(22px, 6vw, 28px); }
    .pl-step p { font-size: 15px; }
    .pl-row { font-size: 14px; padding: 12px 0; }
    .pl-row .label-cell .annot { display: block; margin-left: 0; margin-top: 2px; font-size: 11px; }
    .pl-net { font-size: clamp(24px, 7vw, 32px); padding: 18px 0 4px; }
    .pl-month-label { font-size: 10px; padding: 12px 0; }
    .pl-month-label .stage { font-size: 12px; }
  }
  @media (max-width: 420px) {
    .pl-step { min-height: 48vh; }
    .pl-step h3 { font-size: 20px; }
    .pl-step p { font-size: 14.5px; }
    .pl-card { padding-bottom: 4px; }
  }

  /* ─── TUITION (dark chapter) ────────────────────────── */
  .tuition {
    background: var(--ink);
    color: var(--bg);
    padding: clamp(100px, 16vh, 200px) 0;
    border-bottom: 1px solid var(--hairline);
  }
  .tuition .section-head .label { color: var(--saffron); }
  .tuition .section-head h2 { color: var(--bg); }
  .tuition .section-head h2 em { color: var(--saffron); }
  .tuition .section-head p { color: var(--saffron); opacity: 0.85; }
  .tuition .longform p { color: var(--bg-deep); }
  .tuition .longform p strong { color: var(--bg); }
  .tuition .longform p.lede { color: var(--bg); }
  .email-mock {
    background: var(--parchment-soft);
    color: var(--ink);
    padding: 32px 36px;
    margin: 48px 0;
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
    max-width: 660px;
  }
  .email-header {
    border-bottom: 1px solid var(--hairline);
    padding-bottom: 16px;
    margin-bottom: 20px;
    font-family: var(--serif);
    font-size: 13px;
    color: var(--ink-soft);
  }
  .email-header .field { padding: 3px 0; }
  .email-header .field strong { color: var(--ink); font-weight: 500; min-width: 60px; display: inline-block; }
  .email-subject {
    font-family: var(--serif);
    font-size: 19px;
    color: var(--ink);
    margin-top: 12px;
    font-weight: 500;
    letter-spacing: -0.005em;
  }
  .email-body { font-family: var(--serif); font-size: 15px; line-height: 1.65; color: var(--ink); }
  .email-body p { margin-bottom: 14px; color: var(--ink); }
  .redacted { background: var(--ink); color: var(--ink); user-select: none; padding: 0 4px; }
  @media (max-width: 700px) {
    .tuition { padding: clamp(60px, 10vh, 110px) 0; }
    .email-mock { padding: 22px 22px; margin: 32px 0; }
    .email-header { font-size: 12px; padding-bottom: 12px; margin-bottom: 16px; }
    .email-header .field strong { min-width: 48px; }
    .email-subject { font-size: 17px; }
    .email-body, .email-body p { font-size: 14px; line-height: 1.6; }
  }

  .tuition-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.18);
    border-bottom: 1px solid rgba(255,255,255,0.18);
    margin-top: 64px;
  }
  .tuition-numbers .cell {
    padding: 36px 32px 32px 0;
    border-right: 1px solid rgba(255,255,255,0.18);
  }
  .tuition-numbers .cell:last-child { border-right: none; padding-right: 0; }
  .tuition-numbers .cell:not(:first-child) { padding-left: 32px; }
  .tuition-numbers .big {
    font-family: var(--serif);
    font-stretch: 75%;
    font-weight: 300;
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--bg);
    margin-bottom: 14px;
  }
  .tuition-numbers .big em { color: var(--saffron); font-style: italic; }
  .tuition-numbers .lbl { font-family: var(--serif); font-size: 12px; color: var(--saffron); line-height: 1.4; }
  @media (max-width: 700px) {
    .tuition-numbers { grid-template-columns: 1fr; }
    .tuition-numbers .cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.18); padding: 28px 0; }
    .tuition-numbers .cell:last-child { border-bottom: none; }
    .tuition-numbers .cell:not(:first-child) { padding-left: 0; }
  }

  /* ─── MARRIAGE ──────────────────────────────────────── */
  .marriage-stage {
    position: relative;
    margin: 48px auto 0;
    min-height: 460px;
  }
  .bub-col {
    width: 46%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 1.4s cubic-bezier(0.2, 0.65, 0.3, 1);
  }
  .bub-col.he { position: absolute; left: 0; top: 0; align-items: flex-start; }
  .bub-col.she { position: absolute; right: 0; top: 60px; align-items: flex-end; }
  .marriage-stage.together .bub-col.he { transform: translateX(28%); }
  .marriage-stage.together .bub-col.she { transform: translateX(-28%); }
  .bub {
    padding: 14px 20px;
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.4;
    max-width: 300px;
    border: 1px solid var(--hairline);
    background: var(--bg);
    transition: all 1.4s cubic-bezier(0.2, 0.65, 0.3, 1);
  }
  section.chapter.soft .bub { background: var(--bg-soft); }
  .bub-col.she .bub { background: var(--parchment-deep); }
  .marriage-stage.together .bub-col.he .bub,
  .marriage-stage.together .bub-col.she .bub {
    background: var(--saffron);
    border-color: var(--olive-deep);
  }
  .together-word {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    font-family: var(--serif);
    font-stretch: 75%;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(60px, 8vw, 120px);
    line-height: 1;
    color: var(--emphasis);
    opacity: 0;
    transition: all 1.4s cubic-bezier(0.2, 0.65, 0.3, 1);
    pointer-events: none;
    z-index: 5;
  }
  .marriage-stage.together .together-word { opacity: 1; transform: translate(-50%, -50%) scale(1); transition-delay: 0.6s; }
  @media (max-width: 700px) {
    .marriage-stage { min-height: 380px; }
    .bub-col { width: 72%; gap: 10px; }
    .bub { font-size: 15px; padding: 11px 16px; }
    .marriage-stage.together .bub-col.he { transform: translateX(6%); }
    .marriage-stage.together .bub-col.she { transform: translateX(-6%); }
    .together-word { font-size: clamp(48px, 18vw, 80px); }
  }
  @media (max-width: 420px) {
    .marriage-stage { min-height: 320px; }
    .bub-col { width: 78%; gap: 8px; }
    .bub { font-size: 13.5px; padding: 9px 13px; }
    .marriage-stage.together .bub-col.he { transform: translateX(3%); }
    .marriage-stage.together .bub-col.she { transform: translateX(-3%); }
    .together-word { font-size: 48px; }
  }

  /* ─── BEFORE / AFTER ────────────────────────────────── */
  .ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    margin-top: 48px;
  }
  .ba-col { padding: 40px 32px 36px 0; border-right: 1px solid var(--hairline); }
  .ba-col:last-child { border-right: none; padding-right: 0; padding-left: 32px; }
  .ba-col h4 {
    font-family: var(--serif);
    font-size: 11px;
    color: var(--ink-soft);
    margin-bottom: 28px;
  }
  .ba-col.after h4 { color: var(--emphasis); }
  .ba-line {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 14px 0;
    border-bottom: 1px solid var(--hairline);
    font-family: var(--serif);
    font-size: 16px;
    color: var(--ink);
  }
  .ba-line:last-child { border-bottom: none; }
  .ba-line .v { font-feature-settings: "tnum"; font-weight: 500; }
  .ba-col.before .ba-line .v { color: var(--brick); }
  .ba-col.after .ba-line .v { color: var(--teal-deep); }
  @media (max-width: 700px) {
    .ba-grid { grid-template-columns: 1fr; }
    .ba-col { border-right: none; border-bottom: 1px solid var(--hairline); padding: 32px 0; }
    .ba-col:last-child { padding-left: 0; border-bottom: none; }
  }

  /* ─── REVEAL ────────────────────────────────────────── */
  .reveal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(24px, 1fr));
    gap: 8px;
    margin: 56px 0;
  }
  .fam-dot {
    aspect-ratio: 1;
    background: var(--hairline-strong);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.5s, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .fam-dot.show { opacity: 1; transform: scale(1); }
  .fam-dot.highlight {
    background: var(--saffron);
    transform: scale(1.25);
    box-shadow: 0 0 0 2px var(--olive-deep);
  }

  .reveal-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    margin-top: 56px;
  }
  .reveal-stats .cell {
    padding: 36px 24px 32px 0;
    border-right: 1px solid var(--hairline);
  }
  .reveal-stats .cell:last-child { border-right: none; padding-right: 0; }
  .reveal-stats .cell:not(:first-child) { padding-left: 24px; }
  .reveal-stats .big {
    font-family: var(--serif);
    font-stretch: 75%;
    font-weight: 300;
    font-size: clamp(42px, 5vw, 76px);
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 14px;
  }
  .reveal-stats .lbl { font-family: var(--serif); font-size: 12px; color: var(--ink-soft); line-height: 1.4; }
  @media (max-width: 700px) {
    .reveal-grid { grid-template-columns: repeat(auto-fit, minmax(18px, 1fr)); gap: 6px; margin: 36px 0; }
    .reveal-stats { grid-template-columns: 1fr 1fr; }
    .reveal-stats .cell { padding: 28px 16px 24px 0; }
    .reveal-stats .cell:nth-child(2) { border-right: none; padding-right: 0; }
    .reveal-stats .cell:nth-child(3), .reveal-stats .cell:nth-child(4) { border-top: 1px solid var(--hairline); }
    .reveal-stats .cell:nth-child(3) { padding-left: 0; padding-right: 16px; }
    .reveal-stats .cell:nth-child(4) { padding-left: 16px; }
    .reveal-stats .big { font-size: clamp(34px, 9vw, 50px); margin-bottom: 10px; }
    .reveal-stats .lbl { font-size: 11px; }
  }
  @media (max-width: 420px) {
    .reveal-grid { grid-template-columns: repeat(auto-fit, minmax(14px, 1fr)); gap: 5px; }
    .reveal-stats .big { font-size: 30px; }
  }

  /* ─── DONATE (mirrors index) ────────────────────────── */
  .donate {
    padding: clamp(100px, 16vh, 200px) 0;
    background: var(--ink);
    color: var(--bg);
  }
  .donate-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: end;
  }
  .donate h2 {
    font-family: var(--serif);
    font-stretch: 75%;
    font-weight: 300;
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.015em;
    color: var(--bg);
    max-width: 16ch;
  }
  .donate h2 em { font-style: italic; color: var(--saffron); }
  .donate p { font-size: 16px; line-height: 1.55; color: var(--bg-deep); margin-bottom: 24px; }
  .donate .label { color: var(--bg-deep); display: block; margin-bottom: 24px; }
  .btn {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.18s ease;
    border: 1px solid transparent;
  }
  .btn-primary { background: var(--saffron); color: var(--ink); }
  .btn-primary:hover { filter: brightness(0.94); }
  .btn .arrow { transition: transform 0.18s ease; }
  .btn:hover .arrow { transform: translateX(3px); }
  @media (max-width: 800px) {
    .donate-inner { grid-template-columns: 1fr; gap: 40px; }
  }
  @media (max-width: 700px) {
    .donate { padding: clamp(72px, 12vh, 120px) 0; }
    .donate h2 { font-size: clamp(32px, 8vw, 48px); }
  }

  /* ─── FOOTER ────────────────────────────────────────── */
  footer {
    background: var(--bg);
    padding: clamp(48px, 6vh, 72px) 0 32px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--hairline);
  }
  .footer-brand h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.005em;
  }
  .footer-brand p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; max-width: 32ch; }
  .footer-col h4 {
    font-family: var(--serif);
    font-size: 13px;
    color: var(--ink);
    margin-bottom: 16px;
    font-weight: 500;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 12px; }
  .footer-col a {
    font-family: var(--serif);
    font-size: 13px;
    color: var(--ink-soft);
    text-decoration: none;
    transition: opacity 0.15s;
  }
  .footer-col a:hover { opacity: 0.6; }
  .footer-base {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--serif);
    font-size: 12px;
    color: var(--ink-soft);
    flex-wrap: wrap;
    gap: 16px;
  }
  @media (max-width: 800px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  }

  /* Progress bar */
  .progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    background: var(--saffron);
    width: 0;
    z-index: 100;
    transition: width 0.1s;
  }

  /* Light-mode lock */
  html, body { background: #F5F3ED !important; color: #313A44 !important; }
  section.chapter { background: #F5F3ED !important; }
  section.chapter.soft { background: #FBF9F3 !important; }
  .tuition, .donate { background: #313A44 !important; color: #F5F3ED !important; }
  .tuition h2, .donate h2 { color: #F5F3ED !important; }
