:root {
  --ink: #29241f;
  --muted: #675e54;
  --paper: #fbf7ef;
  --cream: #f4ead9;
  --cream-deep: #e9d7bd;
  --rust: #b75a3f;
  --rust-dark: #823725;
  --wine: #7e2935;
  --gold: #c49348;
  --white: #fffdf8;
  --line: rgba(41, 36, 31, .18);
  --shadow: 0 26px 70px rgba(60, 38, 20, .15);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: 'Segoe UI', Helvetica, Arial, sans-serif;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 17px; line-height: 1.65; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p, blockquote { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); line-height: .98; font-weight: 500; letter-spacing: -.035em; }
h1 { font-size: clamp(3.5rem, 7vw, 7rem); }
h2 { font-size: clamp(2.5rem, 4.4vw, 5rem); }
h3 { font-size: 1.6rem; }
em { font-family: var(--serif); }

.skip-link { position: fixed; z-index: 1000; left: 1rem; top: -5rem; padding: .75rem 1rem; background: var(--ink); color: var(--white); }
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  min-height: 88px; padding: 14px clamp(20px, 4vw, 68px);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  background: rgba(251, 247, 239, .94); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px);
}
.brand { display: flex; flex-direction: column; text-decoration: none; font-family: var(--serif); font-size: 1.15rem; line-height: 1.05; letter-spacing: -.02em; }
.brand span:last-child { color: var(--wine); }
.site-nav { display: flex; align-items: center; gap: clamp(1.1rem, 2vw, 2.4rem); font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.site-nav > a, .nav-dropdown > summary { text-decoration: none; cursor: pointer; padding: .85rem 0; list-style: none; white-space: nowrap; }
.site-nav > a:hover, .site-nav > a[aria-current='page'], .nav-dropdown > summary:hover { color: var(--wine); }
.nav-dropdown { position: relative; }
.nav-dropdown > summary::-webkit-details-marker { display: none; }
.nav-dropdown > summary::after { content: ' +'; color: var(--wine); }
.nav-dropdown[open] > summary::after { content: ' −'; }
.dropdown-panel {
  position: absolute; top: calc(100% + 4px); left: -1rem; width: 240px; padding: .8rem;
  display: grid; gap: .15rem; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.dropdown-panel a, .dropdown-panel button { display: block; width: 100%; padding: .65rem .75rem; border: 0; background: transparent; text-align: left; text-decoration: none; text-transform: none; letter-spacing: 0; font-size: .88rem; font-weight: 600; cursor: pointer; }
.dropdown-panel a:hover, .dropdown-panel button:hover { background: var(--cream); color: var(--wine); }
.dropdown-wide { left: auto; right: 0; width: min(560px, 88vw); grid-template-columns: 1fr 1fr; }
.menu-button { display: none; border: 1px solid var(--ink); background: transparent; padding: .55rem .85rem; text-transform: uppercase; font-size: .75rem; letter-spacing: .08em; }

.textured-section { position: relative; isolation: isolate; overflow: hidden; background-color: var(--cream); }
.textured-section::before {
  content: ''; position: absolute; inset: 0; z-index: -1; opacity: .52; pointer-events: none;
  background-image: radial-gradient(circle at 10% 20%, rgba(154, 103, 57, .08) 0 1px, transparent 1.6px), radial-gradient(circle at 80% 35%, rgba(126, 41, 53, .05) 0 1px, transparent 1.8px), linear-gradient(118deg, rgba(255,255,255,.55), transparent 45%, rgba(201,157,91,.08));
  background-size: 23px 19px, 31px 29px, auto;
}
.section-shell { max-width: var(--max); margin: 0 auto; padding: clamp(70px, 8vw, 120px) clamp(22px, 5vw, 72px); }
.eyebrow, .cover-line { margin-bottom: 1.2rem; color: var(--wine); font-size: .74rem; line-height: 1.25; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: .7rem 1.25rem; border: 1px solid var(--ink); background: transparent; text-decoration: none; text-transform: uppercase; font-size: .72rem; font-weight: 800; letter-spacing: .11em; cursor: pointer; transition: transform .25s ease, background .25s ease, color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { border-color: var(--wine); background: var(--wine); color: var(--white); }
.button.primary:hover { background: var(--rust-dark); }
.button.secondary:hover { background: var(--ink); color: var(--white); }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.centered-actions { justify-content: center; }
.text-link { display: inline-flex; gap: 1rem; margin-top: 1.2rem; padding-bottom: .25rem; border-bottom: 1px solid currentColor; text-decoration: none; font-weight: 700; }

.hero { min-height: min(790px, calc(100vh - 88px)); display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(330px, .75fr); align-items: center; gap: clamp(30px, 7vw, 120px); padding: clamp(60px, 7vw, 110px) clamp(24px, 7vw, 120px); }
.hero-copy { max-width: 760px; }
.hero h1 { margin-bottom: 1rem; }
.cover-line { margin: 0 0 1.6rem; }
.hero-subtitle { max-width: 700px; font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.85rem); line-height: 1.4; }
.book-stage { display: grid; place-items: center; perspective: 1500px; min-height: 570px; }
.hero-book-render { width: min(500px, 88vw); max-height: 650px; object-fit: contain; transform: rotate(-1deg); filter: drop-shadow(34px 38px 30px rgba(45,30,17,.22)); }
.realistic-book { position: relative; width: min(340px, 76vw); aspect-ratio: 2 / 3; transform-style: preserve-3d; transform: rotateY(-17deg) rotateX(2deg) rotateZ(1deg); filter: drop-shadow(38px 42px 26px rgba(45,30,17,.28)); }
.hardcover-front, .hardcover-back, .book-pages, .book-spine { position: absolute; }
.hardcover-front { inset: 0; z-index: 5; background: #eee1c9; transform: translateZ(17px); box-shadow: inset -3px 0 3px rgba(0,0,0,.16), inset 0 0 0 1px rgba(70,50,30,.16); overflow: hidden; }
.hardcover-front img { width: 100%; height: 100%; object-fit: cover; }
.hardcover-back { inset: 5px -24px -21px 8px; z-index: 0; background: #6d1f2b; transform: translateZ(-12px); border-radius: 2px; box-shadow: 3px 3px 0 #8d3440; }
.book-pages-right { z-index: 3; top: 11px; right: -17px; width: 21px; height: calc(100% - 15px); transform: translateZ(5px) skewY(1.5deg); transform-origin: left center; background: repeating-linear-gradient(to bottom, #fffdf6 0 3px, #e3d9ca 3px 4px); border-left: 1px solid rgba(92,65,42,.18); border-right: 1px solid rgba(92,65,42,.28); box-shadow: inset 5px 0 8px rgba(91,63,37,.13), 2px 2px 3px rgba(39,27,18,.12); }
.book-pages-bottom { z-index: 4; left: 8px; bottom: -15px; width: calc(100% + 9px); height: 19px; transform: translateZ(6px) skewX(-2deg); transform-origin: top center; background: repeating-linear-gradient(to right, #fffdf6 0 4px, #ded2c1 4px 5px); border-top: 1px solid rgba(92,65,42,.16); border-bottom: 1px solid rgba(92,65,42,.3); box-shadow: inset 0 5px 8px rgba(91,63,37,.12), 2px 3px 4px rgba(39,27,18,.14); }
.book-spine { z-index: 2; left: -13px; top: 5px; width: 30px; height: calc(100% - 4px); border-radius: 5px 0 0 5px; transform: rotateY(-78deg) translateZ(5px); background: linear-gradient(90deg, #4f1720, #8b2e3c 48%, #b95755); box-shadow: inset 3px 0 6px rgba(0,0,0,.35); }

.opening-statement { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(40px, 7vw, 110px); align-items: center; padding: clamp(55px, 6vw, 90px) clamp(24px, 8vw, 150px); border-top: 1px solid rgba(41,36,31,.1); }
.statement-lede { margin: 0; font-family: var(--serif); font-size: clamp(1.55rem, 3vw, 2.7rem); line-height: 1.25; letter-spacing: -.025em; }
.nami-quote { margin: 0; padding-left: 2rem; border-left: 3px solid var(--rust); }
.nami-quote p { font-family: var(--serif); font-size: 1.25rem; line-height: 1.5; }
.nami-quote cite, blockquote cite { display: flex; flex-direction: column; gap: .15rem; font-style: normal; color: var(--muted); font-size: .78rem; line-height: 1.5; }

.compact-heading { margin-bottom: 2.2rem; }
.compact-heading h2 { margin-bottom: 0; }
.notes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.note-card { margin: 0; padding: clamp(28px, 4vw, 56px); background: var(--white); border: 1px solid var(--line); box-shadow: 0 16px 38px rgba(75,50,26,.07); }
.note-card p { font-family: var(--serif); font-size: clamp(1.3rem, 2.2vw, 2rem); line-height: 1.34; }
.split-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 8vw, 130px); }
.section-heading h2 { margin-bottom: 0; }
.prose-block { font-size: 1.08rem; }
.prose-block h2 { margin-bottom: 1.5rem; }
.inline-quote { margin: 2.2rem 0 0; padding: 1.7rem 0 0 1.7rem; border-top: 1px solid var(--line); border-left: 3px solid var(--wine); }
.inline-quote p { font-family: var(--serif); font-size: 1.5rem; line-height: 1.35; }

.humanity-feature { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); background: var(--ink); color: var(--paper); }
.humanity-art { min-height: 780px; overflow: hidden; }
.humanity-art img { width: 100%; height: 100%; object-fit: cover; object-position: 16% center; }
.humanity-copy { padding: clamp(55px, 7vw, 115px); align-self: center; }
.humanity-copy h2 { margin-bottom: 2rem; font-size: clamp(3rem, 5vw, 5.7rem); }
.humanity-copy > p:not(.eyebrow) { font-size: 1.08rem; color: #eee5d8; }
.humanity-copy .eyebrow { color: #e69877; }
.insel-quote { margin: 2.6rem 0 0; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.25); }
.insel-quote p { font-family: var(--serif); font-size: 1.15rem; line-height: 1.55; }
.insel-quote cite { color: #d4c7b8; }

.impact-section { padding: clamp(65px, 8vw, 120px) clamp(24px, 7vw, 120px); background: var(--rust); color: var(--white); }
.impact-heading { max-width: 880px; margin-bottom: 2.5rem; }
.impact-heading .eyebrow { color: #ffe2cf; }
.impact-heading h2 { margin-bottom: 1.2rem; }
.impact-heading > p:last-child { max-width: 720px; font-family: var(--serif); font-size: 1.35rem; }
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.34); border: 1px solid rgba(255,255,255,.34); }
.partner-card { min-height: 290px; padding: clamp(28px, 3vw, 48px); background: var(--rust); color: var(--white); text-decoration: none; transition: background .3s ease, transform .3s ease; }
.partner-card:hover { z-index: 1; background: var(--rust-dark); transform: translateY(-4px); }
.partner-card h3 { margin: 1.2rem 0; font-size: 1.75rem; }
.partner-card p { color: #ffeae0; }
.card-number { font-family: var(--serif); opacity: .72; }
.card-link { font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.impact-cta { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: 1px; padding: 1.5rem 1.8rem; background: var(--white); color: var(--ink); text-decoration: none; font-weight: 700; }
.impact-cta span { font-size: 1.6rem; }
.compact-impact { display: grid; grid-template-columns: 1fr .75fr; align-items: end; gap: 3rem; }

.author-teaser { align-items: center; }
.author-monogram { display: grid; place-items: center; width: min(330px, 70vw); aspect-ratio: 1; border-radius: 50%; background: var(--ink); color: #dc7459; font-family: var(--serif); font-size: clamp(8rem, 20vw, 16rem); line-height: 1; }
.closing-cta, .review-cta { padding: clamp(70px, 9vw, 135px) 1.5rem; text-align: center; }
.closing-cta h2, .review-cta h2 { max-width: 880px; margin: 0 auto 1.5rem; }

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: start; padding: 42px clamp(24px, 6vw, 95px); background: var(--ink); color: var(--paper); font-size: .78rem; }
.site-footer > div { display: flex; flex-direction: column; }
.site-footer strong { font-family: var(--serif); font-size: 1rem; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.site-footer a { text-decoration: none; }
.footer-meta { align-items: flex-end; text-align: right; color: #cdbfb0; }

/* Internal pages */
.page-hero { min-height: 470px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 4rem; padding: clamp(55px, 7vw, 100px) clamp(24px, 8vw, 145px); }
.page-hero > div:first-child { max-width: 900px; }
.page-hero h1 { margin-bottom: 1.5rem; font-size: clamp(3.6rem, 7vw, 7rem); }
.page-hero p:not(.eyebrow) { max-width: 750px; font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.7rem); line-height: 1.45; }
.page-hero cite { font-style: normal; font-size: .8rem; color: var(--muted); }
.page-book { width: clamp(160px, 18vw, 245px); transform: rotate(4deg); box-shadow: 24px 28px 30px rgba(52,36,20,.2); }
.simple-page-hero, .reviews-hero { grid-template-columns: 1fr; min-height: 390px; }
.author-hero { grid-template-columns: 1fr auto; }
.large-monogram { width: clamp(190px, 22vw, 300px); }
.article-shell { max-width: 960px; margin: 0 auto; padding: clamp(65px, 8vw, 120px) 24px; }
.article-shell h2 { margin: 4rem 0 1.4rem; font-size: clamp(2.2rem, 4vw, 4rem); }
.article-shell h2:first-of-type { margin-top: 3rem; }
.article-shell p, .article-shell li { font-size: 1.08rem; }
.article-lede { font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 2.2rem) !important; line-height: 1.4; }
.article-emphasis { margin-top: 2rem; font-family: var(--serif); font-size: 1.45rem !important; color: var(--wine); }
.feature-list { display: grid; gap: .65rem; padding-left: 1.3rem; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); margin: 2rem 0; border: 1px solid var(--line); }
.audience-grid section { padding: 1.6rem; background: var(--white); }
.audience-grid h3 { line-height: 1.15; }
.publication { display: grid; grid-template-columns: .7fr 1.3fr; gap: 5rem; border-top: 1px solid var(--line); }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; margin: 0; border-top: 1px solid var(--line); }
.detail-grid div { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.detail-grid div:nth-child(odd) { padding-right: 1.5rem; }
.detail-grid dt { color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.detail-grid dd { margin: .2rem 0 0; font-family: var(--serif); font-size: 1.15rem; }
.author-article section { padding: 2.5rem 0 4rem; border-bottom: 1px solid var(--line); }
.author-article h2 { margin-top: 0; }

.purchase-section { max-width: 1300px; }
.purchase-intro { max-width: 720px; margin-bottom: 2rem; }
.purchase-intro h2 { margin-bottom: 1rem; }
.purchase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.purchase-card { display: flex; flex-direction: column; min-height: 420px; padding: 2rem; border: 1px solid var(--line); background: var(--white); }
.purchase-card h3 { min-height: 3.2rem; line-height: 1.1; }
.purchase-card p:not(.eyebrow) { color: var(--muted); }
.purchase-card strong { margin: auto 0 1.2rem; font-family: var(--serif); }

/* Resources */
.tools-section { max-width: 1420px; }
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.resource-card { display: flex; flex-direction: column; min-height: 455px; padding: clamp(25px, 3vw, 42px); background: var(--white); border: 1px solid var(--line); box-shadow: 0 16px 35px rgba(64,43,24,.07); scroll-margin-top: 120px; }
.resource-card h2 { margin: 1.25rem 0; font-size: clamp(1.7rem, 2.2vw, 2.25rem); line-height: 1.1; }
.resource-card p { color: var(--muted); }
.resource-card .resource-intro { color: var(--wine); font-family: var(--serif); font-style: italic; }
.resource-card .button { margin-top: auto; align-self: flex-start; }
.pdf-mark { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid var(--wine); color: var(--wine); border-radius: 50%; font-size: .62rem; font-weight: 900; letter-spacing: .05em; }

/* Reviews */
.reviews-hero h1 em { font-weight: 400; }
.review-section { max-width: 1400px; }
.soft-section { max-width: none; background: var(--cream); padding-left: max(24px, calc((100vw - 1260px) / 2)); padding-right: max(24px, calc((100vw - 1260px) / 2)); }
.review-section-heading { max-width: 850px; margin-bottom: 2.5rem; }
.review-section-heading h2 { margin-bottom: 0; }
.review-columns { columns: 3 330px; column-gap: 1rem; }
.two-column-reviews { columns: 2 420px; }
.quote-card { break-inside: avoid; margin: 0 0 1rem; padding: 1.8rem; background: var(--white); border: 1px solid var(--line); }
.quote-card p { font-family: var(--serif); font-size: 1.05rem; line-height: 1.55; }
.quote-card cite strong { color: var(--ink); }
.featured-quote { padding: clamp(30px, 4vw, 52px); }
.featured-quote p { font-size: clamp(1.35rem, 2.2vw, 2rem); line-height: 1.4; }
.compact-quotes .quote-card p { font-size: 1rem; }
.honors-section { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; padding: clamp(65px, 8vw, 110px) clamp(24px, 8vw, 145px); background: var(--ink); color: var(--paper); }
.honors-section ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.25); }
.honors-section li { display: flex; justify-content: space-between; gap: 2rem; padding: 1.25rem 0; border-bottom: 1px solid rgba(255,255,255,.25); }
.review-cta small { display: block; margin-top: 1.3rem; color: var(--muted); }

/* Suggestion form */
.form-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(50px, 8vw, 120px); }
.form-intro h2 { margin-bottom: 1rem; }
.suggestion-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.suggestion-form label { display: grid; gap: .45rem; }
.suggestion-form label span { font-size: .74rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.suggestion-form input, .suggestion-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 0; background: var(--white); padding: .85rem 1rem; color: var(--ink); }
.suggestion-form input:focus, .suggestion-form textarea:focus { outline: 2px solid var(--rust); outline-offset: 2px; }
.full-field { grid-column: 1 / -1; }
.form-note { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.form-note p { max-width: 520px; margin: 0; color: var(--muted); font-size: .85rem; }

/* Sample reader */
.reader-dialog { width: min(1180px, 96vw); height: min(900px, 94vh); padding: 0; border: 0; background: transparent; box-shadow: var(--shadow); }
.reader-dialog::backdrop { background: rgba(25,21,18,.82); backdrop-filter: blur(5px); }
.reader-shell { height: 100%; display: grid; grid-template-rows: auto 1fr auto; background: #dedbd6; }
.reader-header { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; padding: .8rem 1rem; background: var(--ink); color: var(--paper); }
.reader-header > div:first-child { display: flex; flex-direction: column; line-height: 1.2; }
.reader-header span { color: #d7c7b8; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.reader-header strong { font-family: var(--serif); }
.reader-actions { display: flex; gap: .4rem; }
.reader-actions a, .reader-actions button { border: 1px solid rgba(255,255,255,.3); background: transparent; color: var(--paper); padding: .48rem .7rem; text-decoration: none; font-size: .7rem; cursor: pointer; }
.reader-shell iframe { width: 100%; height: 100%; border: 0; background: #e5e2dd; }
.reader-fallback { margin: 0; padding: .45rem 1rem; background: var(--paper); color: var(--muted); text-align: center; font-size: .72rem; }

[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity 1.2s cubic-bezier(.22,1,.36,1), transform 1.2s cubic-bezier(.22,1,.36,1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .site-header { min-height: 74px; }
  .menu-button { display: block; }
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; padding: 1rem 1.5rem 1.5rem; background: var(--paper); border-bottom: 1px solid var(--line); align-items: stretch; flex-direction: column; gap: 0; }
  .site-nav.is-open { display: flex; }
  .site-nav > a, .nav-dropdown > summary { display: block; padding: .8rem 0; }
  .dropdown-panel, .dropdown-wide { position: static; width: 100%; grid-template-columns: 1fr; box-shadow: none; border: 0; border-left: 2px solid var(--rust); background: transparent; }
  .hero { min-height: auto; grid-template-columns: 1fr 330px; padding-inline: clamp(24px, 5vw, 60px); }
  .realistic-book { width: 285px; }
  .hero-book-render { width: min(430px, 85vw); }
  .book-stage { min-height: 500px; }
  .humanity-feature { grid-template-columns: 1fr; }
  .humanity-art { min-height: 520px; }
  .partner-grid, .purchase-grid { grid-template-columns: 1fr 1fr; }
  .resource-grid { grid-template-columns: 1fr 1fr; }
  .purchase-card { min-height: 360px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-meta { grid-column: 1 / -1; align-items: flex-start; text-align: left; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .site-header { padding-inline: 18px; }
  .brand { font-size: 1rem; }
  .hero { grid-template-columns: 1fr; gap: 0; padding-top: 55px; }
  .hero-copy { text-align: left; }
  .hero h1 { font-size: clamp(3.4rem, 16vw, 5.4rem); }
  .book-stage { min-height: 490px; margin-top: 1rem; }
  .realistic-book { width: min(280px, 70vw); }
  .hero-book-render { width: min(370px, 82vw); max-height: 540px; }
  .opening-statement, .split-section, .publication, .form-section, .compact-impact, .honors-section { grid-template-columns: 1fr; gap: 2.5rem; }
  .notes-grid, .partner-grid, .purchase-grid, .resource-grid, .audience-grid, .detail-grid, .suggestion-form { grid-template-columns: 1fr; }
  .opening-statement { padding-block: 55px; }
  .nami-quote { padding-left: 1.2rem; }
  .section-shell { padding-block: 65px; }
  .humanity-art { min-height: 400px; }
  .humanity-copy { padding: 55px 24px; }
  .partner-card { min-height: 250px; }
  .impact-section { padding-inline: 22px; }
  .impact-cta { align-items: flex-start; }
  .author-monogram { margin: 0 auto; }
  .page-hero, .author-hero { grid-template-columns: 1fr; min-height: 380px; padding: 55px 24px; }
  .page-book { width: 180px; justify-self: center; }
  .large-monogram { width: 190px; justify-self: center; }
  .purchase-card { min-height: auto; }
  .purchase-card strong { margin-top: 1rem; }
  .resource-card { min-height: 0; }
  .review-columns, .two-column-reviews { columns: 1; }
  .honors-section { padding: 60px 24px; }
  .honors-section li { flex-direction: column; gap: .2rem; }
  .full-field { grid-column: auto; }
  .form-note { flex-direction: column; align-items: flex-start; }
  .reader-dialog { width: 100vw; height: 100dvh; max-width: none; max-height: none; }
  .reader-header { align-items: flex-start; }
  .reader-actions a { display: none; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer nav { margin-block: .6rem; }
  .footer-meta { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
