/* ==========================================================================
   HARRY BLACK: visual system
   One author brand drawn from two covers:
   · Pegasus Road: ivory, smoke, charcoal, deep crimson, mist, ruins, aircraft
   · The Girl in the Pink Dress: black, rich pink, glasshouse iron, ivy, pink light
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
    /* Darks (Pink cover field, Pegasus silhouettes) */
    --ink: #0d0c0d;
    --ink-2: #141213;
    --ink-3: #1d1a1b;
    --charcoal: #242323;

    /* Greys & paper (Pegasus Road) */
    --smoke: #53534e;
    --smoke-2: #7b7771;
    --stone: #b8afa6;
    --ivory: #ece6dd;
    --ivory-2: #ddd5ca;
    --paper: #f4efe8;

    /* Reds (Pegasus title & emblem) */
    --crimson: #8e2227;
    --crimson-hi: #a52a30;
    --burgundy: #4a1219;

    /* Pinks (Pink cover lettering, dress, light) */
    --plum: #4b2230;
    --rose: #843550;
    --dusty: #c3919e;
    --pink: #b92f66;
    --pink-hi: #cf447c;
    --pink-light: #e07aa3;

    --f-display: "Bodoni Moda", "Bodoni 72", Didot, "Libre Bodoni", Georgia, serif;
    --f-body: "Hanken Grotesk", "Helvetica Neue", Arial, system-ui, sans-serif;
    --f-mono: "Hanken Grotesk", "Helvetica Neue", Arial, system-ui, sans-serif; /* small caps-style labels share the text face */

    --ease: cubic-bezier(.2, .7, .1, 1);
    --ease-slow: cubic-bezier(.16, 1, .3, 1);

    --gutter: clamp(16px, 4.5vw, 64px);
    --section: clamp(64px, 8vw, 120px);
    --header-h: 76px;
    --max: 1320px;

    --shadow-cover: 0 2px 3px rgba(0, 0, 0, .35), 0 18px 40px -12px rgba(0, 0, 0, .7), 0 60px 90px -40px rgba(0, 0, 0, .8);
}

/* ---------- 2. Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
    margin: 0;
    background: var(--ink);
    color: var(--ivory);
    font: 400 1.0625rem/1.7 var(--f-body);
    font-optical-sizing: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: clip;
}
img, svg, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .2em; }
p { margin: 0 0 1.1em; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }
main:focus { outline: none; }
::selection { background: var(--pink); color: #fff; }

:focus-visible {
    outline: 2px solid var(--pink-light);
    outline-offset: 3px;
    border-radius: 2px;
}
[data-header-theme="light"] :focus-visible,
.on-light :focus-visible { outline-color: var(--crimson); }

.visually-hidden {
    position: absolute !important; 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; left: 16px; top: 12px; z-index: 1000;
    padding: 12px 18px; background: var(--ivory); color: var(--ink);
    font: 600 .8rem/1 var(--f-body); letter-spacing: .12em; text-transform: uppercase;
    transform: translateY(-160%); transition: transform .25s var(--ease);
}
.skip-link:focus { transform: none; }

.container { width: 100%; max-width: calc(var(--max) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }

/* Film grain: extremely low opacity, fixed over everything */
.grain {
    position: fixed; inset: -4%; z-index: 90; pointer-events: none;
    opacity: .045; contain: strict;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    animation: grain 1.2s steps(6) infinite;
}
@keyframes grain {
    0% { transform: translate3d(0, 0, 0); } 20% { transform: translate3d(-2%, 1.5%, 0); } 40% { transform: translate3d(1.5%, -2%, 0); }
    60% { transform: translate3d(-1.5%, -1%, 0); } 80% { transform: translate3d(2%, 2%, 0); } 100% { transform: translate3d(0, 0, 0); }
}

/* ---------- 3. Type ---------- */
.kicker, .file-ref, .meta-row, .dossier, .route, .ledger__year, .coming, .compare__legend, .facts__k, .feature__caption {
    font-family: var(--f-mono);
    font-size: .74rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.kicker { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; margin: 0 0 18px; color: var(--dusty); }
.badge {
    display: inline-block; padding: 5px 9px 4px; border: 1px solid currentColor;
    font: 500 .66rem/1 var(--f-mono); letter-spacing: .16em;
}
.badge--pink { color: var(--pink-light); background: rgba(185, 47, 102, .12); }

.file-ref { margin: 0 0 18px; color: var(--pink-light); font-weight: 600; }
[data-header-theme="light"] .file-ref { color: var(--crimson); }

.meta-row { display: flex; flex-wrap: wrap; gap: 6px 0; margin: 0 0 34px; color: var(--stone); }
.meta-row li:not(:last-child)::after { content: "·"; margin: 0 12px; opacity: .6; }

.prose { max-width: 62ch; color: rgba(236, 230, 221, .86); }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ivory); font-weight: 600; }
.prose--dark { color: #3a3736; }
.prose--dark strong { color: var(--ink); }

/* ---------- 4. Buttons & calls to action ---------- */
.btn {
    --btn-bg: transparent; --btn-fg: currentColor; --btn-bd: currentColor;
    position: relative; isolation: isolate; overflow: hidden;
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    min-height: 50px; padding: 15px 26px;
    background: var(--btn-bg); color: var(--btn-fg); border: 1px solid var(--btn-bd);
    font: 600 .8rem/1.1 var(--f-body); letter-spacing: .18em; text-transform: uppercase; text-decoration: none; text-align: center;
    cursor: pointer; border-radius: 0;
    transition: background-color .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), box-shadow .5s var(--ease), transform .35s var(--ease);
    -webkit-tap-highlight-color: transparent;
}
.btn__icon { flex: none; transition: transform .45s var(--ease); }
.btn:hover .btn__icon { transform: translateX(4px); }
.btn:active { transform: translateY(1px) scale(.99); }
/* Light sweep across solid buttons on hover */
.btn--primary::after, .btn--crimson::after, .btn--nav::after {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, .28) 48%, transparent 66%);
    transform: translateX(-120%); transition: transform .9s var(--ease);
}
.btn--primary:hover::after, .btn--crimson:hover::after, .btn--nav:hover::after { transform: translateX(120%); }

