/* ==========================================================================
   Dr. Sofiawati · Income Revolution — Lead Magnet Page
   Revision 3 · High-Impact Personal Brand Direct-Response Editorial
   Plain CSS · tokens derived from the eBook cover (PAGE_BLUEPRINT.md §3)
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  --aubergine: #311746;
  --aubergine-deep: #1C0F29;
  --violet: #6B4A8F;
  --gold: #E3B546;
  --gold-light: #F4D98A;
  --gold-text: #8A6511;          /* gold for text on light surfaces (≥ 4.5:1) */
  --gold-grad: linear-gradient(135deg, #F6DC8E 0%, #E3B546 45%, #C9952F 100%);
  --lilac: #F2ECF7;
  --ivory: #FBF8F3;
  --paper: #F7F1E7;
  --white: #FFFFFF;
  --night: #18131F;
  --dawn: #F3E4CF;
  --ink: #241A2E;
  --muted: #6B6275;
  --on-dark: #F5F0FA;
  --on-dark-muted: rgba(245, 240, 250, .8);
  --line: #E6DDEC;
  --line-gold: rgba(227, 181, 70, .5);
  --error: #B3261E;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-script: "Allura", "Brush Script MT", cursive;

  --fs-body: 1.0625rem;
  --fs-lead: clamp(1.125rem, 1.02rem + .45vw, 1.3rem);
  --fs-h2: clamp(2rem, 1.25rem + 2.7vw, 3.5rem);
  --fs-display: clamp(2.4rem, 1.3rem + 4vw, 4.8rem);

  --gutter: 16px;
  --bleed: max(var(--gutter), calc((100vw - 1200px) / 2));   /* distance from container edge to viewport edge */
  --section-y: clamp(60px, 6.2vw, 100px);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius: 18px;

  --shadow-photo: 0 34px 60px -30px rgba(28, 15, 41, .65);
  --shadow-print: 0 22px 40px -18px rgba(28, 15, 41, .55);
  --focus: var(--aubergine);
  --ease: cubic-bezier(.2, .7, .2, 1);

  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .19 0 0 0 0 .09 0 0 0 0 .27 0 0 0 .5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.1'/%3E%3C/svg%3E");
  --grain-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}
@media (min-width: 640px) { :root { --gutter: 24px; } }
@media (min-width: 1024px) { :root { --gutter: 40px; --fs-body: 1.125rem; } }

/* ---------- 2. Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
picture img { width: 100%; }
h1, h2, h3, p, ol, ul, figure, blockquote { margin: 0; }
ol, ul { padding: 0; list-style: none; }
p + p { margin-top: 1.1em; }
strong { font-weight: 700; }
a { color: inherit; }
button { font: inherit; color: inherit; }
[id] { scroll-margin-top: 16px; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; border-radius: 6px; }

.skip-link { position: absolute; left: 12px; top: -80px; z-index: 100; padding: 10px 16px; border-radius: 10px; background: var(--gold); color: var(--aubergine-deep); font-weight: 700; text-decoration: none; }
.skip-link:focus { top: 12px; }

.container { position: relative; z-index: 1; width: 100%; max-width: calc(1200px + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.container--text { max-width: calc(780px + var(--gutter) * 2); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.hide-mobile { display: none !important; }
@media (min-width: 768px) { .hide-mobile { display: revert !important; } }
.chapter-no { display: none; }

/* sections that host decorative type / bleeds */
.hero, .s-optin, .s-intro, .s-origin, .s-authority, .s-crisis, .s-vow, .s-discovery, .s-breakthrough,
.s-meaning, .s-mission, .s-gallery, .s-testimonials, .s-metaphor, .s-decision, .s-faq, .s-final {
  position: relative;
  isolation: isolate;
}
.hero, .s-intro, .s-origin, .s-crisis, .s-vow, .s-discovery, .s-breakthrough,
.s-meaning, .s-gallery, .s-testimonials, .s-metaphor, .s-decision, .s-faq, .s-final { overflow: hidden; }
.s-authority, .s-mission { overflow-x: clip; }
.s-optin { overflow: clip; }

/* ---------- 3. Typography devices ---------- */
.h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.022em;
  font-variation-settings: "opsz" 144;
  color: var(--aubergine);
  text-wrap: balance;
}
.h2--xl { font-size: clamp(2.4rem, 1.3rem + 3.6vw, 4.4rem); }
.h2--light { color: var(--ivory); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-size: .78rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; line-height: 1.4;
  color: var(--gold-text);
}
.eyebrow::before {
  content: ""; flex: 0 0 34px; height: 1px; background: currentColor;
}
.eyebrow--light { color: var(--gold); }
.eyebrow--center { display: flex; justify-content: center; }
.eyebrow--center::after { content: ""; flex: 0 0 34px; height: 1px; background: currentColor; }

.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 18px 9px 14px;
  border: 1px solid rgba(227, 181, 70, .55);
  border-radius: 999px;
  background: rgba(227, 181, 70, .08);
  font-size: .74rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; line-height: 1.4;
  color: var(--gold-light);
}
.pill::before { content: ""; width: 8px; height: 8px; flex: 0 0 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(227, 181, 70, .25); }

/* oversized background word — existing copy words only, aria-hidden */
.bgword {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.03em;
  line-height: .8;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(49, 23, 70, .08);
  will-change: transform;
}
.vword {
  position: absolute;
  z-index: 2;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-body);
  font-size: .78rem; font-weight: 800; letter-spacing: .45em; text-transform: uppercase;
  pointer-events: none;
}

.em-line {
  font-weight: 600;
  color: var(--aubergine);
  background: linear-gradient(transparent 60%, rgba(227, 181, 70, .42) 60%);
  padding: 0 2px;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.dropcap::first-letter {
  float: left; margin: .06em .14em 0 0;
  font-family: var(--font-display); font-size: 4.4em; font-weight: 600; line-height: .78;
  color: var(--aubergine);
}

/* framed print (white border + long shadow) */
.print { background: var(--white); padding: 8px; box-shadow: var(--shadow-print); }
.print img { border-radius: 2px; }
/* gold offset rule frame */
.frame { position: relative; }
.frame > picture { position: relative; z-index: 1; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-photo); }
.frame::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 1.5px solid var(--gold); border-radius: var(--radius-lg); }

/* ---------- 4. Buttons ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 56px; padding: 16px 30px;
  border: 0; border-radius: 999px;
  font-family: var(--font-body); font-size: 1rem; font-weight: 800; letter-spacing: .03em; line-height: 1.3;
  text-align: center; text-decoration: none; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s, filter .2s;
}
.btn--gold {
  background: var(--gold-grad);
  color: var(--aubergine-deep);
  box-shadow: 0 16px 34px -14px rgba(227, 181, 70, .8), inset 0 1px 0 rgba(255, 255, 255, .55), inset 0 -2px 0 rgba(28, 15, 41, .14);
}
.btn--aubergine {
  background: var(--aubergine);
  color: var(--ivory);
  box-shadow: 0 18px 36px -16px rgba(28, 15, 41, .8), inset 0 1px 0 rgba(255, 255, 255, .12);
}
.btn::after {
  content: ""; position: absolute; inset: 0 auto 0 -60%; width: 40%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .45), transparent);
  transform: skewX(-18deg); transition: left .6s var(--ease);
}
.btn--aubergine::after { background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .18), transparent); }
.btn:hover { transform: translateY(-2px); filter: saturate(1.08); }
.btn:hover::after { left: 120%; }
.btn--lg { min-height: 62px; padding: 18px 34px; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn--wrap { white-space: normal; max-width: 640px; }
.btn__arrow { transition: transform .2s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn[aria-busy="true"], .btn--submit:disabled { opacity: .75; cursor: progress; }
.btn--submit[aria-busy="true"]::before {
  content: ""; width: 18px; height: 18px; flex: 0 0 18px;
  border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%;
  animation: submitSpin .7s linear infinite;
}
@keyframes submitSpin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .btn--submit[aria-busy="true"]::before { animation: none; }
}

.icon-btn {
  display: inline-grid; place-items: center;
  width: 46px; height: 46px; padding: 0;
  border: 1px solid rgba(245, 240, 250, .35); border-radius: 50%;
  background: rgba(245, 240, 250, .04); color: var(--on-dark); cursor: pointer;
  transition: background-color .2s, border-color .2s, color .2s;
}
.icon-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--aubergine-deep); }
.icon-btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-btn:disabled { opacity: .35; cursor: default; background: transparent; color: var(--on-dark); border-color: rgba(245, 240, 250, .35); }

/* ---------- 5. Mockup stack, halo, seal ---------- */
.mockup { position: relative; }
.mockup__cover { position: relative; z-index: 2; filter: drop-shadow(0 24px 26px rgba(10, 4, 16, .55)); }
.mockup__page {                      /* stacked copies behind the cover (same artwork, darkened) */
  position: absolute; inset: 0; z-index: 1;
  background: url("assets/img/cover-560.webp") center / contain no-repeat;
  filter: brightness(.42) saturate(.8);
  transform: translate(9%, 3%) rotate(7deg);
  transform-origin: bottom center;
}
.mockup__page + .mockup__page { z-index: 0; filter: brightness(.28) saturate(.6); transform: translate(17%, 6%) rotate(13deg); }
.mockup::after {                     /* floor shadow */
  content: ""; position: absolute; left: 4%; right: -12%; bottom: -5%; height: 10%; z-index: 0;
  background: radial-gradient(closest-side, rgba(0, 0, 0, .55), rgba(0, 0, 0, 0));
}

.halo {
  position: absolute; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, rgba(245, 230, 250, .16), rgba(245, 230, 250, .04) 58%, rgba(245, 230, 250, 0) 70%);
  border: 1.5px solid rgba(227, 181, 70, .6);
  box-shadow: 0 0 0 18px rgba(227, 181, 70, .05), 0 0 0 19px rgba(227, 181, 70, .22), 0 0 90px 12px rgba(227, 181, 70, .14);
}
.halo::after { content: ""; position: absolute; inset: -13%; border-radius: 50%; border: 1px dashed rgba(227, 181, 70, .28); }

.seal {
  position: absolute; z-index: 3;
  display: grid; place-content: center;
  width: 92px; height: 92px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #FBE7A6, #E3B546 55%, #B8862A);
  color: var(--aubergine-deep); text-align: center; line-height: 1.05;
  transform: rotate(-12deg);
  box-shadow: 0 14px 26px -10px rgba(0, 0, 0, .55), inset 0 0 0 4px rgba(255, 255, 255, .25), inset 0 0 0 6px rgba(28, 15, 41, .12);
}
.seal__big { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; }
.seal__small { margin-top: 3px; font-size: .56rem; font-weight: 700; }
.seal--lg { width: 124px; height: 124px; }
.seal--lg .seal__big { font-size: 1.55rem; }
.seal--lg .seal__small { font-size: .72rem; }

/* ---------- 6. Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* ==========================================================================
   S01 · HERO
   ========================================================================== */
.hero {
  --focus: var(--gold);
  background: var(--aubergine-deep);
  color: var(--on-dark);
  padding-top: 28px;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg picture, .s-final__bg picture { display: block; height: 100%; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(227, 181, 70, .16); border-radius: 22px; pointer-events: none; z-index: 3; }
.hero__word { font-size: 30vw; left: 50%; translate: -50% 0; top: 44%; -webkit-text-stroke-color: rgba(227, 181, 70, .14); }
.hero__vword { display: none; }

.hero__grid { display: grid; grid-template-columns: minmax(0, 1fr); grid-template-areas: "copy" "visual" "actions"; gap: 22px; padding-bottom: 32px; }
.hero__copy { grid-area: copy; }
.hero__visual { grid-area: visual; position: relative; }
.hero__actions { grid-area: actions; display: grid; gap: 16px; justify-items: center; }
.hero .pill { margin-bottom: 18px; }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 1.2rem + 2.75vw, 3.65rem);
  font-weight: 600; line-height: 1.06; letter-spacing: -.025em;
  font-variation-settings: "opsz" 144;
  color: var(--ivory);
  text-wrap: balance;
}
.hero__title em { font-style: italic; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; padding-right: .06em; }
.hero__q { color: var(--gold); }
.hero__sub { margin-top: 20px; max-width: 40ch; font-size: var(--fs-lead); line-height: 1.6; color: var(--on-dark-muted); }
.hero__sub strong { color: var(--gold); letter-spacing: .04em; }

