@charset "UTF-8";

:root {
  --ivory: #f8f5ee;
  --soft-white: #fcfbf8;
  --paper: #f2ecdf;
  --ink: #1f2430;
  --indigo: #24364b;
  --indigo-dark: #152536;
  --terracotta: #a35a50;
  --gold: #b9935a;
  --sage: #7e8b7b;
  --line: rgba(31, 36, 48, .16);
  --light-line: rgba(255, 255, 255, .18);
  --serif: "Source Serif 4", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 64px rgba(21, 37, 54, .14);
  --radius: 1.25rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; text-size-adjust: 100%; }
body { margin: 0; background: var(--ivory); color: var(--ink); font: 400 1rem/1.7 var(--sans); }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
svg { width: 1.1em; height: 1.1em; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; letter-spacing: -.025em; }
h1 { font-size: clamp(3.4rem, 9vw, 8.4rem); line-height: .91; }
h2 { font-size: clamp(2.25rem, 4.8vw, 4.35rem); line-height: 1.03; }
h3 { font-size: clamp(1.35rem, 2vw, 1.8rem); line-height: 1.15; }
p { max-width: 68ch; }
::selection { background: var(--gold); color: var(--indigo-dark); }

.container { width: min(1240px, calc(100% - 3rem)); margin-inline: auto; }
.section { padding-block: clamp(5rem, 9vw, 9rem); }
.eyebrow { margin-bottom: 1.1rem; color: var(--terracotta); font-size: .76rem; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; }
.eyebrow.light { color: #e8c78f; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: .75rem; left: .75rem; z-index: 1000; padding: .75rem 1rem; background: var(--soft-white); color: var(--indigo); transform: translateY(-200%); }
.skip-link:focus { transform: translateY(0); }

.edition-bar { position: relative; z-index: 30; background: var(--indigo-dark); color: white; }
.edition-bar a { display: flex; gap: .75rem; align-items: center; justify-content: center; min-height: 2.55rem; padding: .45rem 1rem; text-decoration: none; font-size: .78rem; letter-spacing: .03em; }
.edition-bar strong { color: #f0d5a5; }
.edition-bar svg { flex: 0 0 auto; }

.site-header { position: sticky; top: 0; z-index: 25; display: flex; align-items: center; justify-content: space-between; min-height: 5.4rem; padding: .8rem max(1.5rem, calc((100vw - 1400px) / 2)); background: rgba(248, 245, 238, .94); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
.brand { display: inline-flex; gap: .7rem; align-items: center; flex: 0 0 auto; text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 2.55rem; aspect-ratio: 1; border: 1px solid var(--gold); border-radius: 50%; background: var(--indigo); color: var(--soft-white); font-family: var(--serif); font-size: .92rem; }
.brand b, .brand small { display: block; line-height: 1.05; }
.brand b { color: var(--indigo); font-family: var(--serif); font-size: 1.02rem; font-weight: 600; }
.brand small { margin-top: .18rem; font-size: .75rem; letter-spacing: .11em; text-transform: uppercase; }
.brand.inverse b, .brand.inverse small { color: white; }
.primary-nav { display: flex; gap: clamp(.65rem, 1.4vw, 1.25rem); align-items: center; }
.primary-nav a { position: relative; padding-block: .45rem; color: #35404e; font-size: clamp(.75rem, .83vw, .84rem); font-weight: 650; text-decoration: none; white-space: nowrap; }
.primary-nav a:not(.nav-buy)::after { content: ""; position: absolute; right: 0; bottom: .2rem; left: 0; height: 1px; background: var(--terracotta); transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.primary-nav .nav-buy { padding: .7rem 1rem; border-radius: 999px; background: var(--indigo); color: white; }
.nav-search { color: var(--terracotta) !important; }
.menu-button { display: none; width: 3rem; height: 3rem; padding: .75rem; border: 1px solid var(--line); border-radius: 50%; background: transparent; }
.menu-button span { display: block; width: 100%; height: 1px; margin: .27rem 0; background: var(--indigo); }

.button-row { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.button { display: inline-flex; gap: .55rem; align-items: center; justify-content: center; min-height: 3.2rem; padding: .8rem 1.2rem; border: 1px solid var(--indigo); border-radius: 999px; background: var(--indigo); color: white; font-size: .9rem; font-weight: 750; text-decoration: none; transition: transform .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); background: var(--indigo-dark); }
.button.ghost { background: transparent; color: var(--indigo); }
.button.ghost:hover { background: rgba(36,54,75,.07); }
.light-button { border-color: var(--soft-white); background: var(--soft-white); color: var(--indigo-dark); }
.light-button:hover { background: #eadfc9; }
.outline-light { border-color: rgba(255,255,255,.55); background: transparent; color: white; }
.text-link { display: inline-flex; gap: .45rem; align-items: center; color: var(--indigo); font-weight: 800; text-decoration: none; }
.text-link::after { content: ""; display: block; width: 2rem; height: 1px; background: var(--gold); transition: width .2s ease; }
.text-link:hover::after { width: 3rem; }
.text-link svg { display: none; }
.light-link { color: white; }

.home-hero { position: relative; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(290px, .72fr); min-height: calc(100vh - 8rem); overflow: hidden; background: radial-gradient(circle at 73% 28%, rgba(185,147,90,.2), transparent 22%), linear-gradient(145deg, #fcfaf5 8%, #eee5d4 100%); }
.home-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(90deg, transparent 49.9%, rgba(36,54,75,.055) 50%, transparent 50.1%); background-size: 8.3333% 100%; }
.hero-copy { position: relative; z-index: 2; align-self: center; padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 7vw, 8rem); padding-right: 2rem; }
.hero-copy h1 { max-width: 930px; margin-bottom: 1.8rem; color: var(--indigo-dark); }
.hero-manifesto { max-width: 680px; margin-bottom: 2.2rem; color: #4d4e50; font: 1.2rem/1.65 var(--serif); }
.hero-portrait { position: relative; z-index: 1; align-self: end; margin: 3rem clamp(1.5rem, 5vw, 5rem) 4.5rem 0; }
.portrait-arch { position: relative; max-width: 400px; margin-inline: auto; padding: .5rem; border: 1px solid rgba(185,147,90,.7); border-radius: 16rem 16rem 1rem 1rem; background: rgba(255,255,255,.45); box-shadow: var(--shadow); }
.portrait-arch::before { content: ""; position: absolute; inset: -1.2rem 1.2rem 1.2rem -1.2rem; z-index: -1; border: 1px solid rgba(36,54,75,.18); border-radius: 16rem 16rem 1rem 1rem; }
.portrait-arch img { width: 100%; aspect-ratio: .613; border-radius: 15.5rem 15.5rem .65rem .65rem; object-fit: cover; }
.hero-portrait figcaption { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-top: 1.25rem; }
.hero-portrait figcaption span { padding: .35rem .65rem; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.52); font-size: .75rem; }
.hero-note { position: absolute; right: 0; bottom: 0; left: 0; display: flex; gap: 1rem; align-items: center; justify-content: center; padding: 1rem; border-top: 1px solid var(--line); background: rgba(252,251,248,.76); color: var(--indigo); font-size: .75rem; font-weight: 800; letter-spacing: .16em; }
.hero-note i { width: 2rem; height: 1px; background: var(--gold); }

.section-heading { max-width: 850px; margin-bottom: 3.25rem; }
.section-heading h2 { margin-bottom: 1rem; color: var(--indigo); }
.section-heading > p:last-child { color: #5f6265; font-size: 1.05rem; }
.section-heading.split { display: flex; gap: 2rem; align-items: end; justify-content: space-between; max-width: none; }
.section-heading.split > p { max-width: 380px; color: inherit; }
.journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.journey { padding: 2.3rem; border-right: 1px solid var(--line); }
.journey:last-child { border-right: 0; }
.journey > span { color: var(--terracotta); font-size: .75rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.journey h3 { margin: 2.8rem 0 1rem; color: var(--indigo); font-size: 2rem; }
.journey p { min-height: 6.4rem; color: #5c5f63; }
.journey a { display: inline-flex; align-items: center; gap: .4rem; font-size: .82rem; font-weight: 800; text-decoration: none; }

.books-section { background: var(--soft-white); }
.book-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(2rem,5vw,5rem); }
.book-card { display: grid; grid-template-columns: minmax(160px,.8fr) minmax(0,1fr); gap: clamp(1.5rem,3vw,3rem); align-items: center; padding: clamp(1.5rem,3vw,3rem); border: 1px solid var(--line); border-radius: var(--radius); background: var(--ivory); }
.book-card .cover-link { transition: transform .2s ease; }
.book-card .cover-link:hover { transform: translateY(-6px) rotate(-.5deg); }
.book-card img { aspect-ratio: .67; object-fit: cover; box-shadow: 0 20px 35px rgba(31,36,48,.2); }
.book-card h3 { margin-bottom: 1rem; color: var(--indigo); font-size: clamp(1.8rem,3vw,2.7rem); }
.book-card h3 a { text-decoration: none; }
.book-card p:not(.eyebrow) { color: #5b5d60; }

.media-section, .watch-books, .foundations, .leadership-arc, .chapter-themes, .speaking-format, .recovery, .contact-paths { background: var(--indigo); color: white; }
.media-section .section-heading h2, .watch-books h2, .foundations h2, .leadership-arc h2, .chapter-themes h2, .speaking-format h2, .recovery h2, .contact-paths h2 { color: white; }
.platform-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-bottom: 2.5rem; border-top: 1px solid var(--light-line); border-bottom: 1px solid var(--light-line); }
.platform-card { min-height: 300px; padding: 2rem; border-right: 1px solid currentColor; border-color: inherit; color: inherit; text-decoration: none; transition: background .18s ease; }
.platform-card:last-child { border-right: 0; }
.platform-card:hover { background: rgba(255,255,255,.08); }
.platform-card > span { display: inline-block; margin-bottom: 3rem; color: var(--gold); font-size: .75rem; font-weight: 800; }
.platform-card h3 { font-size: 2rem; }
.platform-card p { min-height: 5.1rem; color: inherit; opacity: .76; }
.platform-card b { display: inline-flex; gap: .4rem; align-items: center; font-size: .78rem; }
.connect-preview .platform-grid { border-color: var(--line); color: var(--ink); }
.connect-preview .platform-card { border-color: var(--line); }
.connect-preview .platform-card:hover { background: rgba(36,54,75,.05); }

.edition-spotlight { display: grid; grid-template-columns: minmax(0,1fr) minmax(300px,.85fr); gap: clamp(3rem,8vw,8rem); align-items: center; }
.edition-copy h2 { color: var(--indigo); }
.check-list { display: grid; gap: .8rem; padding: 0; margin: 2rem 0; list-style: none; }
.check-list li { position: relative; padding-left: 1.7rem; }
.check-list li::before { content: ""; position: absolute; top: .68rem; left: 0; width: .55rem; height: .55rem; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 .3rem rgba(185,147,90,.14); }
.edition-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; padding: 2rem; border-radius: var(--radius); background: var(--paper); }
.edition-flow > span { display: grid; place-items: center; aspect-ratio: 1; border: 1px solid var(--gold); border-radius: 50%; color: var(--terracotta); font: 600 1.2rem var(--serif); text-align: center; }
.edition-flow small { display: block; max-width: 74px; color: var(--ink); font: 600 .75rem/1.2 var(--sans); }
.edition-flow i { width: clamp(.5rem,2vw,2rem); height: 1px; background: var(--gold); }

.about-preview { background: var(--terracotta); color: white; }
.two-col { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1fr); gap: clamp(3rem,9vw,9rem); }
.two-col h2 { color: white; }
.two-col > div:last-child > p { font-size: 1.1rem; }
.editorial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.feature-story { min-height: 520px; padding: clamp(2rem,5vw,5rem); border-radius: var(--radius); }
.feature-story h2 { max-width: 650px; color: white; }
.feature-story > p:not(.eyebrow) { color: rgba(255,255,255,.82); }
.insight-feature { background: linear-gradient(145deg, rgba(21,37,54,.72),rgba(21,37,54,.96)), url('/assets/dari-panggilan-menjadi-warisan.jpg') center/cover; }
.reflection-feature { background: linear-gradient(145deg, rgba(107,53,45,.78),rgba(76,35,31,.97)), url('/assets/suara-yang-tuhan-pulihkan.jpg') center/cover; }
.speaking-preview .topic-row { margin-bottom: 2rem; }
.topic-row { display: flex; flex-wrap: wrap; gap: .65rem; }
.topic-row span, .tag-list span { padding: .55rem .8rem; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.25); font-size: .78rem; font-weight: 650; }
.impact-ribbon { padding-block: clamp(4rem,8vw,8rem); background: var(--sage); color: white; }
.impact-ribbon h2 { max-width: 1000px; color: white; }
.connect-preview .platform-grid { margin-top: 2.5rem; }

.cta-band { display: flex; gap: 2rem; align-items: center; justify-content: space-between; padding: clamp(3.5rem,7vw,6rem) max(1.5rem,calc((100vw - 1240px)/2)); background: var(--terracotta); color: white; }
.cta-band h2 { margin-bottom: .7rem; color: white; }
.cta-band p:not(.eyebrow) { margin-bottom: 0; }
.cta-band .button { flex: 0 0 auto; }

.page-hero { position: relative; overflow: hidden; padding-block: clamp(5rem,10vw,9rem); background: linear-gradient(135deg, #f4ecdc, #fcfaf6); }
.page-hero::after { content: ""; position: absolute; right: -10vw; bottom: -45%; width: 55vw; aspect-ratio: 1; border: 1px solid rgba(185,147,90,.35); border-radius: 50%; box-shadow: inset 0 0 0 3rem rgba(185,147,90,.03), inset 0 0 0 6rem rgba(36,54,75,.025); }
.page-hero h1 { position: relative; z-index: 1; max-width: 1150px; margin-bottom: 1.8rem; color: var(--indigo-dark); font-size: clamp(3.3rem,8vw,7.5rem); }
.page-intro { position: relative; z-index: 1; max-width: 800px; margin-bottom: 0; color: #54575b; font: clamp(1.15rem,2vw,1.4rem)/1.6 var(--serif); }

.profile-layout { display: grid; grid-template-columns: minmax(260px,.65fr) minmax(0,1.35fr); gap: clamp(3rem,8vw,8rem); align-items: start; }
.profile-photo { position: sticky; top: 8rem; margin: 0; }
.profile-photo img { width: 100%; max-width: 440px; border-radius: 14rem 14rem .8rem .8rem; box-shadow: var(--shadow); }
.profile-photo figcaption { margin-top: 1rem; color: #5a5d61; font-size: .78rem; }
.prose { font: 1.08rem/1.85 var(--serif); }
.prose h2 { margin: 0 0 2rem; color: var(--indigo); }
.prose h3 { margin: 3rem 0 1rem; color: var(--terracotta); }
.prose p { margin-bottom: 1.5rem; }
.foundation-grid, .experience-grid, .arc-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--light-line); }
.foundation-grid article, .experience-grid article, .arc-grid article { padding: 2rem; border-right: 1px solid var(--light-line); }
.foundation-grid article:last-child, .experience-grid article:last-child, .arc-grid article:last-child { border-right: 0; }
.foundation-grid b, .experience-grid b, .arc-grid span { display: block; margin-bottom: 3rem; color: #e8c78f; font-size: .75rem; }
.foundation-grid p, .arc-grid p { color: rgba(255,255,255,.74); }
.quote-block { max-width: 1000px; }
.quote-block > svg { width: 3rem; height: 3rem; margin-bottom: 1rem; fill: var(--gold); stroke: none; }
.quote-block blockquote { margin: 0 0 1.5rem; color: var(--indigo); font: clamp(2rem,4.5vw,4rem)/1.12 var(--serif); }
.quote-block cite { color: #666; font-style: normal; }

.living-summary { background: var(--indigo); color: white; }
.book-detail { display: grid; grid-template-columns: minmax(260px,.72fr) minmax(0,1.28fr); gap: clamp(3rem,8vw,8rem); align-items: center; }
.book-detail-cover { max-width: 480px; padding: clamp(1.2rem,3vw,2.5rem); border-radius: var(--radius); background: var(--paper); }
.book-detail-cover img { box-shadow: 0 28px 58px rgba(31,36,48,.28); }
.book-byline { color: var(--terracotta); font: 750 .82rem var(--sans); letter-spacing: .08em; text-transform: uppercase; }
.book-copy .tag-list { margin: 2rem 0; }
.tag-list { display: flex; flex-wrap: wrap; gap: .5rem; }
.chapter-themes .theme-list { display: grid; grid-template-columns: repeat(5,1fr); border-top: 1px solid var(--light-line); }
.theme-list article { padding: 2rem 1.2rem; border-right: 1px solid var(--light-line); }
.theme-list article:last-child { border-right: 0; }
.theme-list b { color: #e8c78f; font-size: .75rem; }
.theme-list h3 { margin-top: 3rem; }
.theme-list p { color: rgba(255,255,255,.72); font-size: .88rem; }
.audience { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem,8vw,8rem); }
.audience h2 { color: var(--indigo); }
.audience ul { display: grid; gap: .8rem; align-content: start; padding: 0; margin: 0; list-style: none; }
.audience li { padding: 1rem 0; border-bottom: 1px solid var(--line); font-weight: 650; }
.leadership-arc .arc-grid { grid-template-columns: repeat(5,1fr); }
.edition-in-book h2 { color: var(--indigo); }
.experience-grid { border-color: var(--line); }
.experience-grid article { border-color: var(--line); }
.experience-grid b { color: var(--terracotta); }
.experience-grid p { color: #5d6064; }
.safe-note { margin-top: 2rem; padding: 1.3rem 1.5rem; border-left: 4px solid var(--gold); background: var(--paper); }

.media-empty > div:first-child { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: 4rem; margin-bottom: 2rem; }
.media-empty h2 { color: var(--indigo); }
.media-empty > .topic-row { margin: 2rem 0 4rem; }
.media-empty .platform-grid { color: var(--ink); border-color: var(--line); }
.media-empty .platform-card { border-color: var(--line); }
.hub-grid { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--light-line); border-bottom: 1px solid var(--light-line); }
.hub-grid a { min-height: 320px; padding: clamp(2rem,4vw,4rem); border-right: 1px solid var(--light-line); color: white; text-decoration: none; }
.hub-grid a:last-child { border-right: 0; }
.hub-grid span { color: #e8c78f; font-size: .75rem; font-weight: 800; letter-spacing: .15em; }
.hub-grid h3 { max-width: 460px; margin-top: 4rem; font-size: 2.4rem; }
.hub-grid p { color: rgba(255,255,255,.75); }
.hub-grid svg { width: 2rem; }
.publication-standard { max-width: 900px; }
.publication-standard h2 { color: var(--indigo); }

.card-list { display: grid; grid-template-columns: 1.25fr .75fr; gap: 1.5rem; }
.article-card { min-height: 420px; padding: clamp(2rem,5vw,4.5rem); border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft-white); }
.article-card h2 { color: var(--indigo); }
.article-card h2 a { text-decoration: none; }
.pending-card { background: var(--paper); }
.article-shell { width: min(1060px, calc(100% - 3rem)); margin: 0 auto; padding-block: clamp(5rem,9vw,9rem); }
.article-shell > header { max-width: 930px; margin-bottom: 4rem; }
.article-shell h1 { margin: 1rem 0 2rem; color: var(--indigo-dark); font-size: clamp(3.2rem,7.5vw,6.8rem); }
.back-link { display: inline-block; margin-bottom: 3rem; color: var(--terracotta); font-size: .8rem; font-weight: 800; text-decoration: none; }
.article-deck { color: #5b5e62; font: clamp(1.2rem,2.3vw,1.55rem)/1.6 var(--serif); }
.article-body { max-width: 730px; margin-left: auto; font: 1.18rem/1.9 var(--serif); }
.article-body p { margin-bottom: 1.6rem; }
.article-body h2 { margin: 4rem 0 1.4rem; color: var(--indigo); font-size: 2.7rem; }
.article-body blockquote { margin: 3rem -7rem; padding: 2.5rem 3rem; border-block: 1px solid var(--gold); color: var(--indigo); font: clamp(1.6rem,3vw,2.4rem)/1.35 var(--serif); }
.dropcap::first-letter { float: left; margin: .15rem .5rem 0 0; color: var(--terracotta); font: 5.2rem/.78 var(--serif); }
.article-footer { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; max-width: 730px; margin: 5rem 0 0 auto; padding-top: 2rem; border-top: 1px solid var(--line); }
.article-footer p { width: 100%; margin: 0; color: var(--terracotta); font-size: .75rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.article-footer a { padding: .5rem .75rem; border: 1px solid var(--line); border-radius: 999px; font-size: .8rem; text-decoration: none; }

.reflection-index { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.reflection-index article { min-height: 360px; padding: clamp(2rem,4vw,4rem); border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft-white); }
.reflection-index h2 { color: var(--indigo); font-size: clamp(2rem,3.5vw,3.2rem); }
.reflection-index h2 a { text-decoration: none; }
.editorial-note { padding-block: clamp(4rem,8vw,7rem); background: var(--terracotta); color: white; }
.editorial-note h2 { color: white; }

.topic-catalog { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.topic-catalog article { position: relative; min-height: 320px; padding: clamp(2rem,4vw,4rem); background: var(--ivory); }
.topic-catalog article > span { position: absolute; right: 2rem; top: 2rem; color: var(--gold); font-size: .75rem; }
.topic-catalog h2 { max-width: 540px; color: var(--indigo); font-size: clamp(2rem,3.5vw,3rem); }
.format-list { display: grid; grid-template-columns: repeat(2,1fr); gap: .7rem; margin-bottom: 2rem; }
.format-list span { padding: .8rem 0; border-bottom: 1px solid var(--light-line); }

.impact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; padding: 1px; background: var(--line); }
.impact-grid article { min-height: 300px; padding: clamp(2rem,3vw,3rem); background: var(--ivory); }
.impact-grid b { color: var(--terracotta); font-size: .75rem; }
.impact-grid h2 { margin-top: 3.5rem; color: var(--indigo); font-size: 2rem; }
.contact-paths .button-row { margin-top: 2rem; }

.living-steps ol { display: grid; gap: 0; padding: 0; margin: 0; list-style: none; }
.living-steps li { display: grid; grid-template-columns: 100px 1fr; gap: 2rem; padding: 2rem 0; border-top: 1px solid var(--line); }
.living-steps li:last-child { border-bottom: 1px solid var(--line); }
.living-steps li > span { color: var(--terracotta); font: 500 2rem var(--serif); }
.living-steps h3 { margin-bottom: .6rem; color: var(--indigo); font-size: 2rem; }
.help-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.help-grid article { min-height: 320px; padding: 2.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft-white); }
.help-grid h2 { color: var(--indigo); font-size: 2.2rem; }
.recovery-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; margin: 2rem 0; background: var(--light-line); }
.recovery-grid span { padding: 1.4rem; background: var(--indigo); }
.recovery-grid b { margin-right: 1rem; color: #e8c78f; }
.safe-boundary { max-width: 950px; }
.safe-boundary h2 { color: var(--indigo); }

.legal-copy { max-width: 900px; }
.legal-copy h2 { margin: 3rem 0 1rem; color: var(--indigo); font-size: 2.2rem; }
.legal-copy p { font-size: 1.06rem; }
.legal-date { margin-top: 4rem; color: #696b6f; font-size: .8rem !important; }

.search-form { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: .75rem; max-width: 760px; margin-top: 2.5rem; }
.search-form input { width: 100%; min-height: 3.5rem; padding: .75rem 1.15rem; border: 1px solid var(--line); border-radius: 999px; background: var(--soft-white); color: var(--ink); font: 1rem var(--sans); }
.search-status { color: #686a6e; }
.search-results { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.search-results article { padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft-white); }
.search-results h2 { color: var(--indigo); font-size: 1.75rem; }
.search-results h2 a { text-decoration: none; }
.error-page { min-height: 65vh; }

.site-footer { padding: clamp(4rem,8vw,8rem) max(1.5rem,calc((100vw - 1240px)/2)) 1.5rem; background: var(--indigo-dark); color: rgba(255,255,255,.78); }
.footer-lead { padding-bottom: clamp(4rem,8vw,7rem); }
.footer-lead h2 { max-width: 850px; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3,1fr); gap: 3rem; padding: 3rem 0; border-block: 1px solid var(--light-line); }
.footer-grid h3 { margin-bottom: 1.5rem; color: #e8c78f; font: 800 .75rem var(--sans); letter-spacing: .15em; text-transform: uppercase; }
.footer-grid a:not(.brand) { display: block; width: fit-content; margin: .65rem 0; color: rgba(255,255,255,.84); font-size: .86rem; text-decoration: none; }
.footer-grid p { margin-top: 1.5rem; font-size: .85rem; }
.footer-bottom { display: flex; gap: 1rem; justify-content: space-between; padding-top: 1.5rem; font-size: .75rem; letter-spacing: .08em; }
.footer-bottom p { margin: 0; }

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

@media (max-width: 1180px) {
  .site-header { min-height: 4.7rem; }
  .menu-button { display: block; }
  .primary-nav { position: fixed; inset: calc(2.55rem + 4.7rem) 0 auto; display: none; height: calc(100vh - 7.25rem); padding: 2rem 1.5rem 4rem; overflow-y: auto; background: var(--ivory); align-items: stretch; }
  .primary-nav.is-open { display: flex; flex-direction: column; }
  .primary-nav a { padding: .85rem 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.45rem; }
  .primary-nav .nav-buy { margin-top: 1rem; padding: .85rem 1rem; text-align: center; }
  .platform-grid { grid-template-columns: repeat(2,1fr); }
  .platform-card:nth-child(2) { border-right: 0; }
  .platform-card:nth-child(-n+2) { border-bottom: 1px solid; border-color: inherit; }
  .book-card { grid-template-columns: minmax(130px,.65fr) 1fr; }
  .foundation-grid { grid-template-columns: repeat(2,1fr); }
  .foundation-grid article:nth-child(2) { border-right: 0; }
  .foundation-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--light-line); }
  .chapter-themes .theme-list { grid-template-columns: repeat(3,1fr); }
  .theme-list article:nth-child(3) { border-right: 0; }
  .theme-list article:nth-child(-n+3) { border-bottom: 1px solid var(--light-line); }
  .leadership-arc .arc-grid { grid-template-columns: repeat(3,1fr); }
  .arc-grid article:nth-child(3) { border-right: 0; }
  .footer-grid { grid-template-columns: 1.4fr repeat(2,1fr); }
}

@media (max-width: 820px) {
  .container, .article-shell { width: min(100% - 2rem, 1240px); }
  .section { padding-block: 4.5rem; }
  .edition-bar a { justify-content: flex-start; overflow: hidden; }
  .edition-bar span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .site-header { padding-inline: 1rem; }
  .brand b { font-size: .95rem; }
  .home-hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding: 5rem 1.2rem 3rem; }
  .hero-copy h1 { font-size: clamp(3.5rem,16vw,6rem); }
  .hero-portrait { width: min(78%,410px); margin: 0 auto 5rem; }
  .hero-note { font-size: .75rem; letter-spacing: .1em; }
  .section-heading.split { display: block; }
  .section-heading.split .text-link { margin-top: 1rem; }
  .journey-grid, .book-grid, .editorial-grid, .two-col, .book-detail, .audience, .media-empty > div:first-child, .card-list, .reflection-index, .topic-catalog, .help-grid, .search-results { grid-template-columns: 1fr; }
  .journey { border-right: 0; border-bottom: 1px solid var(--line); }
  .journey:last-child { border-bottom: 0; }
  .journey p { min-height: 0; }
  .book-card { grid-template-columns: minmax(100px,.6fr) 1fr; padding: 1.2rem; }
  .book-card h3 { font-size: 1.65rem; }
  .platform-card { min-height: 260px; padding: 1.35rem; }
  .platform-card p { min-height: 4rem; }
  .edition-spotlight { grid-template-columns: 1fr; }
  .edition-flow { padding: 1rem; }
  .edition-flow small { display: none; }
  .feature-story { min-height: 430px; }
  .cta-band { display: block; }
  .cta-band .button { margin-top: 1.5rem; }
  .page-hero h1 { font-size: clamp(3.2rem,15vw,6rem); }
  .profile-photo { position: static; }
  .profile-photo img { max-width: 330px; }
  .foundation-grid, .experience-grid, .chapter-themes .theme-list, .leadership-arc .arc-grid, .impact-grid { grid-template-columns: repeat(2,1fr); }
  .foundation-grid article:nth-child(even), .experience-grid article:nth-child(even), .theme-list article:nth-child(even), .arc-grid article:nth-child(even) { border-right: 0; }
  .foundation-grid article, .experience-grid article, .theme-list article, .arc-grid article { border-bottom: 1px solid var(--light-line); }
  .book-detail-cover { max-width: 360px; }
  .hub-grid { grid-template-columns: 1fr; }
  .hub-grid a { border-right: 0; border-bottom: 1px solid var(--light-line); }
  .hub-grid a:last-child { border-bottom: 0; }
  .article-body { font-size: 1.08rem; }
  .article-body blockquote { margin-inline: 0; padding: 2rem 0; }
  .impact-grid article:last-child { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 520px) {
  .home-hero::before { display: none; }
  .hero-copy { padding-top: 4rem; }
  .hero-manifesto { font-size: 1.05rem; }
  .hero-note { gap: .45rem; }
  .hero-note i { width: .7rem; }
  .book-card { grid-template-columns: 1fr; }
  .book-card .cover-link { width: min(68%,250px); }
  .platform-grid, .foundation-grid, .experience-grid, .chapter-themes .theme-list, .leadership-arc .arc-grid, .impact-grid { grid-template-columns: 1fr; }
  .platform-card, .foundation-grid article, .experience-grid article, .theme-list article, .arc-grid article { border-right: 0 !important; }
  .platform-card:not(:last-child) { border-bottom: 1px solid; border-color: inherit; }
  .edition-flow { grid-template-columns: 1fr auto 1fr; gap: .5rem; }
  .edition-flow > span:nth-of-type(n+3), .edition-flow > i:nth-of-type(n+2) { display: none; }
  .book-detail-cover { max-width: 290px; }
  .living-steps li { grid-template-columns: 55px 1fr; gap: 1rem; }
  .recovery-grid, .format-list { grid-template-columns: 1fr; }
  .search-form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
  .footer-bottom p + p { margin-top: .75rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}

@media print {
  .edition-bar, .site-header, .site-footer, .cta-band, .button-row { display: none !important; }
  body { background: white; color: black; }
  .section, .page-hero, .article-shell { padding-block: 2rem; }
  a { color: black; text-decoration: underline; }
}