.btn--primary { --btn-bg: var(--pink); --btn-fg: #fff7fa; --btn-bd: var(--pink); box-shadow: 0 14px 40px -18px rgba(207, 68, 124, .9); }
.btn--primary:hover { --btn-bg: var(--pink-hi); --btn-bd: var(--pink-hi); box-shadow: 0 18px 50px -14px rgba(207, 68, 124, 1); }
.btn--crimson { --btn-bg: var(--crimson); --btn-fg: #fbf3ee; --btn-bd: var(--crimson); box-shadow: 0 14px 40px -20px rgba(142, 34, 39, .9); }
.btn--crimson:hover { --btn-bg: var(--crimson-hi); --btn-bd: var(--crimson-hi); }
.btn--ghost { --btn-bd: rgba(236, 230, 221, .38); }
.btn--ghost:hover { --btn-bg: var(--ivory); --btn-fg: var(--ink); --btn-bd: var(--ivory); }
[data-header-theme="light"] .btn--ghost { --btn-bd: rgba(36, 35, 35, .35); }
[data-header-theme="light"] .btn--ghost:hover { --btn-bg: var(--charcoal); --btn-fg: var(--ivory); --btn-bd: var(--charcoal); }
.btn--text { border: 0; padding-inline: 4px; min-height: 44px; color: var(--pink-light); }
.btn--text .btn__label { background: linear-gradient(currentColor, currentColor) 0 100% / 100% 1px no-repeat; padding-bottom: 3px; transition: background-size .45s var(--ease); }
.btn--text:hover .btn__label { background-size: 0 1px; background-position: 100% 100%; }
.btn--text-dark { color: var(--crimson); }
.btn--nav { --btn-bg: var(--pink); --btn-fg: #fff7fa; --btn-bd: var(--pink); min-height: 40px; padding: 10px 18px; font-size: .72rem; }
.btn--nav:hover { --btn-bg: var(--pink-hi); --btn-bd: var(--pink-hi); }
.btn--lg { min-height: 58px; padding: 18px 32px; font-size: .84rem; }
.btn--sm { min-height: 42px; padding: 11px 18px; font-size: .7rem; gap: 8px; }
.btn--block { display: flex; width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px; margin-top: 36px; }
.btn-row--center { justify-content: center; }

/* Development-only marker on CTAs still waiting for a real purchase URL */
[data-placeholder] { outline: 2px dashed #f5c542 !important; outline-offset: 3px; }
[data-placeholder]::before {
    content: "URL REQUIRED"; position: absolute; top: 2px; right: 3px; z-index: 2;
    font: 500 8px/1 var(--f-mono); letter-spacing: .1em; color: #1a1400; background: #f5c542; padding: 2px 3px;
}

/* ---------- 5. Header & navigation ---------- */
.site-header {
    position: fixed; inset: 0 0 auto; z-index: 60;
    height: var(--header-h);
    color: var(--ivory);
    transition: background-color .5s var(--ease), color .5s var(--ease), transform .5s var(--ease), box-shadow .5s var(--ease), height .4s var(--ease);
}
.site-header__inner {
    height: 100%; max-width: calc(var(--max) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter);
    display: flex; align-items: center; gap: 28px;
}
.site-header.is-scrolled { --header-h: 64px; background: rgba(13, 12, 13, .82); -webkit-backdrop-filter: blur(14px) saturate(1.2); backdrop-filter: blur(14px) saturate(1.2); box-shadow: 0 1px 0 rgba(236, 230, 221, .07); }
.site-header.is-light { color: var(--charcoal); }
.site-header.is-light.is-scrolled { background: rgba(236, 230, 221, .86); box-shadow: 0 1px 0 rgba(36, 35, 35, .1); }
.site-header.is-hidden { transform: translateY(-100%); }

.brand { display: flex; flex-direction: column; text-decoration: none; margin-right: auto; line-height: 1; }
.brand__name { font: 500 1.28rem/1 var(--f-display); letter-spacing: .22em; text-transform: uppercase; }
.brand__tag { margin-top: 7px; font: 400 .6rem/1 var(--f-mono); letter-spacing: .2em; text-transform: uppercase; opacity: .62; }

.primary-nav__list { display: flex; align-items: center; gap: clamp(18px, 1.8vw, 30px); }
.primary-nav__link {
    position: relative; display: inline-block; padding: 8px 0;
    font: 500 .72rem/1 var(--f-body); letter-spacing: .14em; text-transform: uppercase; text-decoration: none; white-space: nowrap; opacity: .82;
    transition: opacity .3s;
}
.primary-nav__link::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1px; background: currentColor;
    transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease);
}
.primary-nav__link:hover, .primary-nav__link[aria-current] { opacity: 1; }
.primary-nav__link:hover::after, .primary-nav__link[aria-current]::after { transform: scaleX(1); transform-origin: left; }

.menu-toggle {
    display: none; align-items: center; gap: 10px; min-height: 44px; padding: 0 2px;
    background: none; border: 0; cursor: pointer;
    font: 600 .7rem/1 var(--f-body); letter-spacing: .2em; text-transform: uppercase;
}
.menu-toggle__bars { position: relative; width: 22px; height: 10px; }
.menu-toggle__bars span { position: absolute; left: 0; right: 0; height: 1px; background: currentColor; transition: transform .45s var(--ease), top .45s var(--ease); }
.menu-toggle__bars span:first-child { top: 0; }
.menu-toggle__bars span:last-child { top: 9px; }
.menu-open .menu-toggle__bars span:first-child { top: 5px; transform: rotate(45deg); }
.menu-open .menu-toggle__bars span:last-child { top: 5px; transform: rotate(-45deg); }

/* Full-screen menu (small screens) */
.menu {
    position: fixed; inset: 0; z-index: 55;
    background:
        radial-gradient(90% 60% at 85% 10%, rgba(185, 47, 102, .28), transparent 60%),
        radial-gradient(70% 50% at 0% 100%, rgba(142, 34, 39, .25), transparent 60%),
        var(--ink);
    overflow-y: auto; overscroll-behavior: contain;
    clip-path: inset(0 0 100% 0);
    transition: clip-path .7s var(--ease-slow);
}
.menu.is-open { clip-path: inset(0 0 0 0); }
.menu__inner { min-height: 100%; padding: calc(var(--header-h) + 24px) var(--gutter) calc(32px + env(safe-area-inset-bottom)); display: flex; flex-direction: column; gap: 40px; }
.menu__list { counter-reset: none; }
.menu__link {
    display: flex; align-items: baseline; gap: 16px; padding: 10px 0;
    font: 400 clamp(2.1rem, 9vw, 3.2rem)/1.05 var(--f-display); text-decoration: none;
    border-bottom: 1px solid rgba(236, 230, 221, .08);
    opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .8s var(--ease), color .3s;
}
.menu__link--sub { font-size: clamp(1.25rem, 5vw, 1.6rem); font-style: italic; color: var(--dusty); padding-left: 38px; }
.menu__no { font: 400 .7rem/1 var(--f-mono); letter-spacing: .12em; color: var(--pink-light); min-width: 22px; }
.menu.is-open .menu__link { opacity: 1; transform: none; }
.menu.is-open li:nth-child(2) .menu__link { transition-delay: .05s; }
.menu.is-open li:nth-child(3) .menu__link { transition-delay: .1s; }
.menu.is-open li:nth-child(4) .menu__link { transition-delay: .15s; }
.menu.is-open li:nth-child(5) .menu__link { transition-delay: .2s; }
.menu.is-open li:nth-child(6) .menu__link { transition-delay: .25s; }
.menu__buy { display: grid; gap: 12px; margin-top: auto; }
.menu__buy-kicker { margin: 0; font: 400 .7rem/1 var(--f-mono); letter-spacing: .16em; text-transform: uppercase; color: var(--dusty); }
body.menu-open { overflow: hidden; }
body.menu-open .site-header { color: var(--ivory); background: transparent; box-shadow: none; }

/* Persistent purchase bar */
.buy-bar {
    position: fixed; z-index: 50; right: max(16px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom));
    transform: translateY(140%); transition: transform .7s var(--ease-slow);
}
.buy-bar.is-visible { transform: none; }
.buy-bar__inner {
    display: flex; gap: 6px; padding: 6px;
    background: rgba(20, 18, 19, .9); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    border: 1px solid rgba(236, 230, 221, .1); box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .9);
}
.buy-bar__item { display: flex; align-items: center; gap: 14px; padding: 4px 4px 4px 14px; }
.buy-bar__item + .buy-bar__item { border-left: 1px solid rgba(236, 230, 221, .1); }
.buy-bar__meta { display: flex; flex-direction: column; line-height: 1.2; }
.buy-bar__title { font: italic 400 .98rem/1.15 var(--f-display); color: var(--ivory); white-space: nowrap; }
.buy-bar__sub { font: 400 .6rem/1.4 var(--f-mono); letter-spacing: .14em; text-transform: uppercase; color: var(--stone); }

/* ---------- 6. Book covers as objects ---------- */
.cover { position: relative; perspective: 1600px; }
.cover__body {
    position: relative;
    transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateZ(0);
    transform-style: preserve-3d;
    transition: transform .9s var(--ease-slow), box-shadow .9s var(--ease-slow);
    box-shadow: var(--shadow-cover);
    will-change: transform;
}
.cover__img { width: 100%; height: auto; }
/* Hairline binding shadow at the spine edge: sits beside, not over, the artwork's content */
.cover__spine {
    position: absolute; inset: 0 auto 0 0; width: 3.5%; pointer-events: none;
    background: linear-gradient(90deg, rgba(0, 0, 0, .28), rgba(255, 255, 255, .06) 45%, rgba(0, 0, 0, .12) 70%, transparent);
}
.cover__sheen {
    position: absolute; inset: 0; pointer-events: none; opacity: 0; mix-blend-mode: soft-light;
    background: radial-gradient(circle at var(--mx, 30%) var(--my, 20%), rgba(255, 255, 255, .55), transparent 55%);
    transition: opacity .6s var(--ease);
}
.cover.is-tilting .cover__sheen { opacity: .55; }
.cover__shadow {
    position: absolute; left: 8%; right: 8%; bottom: -6%; height: 10%; z-index: -1;
    background: radial-gradient(closest-side, rgba(0, 0, 0, .65), transparent);
    filter: blur(8px);
    transform: translateX(calc(var(--ry, 0deg) * -1.2px));
}
.cover--light .cover__body { box-shadow: 0 2px 3px rgba(36, 35, 35, .18), 0 24px 50px -18px rgba(36, 35, 35, .45), 0 70px 90px -50px rgba(36, 35, 35, .5); }
.cover--light .cover__shadow { background: radial-gradient(closest-side, rgba(36, 35, 35, .35), transparent); }

/* ---------- 7. Atmosphere primitives ---------- */
.mist {
    position: absolute; pointer-events: none; border-radius: 50%;
    background: radial-gradient(closest-side, rgba(123, 119, 113, .3), rgba(123, 119, 113, .12) 55%, transparent);
    will-change: transform;
    animation: drift 70s ease-in-out infinite alternate;
}
.mist--1 { width: 90vw; height: 42vh; left: -30vw; bottom: 8vh; }
.mist--2 { width: 70vw; height: 36vh; right: -20vw; bottom: 22vh; opacity: .7; animation-duration: 95s; animation-direction: alternate-reverse; }
.mist--ivory { width: 110vw; height: 60%; left: -20vw; top: 10%; background: radial-gradient(closest-side, rgba(255, 255, 255, .7), transparent); opacity: .7; }
@keyframes drift { from { transform: translate3d(-4vw, 0, 0); } to { transform: translate3d(8vw, -2vh, 0); } }