/* hero stage: architectural arch + large portrait (no eBook in the hero) */
.hero__deco { position: absolute; inset: 0; }
.hero__deco img { width: 100%; height: 100%; object-fit: cover; }
.hero__stage { position: relative; width: min(100%, 440px); margin-inline: auto; aspect-ratio: 440 / 560; }
.hero__arch {
  position: absolute; left: 9%; right: 9%; top: 3%; bottom: 0;
  border-radius: 999px 999px 0 0;
  background:
    radial-gradient(95% 55% at 50% 24%, rgba(246, 220, 142, .62), rgba(227, 181, 70, .2) 55%, rgba(227, 181, 70, 0) 82%),
    linear-gradient(180deg, #4B2A5E 0%, #321A45 60%, #26132F 100%);
  box-shadow: inset 0 0 0 1.5px rgba(227, 181, 70, .75), inset 0 0 0 9px rgba(28, 15, 41, .35), inset 0 0 0 10px rgba(227, 181, 70, .35), 0 30px 80px -20px rgba(227, 181, 70, .25);
}
.hero__arch::before {                 /* outer echo arch */
  content: ""; position: absolute; inset: -26px -26px 0 -26px;
  border: 1px solid rgba(227, 181, 70, .3); border-bottom: 0; border-radius: 999px 999px 0 0;
}
.hero__arch::after {                  /* songket lattice inside the arch */
  content: ""; position: absolute; inset: 10px 10px 0 10px; border-radius: 999px 999px 0 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44'%3E%3Cpath d='M22 2L42 22L22 42L2 22Z' fill='none' stroke='%23E3B546' stroke-width='.9'/%3E%3Ccircle cx='22' cy='22' r='1.8' fill='%23E3B546'/%3E%3C/svg%3E") 0 0 / 44px;
  opacity: .12;
  -webkit-mask-image: radial-gradient(80% 60% at 50% 30%, transparent 35%, #000 90%); mask-image: radial-gradient(80% 60% at 50% 30%, transparent 35%, #000 90%);
}
.hero__portrait { position: absolute; left: 50%; bottom: 0; height: 100%; z-index: 1; translate: -50% 0; }
.hero__portrait img { width: auto; height: 100%; max-width: none; filter: drop-shadow(0 0 22px rgba(243, 201, 105, .28)) drop-shadow(0 24px 40px rgba(10, 4, 16, .55)); -webkit-mask-image: linear-gradient(#000 92%, transparent); mask-image: linear-gradient(#000 92%, transparent); }
.hero__caption { margin-top: 12px; text-align: center; font-size: .86rem; line-height: 1.5; color: var(--on-dark-muted); }
.hero__caption strong { color: var(--ivory); font-weight: 600; }
.hero__actions .btn { width: 100%; }
.hero__proof { display: inline-flex; align-items: center; gap: 12px; font-size: .9rem; font-weight: 600; color: var(--on-dark); text-decoration: none; }
.hero__proof-text { border-bottom: 1px solid rgba(227, 181, 70, .6); padding-bottom: 1px; }
.hero__proof:hover .hero__proof-text { color: var(--gold); }
.avatars { display: flex; }
.avatars picture { width: 38px; height: 38px; border-radius: 50%; overflow: hidden; box-shadow: 0 0 0 2px var(--aubergine-deep), 0 0 0 3px rgba(227, 181, 70, .7); }
.avatars picture + picture { margin-left: -10px; }
.avatars img { width: 100%; height: 100%; object-fit: cover; }

.hero__creds { position: relative; z-index: 2; border-top: 1px solid rgba(227, 181, 70, .22); background: linear-gradient(180deg, rgba(10, 5, 16, .55), rgba(10, 5, 16, .8)); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.creds { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.creds li { display: grid; gap: 2px; padding: 16px 12px; }
.creds li:nth-child(odd) { border-right: 1px solid rgba(245, 240, 250, .1); padding-left: 0; }
.creds li:nth-child(-n+2) { border-bottom: 1px solid rgba(245, 240, 250, .1); }
.creds strong { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; line-height: 1.2; color: var(--gold); }
.creds span { font-size: .78rem; line-height: 1.4; color: var(--on-dark-muted); }

@media (min-width: 640px) {
  .hero__actions .btn { width: auto; }
  .hero__stage { width: min(100%, 480px); }
}
@media (min-width: 1024px) {
  .hero { padding-top: 60px; min-height: min(100vh, 940px); display: grid; grid-template-rows: 1fr auto; }
  .hero::after { inset: 18px; }
  .hero__word { font-size: 12.5vw; left: auto; right: -1vw; top: 7%; bottom: auto; }
  .hero__vword { display: block; right: 34px; top: 50%; translate: 0 -50%; color: rgba(227, 181, 70, .5); }
  .hero__grid {
    grid-template-columns: minmax(0, 7.3fr) minmax(0, 4.7fr);
    grid-template-areas: "copy visual" "actions visual";
    grid-template-rows: 1fr auto;
    column-gap: 40px; row-gap: 34px;
    padding-bottom: 0;
  }
  .hero__copy { align-self: end; }
  .hero__actions { align-self: start; justify-items: start; grid-auto-flow: column; justify-content: start; align-items: center; gap: 28px; padding-bottom: 56px; }
  .hero__visual { align-self: end; }
  .hero__stage { width: 100%; max-width: 640px; aspect-ratio: 640 / 780; margin-left: auto; }
  .hero__arch { left: 11%; right: 11%; top: 2%; }
  .hero__arch::before { inset: -34px -34px 0 -34px; }
  .hero__caption { position: absolute; right: 0; bottom: 28px; z-index: 3; margin: 0; padding: 8px 16px; border-radius: 999px; background: rgba(28, 15, 41, .72); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border: 1px solid rgba(227, 181, 70, .3); }
  .creds { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .creds li { padding: 22px 28px; border-bottom: 0 !important; border-right: 1px solid rgba(245, 240, 250, .1); }
  .creds li:first-child { padding-left: 0; }
  .creds li:last-child { border-right: 0; }
  .creds strong { font-size: 1.6rem; }
  .creds span { font-size: .85rem; }
}

/* ==========================================================================
   S02 · BENEFITS + OPT-IN
   ========================================================================== */
.s-optin { padding-top: var(--section-y); background: var(--grain), var(--ivory); }
.optin__word { font-size: 30vw; top: 36px; left: -3vw; }
.optin__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 56px; }
.section-head { max-width: 760px; margin-bottom: clamp(28px, 3.4vw, 44px); }

.blist { counter-reset: b; display: grid; grid-template-columns: minmax(0, 1fr); column-gap: 44px; }
.bitem { counter-increment: b; padding: 20px 0 22px; border-top: 1px solid var(--line-gold); }
.bitem::before {
  content: counter(b, decimal-leading-zero);
  display: block; margin-bottom: 10px;
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; line-height: .9;
  color: transparent; -webkit-text-stroke: 1.2px var(--gold-text);
}
.bitem p { line-height: 1.6; }
.bitem strong { color: var(--aubergine); }
.bmore {
  display: flex; align-items: center; gap: 14px;
  margin-top: 8px; padding-top: 20px; border-top: 1px solid var(--line-gold);
  font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: var(--aubergine);
}
.bmore::before { content: ""; width: 9px; height: 9px; background: var(--gold); transform: rotate(45deg); }

.optin__aside { position: relative; }
.optin__slab { position: absolute; top: 90px; bottom: -40px; left: 28px; right: calc(var(--gutter) * -1); background: var(--gold-grad); border-radius: var(--radius-xl) 0 0 var(--radius-xl); }
.optin-card { position: relative; z-index: 1; margin-right: 12px; border-radius: var(--radius-xl); overflow: hidden; background: var(--white); box-shadow: 0 44px 80px -40px rgba(49, 23, 70, .65), 0 0 0 1px rgba(49, 23, 70, .06); }
.optin-card__top {
  --focus: var(--gold);
  display: grid; grid-template-columns: 96px 1fr; align-items: center; gap: 34px;
  padding: 28px 22px;
  background: radial-gradient(80% 120% at 0% 0%, rgba(227, 181, 70, .3), rgba(227, 181, 70, 0) 60%), var(--aubergine-deep);
  color: var(--on-dark);
}
.mockup--sm { transform: rotate(-5deg); }
.mockup--sm .mockup__page { transform: translate(6%, 3%) rotate(6deg); }
.optin-card__title { font-family: var(--font-display); font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); font-weight: 600; line-height: 1.1; color: var(--ivory); }
.optin-card__value { margin-top: 8px; font-size: .95rem; color: var(--gold-light); }
.optin-card__value strong { font-weight: 600; }
.optin-card__body { padding: 6px 22px 26px; }

.ribbon {
  position: relative;
  margin-top: clamp(48px, 5vw, 72px);
  padding: 44px 0;
  background: radial-gradient(60% 120% at 50% 0%, rgba(227, 181, 70, .22), rgba(227, 181, 70, 0) 70%), var(--aubergine);
  color: var(--ivory);
  text-align: center;
}
.ribbon::before, .ribbon::after { content: ""; position: absolute; left: 0; right: 0; height: 5px; border-block: 1px solid rgba(227, 181, 70, .55); }
.ribbon::before { top: 14px; }
.ribbon::after { bottom: 14px; }
.ribbon p { max-width: 980px; font-family: var(--font-display); font-style: italic; font-size: clamp(1.3rem, 1rem + 1.2vw, 2rem); line-height: 1.4; text-wrap: balance; }

@media (min-width: 768px) { .blist { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) {
  .optin__word { font-size: 22vw; top: 40px; left: -2vw; }
  .optin__grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 64px; align-items: start; }
  .optin__aside { padding-top: 12px; position: sticky; top: 28px; }
  .optin__slab { top: 120px; left: 56px; right: calc(var(--bleed) * -1); }
  .optin-card { margin-right: 0; }
  .optin-card__top { grid-template-columns: 116px 1fr; gap: 40px; padding: 30px 30px 30px 34px; }
  .optin-card__body { padding: 8px 30px 32px; }
  .bitem::before { font-size: 3.2rem; }
}

/* ---------- Form (shared) ---------- */
.optin-form { margin-top: 18px; text-align: left; }
.field + .field { margin-top: 14px; }
.field__label { display: block; margin-bottom: 6px; font-size: .88rem; font-weight: 700; color: var(--ink); }
.field__input { width: 100%; min-height: 54px; padding: 12px 18px; border: 1.5px solid #DCD2E6; border-radius: 14px; background: #FCFAFE; color: var(--ink); font: inherit; font-size: 16px; transition: border-color .15s, box-shadow .15s, background-color .15s; }
.field__input::placeholder { color: #776D83; }   /* 4.9:1 on white */
.field__input:focus { outline: none; border-color: var(--aubergine); background: var(--white); box-shadow: 0 0 0 4px rgba(49, 23, 70, .12); }
.field__input[aria-invalid="true"] { border-color: var(--error); }
.field__error { margin-top: 6px; font-size: .85rem; line-height: 1.4; color: var(--error); }
.field__error:empty { display: none; }
.optin-form .btn--submit { margin-top: 20px; }
.optin-form__consent { margin-top: 14px; font-size: .8rem; line-height: 1.55; color: var(--muted); }
.form-status { margin-top: 12px; font-size: .9rem; line-height: 1.5; }
.form-status:empty { display: none; }
.form-status.is-warning { padding: 10px 12px; border-radius: 10px; background: #FFF4D6; color: #6B4E00; }
.form-status.is-error { color: var(--error); }
.form-status.is-success { color: #1E6B3A; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* chapters (shared) */
.chapter { padding-block: var(--section-y); }
.chapter p { max-width: 66ch; }
.s-origin .origin__text p, .s-discovery p, .s-meaning p, .mission__p14 { font-size: clamp(1.0625rem, 1rem + .3vw, 1.22rem); line-height: 1.78; }
.chapter__title { margin-bottom: 20px; }

/* ==========================================================================
   S03 · INTRODUCTION
   ========================================================================== */
.s-intro { padding-block: var(--section-y); background: var(--lilac); }
.s-intro::before { content: ""; position: absolute; inset: 0; z-index: -1; background: url("assets/img/tex-sulaman.svg") repeat 0 0 / 520px; opacity: .07; }
.intro__slab { display: none; }
.intro__grid { display: grid; grid-template-columns: minmax(0, 1fr); grid-template-areas: "head" "photo" "quote"; gap: 34px; }
.intro__head { grid-area: head; }
.intro__photo { grid-area: photo; position: relative; margin-inline: calc(var(--gutter) * -1); }
.intro__photo img { aspect-ratio: 4 / 5; object-fit: cover; }
.intro__quote { grid-area: quote; position: relative; }
.intro__role { display: inline-block; margin-top: 16px; padding: 8px 16px; border-radius: 999px; background: var(--aubergine); font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.intro__vword { display: none; }
.intro__sign { position: absolute; right: 16px; bottom: -22px; z-index: 2; padding: 6px 22px 10px; border-radius: 999px; background: var(--white); box-shadow: var(--shadow-print); font-family: var(--font-script); font-size: 2.1rem; line-height: 1; color: var(--aubergine); }
.intro__quote::before { content: "“"; position: absolute; top: -.36em; left: -.05em; z-index: -1; font-family: var(--font-display); font-size: 10rem; line-height: 1; color: var(--gold); opacity: .5; }
.intro__quote p { padding-top: 38px; font-family: var(--font-display); font-style: italic; font-size: clamp(1.6rem, 1rem + 2.1vw, 2.8rem); line-height: 1.26; color: var(--aubergine); text-wrap: balance; }

@media (min-width: 1024px) {
  .s-intro { padding-block: 0; }
  .intro__slab { display: block; position: absolute; left: 0; top: 0; bottom: 0; width: 40vw; z-index: -1; background: radial-gradient(70% 60% at 100% 20%, rgba(227, 181, 70, .25), rgba(227, 181, 70, 0) 70%), var(--aubergine); }
  .intro__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    grid-template-areas: "photo head" "photo quote";
    grid-template-rows: 1fr 1fr;
    column-gap: 88px; row-gap: 40px;
    min-height: min(84vh, 760px);
  }
  .intro__photo { margin: 0 0 0 calc(var(--bleed) * -1); align-self: stretch; }
  .intro__photo picture, .intro__photo img { height: 100%; }
  .intro__photo img { aspect-ratio: auto; object-position: 50% 25%; }
  .intro__vword { display: block; right: -40px; top: 0; bottom: 0; display: flex; justify-content: center; color: var(--aubergine); opacity: .5; }
  .intro__sign { right: -28px; bottom: 56px; }
  .intro__head { align-self: end; padding-top: var(--section-y); }
  .intro__quote { align-self: start; padding-bottom: var(--section-y); }
}

/* ==========================================================================
   S04 · ORIGIN
   ========================================================================== */
.s-origin { padding-top: 0; background: var(--grain), var(--paper); }
.origin__band { position: relative; height: clamp(220px, 42vw, 440px); overflow: hidden; }
.origin__band img { width: 100%; height: 100%; object-fit: cover; -webkit-mask-image: linear-gradient(#000 55%, transparent); mask-image: linear-gradient(#000 55%, transparent); }
.origin__word { font-size: 8.4vw; left: 50%; bottom: 58%; translate: -50% 0; color: rgba(255, 255, 255, .55); -webkit-text-stroke: 0; letter-spacing: -.02em; }
.origin__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 28px; }
.origin__art { justify-self: center; width: min(62%, 260px); margin-top: -110px; }
.hoop { width: 100%; height: auto; filter: drop-shadow(0 30px 40px rgba(49, 23, 70, .25)); }
.thread { display: none; }
@media (min-width: 1024px) {
  .origin__word { font-size: 11vw; bottom: 30%; }
  .origin__grid { grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: 88px; align-items: start; }
  .origin__art { width: 100%; max-width: 400px; margin-top: -200px; }
  .origin__text { padding-top: 24px; }
  .thread { display: block; position: absolute; left: 0; right: 0; bottom: -2px; width: 100%; height: 160px; z-index: 2; }
  .thread path { fill: none; stroke: var(--gold); stroke-width: 1.6; stroke-dasharray: 8 7; vector-effect: non-scaling-stroke; }
}

/* ==========================================================================
   S05 · CAREER TIMELINE + 2018 BAND
   ========================================================================== */
.s-authority { padding-top: var(--section-y); padding-bottom: 0; background: linear-gradient(180deg, var(--paper) 0%, var(--white) 30%, var(--ivory) 100%); }
.s-authority .section-head { margin-inline: auto; text-align: center; }
.s-authority .section-head .eyebrow { justify-content: center; }
.s-authority .section-head .eyebrow::after { content: ""; flex: 0 0 34px; height: 1px; background: currentColor; }
.timeline__lead { margin-top: 10px; font-family: var(--font-display); font-style: italic; font-size: var(--fs-lead); color: var(--muted); }

.timeline { position: relative; }
.tl { position: relative; padding: 0 0 40px 36px; }
.tl::before { content: ""; position: absolute; left: 0; top: 10px; width: 13px; height: 13px; background: var(--gold); transform: rotate(45deg); box-shadow: 0 0 0 5px rgba(227, 181, 70, .2); z-index: 1; }
.tl::after { content: ""; position: absolute; left: 6px; top: 16px; bottom: 0; width: 1px; background: var(--line-gold); }
.tl__num { position: absolute; right: 0; top: -18px; z-index: 0; font-family: var(--font-display); font-size: 6.5rem; font-weight: 600; line-height: 1; color: transparent; -webkit-text-stroke: 1.4px rgba(138, 101, 17, .2); pointer-events: none; }
.tl__block { position: relative; z-index: 1; padding-top: 2px; }
.tl__mark { font-family: var(--font-display); font-size: 2.1rem; font-weight: 600; line-height: 1.05; color: var(--gold-text); }
.tl__text { margin-top: 10px !important; font-size: 1.08rem; line-height: 1.62; }
.tl__media { position: relative; margin-top: 22px; }
.fan, .pair { display: flex; }
.fan__front, .pair__front { width: 70%; transform: rotate(-2deg); }

.tl--feature { padding: 0; margin-inline: calc(var(--gutter) * -1); }
.tl--feature::before, .tl--feature::after { display: none; }
.tl--feature { display: block !important; min-height: 0 !important; background: var(--aubergine-deep); color: var(--on-dark); overflow: hidden; }
.band2018__bg { position: absolute; inset: 0; z-index: 0; }
.band2018__bg picture, .band2018__bg img { height: 100%; }
.band2018__bg img { object-fit: cover; filter: grayscale(1) contrast(1.15); opacity: .2; mix-blend-mode: luminosity; }
.band2018__bg { overflow: hidden; }
.band2018__bg::after { content: ""; position: absolute; inset: 0; z-index: 0; background: radial-gradient(60% 80% at 80% 30%, rgba(227, 181, 70, .28), rgba(227, 181, 70, 0) 65%), linear-gradient(90deg, rgba(28, 15, 41, .85), rgba(28, 15, 41, .55)); }
.band2018__word { z-index: 1; font-family: var(--font-display); font-size: 70vw; right: -8vw; bottom: -20vw; -webkit-text-stroke: 1.5px rgba(227, 181, 70, .18); letter-spacing: -.05em; }
.band2018__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 28px; padding-block: 56px 64px; }
.band2018__photo { justify-self: center; width: min(86%, 380px); background: var(--white); padding: 10px; transform: rotate(-2deg); box-shadow: 0 40px 70px -30px rgba(0, 0, 0, .8); }
.band2018__year { font-size: clamp(4.4rem, 3rem + 5vw, 8.5rem); line-height: .9; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.band2018__text .tl__text { font-size: clamp(1.2rem, 1rem + .7vw, 1.55rem); font-weight: 600; line-height: 1.45; color: var(--ivory); margin-top: 18px !important; }
.chip { display: inline-flex; align-items: baseline; gap: 10px; margin-top: 26px !important; padding: 10px 22px; border: 1px solid var(--line-gold); border-radius: 14px; background: rgba(227, 181, 70, .1); font-size: .85rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-light); }
.chip span { font-family: var(--font-display); font-size: 2rem; letter-spacing: 0; color: var(--gold); }

@media (min-width: 900px) {
  .timeline { max-width: 1100px; margin-inline: auto; }
  .tl { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); column-gap: 110px; align-items: center; min-height: 190px; padding: 16px 0 40px; }
  .tl::before { left: calc(50% - 7px); top: 50%; translate: 0 -50%; width: 15px; height: 15px; }
  .tl::after { left: 50%; top: 0; bottom: 0; }
  .tl:first-child::after { top: 50%; }
  .tl--left .tl__block { grid-column: 1; text-align: right; justify-self: end; max-width: 440px; }
  .tl--right .tl__block { grid-column: 2; max-width: 440px; }
  .tl--right .tl__media { grid-column: 1; grid-row: 1; justify-self: end; }
  .tl__num { font-size: 11rem; top: 50%; translate: 0 -50%; }
  .tl--left .tl__num { left: calc(50% + 60px); right: auto; }
  .tl--right .tl__num { right: calc(50% + 60px); }
  .tl--right:has(.tl__media) .tl__num { right: auto; left: calc(50% + 60px); top: auto; bottom: -10px; translate: 0; }
  .tl__mark { font-size: 2.8rem; }
  .tl__media { margin-top: 0; width: 420px; height: 300px; }
  .fan .print, .pair .print { position: absolute; }
  .fan__front { width: 270px; right: 0; bottom: 0; z-index: 3; transform: rotate(-3deg); }
  .fan__back { width: 190px; right: 210px; top: 0; z-index: 2; transform: rotate(6deg); }
  .fan__back2 { width: 240px; right: 90px; top: -20px; z-index: 1; transform: rotate(-9deg); }
  .pair__front { width: 230px; right: 0; bottom: 0; z-index: 2; transform: rotate(3deg); }
  .pair__back { width: 200px; right: 190px; top: 0; z-index: 1; transform: rotate(-6deg); }

  .tl--feature { margin-inline: calc(50% - 50vw); margin-top: 40px; overflow: visible; }
  .band2018__bg { overflow: hidden; }
  .band2018__word { font-size: 40vw; right: 2vw; bottom: -12vw; }
  .band2018__grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 80px; align-items: center; padding-block: 72px; }
  .band2018__photo { width: 100%; max-width: 440px; margin-bottom: -170px; align-self: end; position: relative; z-index: 4; }
}

/* ==========================================================================
   S06 · CRISIS (cinematic)
   ========================================================================== */
.s-crisis { --focus: var(--gold); background: var(--night); color: var(--on-dark); padding-block: calc(var(--section-y) * 1.1) calc(var(--section-y) * .8); }
.s-crisis::after { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--grain-dark), radial-gradient(120% 90% at 50% 50%, rgba(24, 19, 31, 0) 40%, rgba(8, 6, 12, .75) 100%); pointer-events: none; }
.crisis__env { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: right center; opacity: .45; }
.crisis__y1, .crisis__y2 { font-size: 34vw; -webkit-text-stroke-color: rgba(227, 181, 70, .1); }
.crisis__y1 { right: -6vw; top: 3%; }
.crisis__y2 { display: none; }
.crisis__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 48px; }
.crisis__display { font-family: var(--font-display); font-size: var(--fs-display); font-weight: 600; line-height: 1.02; letter-spacing: -.028em; color: var(--ivory); text-wrap: balance; text-shadow: 0 10px 40px rgba(0, 0, 0, .5); }
.crisis__display strong { font-weight: 600; }
.crisis__lead { margin-top: 28px; max-width: 34ch; font-size: var(--fs-lead); color: var(--on-dark-muted); }
.crisis__body { max-width: 560px; padding: 4px 0 4px 24px; border-left: 1px solid rgba(227, 181, 70, .4); background: linear-gradient(90deg, rgba(24, 19, 31, .78), rgba(24, 19, 31, .45)); font-size: 1.08rem; line-height: 1.9; color: var(--on-dark-muted); }
.crisis__body .year { color: var(--gold); font-weight: 700; }
.crisis__final { position: relative; display: block; margin-top: 1.5em; padding-top: 22px; font-family: var(--font-display); font-style: italic; font-size: clamp(1.5rem, 1.1rem + 1.3vw, 2.2rem); line-height: 1.3; color: var(--ivory); }
.crisis__final::before { content: ""; position: absolute; top: 0; left: 0; width: 64px; height: 1px; background: var(--gold); }
@media (min-width: 1024px) {
  .s-crisis { min-height: 0; }
  .crisis__env { opacity: .95; }
  .crisis__y1, .crisis__y2 { font-size: 20vw; display: block; }
  .crisis__y1 { right: 2vw; top: 6%; }
  .crisis__y2 { right: 22vw; bottom: 4%; top: auto; }
  .crisis__grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 72px; align-items: start; }
  .crisis__left { position: sticky; top: 120px; }
  .crisis__body { padding: 28px 32px 32px 44px; margin-top: 18px; border-radius: 0 16px 16px 0; -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
}

/* ==========================================================================
   S07 · VOW — out of the crisis room: an open horizon at sunrise.
   Deliberately the opposite of S06: symmetric, centred, no window frame.
   ========================================================================== */
.s-vow {
  --focus: var(--gold);
  --hz: clamp(220px, 24vw, 340px);   /* horizon zone kept clear below the copy */
  color: var(--on-dark); text-align: center;
  padding-block: calc(var(--section-y) * .9) var(--hz);
  background:
    linear-gradient(0deg, var(--dawn) 0%, #F6CF88 14%, #E0A468 30%, #A8676C 50%, rgba(94, 56, 102, 0) 100%) bottom / 100% calc(var(--hz) + 180px) no-repeat,
    linear-gradient(180deg, var(--night) 0%, #241631 45%, #5E3866 100%);
}
.s-vow::before {           /* last stars of the night, fading as the sky warms */
  content: ""; position: absolute; inset: 0 0 45% 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(circle at 8% 22%, rgba(255, 246, 222, .6) 0 1.2px, transparent 2px),
    radial-gradient(circle at 19% 64%, rgba(255, 246, 222, .35) 0 1px, transparent 1.8px),
    radial-gradient(circle at 27% 12%, rgba(255, 246, 222, .5) 0 1.4px, transparent 2.2px),
    radial-gradient(circle at 41% 38%, rgba(255, 246, 222, .3) 0 1px, transparent 1.8px),
    radial-gradient(circle at 63% 9%, rgba(255, 246, 222, .55) 0 1.2px, transparent 2px),
    radial-gradient(circle at 74% 46%, rgba(255, 246, 222, .3) 0 1px, transparent 1.8px),
    radial-gradient(circle at 86% 20%, rgba(255, 246, 222, .6) 0 1.4px, transparent 2.2px),
    radial-gradient(circle at 94% 58%, rgba(255, 246, 222, .35) 0 1px, transparent 1.8px),
    var(--grain-dark);
  -webkit-mask-image: linear-gradient(180deg, #000 30%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 30%, transparent 100%);
}
.vow__env { position: absolute; left: 50%; bottom: 0; z-index: -1; width: max(100%, 960px); height: auto; transform: translateX(-50%); pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 35%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 35%); }
.vow__grid { display: grid; justify-items: center; }
.vow__copy { max-width: 980px; }
.vow__label { display: inline-flex; align-items: center; gap: 14px; font-family: var(--font-body); font-size: .78rem; font-weight: 800; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); }
.vow__label::before, .vow__label::after { content: ""; width: 44px; height: 1px; background: currentColor; opacity: .8; }
.s-vow .vow__copy p { max-width: none; }
.vow__text { margin-top: 30px; }
.vow__past { display: block; font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: clamp(1.35rem, 1rem + 1.4vw, 2.1rem); line-height: 1.3; color: var(--on-dark-muted); }
.vow__display { display: block; margin-top: 14px; font-family: var(--font-display); font-size: clamp(2.4rem, 1.2rem + 4.4vw, 5.2rem); font-weight: 600; line-height: 1.02; letter-spacing: -.028em; color: var(--ivory); text-wrap: balance; text-shadow: 0 10px 40px rgba(0, 0, 0, .45); }
.vow__display em { font-style: italic; color: var(--gold-light); }
.vow__promise { position: relative; display: block; max-width: 40ch; margin: 38px auto 0; padding-top: 30px; font-size: var(--fs-lead); line-height: 1.65; color: var(--on-dark); text-shadow: 0 2px 18px rgba(24, 19, 31, .6); }
.vow__promise::before { content: ""; position: absolute; top: 0; left: 50%; width: 56px; height: 1px; background: var(--gold); transform: translateX(-50%); }

/* ==========================================================================
   S08 · DISCOVERY (collage)
   ========================================================================== */
.s-discovery { background: radial-gradient(60% 50% at 0% 0%, rgba(227, 181, 70, .18), rgba(227, 181, 70, 0) 70%), linear-gradient(var(--dawn), var(--ivory) 420px); }
.discovery__copy,
.discovery__collage { display: contents; }
.discovery__grid { display: grid; grid-template-columns: minmax(0, 1fr); grid-template-areas: "head" "p1" "main" "p2" "sofia"; gap: 30px; }
.discovery__head { grid-area: head; }
.discovery__head .chapter__title { margin-bottom: 0; }
.discovery__p1 { grid-area: p1; }
.discovery__p2 { grid-area: p2; margin-top: 0; }
.discovery__main { grid-area: main; position: relative; margin-inline: calc(var(--gutter) * -1); }
.discovery__main img { aspect-ratio: 4 / 3; object-fit: cover; }
.discovery__sofia { grid-area: sofia; justify-self: end; align-self: start; width: 50%; position: relative; z-index: 2; transform: rotate(3deg); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.discovery__team { grid-area: sofia; justify-self: start; align-self: center; width: 58%; position: relative; z-index: 1; margin-top: 18px; transform: rotate(-4deg); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }   /* mobile: scrapbook pair fills the width */
.chain { display: none; }
@media (min-width: 1024px) {
  .discovery__copy,
  .discovery__collage { display: block; }
  .discovery__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    grid-template-areas: none;
    column-gap: 90px;
    align-items: center;
    position: relative;
  }
  .discovery__copy { display: flex; flex-direction: column; gap: 24px; position: relative; z-index: 2; }
  .discovery__head .chapter__title { margin-bottom: 0; }
  .discovery__p1, .discovery__p2 { margin: 0; }
  .discovery__collage {
    display: block;
    position: relative;
    margin: 24px calc(var(--bleed) * -1) 110px 0;
    align-self: center;
  }
  .discovery__main {
    margin: 0;
    position: relative;
    z-index: 1;
  }
  .discovery__main::before { content: ""; position: absolute; left: -32px; bottom: -32px; width: 62%; height: 70%; z-index: -1; background: var(--gold-grad); border-radius: 4px; }
  .discovery__main picture {
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-photo);
  }
  .discovery__main img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
  .discovery__team {
    display: block;
    position: absolute;
    top: -72px;
    left: -28px;
    width: clamp(180px, 14vw, 220px);
    margin: 0;
    z-index: 2;
    transform: rotate(-2deg);
  }
  .discovery__sofia {
    display: block;
    position: absolute;
    left: -28px;
    bottom: -110px;
    width: clamp(220px, 17vw, 260px);
    margin: 0;
    z-index: 2;
    transform: rotate(2deg);
  }
  .discovery__team:hover { transform: rotate(0) scale(1.03); z-index: 5; }
  .discovery__sofia:hover { transform: rotate(0) scale(1.03); z-index: 5; }
  .chain { display: flex; position: absolute; left: calc(var(--gutter) + (100% - var(--gutter) * 2 - 90px) * 5 / 12 + 45px); top: 50%; translate: -50% -50%; writing-mode: vertical-rl; transform: rotate(180deg); gap: 22px; align-items: center; font-size: .74rem; font-weight: 800; letter-spacing: .4em; text-transform: uppercase; color: var(--gold-text); opacity: .75; z-index: 4; }
  .chain span + span::before { content: "◆"; margin-block-end: 22px; display: inline-block; font-size: .55rem; color: var(--gold); letter-spacing: 0; }
}

/* ==========================================================================
   S09 · FOUR MONTHS (celebratory dark)
   ========================================================================== */
.s-breakthrough { --focus: var(--gold); background: radial-gradient(50% 60% at 85% 30%, rgba(227, 181, 70, .22), rgba(227, 181, 70, 0) 70%), var(--aubergine-deep); color: var(--on-dark); }
.breakthrough__band { position: absolute; left: 0; right: 0; top: 0; height: 58%; z-index: -1; }
.breakthrough__band picture, .breakthrough__band img { height: 100%; }
.breakthrough__band img { object-fit: cover; filter: grayscale(1) contrast(1.1); opacity: .22; mix-blend-mode: luminosity; }
.breakthrough__band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28, 15, 41, .3), var(--aubergine-deep)); }
.breakthrough__word { font-size: 26vw; left: -2vw; bottom: -3vw; -webkit-text-stroke-color: rgba(227, 181, 70, .14); }
.breakthrough__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 36px; align-items: center; }
.bignum { display: flex; align-items: flex-end; gap: 14px; margin-bottom: 6px; font-family: var(--font-display); font-size: 6.4rem; font-weight: 600; line-height: .8; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.bignum span { font-family: var(--font-body); font-size: 1rem; font-weight: 800; letter-spacing: .24em; text-transform: uppercase; line-height: 1.6; color: var(--gold); -webkit-text-fill-color: var(--gold); }
.breakthrough__p { font-size: var(--fs-lead); color: var(--on-dark-muted); }
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 32px; }
.stats li { display: grid; align-content: start; gap: 4px; padding: 16px 10px; border: 1px solid var(--line-gold); border-radius: 14px; background: rgba(227, 181, 70, .07); text-align: center; }
.stats__big { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; line-height: 1; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stats__big--word { font-size: 1.05rem; line-height: 2.3; }
.stats__label { font-size: .76rem; line-height: 1.35; color: var(--on-dark-muted); }

.scatter { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; align-items: start; }
.polaroid { display: block; width: 100%; padding: 7px 7px 28px; border: 0; border-radius: 4px; background: #FFFDF8; box-shadow: 0 26px 44px -20px rgba(0, 0, 0, .75); cursor: zoom-in; transition: transform .35s var(--ease); }
.polaroid img { border-radius: 2px; }
.polaroid:nth-child(odd) { transform: rotate(-2.5deg); }
.polaroid:nth-child(even) { transform: rotate(2.5deg); }
.polaroid:hover { transform: rotate(0) scale(1.04); z-index: 5; position: relative; }
@media (min-width: 1024px) {
  .s-breakthrough { overflow: visible; }
  .s-breakthrough::before { content: ""; position: absolute; inset: 0; z-index: -1; overflow: hidden; }
  .breakthrough__word { font-size: 18vw; left: auto; right: -2vw; bottom: 0; }
  .breakthrough__grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 64px; }
  .bignum { font-size: 13rem; }
  .stats li { padding: 20px 12px; }
  .stats__big { font-size: 3rem; }
  .stats__big--word { font-size: 1.2rem; line-height: 2.5; }
  .scatter { position: relative; display: block; height: 700px; }
  .polaroid { position: absolute; padding: 10px 10px 36px; }
  .polaroid.p1 { width: 44%; left: 2%; top: 60px; transform: rotate(-4deg); z-index: 2; }
  .polaroid.p2 { width: 36%; left: 44%; top: -150px; transform: rotate(3deg); z-index: 3; }
  .polaroid.p3 { width: 32%; left: 30%; top: 360px; transform: rotate(5deg); z-index: 4; }
  .polaroid.p4 { width: 40%; left: 60%; top: 290px; transform: rotate(-3deg); z-index: 3; }
  .polaroid.p5 { width: 26%; left: 72%; top: 470px; transform: rotate(6deg); z-index: 5; }
  .polaroid:hover { transform: rotate(0) scale(1.05); z-index: 9; }
}
@media (min-width: 1024px) {
  /* keep decorative overflow clipped horizontally while the polaroid breaks the top edge */
  .s-breakthrough { overflow-x: clip; }
}

/* ==========================================================================
   S10 · MEANING (statement)
   ========================================================================== */
.s-meaning { background: var(--lilac); text-align: center; }
.s-meaning::before { content: ""; position: absolute; inset: 0; z-index: -1; background: url("assets/img/tex-sulaman.svg") repeat 0 0 / 520px; opacity: .08; }
.meaning__word { font-size: 30vw; left: 50%; top: 50%; translate: -50% -50%; color: rgba(49, 23, 70, .05); -webkit-text-stroke: 0; }
.meaning__title { margin-inline: auto; }
.s-meaning .container--text p { margin-inline: auto; }
.meaning__display { position: relative; display: block; margin-top: 1.6em; padding-top: 38px; font-family: var(--font-display); font-style: italic; font-size: clamp(1.8rem, 1.1rem + 2.7vw, 3.3rem); line-height: 1.22; color: var(--aubergine); text-wrap: balance; }
.meaning__display::before { content: ""; position: absolute; top: 0; left: 50%; width: 140px; height: 12px; translate: -50% 0; background: linear-gradient(var(--gold), var(--gold)) left center / 56px 1px no-repeat, linear-gradient(var(--gold), var(--gold)) right center / 56px 1px no-repeat, linear-gradient(45deg, transparent 38%, var(--gold) 38% 62%, transparent 62%) center / 12px 12px no-repeat; }

/* ==========================================================================
   S11 · MISSION + signature band
   ========================================================================== */
.s-mission { padding-block: 0; background: var(--grain), var(--ivory); }
.mission__band { position: relative; height: clamp(360px, 70vh, 720px); overflow: hidden; }
.mission__band picture, .mission__band img { height: 100%; }
.mission__band img { object-fit: cover; object-position: center 40%; }
.mission__band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28, 15, 41, .1) 30%, rgba(28, 15, 41, .9) 100%); }
.mission__band-cap { position: absolute; left: 0; right: 0; bottom: 40px; z-index: 2; display: grid; }
.mission__band-cap .eyebrow { margin-bottom: 8px; }
.mission__title { font-family: var(--font-display); font-size: clamp(2.8rem, 1.5rem + 5vw, 6.2rem); font-weight: 600; line-height: .95; letter-spacing: -.03em; color: var(--ivory); }
.mission__vword { display: none; }
.mission__grid { display: grid; grid-template-columns: minmax(0, 1fr); grid-template-areas: "p14" "card" "legacy"; gap: 30px; padding-top: 48px; }
.mission__p14 { grid-area: p14; font-size: var(--fs-lead); }
.mission__cardwrap { grid-area: card; position: relative; }
.mission__card { position: relative; z-index: 1; padding: 34px 26px; border-radius: var(--radius-lg); background: radial-gradient(80% 80% at 100% 0%, rgba(227, 181, 70, .24), rgba(227, 181, 70, 0) 60%), var(--aubergine); color: var(--on-dark); box-shadow: 0 44px 80px -40px rgba(49, 23, 70, .85); border: 1px solid rgba(244, 217, 138, .16); }
.mission__num { font-family: var(--font-display); font-size: clamp(4.2rem, 2.8rem + 5vw, 7.4rem); font-weight: 600; line-height: .85; letter-spacing: -.03em; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.mission__label { display: block; margin-top: 12px; font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); line-height: 1.4; }
.mission__statement { margin-top: 18px !important; font-size: 1.125rem; line-height: 1.75; color: var(--on-dark); }
.mission__statement strong { color: var(--white); font-weight: 700; }
.mission__target { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(244, 217, 138, .18); font-size: 0.98rem; line-height: 1.7; color: var(--on-dark-muted); }
.mission__target strong { color: var(--on-dark); font-weight: 600; }
.mission__target em { font-style: normal; color: var(--gold-light); font-weight: 600; }
.mission__legacy { grid-area: legacy; margin-top: 0 !important; padding-left: 22px; border-left: 3px solid var(--gold); font-family: var(--font-display); font-style: italic; font-size: clamp(1.3rem, 1.05rem + .9vw, 1.7rem); line-height: 1.5; color: var(--aubergine); }

.signature { --focus: var(--gold); position: relative; margin-top: 170px; background: radial-gradient(50% 90% at 80% 60%, rgba(227, 181, 70, .3), rgba(227, 181, 70, 0) 70%), var(--grain-dark), var(--aubergine-deep); color: var(--on-dark); }
.signature__grid { display: grid; grid-template-columns: minmax(0, 1fr); grid-template-areas: "photo" "quote" "by"; justify-items: center; gap: 18px; padding-bottom: 44px; text-align: center; }
.signature__photo { grid-area: photo; position: relative; width: 290px; margin-top: -160px; }
.signature__photo picture { position: relative; z-index: 1; }
.signature__halo { left: 50%; top: 2%; width: 92%; translate: -50% 0; z-index: 0; }
.signature__photo img { -webkit-mask-image: linear-gradient(#000 88%, transparent); mask-image: linear-gradient(#000 88%, transparent); }
.signature__quote { grid-area: quote; }
.signature__quote p { font-family: var(--font-display); font-size: clamp(1.85rem, 1.1rem + 2.8vw, 3.4rem); font-weight: 600; line-height: 1.12; letter-spacing: -.018em; color: var(--ivory); text-wrap: balance; }
.signature__by { grid-area: by; display: grid; gap: 2px; }
.signature__script { font-family: var(--font-script); font-size: 3.4rem; line-height: 1; color: var(--gold); }
.signature__name { font-size: .88rem; letter-spacing: .08em; color: var(--on-dark-muted); }

@media (min-width: 1024px) {
  .mission__band-cap { bottom: 150px; }
  .mission__vword { display: block; left: 30px; top: calc(clamp(360px, 70vh, 720px) + 60px); color: var(--gold-text); opacity: .6; transform: rotate(180deg); }
  .mission__grid { grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); grid-template-areas: "p14 card" "legacy card"; column-gap: 80px; row-gap: 40px; padding-top: 64px; align-items: start; }
  .mission__cardwrap { margin-top: -200px; }
  .mission__card { padding: 48px 48px 44px; }
  .mission__print { position: absolute; right: -40px; top: -90px; width: 260px; z-index: 0; transform: rotate(6deg); }
  .signature { margin-top: 110px; }
  .signature__grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); grid-template-areas: "quote photo" "by photo"; grid-template-rows: 1fr auto; justify-items: start; align-items: end; column-gap: 40px; padding-block: 64px 56px; text-align: left; }
  .signature__quote { align-self: center; }
  .signature__photo { width: 540px; margin: -420px -40px -56px 0; justify-self: center; align-self: end; }
}