.flight { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.flight__plane { position: absolute; fill: var(--smoke); opacity: .45; animation: fly linear infinite; offset-rotate: 0deg; }
.flight__plane--1 { width: 54px; top: 14%; animation-duration: 58s; animation-delay: -8s; }
.flight__plane--2 { width: 36px; top: 9%; animation-duration: 58s; animation-delay: -10s; opacity: .35; }
.flight__plane--3 { width: 28px; top: 20%; animation-duration: 58s; animation-delay: -11.5s; opacity: .28; }
.flight__plane--4 { width: 48px; top: 9%; animation-duration: 64s; animation-delay: -20s; fill: var(--charcoal); opacity: .22; }
.flight__plane--5 { width: 32px; top: 15%; animation-duration: 64s; animation-delay: -22s; fill: var(--charcoal); opacity: .16; }
@keyframes fly {
    from { transform: translate3d(-12vw, 0, 0) rotate(90deg); }
    to { transform: translate3d(112vw, -6vh, 0) rotate(90deg); }
}

.pegasus-mark {
    display: inline-block; flex: none; width: 44px; aspect-ratio: 492 / 456;
    background: var(--crimson);
    -webkit-mask: url("../images/pegasus-mark.png") center / contain no-repeat;
    mask: url("../images/pegasus-mark.png") center / contain no-repeat;
}
.pegasus-mark--xs { width: 18px; vertical-align: -3px; margin-right: 8px; background: var(--dusty); }
.pegasus-mark--sm { width: 42px; }
.pegasus-mark--md { width: 64px; }

/* ---------- 8. Reveal animation ---------- */
.js .reveal { opacity: 0; transform: translate3d(0, 28px, 0); transition: opacity 1.1s var(--ease) var(--d, 0s), transform 1.3s var(--ease-slow) var(--d, 0s); }
.js .reveal.is-in { opacity: 1; transform: none; }
.js .reveal--cover { transform: translate3d(0, 50px, 0) scale(.97); filter: brightness(.15) saturate(.4); transition: opacity 1.4s var(--ease), transform 1.8s var(--ease-slow), filter 2.2s var(--ease); }
.js .reveal--cover.is-in { filter: none; }

/* ==========================================================================
   HOME
   ========================================================================== */

/* ---------- Hero ---------- */
.hero {
    position: relative; overflow: hidden; isolation: isolate;
    min-height: 100vh; min-height: 100svh;
    padding: calc(var(--header-h) + clamp(16px, 4vh, 40px)) 0 clamp(56px, 8vh, 90px);
    display: flex; align-items: center;
    background:
        radial-gradient(60% 55% at 72% 42%, rgba(120, 30, 70, .35), transparent 70%),
        radial-gradient(80% 60% at 20% 110%, rgba(83, 83, 78, .25), transparent 70%),
        linear-gradient(180deg, #0a090a 0%, #121011 60%, #0d0c0d 100%);
}
.hero__atmos { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero__glow {
    position: absolute; width: 60vw; height: 60vw; max-width: 900px; max-height: 900px; right: -4vw; top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(closest-side, rgba(207, 68, 124, .30), rgba(185, 47, 102, .1) 45%, transparent 72%);
    animation: breathe 9s ease-in-out infinite alternate;
}
@keyframes breathe { from { opacity: .65; } to { opacity: 1; } }
.hero__lattice {
    position: absolute; right: 0; top: 0; width: 62%; height: 100%;
    background: linear-gradient(180deg, rgba(224, 122, 163, .22), rgba(224, 122, 163, .06) 70%, transparent);
    -webkit-mask: url("../images/glasshouse.svg") center bottom / cover no-repeat;
    mask: url("../images/glasshouse.svg") center bottom / cover no-repeat;
    opacity: .5;
}
.hero__vines { position: absolute; top: -5%; bottom: -5%; width: min(24vw, 360px); background: linear-gradient(180deg, var(--plum), var(--rose)); opacity: .5;
    -webkit-mask: url("../images/vines.svg") center / cover no-repeat; mask: url("../images/vines.svg") center / cover no-repeat; }
.hero__vines--l { left: -6vw; transform: scaleX(-1); opacity: .28; }
.hero__vines--r { right: -7vw; }
.hero__ruins {
    position: absolute; left: -2%; right: -2%; bottom: 0; height: 38vh;
    background: linear-gradient(180deg, #191617, #0b0a0b 70%);
    -webkit-mask: url("../images/ruins.svg") center bottom / cover no-repeat; mask: url("../images/ruins.svg") center bottom / cover no-repeat;
}
.hero__ruins::before {
    content: ""; position: absolute; inset: -18% -6% 0; opacity: .5;
    background: #1f1b1d;
    -webkit-mask: inherit; mask: inherit; -webkit-mask-position: 30% bottom; mask-position: 30% bottom;
}

.hero__inner {
    position: relative;
    display: grid; align-items: center; column-gap: clamp(32px, 5vw, 90px); row-gap: 0;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    grid-template-areas: "intro covers" "book covers" "also covers";
}
.hero__intro { grid-area: intro; align-self: end; }
.hero__book { grid-area: book; }
.hero__also { grid-area: also; }
.hero__covers { grid-area: covers; }

.hero__title { display: flex; flex-direction: column; }
.hero__author { font: 500 .78rem/1 var(--f-body); letter-spacing: .42em; text-transform: uppercase; color: var(--ivory); }
.hero__genre { margin-top: 12px; font: 400 .68rem/1 var(--f-mono); letter-spacing: .22em; text-transform: uppercase; color: var(--stone); }
.hero__headline {
    margin: clamp(26px, 4vh, 44px) 0 clamp(34px, 5vh, 56px);
    font: 400 clamp(2.9rem, 6.4vw, 6.4rem)/.96 var(--f-display);
    letter-spacing: -.012em; color: var(--ivory);
}

.line { display: block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.line > span { display: inline-block; }
.js .line > span { transform: translate3d(0, 105%, 0); transition: transform 1.4s var(--ease-slow); }
.js .line:nth-child(2) > span { transition-delay: .12s; }
.is-loaded .line > span { transform: none; }

.hero__book { max-width: 560px; padding-top: 30px; border-top: 1px solid rgba(236, 230, 221, .12); }
.hero__book-title { font: italic 400 clamp(1.9rem, 3vw, 2.7rem)/1.08 var(--f-display); color: var(--ivory); margin-bottom: 16px; }
.hero__hook { font-size: clamp(1rem, 1.15vw, 1.12rem); color: rgba(236, 230, 221, .8); max-width: 50ch; margin: 0; }
.hero__book .btn-row { margin-top: 30px; }

.hero__also {
    display: flex; align-items: center; gap: 18px; margin-top: 30px; padding: 14px 16px 14px 14px; max-width: 560px;
    background: linear-gradient(90deg, rgba(236, 230, 221, .06), rgba(236, 230, 221, .015));
    border: 1px solid rgba(236, 230, 221, .09);
}
.hero__also-cover { flex: none; width: 52px; display: none; }
.hero__also-img { width: 100%; height: auto; box-shadow: 0 8px 20px -8px #000; }
.hero__also-text { flex: 1; min-width: 0; }
.hero__also-kicker { margin: 0; font: 400 .62rem/1.3 var(--f-mono); letter-spacing: .16em; text-transform: uppercase; color: var(--stone); }
.hero__also-title { margin: 4px 0 2px; font: italic 400 1.35rem/1.15 var(--f-display); }
.hero__also-title a { text-decoration: none; }
.hero__also-title a:hover { color: var(--pink-light); }
.hero__also-award { margin: 0; font: 400 .66rem/1.3 var(--f-mono); letter-spacing: .1em; text-transform: uppercase; color: var(--dusty); display: flex; align-items: center; }

.hero__covers { position: relative; display: flex; align-items: flex-end; justify-content: center; gap: clamp(16px, 3vw, 44px); padding-bottom: 4vh; }
.hero__cover { transition: transform 1.2s var(--ease-slow); }
.hero__cover--pink { width: min(29vw, 430px); }
.hero__cover--pegasus { width: min(17vw, 250px); margin-bottom: 7%; }
.js .hero__covers .hero__cover { opacity: 0; transform: translate3d(0, 50px, 0); }
.is-loaded .hero__covers .hero__cover { opacity: 1; transform: translate3d(0, var(--py, 0px), 0); transition: opacity 1.6s var(--ease) .25s, transform 1.8s var(--ease-slow) .25s; }
.is-loaded .hero__covers .hero__cover--pegasus { transition-delay: .45s; }
.page-home .site-header:not(.is-scrolled) .brand__tag { opacity: 0; }
.brand__tag { transition: opacity .4s var(--ease); }

.scroll-cue {
    position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    font: 400 .6rem/1 var(--f-mono); letter-spacing: .3em; text-transform: uppercase; color: var(--stone); text-decoration: none;
}
.scroll-cue__line { width: 1px; height: 46px; background: linear-gradient(var(--pink-light), transparent); transform-origin: top; animation: cue 2.6s var(--ease) infinite; }
@keyframes cue { 0% { transform: scaleY(0); } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Feature sections ---------- */
.feature { position: relative; isolation: isolate; overflow: hidden; padding: var(--section) 0; }
.feature__atmos { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.feature__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.feature__grid--reverse { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.feature__cover { max-width: 460px; width: 100%; justify-self: center; }
.feature__caption { margin: 22px 0 0; text-align: center; color: var(--stone); font-size: .64rem; }
.feature__caption--dark { color: var(--smoke); }
.feature__title { font: 400 clamp(2.6rem, 5.4vw, 5.2rem)/.98 var(--f-display); letter-spacing: -.01em; margin-bottom: 22px; }

.feature--pink { background: linear-gradient(180deg, #0d0c0d 0%, #150b11 45%, #0e0a0c 100%); }
.feature--pink .feature__title { color: var(--ivory); }
.feature__lattice {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent, rgba(185, 47, 102, .16) 50%, transparent);
    -webkit-mask: url("../images/glasshouse.svg") center / cover no-repeat; mask: url("../images/glasshouse.svg") center / cover no-repeat;
    opacity: .7;
}
.feature__shaft {
    position: absolute; top: -10%; bottom: -10%; left: 20%; width: 22vw;
    background: linear-gradient(90deg, transparent, rgba(207, 68, 124, .12) 40%, rgba(224, 122, 163, .18) 50%, rgba(207, 68, 124, .12) 60%, transparent);
    transform: skewX(-8deg);
    animation: breathe 11s ease-in-out infinite alternate;
}
.feature__vines { position: absolute; left: -4vw; bottom: -10%; width: 28vw; height: 80%; background: var(--plum); opacity: .55;
    -webkit-mask: url("../images/vines.svg") center / cover no-repeat; mask: url("../images/vines.svg") center / cover no-repeat; }

.pull { margin: 0 0 34px; padding-left: 26px; border-left: 1px solid var(--pink); }
.pull__quote { margin: 0; }
.pull__quote p { margin: 0; font: italic 400 clamp(1.5rem, 2.4vw, 2.1rem)/1.22 var(--f-display); color: var(--pink-light); }
.pull__cite { margin-top: 12px; font: 400 .64rem/1 var(--f-mono); letter-spacing: .16em; text-transform: uppercase; color: var(--stone); }
.pull--light { border-color: var(--crimson); }
.pull--light .pull__quote p { color: var(--crimson); }
.pull--light .pull__cite { color: var(--smoke); }

.dossier {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 32px 0 0; max-width: 620px;
    border-top: 1px solid rgba(236, 230, 221, .12);
}
.dossier > div { padding: 14px 16px 14px 0; border-bottom: 1px solid rgba(236, 230, 221, .12); }
.dossier dt { color: var(--smoke-2); font-size: .62rem; margin-bottom: 4px; }
.dossier dd { margin: 0; color: var(--ivory); font-size: .74rem; letter-spacing: .08em; text-transform: none; }

/* Pegasus Road: ivory, smoke, crimson */
.feature--pegasus {
    color: var(--charcoal);
    background:
        radial-gradient(120% 70% at 50% 0%, #f5f0e9, transparent 70%),
        linear-gradient(180deg, #e6dfd6 0%, #ece6dd 40%, #dcd4ca 100%);
}
.feature--pegasus .feature__title { color: var(--ink); }
.feature--pegasus .meta-row { color: var(--smoke); }
.feature--pegasus .prose { color: #3a3736; }
.feature__chart {
    position: absolute; inset: 0; opacity: .7;
    background:
        repeating-radial-gradient(circle at 82% 28%, transparent 0 46px, rgba(36, 35, 35, .055) 47px 48px),
        repeating-radial-gradient(circle at 12% 88%, transparent 0 60px, rgba(142, 34, 39, .05) 61px 62px);
    -webkit-mask-image: radial-gradient(90% 80% at 60% 40%, #000, transparent 75%); mask-image: radial-gradient(90% 80% at 60% 40%, #000, transparent 75%);
}
.award { display: flex; align-items: center; gap: 14px; margin: 0 0 22px; font: 500 .72rem/1.35 var(--f-mono); letter-spacing: .16em; text-transform: uppercase; color: var(--crimson); }
.award small { font-size: .62rem; color: var(--smoke); letter-spacing: .2em; }

.route {
    position: relative; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px 0;
    margin-top: clamp(40px, 5vw, 64px); color: var(--smoke);
}
.route::before { content: ""; position: absolute; left: var(--gutter); right: var(--gutter); top: 5px; border-top: 1px dashed rgba(36, 35, 35, .35); }
.route li { position: relative; padding-top: 24px; font-size: .64rem; flex: 1 1 0; text-align: center; min-width: 90px; }
.route li::before { content: ""; position: absolute; left: 50%; top: 0; width: 11px; height: 11px; margin-left: -5.5px; border-radius: 50%; background: var(--ivory); border: 1px solid var(--smoke); }
.route__end { color: var(--crimson); font-weight: 500; }
.route li.route__end::before { background: var(--crimson); border-color: var(--crimson); box-shadow: 0 0 0 5px rgba(142, 34, 39, .15); }

/* ---------- Interlude (scroll-scrubbed) ---------- */
.interlude { position: relative; background: var(--ink); --p: 1; --e: 1; }
.interlude__stage { position: relative; overflow: hidden; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; isolation: isolate; }
.interlude__sky {
    position: absolute; inset: 0; z-index: -3;
    background: linear-gradient(180deg, #2a2827 0%, #57544f 55%, #8e8980 100%);
    opacity: clamp(0, calc(var(--p) * 1.5 - .1), .92);
}
.interlude__stage::after {
    content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
    background: linear-gradient(180deg, rgba(230, 223, 214, .35) 0%, #e6dfd6 60%);
    opacity: clamp(0, calc((var(--p) - .8) * 6), 1);
}
.interlude__ruins {
    position: absolute; left: -3%; right: -3%; bottom: 0; height: 58%; z-index: -2;
    background: linear-gradient(180deg, #151313, #0b0a0b);
    -webkit-mask: url("../images/ruins.svg") center bottom / cover no-repeat; mask: url("../images/ruins.svg") center bottom / cover no-repeat;
    transform: translate3d(0, calc((1 - var(--e)) * 40% + (1 - var(--p)) * 10%), 0);
}
.interlude__thread {
    position: absolute; left: 50%; top: 0; width: 1px; height: 100%; margin-left: -.5px; z-index: -1;
    background: linear-gradient(180deg, transparent, var(--pink-light) 20%, var(--pink) 80%, var(--pink));
    box-shadow: 0 0 14px 1px rgba(224, 122, 163, .6);
    transform-origin: top; transform: scaleY(clamp(0, calc(var(--e) * .6 + var(--p) * .6 - .2), 1));
}
.interlude__text { position: relative; text-align: center; display: grid; justify-items: center; opacity: clamp(0, calc((.9 - var(--p)) * 10), 1); }
.interlude__date {
    font: 400 clamp(3.2rem, 11vw, 10.5rem)/.9 var(--f-display); letter-spacing: .02em; text-transform: uppercase; color: var(--ivory);
    opacity: clamp(0, calc((var(--e) - .3) * 2.5), 1);
    text-shadow: 0 10px 60px rgba(0, 0, 0, .5);
}
.interlude__date span:last-child { display: block; }
.interlude__quote { margin: 34px 0 0; max-width: 34ch; opacity: clamp(0, calc((var(--p) - .12) * 6), 1); }
.interlude__quote p { margin: 0; font: italic 400 clamp(1.3rem, 2.6vw, 2.2rem)/1.3 var(--f-display); color: var(--ivory); }
.interlude__quote footer { margin-top: 14px; font: 400 .64rem/1 var(--f-mono); letter-spacing: .2em; text-transform: uppercase; color: var(--pink-light); }
.interlude__line { margin: 26px 0 0; max-width: 46ch; color: rgba(236, 230, 221, .88); font-size: clamp(1rem, 1.4vw, 1.2rem); opacity: clamp(0, calc((var(--p) - .38) * 6), 1); }
.interlude__handoff {
    position: absolute; left: 0; right: 0; bottom: 9vh; margin: 0; padding-inline: var(--gutter); text-align: center;
    font: italic 400 clamp(1.8rem, 3.6vw, 3rem)/1.2 var(--f-display); color: var(--crimson);
    opacity: clamp(0, calc((var(--p) - .88) * 10), 1);
}
/* When not scrubbing (no JS, reduced motion), show a composed static frame */
html:not(.js) .interlude__handoff, .reduce-motion .interlude__handoff { position: static; transform: none; margin-top: 40px; color: var(--pink-light); opacity: 1; }
html:not(.js) .interlude__text, .reduce-motion .interlude__text { opacity: 1; }
.interlude__stage { flex-direction: column; justify-content: center; }
html:not(.js) .interlude__stage::after, .reduce-motion .interlude__stage::after { opacity: 0; }
html:not(.js) .interlude__quote, html:not(.js) .interlude__line,
.reduce-motion .interlude__quote, .reduce-motion .interlude__line { opacity: 1; }
.interlude__stage { padding: 120px 0; }
.js:not(.reduce-motion) .interlude { height: 220vh; }
.js:not(.reduce-motion) .interlude__stage { position: sticky; top: 0; height: 100vh; height: 100svh; padding: 0; }

/* ---------- Two worlds ---------- */
.worlds { position: relative; padding: var(--section) 0; background: linear-gradient(180deg, #0d0c0d, #121011 50%, #0d0c0d); overflow: hidden; }
.worlds__title { font: 400 clamp(2.6rem, 6.2vw, 6rem)/.98 var(--f-display); max-width: 14ch; margin-bottom: 26px; }

.worlds__intro { max-width: 58ch; color: rgba(236, 230, 221, .78); font-size: 1.1rem; }

.compare { margin-top: clamp(32px, 4vw, 56px); }
.compare__frame { position: relative; height: clamp(360px, 40vw, 520px); overflow: hidden; --split: 50%; user-select: none; }
.compare__layer { position: absolute; inset: 0; display: flex; align-items: center; }
.compare__layer--peg {
    color: var(--charcoal);
    background:
        repeating-radial-gradient(circle at 20% 40%, transparent 0 46px, rgba(36, 35, 35, .06) 47px 48px),
        radial-gradient(80% 70% at 30% 30%, #f5f0e9, #d9d1c6);
}
.compare__layer--pink {
    color: var(--ivory);
    clip-path: inset(0 0 0 var(--split));
    background:
        radial-gradient(60% 70% at 78% 45%, rgba(185, 47, 102, .45), transparent 70%),
        #0f0b0d;
}
.compare__layer--pink::before {
    content: ""; position: absolute; inset: 0; opacity: .5;
    background: linear-gradient(180deg, rgba(224, 122, 163, .25), transparent);
    -webkit-mask: url("../images/glasshouse.svg") center / cover no-repeat; mask: url("../images/glasshouse.svg") center / cover no-repeat;
}
.compare__layer--peg::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 42%; background: rgba(36, 35, 35, .16);
    -webkit-mask: url("../images/ruins.svg") left bottom / cover no-repeat; mask: url("../images/ruins.svg") left bottom / cover no-repeat;
}
.compare__content { position: relative; z-index: 1; width: 44%; padding: 0 clamp(20px, 4vw, 64px); }
.compare__content--right { margin-left: auto; text-align: right; }
.compare__year { margin: 0; font: 400 clamp(3.4rem, 9vw, 8.5rem)/.85 var(--f-display); }
.compare__layer--peg .compare__year { color: var(--crimson); }
.compare__layer--pink .compare__year { color: var(--pink-light); }
.compare__place { margin: 10px 0 22px; font: 400 .72rem/1 var(--f-mono); letter-spacing: .3em; text-transform: uppercase; opacity: .75; }
.compare__words { margin: 0 0 14px; font: 400 clamp(1.3rem, 2.4vw, 2.1rem)/1.15 var(--f-display); }
.compare__line { margin: 0; font-size: .95rem; opacity: .8; }
.compare__mark { margin-top: 22px; }
.compare__handle { position: absolute; top: 0; bottom: 0; left: var(--split); width: 1px; background: var(--pink-light); box-shadow: 0 0 18px rgba(224, 122, 163, .8); pointer-events: none; z-index: 2; }
.compare__handle span {
    position: absolute; top: 50%; left: 50%; width: 54px; height: 54px; margin: -27px 0 0 -27px; border-radius: 50%;
    background: rgba(13, 12, 13, .75); border: 1px solid var(--pink-light); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    transition: transform .35s var(--ease);
}
.compare__handle span::before, .compare__handle span::after {
    content: ""; position: absolute; top: 50%; width: 7px; height: 7px; margin-top: -3.5px; border: solid var(--ivory); border-width: 0 0 1px 1px;
}
.compare__handle span::before { left: 14px; transform: rotate(45deg); }
.compare__handle span::after { right: 14px; transform: rotate(-135deg); }
.compare__control { position: absolute; inset: 0; z-index: 3; margin: 0; }
.compare__frame .compare__control input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.compare__frame:has(input:focus-visible) .compare__handle span { outline: 2px solid var(--ivory); outline-offset: 4px; transform: scale(1.08); }
.compare__frame:hover .compare__handle span { transform: scale(1.08); }
.compare__legend { display: flex; justify-content: space-between; margin-top: 16px; color: var(--stone); font-size: .62rem; }

.themes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 clamp(24px, 4vw, 64px); margin-top: clamp(40px, 5vw, 64px); counter-reset: theme; }
.theme { position: relative; padding: 22px 0 28px; border-top: 1px solid rgba(236, 230, 221, .12); }
.theme h3 { font: 400 1.65rem/1.15 var(--f-display); margin-bottom: 10px; }
.theme p { margin: 0; color: rgba(236, 230, 221, .7); font-size: .98rem; }
.worlds .btn-row { margin-top: 36px; }

/* ---------- Author ---------- */
.author { position: relative; padding: var(--section) 0; color: var(--charcoal); background: linear-gradient(180deg, #ece6dd, #e4ddd3); }
.author__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.portrait { margin: 0; width: 100%; max-width: 460px; justify-self: center; }
.portrait img { width: 100%; height: auto; }
.portrait__placeholder {
    position: relative; aspect-ratio: 4 / 5; display: grid; place-items: center;
    background:
        radial-gradient(70% 50% at 50% 35%, rgba(185, 47, 102, .22), transparent 70%),
        linear-gradient(160deg, #1b1819, #0d0c0d);
    box-shadow: 0 40px 80px -40px rgba(36, 35, 35, .6);
}
.portrait__placeholder::before { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(236, 230, 221, .18); }
.portrait__mono { font: 400 clamp(6rem, 13vw, 11rem)/.8 var(--f-display); color: var(--ivory); letter-spacing: -.04em; }
.portrait__mono span { margin-left: -.02em; }
.portrait__place { position: absolute; bottom: 34px; left: 0; right: 0; text-align: center; font: 400 .62rem/1 var(--f-mono); letter-spacing: .3em; text-transform: uppercase; color: var(--stone); }
.author__statement { font: 400 clamp(2rem, 3.8vw, 3.5rem)/1.08 var(--f-display); color: var(--ink); margin-bottom: 34px; max-width: 20ch; }

.facts { display: grid; gap: 0; margin: 36px 0 26px; max-width: 560px; border-top: 1px solid rgba(36, 35, 35, .15); }
.facts li { display: grid; grid-template-columns: 90px 1fr; gap: 16px; padding: 12px 0; border-bottom: 1px solid rgba(36, 35, 35, .15); font-size: .95rem; }
.facts__k { color: var(--smoke); font-size: .64rem; padding-top: 4px; }

/* ---------- Forthcoming ---------- */
.forthcoming { padding: var(--section) 0; background: var(--ink); }
.ledger { border-top: 1px solid rgba(236, 230, 221, .14); }
.ledger__row {
    display: grid; grid-template-columns: 110px minmax(0, 1fr) auto; align-items: center; gap: 24px;
    padding: clamp(22px, 3vw, 34px) 0; border-bottom: 1px solid rgba(236, 230, 221, .14);
}
.ledger__year { color: var(--pink-light); font-size: .78rem; }
.ledger__title { display: flex; flex-direction: column; font: 400 clamp(1.9rem, 4.2vw, 3.6rem)/1.02 var(--f-display); color: rgba(236, 230, 221, .5); }
.ledger__title a { color: var(--ivory); text-decoration: none; background: linear-gradient(var(--pink), var(--pink)) 0 100% / 0 2px no-repeat; transition: background-size .6s var(--ease); }
.ledger__title a:hover { background-size: 100% 2px; }
.ledger__row--live .ledger__title { font-style: italic; }
.ledger__note { margin-top: 8px; font: 400 .74rem/1.3 var(--f-mono); letter-spacing: .14em; text-transform: uppercase; font-style: normal; color: var(--stone); }
.coming { display: inline-block; padding: 9px 14px; border: 1px solid rgba(236, 230, 221, .2); color: var(--stone); font-size: .64rem; }

/* ---------- Finale ---------- */
.finale { position: relative; isolation: isolate; overflow: hidden; padding: var(--section) 0; text-align: center; }
.finale__atmos { position: absolute; inset: 0; z-index: -1; }
.finale__split {
    position: absolute; inset: 0;
    background:
        radial-gradient(50% 60% at 25% 40%, rgba(142, 34, 39, .35), transparent 70%),
        radial-gradient(50% 60% at 75% 40%, rgba(185, 47, 102, .35), transparent 70%),
        linear-gradient(180deg, #0d0c0d, #151112 60%, #0d0c0d);
}
.finale__ruins { position: absolute; left: 0; right: 0; bottom: 0; height: 30%; background: #080707;
    -webkit-mask: url("../images/ruins.svg") center bottom / cover no-repeat; mask: url("../images/ruins.svg") center bottom / cover no-repeat; opacity: .8; }
.finale__title { font: 400 clamp(2.5rem, 6.4vw, 6.2rem)/.98 var(--f-display); margin: 0 auto clamp(36px, 4vw, 56px); max-width: 16ch; }

.finale__books { display: grid; grid-template-columns: repeat(2, minmax(0, 360px)); justify-content: center; gap: clamp(32px, 6vw, 96px); }
.finale__book { display: flex; flex-direction: column; align-items: center; }
.finale__cover { display: flex; align-items: flex-end; width: 100%; max-width: 280px; aspect-ratio: 13 / 20; margin-bottom: 28px; }
.finale__cover .cover { width: 100%; }
.finale__book-title { font: italic 400 clamp(1.6rem, 2.4vw, 2.1rem)/1.1 var(--f-display); margin-bottom: 8px; }
.finale__book-meta { margin: 0 0 26px; font: 400 .66rem/1.4 var(--f-mono); letter-spacing: .14em; text-transform: uppercase; color: var(--stone); }

/* ---------- Footer ---------- */
.site-footer { position: relative; background: #0a090a; color: rgba(236, 230, 221, .78); padding: clamp(48px, 6vw, 80px) 0 calc(28px + env(safe-area-inset-bottom)); }
.site-footer__thread { position: absolute; left: 0; right: 0; top: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--crimson) 25%, var(--pink) 75%, transparent); }
.site-footer__inner { max-width: calc(var(--max) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.site-footer__name { font: 500 1.5rem/1 var(--f-display); letter-spacing: .2em; text-transform: uppercase; text-decoration: none; color: var(--ivory); }
.site-footer__tag { margin-top: 18px; font: italic 400 1.05rem/1.5 var(--f-display); color: var(--stone); }
.site-footer__heading { margin-bottom: 16px; font: 400 .64rem/1 var(--f-mono); letter-spacing: .2em; text-transform: uppercase; color: var(--pink-light); }
.site-footer__col li { margin-bottom: 10px; }
.site-footer__col a { text-decoration: none; }
.site-footer__col a:hover { color: var(--ivory); text-decoration: underline; }
.site-footer__note { display: block; font: 400 .6rem/1.6 var(--f-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--smoke-2); }
.site-footer__buy { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.site-footer__legal { max-width: calc(var(--max) + var(--gutter) * 2); margin: 40px auto 0; padding: 26px var(--gutter) 0; border-top: 1px solid rgba(236, 230, 221, .08); display: flex; flex-wrap: wrap; gap: 6px 32px; font: 400 .66rem/1.6 var(--f-mono); letter-spacing: .06em; color: var(--smoke-2); }
.site-footer__legal p { margin: 0; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ==========================================================================
   BOOK PAGES, BOOKS, ABOUT, CONTACT
   ========================================================================== */
.page-hero { position: relative; isolation: isolate; overflow: hidden; padding: calc(var(--header-h) + clamp(28px, 5vw, 64px)) 0 clamp(48px, 6vw, 88px); }
.page-hero__atmos { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.page-hero__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.page-hero__cover { width: 100%; max-width: 470px; justify-self: center; }
.page-hero__title { font: 400 clamp(2.8rem, 6.6vw, 6.4rem)/.95 var(--f-display); letter-spacing: -.012em; margin: 0 0 26px; }
.page-hero__hook { font: italic 400 clamp(1.3rem, 2.1vw, 1.8rem)/1.35 var(--f-display); max-width: 30ch; margin: 0 0 22px; }
.page-hero__lede { max-width: 54ch; font-size: 1.08rem; }

.page-hero--pink { background: radial-gradient(60% 70% at 25% 45%, rgba(185, 47, 102, .32), transparent 70%), linear-gradient(180deg, #0a090a, #140b10 70%, #0d0c0d); }
.page-hero--pink .page-hero__hook { color: var(--pink-light); }
.page-hero--pink .page-hero__lede { color: rgba(236, 230, 221, .82); }
.page-hero--pegasus { color: var(--charcoal); background: radial-gradient(70% 70% at 25% 40%, #f7f3ed, transparent 70%), linear-gradient(180deg, #e3dcd2, #ece6dd 60%, #ddd5ca); }
.page-hero--pegasus .page-hero__title { color: var(--ink); }
.page-hero--pegasus .page-hero__hook { color: var(--crimson); }
.page-hero--pegasus .page-hero__lede { color: #3a3736; }
.page-hero--pegasus .meta-row { color: var(--smoke); }
.page-hero--plain { background: radial-gradient(60% 60% at 80% 20%, rgba(185, 47, 102, .2), transparent 70%), radial-gradient(60% 60% at 10% 90%, rgba(142, 34, 39, .18), transparent 70%), var(--ink); }
.page-hero--plain .page-hero__title { max-width: 16ch; }


.band { position: relative; padding: var(--section) 0; }
.band--ink { background: var(--ink); }
.band--ink-2 { background: linear-gradient(180deg, #0d0c0d, #140f12); }
.band--ivory { background: linear-gradient(180deg, #ece6dd, #e3dcd2); color: var(--charcoal); }
.band--paper { background: var(--paper); color: var(--charcoal); }
.band__head { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(24px, 4vw, 64px); align-items: start; }
.band__title { font: 400 clamp(2.2rem, 4.4vw, 4rem)/1.02 var(--f-display); margin-bottom: 20px; }

.band--ivory .prose, .band--paper .prose { color: #3a3736; }

.two-col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(32px, 5vw, 80px); }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-top: 36px; border-top: 1px solid rgba(236, 230, 221, .12); border-left: 1px solid rgba(236, 230, 221, .12); }
.card { padding: clamp(22px, 3vw, 40px); border-right: 1px solid rgba(236, 230, 221, .12); border-bottom: 1px solid rgba(236, 230, 221, .12); }
.card__k { margin: 0 0 16px; font: 400 .62rem/1 var(--f-mono); letter-spacing: .18em; text-transform: uppercase; color: var(--pink-light); }
.card h3 { font: 400 1.7rem/1.1 var(--f-display); margin-bottom: 12px; }
.card p { margin: 0; color: rgba(236, 230, 221, .72); font-size: .98rem; }
.band--ivory .cards, .band--ivory .card { border-color: rgba(36, 35, 35, .14); }
.band--ivory .card__k { color: var(--crimson); }
.band--ivory .card p { color: #4a4644; }

/* Setting band with ruins horizon */
/* The skyline sits in its own strip below the content, never behind the text */
.setting { position: relative; overflow: hidden; isolation: isolate; padding-bottom: calc(clamp(90px, 11vw, 170px) + clamp(40px, 4vw, 64px)); }
.setting::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: clamp(90px, 11vw, 170px); z-index: -1; background: rgba(0, 0, 0, .5);
    -webkit-mask: url("../images/ruins.svg") left bottom / auto 100% repeat-x; mask: url("../images/ruins.svg") left bottom / auto 100% repeat-x; }
.band--ivory.setting::after, .band--paper.setting::after { background: rgba(36, 35, 35, .09); }
.facts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 28px 40px; margin-top: 36px; }
.facts-grid dt { font: 400 .62rem/1 var(--f-mono); letter-spacing: .18em; text-transform: uppercase; color: var(--pink-light); margin-bottom: 12px; }
.band--ivory .facts-grid dt, .band--paper .facts-grid dt { color: var(--crimson); font-weight: 600; }
.band--paper .facts-grid dd, .band--ivory .facts-grid dd { color: #3a3736; }
.facts-grid dd { margin: 0; font-size: 1rem; }

/* Excerpt: typeset like a page */
.excerpt { padding: var(--section) 0; background: #0a090a; }
.excerpt--light { background: linear-gradient(180deg, #ddd5ca, #e8e1d8); }
.excerpt__page {
    position: relative; max-width: 760px; margin: 0 auto; padding: clamp(32px, 5vw, 72px) clamp(22px, 5vw, 72px);
    background: var(--paper); color: #262322;
    box-shadow: 0 50px 100px -50px rgba(0, 0, 0, .9), 0 0 0 1px rgba(0, 0, 0, .04);
}
.excerpt__page::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: var(--pink); }
.excerpt--light .excerpt__page::before { background: var(--crimson); }
.excerpt__label { margin: 0 0 8px; text-align: center; font: 400 .64rem/1 var(--f-mono); letter-spacing: .24em; text-transform: uppercase; color: var(--rose); }
.excerpt--light .excerpt__label { color: var(--crimson); }
.excerpt__title { margin: 0 0 28px; text-align: center; font: italic 400 clamp(1.8rem, 3vw, 2.4rem)/1.1 var(--f-display); }
.excerpt__body p { font: 400 clamp(1.05rem, 1.3vw, 1.18rem)/1.8 var(--f-display); text-align: justify; hyphens: auto; margin: 0; text-indent: 1.6em; }
.excerpt__body p:first-child { text-indent: 0; }
.excerpt__body p:first-child::first-letter { float: left; font-size: 4.6em; line-height: .78; padding: .06em .08em 0 0; color: var(--pink); }
.excerpt--light .excerpt__body p:first-child::first-letter { color: var(--crimson); }
.excerpt__body .excerpt__gap { text-align: center; text-indent: 0; margin: 1.2em 0; letter-spacing: .6em; color: var(--stone); }
.excerpt__body .excerpt__last { margin-top: 1.4em; text-indent: 0; font-style: italic; text-align: center; font-size: 1.3em; }
.excerpt__end { margin-top: 32px; text-align: center; }
.excerpt__end p { font: 400 .72rem/1.6 var(--f-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--smoke); }

/* Preorder / buy panel */
.buy-panel { position: relative; isolation: isolate; overflow: hidden; padding: var(--section) 0; text-align: center; }
.buy-panel--pink { background: radial-gradient(60% 80% at 50% 100%, rgba(185, 47, 102, .45), transparent 70%), #0d0a0c; }
.buy-panel--pegasus { color: var(--charcoal); background: radial-gradient(60% 80% at 50% 100%, rgba(142, 34, 39, .18), transparent 70%), linear-gradient(180deg, #ece6dd, #ddd5ca); }
.buy-panel__cover { width: 170px; margin: 0 auto 28px; }
.buy-panel__title { font: 400 clamp(2.2rem, 5vw, 4.4rem)/1 var(--f-display); margin: 0 auto 18px; max-width: 18ch; }
.buy-panel__title em { font-style: italic; }
.buy-panel__sub { max-width: 52ch; margin: 0 auto; color: rgba(236, 230, 221, .78); }
.buy-panel--pegasus .buy-panel__sub { color: #4a4644; }
.buy-panel .btn-row { justify-content: center; }
.buy-panel__formats { display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 8px 28px; margin-top: 36px; font: 400 .66rem/1.5 var(--f-mono); letter-spacing: .14em; text-transform: uppercase; color: var(--stone); }
.buy-panel--pegasus .buy-panel__formats { color: var(--smoke); }

/* Recommendation */
.recommend { padding: var(--section) 0; }
.recommend__grid { display: grid; grid-template-columns: minmax(0, 260px) minmax(0, 1fr); gap: clamp(32px, 6vw, 90px); align-items: center; max-width: 1000px; margin: 0 auto; }
.recommend__title { font: 400 clamp(2rem, 4vw, 3.4rem)/1.02 var(--f-display); margin: 0 0 16px; }
.recommend--pegasus { color: var(--charcoal); background: linear-gradient(180deg, #e6dfd6, #ece6dd); }
.recommend--pegasus .prose { color: #3a3736; }
.recommend--pink { background: radial-gradient(50% 70% at 20% 50%, rgba(185, 47, 102, .3), transparent 70%), #0d0a0c; }

.author-note { padding: clamp(48px, 6vw, 88px) 0; background: var(--ink-2); }
.author-note__inner { display: grid; grid-template-columns: 140px minmax(0, 1fr); gap: 40px; align-items: start; max-width: 960px; margin: 0 auto; }
.author-note__mono { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; white-space: nowrap; border: 1px solid rgba(236, 230, 221, .18); font: 400 3.4rem/1 var(--f-display); }

.author-note h2 { font: 400 clamp(1.7rem, 3vw, 2.4rem)/1.15 var(--f-display); margin: 0 0 16px; }

/* Books index */
.shelf { display: grid; gap: 0; }
.shelf__item { padding: var(--section) 0; }
.shelf__grid { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(40px, 7vw, 110px); align-items: center; }
.shelf__item--pegasus { color: var(--charcoal); background: linear-gradient(180deg, #ece6dd, #ddd5ca); }
.shelf__item--pink { background: radial-gradient(60% 70% at 20% 50%, rgba(185, 47, 102, .28), transparent 70%), #0e0a0c; }

/* About */
.bio { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(40px, 7vw, 110px); align-items: start; }
.bio__aside { position: sticky; top: calc(var(--header-h) + 32px); }
.bio .prose p:first-of-type::first-letter { float: left; font: 400 4.4em/.8 var(--f-display); padding: .06em .08em 0 0; color: var(--crimson); }
.bio__h { font: 400 clamp(1.6rem, 2.6vw, 2.2rem)/1.15 var(--f-display); margin: 56px 0 18px; color: var(--ink); }
.bio__h:first-child { margin-top: 0; }
.works { border-top: 1px solid rgba(36, 35, 35, .15); margin-top: 8px; }
.works li { display: grid; grid-template-columns: 64px minmax(0, 1fr) auto; gap: 20px; align-items: center; padding: 16px 0; border-bottom: 1px solid rgba(36, 35, 35, .15); }
.works__year { font: 400 .7rem/1 var(--f-mono); letter-spacing: .14em; color: var(--crimson); }
.works__title { font: italic 400 1.35rem/1.2 var(--f-display); color: var(--ink); }
.works__title small { display: block; font: 400 .62rem/1.6 var(--f-mono); font-style: normal; letter-spacing: .14em; text-transform: uppercase; color: var(--smoke); }
.works a { text-decoration: none; }
.works a:hover { color: var(--crimson); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: clamp(40px, 7vw, 110px); align-items: start; }
.form { display: grid; gap: 26px; }
.field { display: grid; gap: 10px; }
.field label { font: 400 .66rem/1 var(--f-mono); letter-spacing: .18em; text-transform: uppercase; color: var(--stone); }
.field input, .field textarea {
    width: 100%; padding: 16px 18px; min-height: 54px;
    background: rgba(236, 230, 221, .04); border: 1px solid rgba(236, 230, 221, .18); border-radius: 0;
    color: var(--ivory); font-size: 1rem; transition: border-color .3s, background-color .3s;
}
.field textarea { min-height: 200px; resize: vertical; line-height: 1.6; }
.field input:hover, .field textarea:hover { border-color: rgba(236, 230, 221, .32); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--pink-light); background: rgba(236, 230, 221, .06); box-shadow: 0 0 0 3px rgba(224, 122, 163, .2); }
.field [aria-invalid="true"] { border-color: #ff8a8a; }
.field__error { margin: 0; color: #ffa3a3; font-size: .88rem; }
.field--row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.hp { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.notice { padding: 20px 22px; border: 1px solid; margin-bottom: 30px; }
.notice p { margin: 0; }
.notice__title { font: 400 1.4rem/1.2 var(--f-display); margin-bottom: 6px !important; }
.notice--success { border-color: rgba(145, 214, 170, .45); background: rgba(145, 214, 170, .07); color: #d8f1e1; }
.notice--error { border-color: rgba(255, 138, 138, .5); background: rgba(255, 138, 138, .07); color: #ffd9d9; }
.form__small { font-size: .88rem; color: var(--stone); margin: 0; }
.aside-card { padding: 30px; border: 1px solid rgba(236, 230, 221, .12); background: rgba(236, 230, 221, .03); margin-bottom: 20px; }
.aside-card h2 { font: 400 1.6rem/1.15 var(--f-display); margin: 0 0 10px; }
.aside-card p { color: rgba(236, 230, 221, .74); font-size: .95rem; }
.aside-card .btn { width: 100%; margin-top: 10px; }
.privacy { margin-top: 44px; padding-top: 28px; border-top: 1px solid rgba(236, 230, 221, .1); max-width: 70ch; font-size: .92rem; color: rgba(236, 230, 221, .7); }
.privacy h2 { font: 400 1.5rem/1.2 var(--f-display); color: var(--ivory); margin-bottom: 12px; }

/* 404 */
.lost { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: calc(var(--header-h) + 40px) 0 80px; }
.lost h1 { font: 400 clamp(3rem, 8vw, 7rem)/.95 var(--f-display); margin-bottom: 20px; }


/* ==========================================================================
   Page transitions (progressive enhancement)
   ========================================================================== */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: vt-out .35s var(--ease) both; }
::view-transition-new(root) { animation: vt-in .55s var(--ease) both; }
@keyframes vt-out { to { opacity: 0; } }
@keyframes vt-in { from { opacity: 0; } }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1240px) {
    .primary-nav { display: none; }
    .menu-toggle { display: inline-flex; }
    .site-header__inner { gap: 18px; }
}

@media (max-width: 1100px) {
    .site-footer__inner { grid-template-columns: 1fr 1fr; }
    .themes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
    :root { --header-h: 64px; }
    .site-header__inner { gap: 14px; }
    .brand__tag { display: none; }
    .brand__name { font-size: 1.05rem; letter-spacing: .2em; }
    .scroll-cue { display: none; }

    /* Tablet: keep the two-column compositions, just tighter */
    .hero__inner { column-gap: 28px; }
    .hero__headline { font-size: clamp(2.4rem, 6.4vw, 3.8rem); margin: 20px 0 30px; }
    .hero__cover--pink { width: min(38vw, 330px); }
    .hero__cover--pegasus { display: none; }
    .hero__also-cover { display: block; }
    .hero__also { flex-wrap: wrap; }
    .hero__also .btn { flex: 1 1 100%; }
    .feature__grid, .author__grid, .page-hero__grid, .shelf__grid { grid-template-columns: minmax(0, 4fr) minmax(0, 6fr); gap: 32px; }
    .feature__grid--reverse { grid-template-columns: minmax(0, 6fr) minmax(0, 4fr); gap: 32px; }
    .recommend__grid { grid-template-columns: minmax(0, 200px) minmax(0, 1fr); gap: 32px; }
    .bio { grid-template-columns: minmax(0, 4fr) minmax(0, 6fr); gap: 32px; }
    .bio__aside { position: static; }
    .band__head, .contact-grid, .press-bios { grid-template-columns: minmax(0, 1fr); }
    .contact-grid aside { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
    .contact-grid aside .aside-card { margin: 0; }
    .compare__content { width: 50%; }
    .route { justify-content: flex-start; gap: 18px 0; }
    .route li { flex: 0 0 33.33%; }
    .route::before { display: none; }
    .author-note__inner { grid-template-columns: 90px minmax(0, 1fr); gap: 24px; }
    .author-note__mono { font-size: 2.2rem; }
    .press-book { grid-template-columns: 150px minmax(0, 1fr); }
    .press-book > :last-child { grid-column: 2; }
    .finale__books { gap: 40px; }
}

@media (max-width: 700px) {
    /* Phones: single column. Hero order is headline, cover, book, also-by */
    .hero { align-items: flex-start; padding-bottom: 90px; }
    .hero__inner { grid-template-columns: minmax(0, 1fr); grid-template-areas: "intro" "covers" "book" "also"; }
    .hero__headline { font-size: clamp(2.5rem, 11vw, 4rem); margin: 18px 0 26px; }
    .hero__covers { padding-bottom: 36px; }
    .hero__cover--pink { width: min(56vw, 330px); }
    .hero__book { padding-top: 26px; }
    .hero__vines { opacity: .3; }
    .hero__ruins { height: 26vh; }
    .feature__grid, .feature__grid--reverse, .author__grid, .page-hero__grid, .recommend__grid, .shelf__grid, .bio, .two-col { grid-template-columns: minmax(0, 1fr); }
    .feature__grid--reverse .feature__cover { order: -1; }
    .feature__cover, .page-hero__cover { max-width: min(76vw, 400px); }
    .recommend__grid > :first-child, .shelf__grid > :first-child { max-width: min(62vw, 300px); justify-self: center; }
    .bio__aside { max-width: 420px; }
    .portrait { max-width: 280px; }
    .contact-grid aside { grid-template-columns: minmax(0, 1fr); }
    .author-note__inner { grid-template-columns: minmax(0, 1fr); gap: 18px; }
    .author-note__mono { width: 64px; font-size: 1.6rem; }
    .excerpt__body p { text-align: left; }

    /* The comparison slider becomes two stacked panels on phones */
    .compare__frame { height: auto; }
    .compare__layer { position: relative; inset: auto; min-height: 250px; }
    .compare__layer--pink { clip-path: none; }
    .compare__handle, .compare__control, .compare__legend { display: none; }
    .compare__content, .compare__content--right { position: relative; width: 100%; padding: 30px 22px; text-align: left; margin: 0; }
    .compare__year { font-size: 3.4rem; }
    .compare__words { font-size: 1.4rem; }
    .compare__mark { display: none; }
}

@media (max-width: 700px) {
    body { font-size: 1rem; }
    .site-header__cta { min-height: 38px; padding: 9px 14px; font-size: .66rem; letter-spacing: .14em; }
    .menu-toggle__label { display: none; }
    .btn-row { gap: 12px; }
    .btn-row .btn--lg { flex: 1 1 100%; }
    .hero__book .btn-row .btn { flex: 1 1 100%; }
    .hero__also { flex-wrap: wrap; margin-top: 32px; }
    .hero__also .btn { flex: 1 1 100%; }
    .dossier { grid-template-columns: minmax(0, 1fr); }
    .themes { grid-template-columns: minmax(0, 1fr); }
    .ledger__row { grid-template-columns: minmax(0, 1fr); gap: 10px; }
    .finale__books { grid-template-columns: minmax(0, 1fr); gap: 80px; }
    .finale__cover { max-width: 62vw; }
    .finale__book .btn { width: 100%; max-width: 360px; }
    .site-footer__inner { grid-template-columns: minmax(0, 1fr); }
    .field--row { grid-template-columns: minmax(0, 1fr); }

    /* Purchase bar docks full-width on phones */
    .buy-bar { left: 0; right: 0; bottom: 0; }
    .buy-bar__inner { padding: 8px 10px calc(8px + env(safe-area-inset-bottom)); gap: 8px; border-width: 1px 0 0; }
    .buy-bar__item { flex: 1 1 0; min-width: 0; flex-direction: column; align-items: stretch; gap: 6px; padding: 0; }
    .buy-bar__item + .buy-bar__item { border: 0; }
    .buy-bar__meta { display: none; }
    .buy-bar .btn { width: 100%; }
    .buy-bar__item--pink .btn__label::after { content: " · Pink Dress"; }
    .buy-bar__item--pegasus .btn__label::after { content: " Pegasus Road"; }
    body.has-buy-bar .site-footer { padding-bottom: 110px; }

    /* Lighter atmosphere on phones */
    .flight__plane--2, .flight__plane--3, .mist--2, .hero__vines--l { display: none; }
    .grain { animation: none; }
    .js:not(.reduce-motion) .interlude { height: 190vh; }
}

@media (hover: none) {
    .cover__sheen { display: none; }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; transition-delay: 0s !important; }
    .flight, .grain { display: none; }
    .js .reveal, .js .reveal--cover, .js .line > span, .js .hero__covers .hero__cover { opacity: 1 !important; transform: none !important; filter: none !important; }
    ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
}

@media print {
    .site-header, .menu, .buy-bar, .grain, .hero__atmos, .feature__atmos, .scroll-cue { display: none !important; }
    body { background: #fff; color: #000; }
}

/* Additions: crimson pull quote band, centred emblem in buy panel */
.pull--crimson { max-width: 900px; margin: 0 auto; border-color: var(--crimson); padding-left: clamp(22px, 4vw, 48px); }
.pull--crimson .pull__quote p { color: var(--ivory); font-size: clamp(1.7rem, 3.6vw, 3rem); line-height: 1.2; }
.pull--crimson .pull__cite { color: var(--dusty); }
.buy-panel .pegasus-mark { display: block; margin: 0 auto 22px; }
.is-settled .hero__covers .hero__cover { transition: transform .2s linear !important; }
.page-hero__hook--pink { color: var(--pink-light); }
.page-hero__lede--dark { color: rgba(236, 230, 221, .8); }
.lost .page-hero__lede { margin-inline: auto; }
.coming { text-decoration: none; transition: border-color .3s, color .3s; } a.coming:hover { border-color: var(--pink-light); color: var(--ivory); }

.site-footer__heading--gap { margin-top: 28px; }

/* ---------- Press sheets, information pages ---------- */
.press-book { display: grid; grid-template-columns: 180px minmax(0, 1fr) minmax(260px, .8fr); gap: clamp(24px, 3.5vw, 56px); align-items: start; padding: 36px 0; border-top: 1px solid rgba(236, 230, 221, .12); }
.press-book .btn-row { margin-top: 24px; }
.press-book__facts { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 0; max-width: none; column-gap: 20px; }
.press-book__cover img { width: 100%; height: auto; box-shadow: 0 20px 40px -20px #000; }
.press-book__title { font: 400 2rem/1.1 var(--f-display); margin-bottom: 12px; }
.press-book__blurb { max-width: 64ch; color: rgba(236, 230, 221, .82); }

.jump-links { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 8px; }
.jump-links a { color: var(--pink-light); font-weight: 500; }
.page-hero--compact { padding-bottom: clamp(32px, 4vw, 56px); }
.legal__updated { margin: 0; color: var(--stone); font-size: .9rem; }
.legal { max-width: 72ch; }
.legal h2 { font: 400 1.6rem/1.2 var(--f-display); color: var(--ink); margin: 34px 0 10px; }
.legal h2:first-child { margin-top: 0; }
.legal ul { list-style: disc; padding-left: 1.3em; margin: 0 0 1.1em; }
.legal li { margin-bottom: .4em; }
.legal a { color: var(--crimson); }
.legal code { font-size: .9em; background: rgba(36, 35, 35, .07); padding: 1px 5px; }
.page-hero__lede a { color: var(--pink-light); }
@media (max-width: 700px) {
    .press-book { grid-template-columns: minmax(0, 1fr); gap: 22px; }
    .press-book > :last-child { grid-column: auto; }
    .press-book__cover { max-width: 150px; }
    }
.press-bios { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(28px, 4vw, 64px); align-items: start; }
.press-bios .prose { max-width: none; }
.press-bios__short { padding: 24px 28px; background: rgba(36, 35, 35, .05); border-left: 2px solid var(--crimson); }
.press-bios .bio__h { margin-top: 0; }
@media (max-width: 700px) { .flight { display: none; } }

/* Comfortable tap targets for text links in lists */
.ledger__title a, .works__title a { display: inline-block; padding: 8px 0; }