/* ==========================================================================
   S11b · GALLERY (film strip)
   ========================================================================== */
.s-gallery { --focus: var(--gold); padding-block: var(--section-y) calc(var(--section-y) * .7); background: radial-gradient(60% 55% at 50% 55%, rgba(227, 181, 70, .14), rgba(227, 181, 70, 0) 70%), var(--grain-dark), var(--aubergine); color: var(--on-dark); }
.gallery__word { font-size: 30vw; left: -2vw; top: 20px; -webkit-text-stroke-color: rgba(227, 181, 70, .12); }
.gallery__head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.gallery__controls { display: flex; align-items: center; gap: 14px; }
.gallery__counter { min-width: 64px; text-align: center; font-variant-numeric: tabular-nums; font-size: .95rem; color: var(--on-dark-muted); }
.filmstrip { position: relative; z-index: 1; padding-block: 22px; background:
  radial-gradient(circle, rgba(227, 181, 70, .55) 2px, transparent 2.5px) 0 5px / 26px 12px repeat-x,
  radial-gradient(circle, rgba(227, 181, 70, .55) 2px, transparent 2.5px) 0 calc(100% - 5px) / 26px 12px repeat-x,
  rgba(10, 5, 16, .35);
  border-block: 1px solid rgba(227, 181, 70, .35); }
.gallery__track { --slide-h: 300px; display: flex; gap: 12px; overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter); padding: 6px var(--gutter); scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.gallery__track::-webkit-scrollbar { display: none; }
.gallery__track:focus-visible { outline-offset: -3px; }
.gallery__item { flex: 0 0 auto; scroll-snap-align: start; }
.gallery__slide { display: block; height: var(--slide-h); padding: 0; border: 0; border-radius: 6px; overflow: hidden; background: rgba(245, 240, 250, .06); cursor: zoom-in; box-shadow: 0 20px 40px -24px rgba(0, 0, 0, .7); transition: transform .3s var(--ease), box-shadow .3s; }
.gallery__slide picture, .gallery__slide img { height: 100%; width: auto; max-width: 85vw; object-fit: cover; }
.gallery__slide:hover { transform: translateY(-5px); box-shadow: 0 26px 44px -22px rgba(0, 0, 0, .8), 0 0 0 2px var(--gold); }
.gallery__progress { height: 3px; margin-top: 22px; background: rgba(245, 240, 250, .14); border-radius: 3px; overflow: hidden; }
.gallery__progress span { display: block; height: 100%; width: 0; background: var(--gold-grad); transition: width .15s linear; }
@media (hover: none) { .gallery__controls .icon-btn:not(.gallery__toggle) { display: none; } }
.gallery__toggle .i-play { display: none; }
.gallery__toggle.is-paused .i-pause { display: none; }
.gallery__toggle.is-paused .i-play { display: block; }
.gallery__toggle .i-play path { fill: currentColor; stroke: none; }
@media (min-width: 768px) {
  .gallery__word { font-size: 22vw; }
  .gallery__track { --slide-h: 400px; gap: 18px; }
  .gallery__slide picture, .gallery__slide img { max-width: 760px; }
}
@media (min-width: 1280px) { .gallery__track { padding-inline: calc((100vw - 1200px) / 2); scroll-padding-inline: calc((100vw - 1200px) / 2); } }

/* ==========================================================================
   S12 · TESTIMONIALS
   ========================================================================== */
.s-testimonials { padding-block: var(--section-y); background: var(--lilac); }
.s-testimonials::before { content: ""; position: absolute; inset: 0; z-index: -1; background: url("assets/img/tex-sulaman.svg") repeat 0 0 / 520px; opacity: .07; }
.testi__slab { position: absolute; left: 0; right: 0; top: 60%; height: 30%; z-index: -1; background: var(--gold-grad); clip-path: polygon(0 30%, 100% 0, 100% 70%, 0 100%); opacity: .95; }
.testi__word { font-size: 16vw; left: 50%; top: 40px; translate: -50% 0; }
.s-testimonials .section-head { margin-inline: auto; text-align: center; }
.s-testimonials .section-head .eyebrow { justify-content: center; }
.s-testimonials .section-head .eyebrow::after { content: ""; flex: 0 0 34px; height: 1px; background: currentColor; }
.testimonials { display: grid; grid-template-columns: minmax(0, 1fr); gap: 22px; max-width: 1140px; margin-inline: auto; }
.testi { position: relative; display: flex; flex-direction: column; padding: 34px 26px 26px; border-radius: var(--radius-lg); background: var(--white); box-shadow: 0 34px 64px -36px rgba(49, 23, 70, .55); }
.testi--2 { order: -1; }                      /* featured first visually; DOM order stays T1 → T2 → T3 */
.testi__pull {
  margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--line-gold);
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: clamp(1.3rem, 1.08rem + .9vw, 1.7rem); line-height: 1.24; letter-spacing: -.01em;
  color: var(--aubergine); text-wrap: balance;
}
.testi__quote { flex: 1; }
.testi__quote p { font-size: 1rem; line-height: 1.75; }
.testi__meta { display: flex; align-items: center; gap: 16px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.testi__photo { flex: 0 0 64px; width: 64px; height: 64px; border-radius: 50%; overflow: hidden; box-shadow: 0 0 0 3px var(--white), 0 0 0 5px var(--gold); }
.testi__photo img { width: 100%; height: 100%; object-fit: cover; }
.testi__name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; line-height: 1.2; color: var(--aubergine); }
.testi__role { margin-top: 2px !important; font-size: .88rem; line-height: 1.4; color: var(--muted); }
.testi--feature { --focus: var(--gold); padding-top: 44px; overflow: hidden; background: radial-gradient(70% 70% at 100% 0%, rgba(227, 181, 70, .3), rgba(227, 181, 70, 0) 60%), var(--aubergine); color: var(--on-dark); }
.testi--feature::before { content: "“"; position: absolute; top: -.18em; left: 12px; font-family: var(--font-display); font-size: 11rem; line-height: 1; color: var(--gold); opacity: .2; pointer-events: none; }
.testi--feature .testi__pull { position: relative; color: var(--gold-light); font-size: clamp(1.55rem, 1.05rem + 2vw, 2.55rem); border-bottom-color: rgba(227, 181, 70, .35); }
.testi--feature .testi__quote p { color: var(--on-dark); font-size: 1.06rem; }
.testi--feature .testi__meta { border-top-color: rgba(245, 240, 250, .16); }
.testi--feature .testi__photo { box-shadow: 0 0 0 3px var(--aubergine), 0 0 0 5px var(--gold); }
.testi--feature .testi__name { color: var(--ivory); }
.testi--feature .testi__role { color: var(--on-dark-muted); }
@media (min-width: 900px) {
  .testi__word { font-size: 11vw; }
  .testimonials { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); grid-template-areas: "t2 t2" "t1 t3"; gap: 36px 40px; align-items: start; }
  .testi--1 { grid-area: t1; margin-right: 24px; }
  .testi--3 { grid-area: t3; margin-top: 80px; margin-left: -24px; }
  .testi { padding: 40px 38px 32px; }
  .testi--2 {
    grid-area: t2;
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    grid-template-areas: "cap pull" "cap quote";
    column-gap: 56px;
    padding: 60px 64px 56px;
  }
  .testi--2 .testi__pull { grid-area: pull; }
  .testi--2 .testi__quote { grid-area: quote; }
  .testi--2 .testi__quote p { font-size: 1.12rem; line-height: 1.8; }
  .testi--2 .testi__meta { grid-area: cap; flex-direction: column; justify-content: center; text-align: center; gap: 18px; margin: 0; padding: 0 44px 0 0; border-top: 0; border-right: 1px solid rgba(227, 181, 70, .3); }
  .testi--2 .testi__photo { flex: none; width: 180px; height: 180px; box-shadow: 0 0 0 4px var(--aubergine), 0 0 0 6px var(--gold), 0 30px 60px -20px rgba(0, 0, 0, .6); }
  .testi--2 .testi__name { font-size: 1.6rem; }
  .testi--feature::before { font-size: 16rem; left: 300px; top: -.2em; }
}

/* ==========================================================================
   S13 · METAPHOR (cinematic photo)
   ========================================================================== */
.s-metaphor { --focus: var(--gold); background: var(--night); color: var(--on-dark); padding-bottom: var(--section-y); }
.metaphor__media { position: relative; }
.metaphor__media img { aspect-ratio: 4 / 3; object-fit: cover; }
.metaphor__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(24, 19, 31, 0) 55%, var(--night) 100%); }
.metaphor__ring { display: none; }
.metaphor__inner { margin-top: -30px; }
.metaphor__title { font-family: var(--font-display); font-size: var(--fs-h2); font-weight: 600; line-height: 1.06; letter-spacing: -.022em; color: var(--ivory); margin-bottom: 30px; text-wrap: balance; }
.metaphor__text p { max-width: 58ch; font-family: var(--font-display); font-size: clamp(1.15rem, 1.05rem + .45vw, 1.38rem); line-height: 1.7; color: var(--on-dark-muted); }
.metaphor__text .count { display: block; padding-left: 1.2em; font-style: italic; color: var(--ivory); }
.metaphor__text .count:first-of-type { margin-top: .6em; }
.metaphor__text .gold { color: var(--gold); font-style: italic; }
.metaphor__rule { width: 64px; height: 0; margin: 40px 0; border: 0; border-top: 1px solid var(--gold); }
.metaphor__mirror { color: var(--ivory) !important; }
@media (min-width: 900px) {
  .s-metaphor { min-height: 100vh; display: grid; align-items: center; padding-block: var(--section-y); }
  .metaphor__media { position: absolute; inset: 0; z-index: -1; }
  .metaphor__media picture, .metaphor__media img { height: 100%; }
  .metaphor__media img { aspect-ratio: auto; object-position: 60% center; }
  .metaphor__media::after { background: linear-gradient(90deg, rgba(24, 19, 31, .96) 0%, rgba(24, 19, 31, .88) 34%, rgba(24, 19, 31, .2) 62%, rgba(24, 19, 31, 0) 80%), linear-gradient(180deg, rgba(24, 19, 31, .4), rgba(24, 19, 31, 0) 20%, rgba(24, 19, 31, 0) 80%, rgba(24, 19, 31, .6)); }
  .metaphor__inner { margin-top: 0; }
  .metaphor__text { max-width: 560px; }
}

/* ==========================================================================
   S14 · DECISION (statement + gold CTA band)
   ========================================================================== */
.s-decision { padding-top: clamp(96px, 8vw, 128px); background: var(--grain), var(--ivory); }
.s-decision::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: clamp(46px, 5vw, 80px); z-index: 1; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0 0H1440V38C1320 62 1200 70 1080 56S840 18 720 30S480 78 360 66S120 30 0 44Z' fill='%2318131F'/%3E%3Cpath d='M0 44C120 30 240 54 360 66S600 18 720 30S960 42 1080 56S1320 62 1440 38' fill='none' stroke='%23E3B546' stroke-opacity='.55' stroke-width='1.5'/%3E%3C/svg%3E") center top / 100% 100% no-repeat; }
.decision__word { font-size: 22vw; left: -2vw; top: 34%; -webkit-text-stroke-color: rgba(49, 23, 70, .05); }
.decision__inner { max-width: calc(1000px + var(--gutter) * 2); padding-bottom: 52px; }
.decision__future { font-family: var(--font-display); font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2.1rem); line-height: 1.4; color: var(--aubergine); }
.reframe { display: grid; grid-template-columns: minmax(0, 1fr); margin-top: 32px; border-block: 1px solid var(--line-gold); }
.reframe__item { position: relative; padding: 26px 0 26px 58px; line-height: 1.6; }
.reframe__item + .reframe__item { border-top: 1px solid var(--line-gold); }
.reframe__icon { position: absolute; left: 0; top: 26px; width: 38px; height: 38px; border-radius: 50%; }
.reframe__item--no { color: var(--muted); }
.reframe__item--no .reframe__icon { border: 1.5px solid #B7AEC0; background: linear-gradient(45deg, transparent 46%, #8F869A 46% 54%, transparent 54%) center / 15px 15px no-repeat, linear-gradient(-45deg, transparent 46%, #8F869A 46% 54%, transparent 54%) center / 15px 15px no-repeat; }
.reframe__item--yes { color: var(--aubergine); font-weight: 700; font-size: 1.12rem; }
.reframe__item--yes .reframe__icon { background: var(--gold-grad); box-shadow: 0 8px 16px -6px rgba(201, 149, 47, .9); }
.reframe__item--yes .reframe__icon::after { content: ""; position: absolute; left: 13px; top: 8px; width: 9px; height: 16px; border: solid var(--aubergine-deep); border-width: 0 2.6px 2.6px 0; transform: rotate(45deg); }
.decision__question { margin-top: 36px; font-size: var(--fs-lead); }
.decision__question strong { display: block; margin-top: 12px; font-family: var(--font-display); font-size: clamp(2rem, 1.2rem + 3vw, 3.6rem); font-weight: 600; line-height: 1.06; letter-spacing: -.022em; color: var(--aubergine); text-wrap: balance; }
.ctaband { position: relative; padding: 48px 0; background: var(--gold-grad); text-align: center; }
.ctaband::before, .ctaband::after { content: ""; position: absolute; left: 0; right: 0; height: 1px; background: rgba(28, 15, 41, .35); }
.ctaband::before { top: 12px; }
.ctaband::after { bottom: 12px; }
.ctaband .btn { width: 100%; --focus: var(--aubergine-deep); }
@media (min-width: 640px) { .ctaband .btn { width: auto; } }
@media (min-width: 900px) {
  .decision__word { font-size: 13vw; top: 22%; }
  .reframe { grid-template-columns: 1fr 1fr; }
  .reframe__item { padding: 32px 36px 32px 66px; }
  .reframe__item + .reframe__item { border-top: 0; border-left: 1px solid var(--line-gold); }
  .reframe__item--yes { padding-left: 102px; }
  .reframe__item--yes .reframe__icon { left: 40px; }
  .reframe__icon { top: 32px; }
  .ctaband { padding: 64px 0; }
}

/* ==========================================================================
   S15 · FAQ
   ========================================================================== */
.s-faq { padding-block: var(--section-y); background: var(--grain), var(--paper); }
.faq__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 32px; }
.faq__side { position: relative; }
.faq__word { font-size: 9rem; left: -12px; top: -54px; -webkit-text-stroke-color: rgba(49, 23, 70, .07); }
.faq__side > :not(.faq__word) { position: relative; z-index: 1; }
.faq { border-top: 1px solid var(--line-gold); }
.faq__item { border-bottom: 1px solid var(--line-gold); transition: background-color .2s; }
.faq__item[open] { background: rgba(242, 236, 247, .75); }
.faq__item summary { position: relative; display: flex; align-items: flex-start; gap: 18px; min-height: 60px; padding: 22px 60px 22px 14px; cursor: pointer; list-style: none; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: ""; position: absolute; right: 14px; top: 20px; width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(var(--aubergine), var(--aubergine)) center / 12px 2px no-repeat, linear-gradient(var(--aubergine), var(--aubergine)) center / 2px 12px no-repeat; box-shadow: inset 0 0 0 1.5px var(--gold); transition: transform .25s var(--ease), background-color .2s; }
.faq__item[open] summary::after { transform: rotate(45deg); background-color: var(--gold); }
.faq__no { flex: 0 0 auto; font-family: var(--font-display); font-style: italic; font-size: 1.35rem; line-height: 1.25; color: var(--gold-text); }
.faq__q { font-family: var(--font-body); font-size: 1.06rem; font-weight: 700; line-height: 1.5; color: var(--aubergine); }
.faq__a { padding: 0 28px 24px calc(14px + 1.9em + 18px); }
@media (min-width: 1024px) {
  .faq__grid { grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: 88px; align-items: start; }
  .faq__side { position: sticky; top: 36px; }
  .faq__word { font-size: 16rem; top: -90px; left: -24px; }
  .faq__portrait { width: 82%; max-width: 300px; margin: 44px 0 0; }
  .faq__portrait img { aspect-ratio: 4 / 5; object-fit: cover; }
  .faq__mini { margin-top: 48px; max-width: 340px; }
  .faq__mini .btn { min-height: 52px; font-size: .9rem; }
}

/* ==========================================================================
   S16 · FINAL CTA
   ========================================================================== */
.s-final { --focus: var(--gold); padding-block: var(--section-y); background: var(--aubergine-deep); color: var(--on-dark); }
.s-final__bg { position: absolute; inset: 0; z-index: -1; opacity: .8; }
.s-final__bg img { width: 100%; height: 100%; object-fit: cover; transform: scaleX(-1); }
.final__word { font-size: 36vw; left: -4vw; bottom: -4vw; -webkit-text-stroke-color: rgba(227, 181, 70, .15); }
.final__grid { display: grid; grid-template-columns: minmax(0, 1fr); grid-template-areas: "eyebrow" "title" "visual" "value" "form"; justify-items: center; gap: 16px; text-align: center; }
.final__eyebrow { grid-area: eyebrow; margin-bottom: 0; }
.final__title { grid-area: title; font-family: var(--font-display); font-size: clamp(2.3rem, 1.3rem + 3.6vw, 4.4rem); font-weight: 600; line-height: 1.02; letter-spacing: -.025em; color: var(--ivory); text-wrap: balance; }
.final__visual { grid-area: visual; position: relative; width: 210px; margin: 34px 0 14px; }
.halo--final { left: 50%; top: 50%; width: 175%; translate: -50% -50%; z-index: 0; }
.mockup--lg { transform: rotate(-4deg); }
.mockup--lg .seal { top: -8%; left: -34%; width: 84px; height: 84px; }
.mockup--lg .seal .seal__big { font-size: 1.05rem; }
.mockup--lg .seal .seal__small { font-size: .5rem; }
.final__value { grid-area: value; color: var(--gold-light); }
.final__value strong { font-weight: 600; }
.final__formwrap { grid-area: form; position: relative; width: 100%; max-width: 520px; }
.final__slab { position: absolute; top: 60px; bottom: -24px; left: 24px; right: calc(var(--gutter) * -1); background: var(--gold-grad); border-radius: var(--radius-xl) 0 0 var(--radius-xl); }
.final__form { --focus: var(--aubergine); position: relative; z-index: 1; margin-right: 10px; padding: 10px 22px 26px; border-radius: var(--radius-xl); background: var(--white); color: var(--ink); text-align: left; box-shadow: 0 50px 90px -40px rgba(0, 0, 0, .8); }
@media (min-width: 1024px) {
  .final__word { font-size: 26vw; left: -3vw; bottom: -3vw; }
  .final__grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); grid-template-areas: "visual eyebrow" "visual title" "visual value" "visual form"; grid-template-rows: auto auto auto 1fr; column-gap: 96px; row-gap: 10px; justify-items: start; align-items: start; text-align: left; }
  .final__visual { width: 100%; max-width: 340px; justify-self: center; align-self: center; margin: 0; }
  .mockup--lg .seal { width: 124px; height: 124px; top: -6%; left: -22%; }
  .mockup--lg .seal .seal__big { font-size: 1.55rem; }
  .mockup--lg .seal .seal__small { font-size: .72rem; }
  .final__formwrap { margin-top: 24px; max-width: 560px; }
  .final__slab { right: calc(var(--bleed) * -1); left: 60px; top: 80px; }
  .final__form { margin-right: 0; padding: 14px 34px 34px; }
}

/* ==========================================================================
   Footer, sticky CTA, lightbox
   ========================================================================== */
.site-footer { --focus: var(--gold); padding: 44px 0 110px; background: var(--aubergine-deep); color: var(--on-dark-muted); border-top: 1px solid rgba(227, 181, 70, .22); font-size: .9rem; }
.site-footer a { text-decoration: none; transition: color .2s; }
.site-footer a:hover { color: var(--gold); }
.site-footer__top { display: grid; gap: 20px; padding-bottom: 26px; }
.site-footer__script { font-family: var(--font-script); font-size: 2.4rem; line-height: 1; color: var(--gold); }
.site-footer__brandmark { width: 220px; height: auto; }
.site-footer__social-wrap { display: flex; flex-direction: column; gap: 10px; }
.site-footer__social-heading { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(227, 181, 70, .85); margin: 0; }
.site-footer__social { display: flex; flex-wrap: wrap; gap: 10px 12px; list-style: none; padding: 0; margin: 0; }

.social-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 10px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(227, 181, 70, .22);
  border-radius: 9999px;
  text-decoration: none;
  color: var(--on-dark);
  transition: all .25s cubic-bezier(0.2, 0.8, 0.2, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.social-card__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(227, 181, 70, .12);
  color: var(--gold);
  border: 1px solid rgba(227, 181, 70, .25);
  transition: all .25s ease;
}

.social-card__icon svg { display: block; }

.social-card__text { display: flex; flex-direction: column; text-align: left; }
.social-card__platform { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--gold); line-height: 1.1; transition: color .2s; }
.social-card__handle { font-size: .82rem; font-weight: 600; color: #fff; line-height: 1.25; }

.social-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: rgba(227, 181, 70, .1);
  box-shadow: 0 8px 24px -4px rgba(227, 181, 70, .25);
}

.social-card:hover .social-card__icon {
  background: var(--gold);
  color: #1C0F29;
  border-color: var(--gold);
  transform: scale(1.08);
}

.social-card--ig:hover { border-color: rgba(225, 48, 108, .5); box-shadow: 0 8px 22px -4px rgba(225, 48, 108, .35); }
.social-card--ig:hover .social-card__platform { color: #f56040; }
.social-card--ig:hover .social-card__icon { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; border-color: transparent; }

.social-card--tiktok:hover { border-color: rgba(0, 242, 234, .5); box-shadow: 0 8px 22px -4px rgba(254, 44, 85, .35); }
.social-card--tiktok:hover .social-card__platform { color: #00F2EA; }
.social-card--tiktok:hover .social-card__icon { background: #000; color: #fff; border-color: #FE2C55; box-shadow: -2px -1px 0 #00F2EA, 2px 1px 0 #FE2C55; }

.social-card--yt:hover { border-color: rgba(255, 0, 0, .5); box-shadow: 0 8px 22px -4px rgba(255, 0, 0, .35); }
.social-card--yt:hover .social-card__platform { color: #ff5555; }
.social-card--yt:hover .social-card__icon { background: #FF0000; color: #fff; border-color: #FF0000; }

.social-card--fb:hover { border-color: rgba(24, 119, 242, .5); box-shadow: 0 8px 22px -4px rgba(24, 119, 242, .35); }
.social-card--fb:hover .social-card__platform { color: #4599FF; }
.social-card--fb:hover .social-card__icon { background: #1877F2; color: #fff; border-color: #1877F2; }

.site-footer__legal { display: grid; gap: 14px; padding: 22px 0; border-top: 1px solid rgba(245, 240, 250, .1); border-bottom: 1px solid rgba(245, 240, 250, .1); }
.site-footer__links { display: flex; flex-wrap: wrap; gap: 10px 32px; }
.site-footer__links a { font-size: 1rem; font-weight: 500; color: var(--on-dark); }
.site-footer__copy { font-size: .85rem; color: rgba(245, 240, 250, .6); }
.site-footer__disclaimer { padding-top: 22px; max-width: 110ch; font-size: .8rem; line-height: 1.6; color: rgba(245, 240, 250, .58); }
@media (min-width: 768px) {
  .site-footer { padding-bottom: 40px; }
  .site-footer__top { grid-template-columns: auto 1fr; align-items: center; }
  .site-footer__social-wrap { align-items: flex-end; text-align: right; }
  .site-footer__social { justify-content: flex-end; }
  .site-footer__legal { grid-template-columns: 1fr auto; align-items: center; }
}

@media (max-width: 767px) {
  .site-footer__social {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
  }
  .social-card {
    width: 100%;
    padding: 8px 10px;
  }
}

@media (max-width: 480px) {
  .site-footer__social {
    grid-template-columns: 1fr;
  }
}

/* ---------- 14b. Floating Dock Sticky Mobile CTA ---------- */
.sticky-cta {
  --focus: var(--gold);
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  max-width: 440px;
  margin-inline: auto;
  pointer-events: none;
  transform: translateY(120%);
  opacity: 0;
  visibility: hidden;
  transition: transform .35s var(--ease), opacity .3s ease, visibility 0s linear .35s;
}

.sticky-cta.is-visible {
  pointer-events: auto;
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: transform .38s cubic-bezier(.16, 1, .3, 1), opacity .3s ease, visibility 0s;
}

.sticky-cta__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px 8px 12px;
  background: rgba(28, 15, 41, .94);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(227, 181, 70, .4);
  border-radius: 20px;
  box-shadow: 0 16px 36px -8px rgba(10, 4, 16, .75),
              0 0 0 1px rgba(255, 255, 255, .08) inset,
              0 0 24px -6px rgba(227, 181, 70, .25);
  text-decoration: none;
  color: var(--on-dark);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.sticky-cta__inner:hover {
  border-color: rgba(227, 181, 70, .65);
  box-shadow: 0 18px 40px -8px rgba(10, 4, 16, .85),
              0 0 0 1px rgba(255, 255, 255, .12) inset,
              0 0 32px -4px rgba(227, 181, 70, .38);
}

.sticky-cta__inner:active {
  transform: scale(.985);
}

/* 3D Mini Book Cover Thumbnail */
.sticky-cta__thumb {
  position: relative;
  flex-shrink: 0;
  width: 36px;
  height: 52px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 2px 4px 12px rgba(0, 0, 0, .55), 0 0 0 1px rgba(227, 181, 70, .3);
  background: var(--aubergine-deep);
  transform: rotate(-2deg);
  transition: transform .25s var(--ease);
}

.sticky-cta__inner:hover .sticky-cta__thumb {
  transform: rotate(0deg) scale(1.04);
}

.sticky-cta__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Spine book reflection highlight */
.sticky-cta__thumb::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .45), rgba(0, 0, 0, .2) 70%, transparent);
  z-index: 2;
  pointer-events: none;
}

/* Info column */
.sticky-cta__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.sticky-cta__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}

.sticky-cta__badge {
  display: inline-flex;
  align-items: center;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--gold-grad);
  color: var(--aubergine-deep);
  line-height: 1.1;
  text-transform: uppercase;
}

.sticky-cta__val {
  font-size: .72rem;
  color: rgba(245, 240, 250, .7);
  font-weight: 500;
  line-height: 1.1;
}

.sticky-cta__val s {
  color: rgba(245, 240, 250, .45);
  margin-left: 1px;
}

.sticky-cta__title {
  font-size: .88rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -.01em;
}

/* Action Button */
.sticky-cta__action {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.sticky-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--gold-grad);
  color: var(--aubergine-deep);
  font-family: var(--font-body);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 6px 18px -4px rgba(227, 181, 70, .65),
              inset 0 1px 0 rgba(255, 255, 255, .55),
              inset 0 -1px 0 rgba(28, 15, 41, .15);
  position: relative;
  overflow: hidden;
  line-height: 1;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), filter .2s;
}

.sticky-cta__inner:hover .sticky-cta__btn {
  filter: saturate(1.1);
  transform: translateY(-1px);
}

.sticky-cta__btn::after {
  content: "";
  position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .5), transparent);
  transform: skewX(-20deg);
  animation: stickyShimmer 3.5s infinite;
}

@keyframes stickyShimmer {
  0%, 70% { left: -100%; }
  100% { left: 200%; }
}

.sticky-cta__btn svg {
  display: block;
  flex-shrink: 0;
  transition: transform .2s var(--ease);
}

.sticky-cta__inner:hover .sticky-cta__btn svg {
  transform: translateY(1.5px);
}

@media (max-width: 360px) {
  .sticky-cta {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }
  .sticky-cta__inner {
    gap: 8px;
    padding: 6px 8px;
  }
  .sticky-cta__thumb {
    width: 32px;
    height: 46px;
  }
  .sticky-cta__title {
    font-size: .82rem;
  }
  .sticky-cta__btn {
    padding: 9px 11px;
    font-size: .8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-cta__btn::after {
    animation: none;
  }
}

@media (min-width: 768px) {
  .sticky-cta { display: none !important; }
}

.lightbox { --focus: var(--gold); width: 100vw; max-width: 100vw; height: 100dvh; max-height: 100dvh; margin: 0; padding: 0; border: 0; background: rgba(14, 8, 20, .96); color: var(--on-dark); }
.lightbox::backdrop { background: rgba(14, 8, 20, .9); }
.lightbox__inner { position: relative; height: 100%; display: grid; grid-template-rows: 1fr auto; }
.lightbox__figure { display: grid; place-items: center; min-height: 0; padding: 64px 12px 8px; touch-action: pan-y; }
.lightbox__figure img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; border-radius: 8px; user-select: none; -webkit-user-drag: none; }
.lightbox__close { position: absolute; top: 12px; right: 12px; z-index: 1; }
.lightbox__bar { display: flex; justify-content: center; align-items: center; gap: 20px; padding: 12px 12px calc(16px + env(safe-area-inset-bottom)); }
.lightbox__count { min-width: 72px; text-align: center; font-variant-numeric: tabular-nums; font-size: .95rem; }
@media (min-width: 768px) { .lightbox__figure { padding: 72px 96px 12px; } }

/* stacking: sections whose images break into the next/previous section paint above their neighbours */
.s-authority, .s-breakthrough { z-index: 3; }
.s-mission { z-index: 2; }


/* ==========================================================================
   Polish pass — editorial index numbers, restrained line graphics, hero texture
   ========================================================================== */
.secno {
  position: absolute; z-index: 2; top: 28px; right: var(--gutter);
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-size: .7rem; font-weight: 800; letter-spacing: .3em;
  color: var(--gold-text); opacity: .85; pointer-events: none;
}
.secno::before { content: ""; width: 44px; height: 1px; background: currentColor; }
.s-intro .secno { color: var(--aubergine); }
.s-origin .secno { color: var(--aubergine); opacity: .6; }
@media (min-width: 1024px) { .secno { top: 40px; right: max(var(--gutter), calc((100vw - 1200px) / 2)); } }

.deco-arcs {
  position: absolute; z-index: 0; pointer-events: none;
  width: 520px; aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(201, 149, 47, .28);
  box-shadow: 0 0 0 44px transparent, 0 0 0 45px rgba(201, 149, 47, .14);
}
.deco-arcs::after { content: ""; position: absolute; inset: 90px; border-radius: 50%; border: 1px dashed rgba(201, 149, 47, .22); }
.deco-arcs--optin { left: -300px; bottom: 120px; }
.deco-arcs--disc { left: -320px; bottom: -200px; }
.deco-arcs--decision { right: -300px; top: 150px; }
.deco-lattice {
  position: absolute; z-index: 0; pointer-events: none; right: 0; bottom: 0; width: 46%; height: 60%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44'%3E%3Cpath d='M22 2L42 22L22 42L2 22Z' fill='none' stroke='%238A6511' stroke-width='.9'/%3E%3Ccircle cx='22' cy='22' r='1.8' fill='%238A6511'/%3E%3C/svg%3E") 0 0 / 44px;
  opacity: .09;
  -webkit-mask-image: radial-gradient(90% 90% at 100% 100%, #000 20%, transparent 75%); mask-image: radial-gradient(90% 90% at 100% 100%, #000 20%, transparent 75%);
}
@media (max-width: 767px) { .deco-arcs { width: 320px; } .deco-arcs--optin { left: -230px; } .deco-arcs--decision { right: -230px; } .deco-arcs--disc { display: none; } }

/* hero: fine texture + directional warmth over the base image (headline side stays dark) */
.hero__bg::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(20, 10, 30, .55) 0%, rgba(20, 10, 30, .25) 38%, rgba(20, 10, 30, 0) 60%),
    var(--grain-dark);
}

/* transitions */
.s-gallery { border-top: 1px solid rgba(227, 181, 70, .22); }
.s-optin { box-shadow: inset 0 18px 30px -24px rgba(28, 15, 41, .35); }
.s-decision .secno { top: calc(clamp(46px, 5vw, 80px) + 26px); }

/* ==========================================================================
   Top navigation (in the hero)
   ========================================================================== */
.hero { padding-top: 0; }
.topnav {
  position: relative; z-index: 4;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding-block: 22px 18px; margin-bottom: 18px;
  border-bottom: 1px solid rgba(227, 181, 70, .16);
}
.topnav a { text-decoration: none; }
.topnav__brand { display: grid; line-height: 1; }
.topnav__brandmark { width: clamp(148px, 18vw, 220px); height: auto; }
.topnav__logo { font-family: var(--font-script); font-size: 2.1rem; line-height: .95; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; padding-right: .1em; }
.topnav__tag { margin-top: 4px; font-size: .56rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--on-dark-muted); }
.topnav__links { display: none; }
.topnav__cta {
  display: inline-flex; align-items: center; min-height: 42px; padding: 10px 18px;
  border: 1.5px solid var(--gold); border-radius: 999px;
  font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--gold);
  transition: background-color .2s, color .2s;
}
.topnav__cta:hover { background: var(--gold); color: var(--aubergine-deep); }
@media (min-width: 1024px) {
  .hero { padding-top: 0; }
  .topnav { padding-block: 34px 26px; margin-bottom: 40px; gap: 40px; }
  .topnav__logo { font-size: 2.5rem; }
  .topnav__tag { font-size: .6rem; }
  .topnav__links { display: flex; gap: 38px; margin-left: auto; }
  .topnav__links a { position: relative; font-size: .78rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--on-dark); transition: color .2s; }
  .topnav__links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
  .topnav__links a:hover { color: var(--gold); }
  .topnav__links a:hover::after { transform: scaleX(1); }
  .topnav__cta { position: relative; min-height: 48px; padding: 12px 28px; font-size: .78rem; margin-left: 30px; }
  .topnav__cta::before { content: ""; position: absolute; left: -35px; top: 50%; width: 1px; height: 30px; translate: 0 -50%; background: rgba(245, 240, 250, .22); }
}

/* top nav — mobile fit */
.topnav__cta { white-space: nowrap; }
@media (max-width: 479px) {
  .topnav__tag { display: none; }
  .topnav__logo { font-size: 1.9rem; }
  .topnav__cta { min-height: 40px; padding: 8px 16px; font-size: .68rem; letter-spacing: .12em; }
}
@media (min-width: 480px) and (max-width: 1023px) { .topnav__tag { white-space: nowrap; } }


/* ==========================================================================
   Readability: sturdier optical size for large upright display type
   (auto optical sizing picked Fraunces' hairline "display" cut at these sizes)
   ========================================================================== */
.hero__title, .h2, .crisis__display, .vow__display, .final__title, .mission__title, .metaphor__title,
.decision__question strong, .signature__quote p, .band2018__year, .optin-card__title {
  font-optical-sizing: none;
  font-variation-settings: "opsz" 60;
}
.hero__title { line-height: 1.1; letter-spacing: -.012em; font-weight: 600; }
.hero__title em {
  font-style: normal;
  background: none;
  -webkit-background-clip: border-box; background-clip: border-box;
  -webkit-text-fill-color: currentColor;
  color: #EDC867;
  padding-right: 0;
}
.h2 { letter-spacing: -.012em; }
@media (min-width: 640px) { .hero__actions .btn { white-space: nowrap; } }
@media (min-width: 1024px) { .hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 30px; } }

/* marquee: continuous drift needs free scrolling (no snap) */
.gallery__track.is-marquee { scroll-snap-type: none; }

/* S03 title: "Siapa" as a quiet lead-in, the name as the hero of the line */
.intro__title .intro__q {
  display: block; margin-bottom: .08em;
  font-style: italic; font-weight: 400; font-size: .5em; letter-spacing: 0;
  color: var(--violet);
}
.intro__title .intro__name { display: block; }
.intro__title .intro__qm { color: var(--gold); margin-left: .04em; }
@media (min-width: 640px) { .intro__title .intro__name { white-space: nowrap; } }

/* hero portrait: larger than its 40% column (bleeds slightly) — headline stays 4 lines */
@media (min-width: 1024px) {
  .hero__stage { width: 122%; max-width: 600px; margin-left: auto; margin-right: -6%; aspect-ratio: 600 / 740; }
  .hero__vword { right: 22px; }
}
@media (max-width: 1439px) { .hero__vword { display: none !important; } }


/* ==========================================================================
   Hero refinement pass — composition, rhythm, label, atmosphere (no concept change)
   ========================================================================== */

/* headline: two intentional line groups; emphasized phrases never split */
.hero__t1, .hero__t2 { display: block; text-wrap: balance; }
.hero__title em, .hero__nw, .hero__end { white-space: nowrap; }
.btn__label { text-wrap: balance; }
.hero__title { line-height: 1.08; }

/* copy rhythm */
.hero .pill { margin-bottom: 0; }
.hero__sub { text-wrap: pretty; }

/* CTA group: the button leads, proof is a quiet footnote */
.hero__proof { gap: 10px; font-size: .84rem; font-weight: 600; color: var(--on-dark-muted); transition: color .2s; }
.hero__proof-text { border-bottom-color: rgba(227, 181, 70, .38); }
.hero__proof:hover { color: var(--on-dark); }
.hero__proof .avatars picture { width: 32px; height: 32px; box-shadow: 0 0 0 2px var(--aubergine-deep), 0 0 0 2.5px rgba(227, 181, 70, .45); }
.hero__proof .avatars picture + picture { margin-left: -9px; }

/* identity label: compact editorial plate, name first */
.hero__caption {
  display: grid; gap: 3px; justify-items: start;
  width: max-content; max-width: 100%;
  padding: 9px 14px 10px 13px;
  text-align: left;
  border-left: 2px solid var(--gold);
  border-radius: 2px 6px 6px 2px;
  background: rgba(20, 10, 30, .78);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  box-shadow: 0 12px 28px -14px rgba(0, 0, 0, .7);
}
.hero__caption strong { font-family: var(--font-display); font-size: 1.06rem; font-weight: 600; line-height: 1.15; letter-spacing: -.005em; color: var(--ivory); }
.hero__caption-sep { display: none; }
.hero__caption-role { font-size: .6rem; font-weight: 700; line-height: 1.35; letter-spacing: .15em; white-space: nowrap; text-transform: uppercase; color: rgba(244, 217, 138, .82); }

/* background type: atmosphere only */
.hero__word { -webkit-text-stroke-color: rgba(227, 181, 70, .075); }

/* background depth: soft key light on the portrait side, gentle vignette, grain */
.hero__bg::after {
  background:
    radial-gradient(60% 55% at 76% 30%, rgba(246, 220, 142, .07), transparent 70%),
    radial-gradient(120% 90% at 50% 40%, transparent 55%, rgba(10, 5, 16, .45) 100%),
    linear-gradient(90deg, rgba(20, 10, 30, .6) 0%, rgba(20, 10, 30, .3) 38%, rgba(20, 10, 30, 0) 60%),
    var(--grain-dark);
}

/* ---------- mobile + tablet: headline → portrait → copy → CTA ---------- */
@media (max-width: 1023px) {
  .hero__grid { grid-template-areas: "pill" "title" "visual" "sub" "actions"; row-gap: 0; padding-bottom: 36px; }
  .hero__copy { display: contents; }
  .hero .pill { grid-area: pill; justify-self: start; }
  .hero__title { grid-area: title; margin-top: 18px; }
  .hero__visual { margin-top: 26px; }
  .hero__sub { grid-area: sub; margin-top: 22px; }
  .hero__actions { margin-top: 26px; gap: 14px; }

  /* portrait: crop below the hands so face, hands and eBook sit higher and the CTA comes sooner */
  .hero__stage { width: min(100%, 420px); aspect-ratio: 440 / 480; }
  .hero__portrait { top: 0; bottom: 0; height: auto; overflow: hidden; }
  .hero__portrait img { height: 120%; -webkit-mask-image: linear-gradient(#000 72%, transparent 83%); mask-image: linear-gradient(#000 72%, transparent 83%); }

  .hero__caption { position: absolute; left: 50%; bottom: 12px; z-index: 3; margin: 0; translate: -50% 0; }
  .hero__word { display: none; }
}
@media (max-width: 639px) {
  /* sized so "Income Kedua yang Stabil”" always closes the headline on one line */
  .hero__title { font-size: clamp(1.75rem, (100vw - 32px) / 12.2, 2.25rem); }
}
@media (max-width: 374px) {
  .hero__end { white-space: normal; }
  .hero__caption-role { font-size: .5rem !important; letter-spacing: .07em !important; }
}
@media (max-width: 479px) {
  .hero .pill { padding: 8px 14px 8px 12px; font-size: .68rem; letter-spacing: .12em; }
  .hero__sub { font-size: 1.02rem; line-height: 1.58; }
  .hero__actions .btn { min-height: 60px; padding: 14px 20px; font-size: .95rem; letter-spacing: .01em; }
  .hero__caption { padding: 7px 12px 8px 11px; }
  .hero__caption strong { font-size: .98rem; }
  .hero__caption-role { font-size: .55rem; letter-spacing: .12em; white-space: nowrap; }
}

/* ---------- desktop ---------- */
@media (min-width: 1024px) {
  .hero__title { margin-top: 28px; font-size: clamp(2.6rem, 1.2rem + 2.6vw, 3.45rem); }
  .hero__sub { margin-top: 26px; max-width: 37ch; }
  .hero__grid { row-gap: 40px; }
  .hero__actions { gap: 16px 0; padding-bottom: 60px; }
  .hero__proof { position: relative; margin-left: 28px; padding-left: 28px; }
  .hero__proof::before { content: ""; position: absolute; left: 0; top: 50%; width: 1px; height: 28px; translate: 0 -50%; background: rgba(245, 240, 250, .18); }

  .hero__caption { right: auto; left: 2%; bottom: 44px; padding: 11px 18px 12px 15px; border-radius: 2px 8px 8px 2px; border: 1px solid rgba(227, 181, 70, .2); border-left: 2px solid var(--gold); }
  .hero__caption strong { font-size: 1.2rem; }
  .hero__caption-role { font-size: .64rem; }

  /* INCOME sits in the band under the nav, fading out toward the headline */
  .hero__word { font-size: 11.5vw; top: 118px; right: -.5vw; -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 45%); mask-image: linear-gradient(90deg, transparent 0%, #000 45%); }
  .hero__vword { color: rgba(227, 181, 70, .3); font-size: .7rem; }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .hero__actions { justify-items: start; }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .hero__caption-role { font-size: .58rem; letter-spacing: .12em; }
  .hero__proof { margin-left: 0; padding-left: 0; }
  .hero__proof::before { display: none; }
}

/* desktop balance: copy column sized to the longest headline line, portrait pulled toward the copy */
@media (min-width: 1024px) {
  .hero { --hero-fs: clamp(2.6rem, 1.2rem + 2.6vw, 3.45rem); }
  .hero__title { font-size: var(--hero-fs); }
  .hero__grid { grid-template-columns: minmax(0, calc(var(--hero-fs) * 12.4)) minmax(0, 1fr); column-gap: clamp(24px, 3vw, 48px); }
  .hero__stage { width: 112%; max-width: 620px; margin-left: auto; margin-right: -4%; aspect-ratio: 600 / 740; }
  .hero__caption { left: auto; right: 4%; }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .hero__stage { width: 122%; }
}
@media (min-width: 1400px) {
  .hero__stage { width: 119%; margin-right: -12%; }
}
@media (min-width: 1280px) {
  .hero__actions { flex-wrap: nowrap; width: max-content; }
  .hero__proof { margin-left: 22px; padding-left: 22px; }
}

/* ========================================================================== 
   Editorial restraint pass
   Keep the identity in the photography, typography and story; remove repeated
   decorative signals that made every section compete for equal attention.
   ========================================================================== */
.secno,
.deco-arcs,
.optin__word,
.origin__word,
.meaning__word,
.testi__word,
.decision__word,
.faq__word,
.final__word { display: none; }

.js .reveal {
  transform: translateY(12px);
  transition-duration: .4s;
}

.s-meaning { padding-block: clamp(72px, 7vw, 108px); }
.meaning__display { margin-top: 1.15em; padding-top: 30px; }

@media (min-width: 900px) {
  .s-metaphor { min-height: clamp(680px, 80vh, 820px); }
  .ctaband { padding-block: 44px; }
}


@media (max-width: 479px) {
  .topnav { gap: 10px; }
  .topnav__logo { font-size: 1.7rem; }
  .topnav__cta { padding-inline: 11px; font-size: .6rem; letter-spacing: .08em; }
  .hero__end,
  .hero__nw { white-space: normal; }
  .hero__caption { width: calc(100% - 24px); max-width: 340px; }
  .hero__caption-role { white-space: normal; }
}

.legal-page { min-height: 100vh; display: flex; flex-direction: column; }
.legal-header {
  --focus: var(--gold);
  position: relative; isolation: isolate; overflow: hidden;
  background: radial-gradient(circle at 80% 10%, rgba(107, 74, 143, .5), transparent 45%), linear-gradient(135deg, var(--aubergine-deep), var(--aubergine));
  color: var(--on-dark);
}
.legal-header::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--grain-dark); pointer-events: none; }
.legal-page .legal-nav { margin-bottom: 0; }
.legal-hero { padding-block: clamp(54px, 7vw, 100px) clamp(64px, 8vw, 112px); }
.legal-hero__title {
  max-width: 18ch; font-family: var(--font-display); font-size: clamp(2.7rem, 6vw, 5.5rem);
  font-weight: 600; line-height: 1.08; letter-spacing: -.03em;
}
.legal-hero__title::after { content: ""; display: block; width: 72px; height: 3px; margin-top: 28px; background: var(--gold-grad); }
.legal-main { flex: 1; max-width: calc(920px + var(--gutter) * 2); padding-block: clamp(36px, 6vw, 80px); }
.legal-card {
  padding: clamp(24px, 5vw, 64px); border: 1px solid var(--line); border-radius: var(--radius-xl);
  background: var(--white); box-shadow: 0 24px 60px -42px rgba(28, 15, 41, .35);
}
.legal-copy h2 {
  padding-left: 18px; border-left: 3px solid var(--gold);
  color: var(--aubergine); font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem); font-weight: 600; line-height: 1.3; letter-spacing: -.015em;
}
.legal-copy h2:not(:first-child) { margin-top: 2.3rem; }
.legal-copy p, .legal-copy ul { margin-top: 1rem; color: var(--muted); }
.legal-copy p + p { margin-top: .8rem; }
.legal-copy ul { padding-left: 1.4rem; list-style: disc; }
.legal-copy li { padding-left: .2rem; }
.legal-copy li + li { margin-top: .6rem; }
.legal-copy strong { color: var(--ink); }
.legal-copy a { color: var(--gold-text); font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 3px; overflow-wrap: anywhere; }
.legal-copy a:hover { color: var(--aubergine); }
.legal-footer { padding-bottom: 40px; }
.legal-footer .site-footer__script { text-decoration: none; }
.legal-footer .site-footer__links a[aria-current="page"] { color: var(--gold); text-decoration: underline; text-underline-offset: 6px; }
@media (max-width: 479px) {
  .legal-page .topnav__cta { padding-inline: 12px; font-size: .62rem; letter-spacing: .06em; }
  .legal-card { border-radius: var(--radius); }
}
