/* ============================================================
   matchoomnews.com -- Pacific Atoll Edition
   A magazine-spread editorial layout in midnight blue + gold.
   ============================================================ */

:root {
    --abyss-navy: #0A0F24;
    --deep-indigo: #121830;
    --twilight-panel: #1A2340;
    --antiqued-gold: #C9A55C;
    --burnished-copper: #B87333;
    --champagne-ivory: #E8DCC8;
    --steel-mist: #B8C4D6;
    --midnight-edge: #2E4A7A;
    --reef-cyan: #4ECDC4;
    --coral-signal: #FF6B6B;
    --spread-height: 100vh;
    --masthead-height: 64px;
    --gutter: clamp(24px, 3vw, 48px);
    --border-draw-speed: 2s;
    --content-fade-speed: 0.6s;

    --serif: "Playfair Display", "Times New Roman", Georgia, serif;
    --sans: "Source Sans 3", "Inter", system-ui, sans-serif;

    --iridescence: linear-gradient(135deg,
        var(--reef-cyan) 0%,
        var(--antiqued-gold) 35%,
        var(--burnished-copper) 65%,
        var(--midnight-edge) 100%);
}

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

html {
    background: var(--abyss-navy);
}

html, body {
    height: 100%;
    width: 100%;
}

body {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: var(--steel-mist);
    background: var(--abyss-navy);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    background: none;
    border: 0;
    cursor: pointer;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul, ol {
    list-style: none;
}

table { border-collapse: collapse; width: 100%; }

/* ============================================================
   Background fish-scale texture (felt, not seen)
   ============================================================ */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-color: var(--abyss-navy);
    background-image:
        radial-gradient(circle at 50% 100%, rgba(26, 35, 64, 0.55) 0 14px, transparent 15px),
        radial-gradient(circle at 0% 100%, rgba(26, 35, 64, 0.55) 0 14px, transparent 15px),
        radial-gradient(circle at 100% 100%, rgba(26, 35, 64, 0.55) 0 14px, transparent 15px);
    background-size: 32px 16px;
    background-position: 0 0, 16px 0, -16px 0;
    opacity: 0.75;
    animation: scale-pulse 30s ease-in-out infinite;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 20% 10%, rgba(46, 74, 122, 0.32), transparent 55%),
        radial-gradient(ellipse at 90% 90%, rgba(78, 205, 196, 0.07), transparent 60%),
        radial-gradient(ellipse at 50% 50%, rgba(10, 15, 36, 0.6), transparent 80%);
}

@keyframes scale-pulse {
    0%   { background-position: 0 0, 16px 0, -16px 0; }
    50%  { background-position: 0 8px, 16px 8px, -16px 8px; }
    100% { background-position: 0 0, 16px 0, -16px 0; }
}

/* ============================================================
   Masthead
   ============================================================ */
.masthead {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--masthead-height);
    z-index: 50;
    background: rgba(10, 15, 36, 0.85);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
}

.masthead-inner {
    height: var(--masthead-height);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(16px, 3vw, 40px);
    padding: 0 var(--gutter);
}

.masthead-logo {
    font-family: var(--serif);
    font-weight: 900;
    font-size: 22px;
    letter-spacing: -0.01em;
    color: var(--champagne-ivory);
    display: inline-flex;
    align-items: baseline;
    gap: 1px;
    line-height: 1;
}

.masthead-logo .logo-mark {
    color: var(--antiqued-gold);
    font-style: italic;
    font-weight: 900;
    font-size: 26px;
    margin-right: 1px;
}

.masthead-logo .logo-name {
    color: var(--champagne-ivory);
    font-weight: 700;
}

.masthead-logo .logo-news {
    color: var(--antiqued-gold);
    font-style: italic;
    font-weight: 700;
    margin-left: 6px;
    letter-spacing: 0;
}

.masthead-nav {
    display: flex;
    justify-content: center;
    gap: clamp(14px, 2.4vw, 32px);
}

.nav-link {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--steel-mist);
    position: relative;
    padding: 10px 2px;
    transition: color 0.4s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0; right: 100%;
    bottom: 6px;
    height: 1px;
    background: var(--antiqued-gold);
    transition: right 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link:hover,
.nav-link.is-current {
    color: var(--champagne-ivory);
}

.nav-link:hover::after,
.nav-link.is-current::after {
    right: 0;
}

.masthead-edition {
    text-align: right;
}

.edition-tag {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--antiqued-gold);
}

.masthead-rule {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--midnight-edge) 20%, var(--antiqued-gold) 50%, var(--midnight-edge) 80%, transparent);
    opacity: 0.6;
}

@media (max-width: 900px) {
    .masthead-nav { display: none; }
    .masthead-inner { grid-template-columns: auto 1fr; }
}

/* ============================================================
   Spread indicator (right rail, desktop)
   ============================================================ */
.spread-indicator {
    position: fixed;
    right: clamp(14px, 2vw, 28px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 40;
    pointer-events: auto;
}

.spread-indicator ol {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.spread-indicator li {
    display: grid;
    grid-template-columns: 14px 18px 1fr;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--midnight-edge);
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    transition: color 0.4s ease;
}

.spread-indicator .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--midnight-edge);
    border: 1px solid var(--midnight-edge);
    transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    justify-self: center;
}

.spread-indicator em {
    text-align: right;
    font-size: 13px;
    color: var(--midnight-edge);
    transition: color 0.4s ease;
}

.indicator-label {
    font-family: var(--sans);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: transparent;
    transition: color 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.spread-indicator li.active .dot {
    background: var(--antiqued-gold);
    border-color: var(--antiqued-gold);
    transform: scale(1.4);
    box-shadow: 0 0 0 4px rgba(201, 165, 92, 0.12);
}

.spread-indicator li.active em {
    color: var(--antiqued-gold);
}

.spread-indicator li.active .indicator-label,
.spread-indicator li:hover .indicator-label {
    color: var(--steel-mist);
    opacity: 1;
}

.spread-indicator li:hover .dot {
    background: var(--reef-cyan);
    border-color: var(--reef-cyan);
}

@media (max-width: 900px) {
    .spread-indicator { display: none; }
}

/* ============================================================
   Magazine container -- scroll snap
   ============================================================ */
.magazine {
    position: relative;
    z-index: 1;
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
}

.magazine::-webkit-scrollbar { display: none; }

.spread {
    position: relative;
    min-height: var(--spread-height);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: calc(var(--masthead-height) + clamp(24px, 4vh, 64px)) var(--gutter) clamp(40px, 6vh, 80px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (max-width: 768px) {
    .magazine { scroll-snap-type: y proximity; }
    .spread { min-height: auto; padding-bottom: 120px; padding-top: calc(var(--masthead-height) + 64px); }
}

/* ============================================================
   Reveal foundation
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity var(--content-fade-speed) ease,
                transform var(--content-fade-speed) cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: var(--reveal-delay, 0ms);
}

.spread.in-view .reveal {
    opacity: 1;
    transform: translateY(0);
}

.pull-rotate-left { --pull-rot: -2deg; --pull-rot-from: -5deg; }
.pull-rotate-right { --pull-rot: 2deg; --pull-rot-from: 5deg; }

.pull-quote.reveal {
    transform: translateX(-30px) rotate(var(--pull-rot-from, 5deg));
}

.spread.in-view .pull-quote.reveal {
    transform: translateX(0) rotate(var(--pull-rot, 0deg));
}

/* Animated horizontal rule */
.section-rule,
.cover-rule {
    position: relative;
    width: 100%;
    height: 1px;
    overflow: hidden;
}

.section-rule span,
.cover-rule span {
    display: block;
    height: 1px;
    width: 0;
    background: linear-gradient(90deg, var(--antiqued-gold), var(--midnight-edge) 60%, transparent);
    transition: width var(--border-draw-speed) cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 250ms;
}

.spread.in-view .section-rule span,
.spread.in-view .cover-rule span {
    width: 100%;
}

/* Lateral line decorative rule */
.lateral-line {
    width: 100%;
    height: 6px;
    background-image:
        linear-gradient(90deg, transparent 0%, var(--midnight-edge) 0% 12%, transparent 12% 14%, var(--midnight-edge) 14% 30%, transparent 30% 32%, var(--midnight-edge) 32% 60%, transparent 60% 62%, var(--midnight-edge) 62% 84%, transparent 84% 86%, var(--midnight-edge) 86% 100%);
    background-repeat: no-repeat;
    background-size: 0% 1px;
    background-position: left center;
    transition: background-size var(--border-draw-speed) cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 200ms;
    position: relative;
}

.lateral-line::after {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 50%;
    height: 0; border-top: 1px dotted rgba(201, 165, 92, 0.5);
    transform: translateY(-50%);
    width: 0;
    transition: width var(--border-draw-speed) cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 400ms;
}

.spread.in-view .lateral-line { background-size: 100% 1px; }
.spread.in-view .lateral-line::after { width: 100%; }

/* ============================================================
   Common section pieces
   ============================================================ */
.section-eyebrow {
    display: inline-block;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--antiqued-gold);
    margin-bottom: 16px;
}

.section-eyebrow.gold { color: var(--burnished-copper); }

.section-title,
.feature-headline,
.cover-headline,
.article-headline,
.archive-headline {
    font-family: var(--serif);
    color: var(--champagne-ivory);
    letter-spacing: -0.02em;
    line-height: 1.02;
}

.section-title {
    font-weight: 900;
    font-size: clamp(36px, 5vw, 72px);
    margin-bottom: 24px;
}

.section-title em,
.feature-headline em,
.archive-headline em,
.note-title em,
.cover-headline em,
.colophon-title em,
.ledger-title em,
.abyss-title em {
    font-style: italic;
    font-weight: 700;
    color: var(--antiqued-gold);
}

.lead-text {
    font-family: var(--sans);
    font-size: 20px;
    line-height: 1.65;
    color: var(--champagne-ivory);
    font-weight: 400;
    margin-bottom: 18px;
}

.lead-text + p,
.colophon-body p + p,
.feature-body p + p {
    color: var(--steel-mist);
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 1.7;
}

.article-kicker {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--burnished-copper);
    margin-bottom: 14px;
}

.article-byline {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--antiqued-gold);
    margin-top: 14px;
    margin-bottom: 16px;
}

/* ============================================================
   Pull quote
   ============================================================ */
.pull-quote {
    position: relative;
    padding: 18px 0 18px 28px;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 700;
    color: var(--champagne-ivory);
    transform-origin: top left;
}

.pull-quote p {
    font-size: clamp(22px, 2.4vw, 34px);
    line-height: 1.25;
    margin-bottom: 14px;
}

.pull-attribution {
    display: block;
    font-family: var(--sans);
    font-style: normal;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--antiqued-gold);
}

.pull-rule {
    position: absolute;
    left: 0; top: 0;
    width: 2px;
    height: 0;
    background: linear-gradient(to bottom, var(--antiqued-gold), var(--burnished-copper));
    transition: height calc(var(--border-draw-speed) * 0.8) cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 350ms;
}

.spread.in-view .pull-rule {
    height: 100%;
}

/* ============================================================
   Headline shimmer (hover)
   ============================================================ */
.headline-shimmer {
    background-image: linear-gradient(135deg,
        var(--champagne-ivory) 0%,
        var(--champagne-ivory) 38%,
        var(--antiqued-gold) 50%,
        var(--burnished-copper) 62%,
        var(--champagne-ivory) 78%,
        var(--champagne-ivory) 100%);
    background-size: 220% 220%;
    background-position: 100% 0%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: var(--champagne-ivory);
    transition: background-position 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                -webkit-text-fill-color 0.4s ease;
}

.headline-shimmer:hover {
    background-position: 0% 100%;
    -webkit-text-fill-color: transparent;
}

/* ============================================================
   SPREAD I :: COVER
   ============================================================ */
.spread-cover {
    color: var(--champagne-ivory);
}

.cover-grid {
    position: relative;
    z-index: 4;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto 1fr auto auto auto;
    grid-template-areas:
        "dl dl dl dl dl dl dl dl . . . ."
        "h  h  h  h  h  h  h  h  h  h  . ."
        "r  r  r  r  r  r  r  r  r  r  r r"
        "d  d  d  d  d  d  d  .  .  .  . ."
        "by by by by by by by by .  ft ft ft";
    column-gap: var(--gutter);
    row-gap: clamp(16px, 2vw, 28px);
    align-content: center;
    align-items: end;
}

.dateline {
    grid-area: dl;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--antiqued-gold);
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.dateline-sep { color: var(--midnight-edge); }
.dateline-issue { color: var(--burnished-copper); }
.dateline-edition { color: var(--steel-mist); }

.cover-headline {
    grid-area: h;
    font-weight: 900;
    font-size: clamp(64px, 10vw, 168px);
    line-height: 0.92;
    letter-spacing: -0.03em;
}

.cover-headline .headline-row {
    display: block;
}

.cover-headline .headline-italic {
    font-style: italic;
    font-weight: 700;
    color: var(--antiqued-gold);
    font-size: 0.78em;
    margin-top: 8px;
    letter-spacing: -0.02em;
}

.cover-headline .headline-italic em {
    color: var(--antiqued-gold);
    font-style: italic;
}

.cover-rule {
    grid-area: r;
}

.cover-deck {
    grid-area: d;
    font-family: var(--sans);
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.65;
    color: var(--steel-mist);
    max-width: 56ch;
}

.cover-byline {
    grid-area: by;
    display: flex;
    align-items: center;
    gap: 18px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.byline-tag { color: var(--champagne-ivory); }
.byline-credit { color: var(--steel-mist); }

.byline-rule {
    flex: 0 0 auto;
    width: 60px; height: 1px;
    background: var(--midnight-edge);
    position: relative;
}
.byline-rule::after {
    content: "";
    position: absolute; left: 0; top: 0;
    width: 0; height: 1px;
    background: var(--antiqued-gold);
    transition: width 1.4s ease;
    transition-delay: 800ms;
}
.spread.in-view .byline-rule::after { width: 100%; }

.cover-foot {
    grid-area: ft;
    justify-self: end;
    text-align: right;
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--antiqued-gold);
}

.foot-mark {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 900;
    color: var(--antiqued-gold);
    font-size: 18px;
    letter-spacing: 0;
}

.foot-arrow {
    font-size: 16px;
    color: var(--antiqued-gold);
    animation: arrow-drift 2.6s ease-in-out infinite;
}

@keyframes arrow-drift {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(6px); opacity: 1; }
}

@media (max-width: 768px) {
    .cover-grid {
        grid-template-columns: 1fr;
        grid-template-areas: "dl" "h" "r" "d" "by" "ft";
        row-gap: 18px;
    }
    .cover-headline { font-size: 13vw; }
    .cover-foot { justify-self: start; }
}

/* ============================================================
   Cover collage
   ============================================================ */
.collage,
.collage-cover {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.collage-base {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 35%, rgba(78, 205, 196, 0.13), transparent 55%),
        radial-gradient(ellipse at 75% 70%, rgba(201, 165, 92, 0.09), transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(184, 115, 51, 0.07), transparent 50%),
        linear-gradient(135deg, #0A0F24 0%, #121830 45%, #1A2340 100%);
    filter: saturate(0.6) brightness(0.85);
    mix-blend-mode: normal;
}

.collage-base::after {
    content: "";
    position: absolute; inset: 0;
    background:
        repeating-linear-gradient(45deg, rgba(232, 220, 200, 0.02) 0 2px, transparent 2px 4px),
        radial-gradient(circle at 50% 50%, transparent 30%, rgba(10, 15, 36, 0.7) 100%);
}

.collage-frag {
    position: absolute;
    border: 2px solid var(--antiqued-gold);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
    filter: saturate(0.3) brightness(0.6) sepia(0.2);
}

.frag-1 {
    width: 22vw; height: 28vh;
    top: 12%; right: 6%;
    transform: rotate(4deg);
    background:
        linear-gradient(180deg, rgba(78, 205, 196, 0.25), rgba(46, 74, 122, 0.55)),
        repeating-linear-gradient(135deg, rgba(232, 220, 200, 0.1) 0 4px, transparent 4px 8px),
        radial-gradient(circle at 30% 40%, rgba(232, 220, 200, 0.18), transparent 60%),
        var(--twilight-panel);
    clip-path: polygon(6% 0, 100% 4%, 96% 92%, 0 100%);
}

.frag-2 {
    width: 14vw; height: 18vh;
    bottom: 14%; left: 7%;
    transform: rotate(-5deg);
    background:
        linear-gradient(160deg, rgba(184, 115, 51, 0.4), rgba(26, 35, 64, 0.7)),
        radial-gradient(circle at 60% 30%, rgba(201, 165, 92, 0.35), transparent 70%),
        var(--deep-indigo);
    clip-path: polygon(0 8%, 92% 0, 100% 96%, 8% 100%);
}

.frag-3 {
    width: 17vw; height: 16vh;
    top: 60%; left: 38%;
    transform: rotate(3deg);
    background:
        linear-gradient(120deg, rgba(46, 74, 122, 0.7), rgba(78, 205, 196, 0.18)),
        radial-gradient(circle at 70% 70%, rgba(232, 220, 200, 0.15), transparent 60%),
        var(--twilight-panel);
    clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 88%);
    opacity: 0.85;
}

.collage-shape {
    position: absolute;
    background: var(--midnight-edge);
    opacity: 0.4;
}

.shape-circle {
    width: 30vmin; height: 30vmin;
    border-radius: 50%;
    top: -8vmin; left: -8vmin;
    background: radial-gradient(circle, rgba(46, 74, 122, 0.6), transparent 70%);
    opacity: 0.55;
}

.shape-rect {
    width: 18vw; height: 30vh;
    bottom: -8vh; right: 18%;
    transform: rotate(-7deg);
    background: linear-gradient(180deg, rgba(46, 74, 122, 0.4), rgba(46, 74, 122, 0.05));
    opacity: 0.5;
}

.shape-diag {
    position: absolute;
    width: 60vw; height: 1px;
    top: 38%; left: -10vw;
    transform: rotate(-15deg);
    background: linear-gradient(90deg, transparent, var(--antiqued-gold), transparent);
    opacity: 0.5;
}

.collage-typography {
    position: absolute;
    font-family: var(--serif);
    font-weight: 900;
    color: var(--champagne-ivory);
    opacity: 0.13;
    letter-spacing: -0.04em;
    pointer-events: none;
    user-select: none;
}

.typography-large {
    font-size: min(280px, 22vw);
    bottom: -2vh; right: -1vw;
    line-height: 0.85;
}

.typography-small {
    font-style: italic;
    font-size: min(180px, 14vw);
    top: 8vh; left: -1vw;
    color: var(--antiqued-gold);
    opacity: 0.18;
}

.fin-ornament {
    position: absolute;
    pointer-events: none;
    opacity: 0.85;
}

.fin-cover {
    width: 38vmin; height: auto;
    top: 18%; right: 10%;
    transform: rotate(-12deg);
    opacity: 0.45;
}

.fin-path {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    transition: stroke-dashoffset 2s ease;
    transition-delay: 700ms;
}

.spread.in-view .fin-path {
    stroke-dashoffset: 0;
}

/* ============================================================
   SPREAD II :: DISPATCH
   ============================================================ */
.dispatch-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto auto auto;
    grid-template-areas:
        "sec sec sec sec sec sec sec sec sec sec sec sec"
        "h   h   h   h   h   h   img img img img img img"
        "b   b   b   b   b   b   b   pq  pq  pq  pq  pq"
        "m   m   m   m   m   m   m   .   .   .   .   .";
    gap: clamp(20px, 2vw, 36px) var(--gutter);
}

.zone-section { grid-area: sec; }
.zone-headline { grid-area: h; align-self: center; }
.zone-collage { grid-area: img; align-self: center; }
.zone-body { grid-area: b; }
.zone-pullquote { grid-area: pq; align-self: center; }
.zone-meta { grid-area: m; }

.article-headline {
    font-weight: 900;
    font-size: clamp(36px, 4.4vw, 68px);
    line-height: 1.04;
    margin-bottom: 14px;
}

.meta-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-top: 1px solid var(--midnight-edge);
}

.meta-list li {
    flex: 1 1 0;
    padding: 14px 22px 14px 0;
    border-right: 1px solid var(--midnight-edge);
    min-width: 160px;
}

.meta-list li:last-child {
    border-right: 0;
}

.meta-key {
    display: block;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--antiqued-gold);
    margin-bottom: 4px;
}

.meta-val {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 700;
    color: var(--champagne-ivory);
    font-size: 18px;
}

/* Mini collage */
.collage-mini {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--midnight-edge);
    overflow: hidden;
}

.mini-base {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(78, 205, 196, 0.18), transparent 55%),
        radial-gradient(ellipse at 75% 70%, rgba(201, 165, 92, 0.18), transparent 55%),
        linear-gradient(150deg, var(--twilight-panel), var(--deep-indigo));
}

.mini-base::after {
    content: "";
    position: absolute; inset: 0;
    background:
        repeating-linear-gradient(45deg, rgba(232, 220, 200, 0.03) 0 3px, transparent 3px 6px),
        radial-gradient(ellipse at center, transparent 30%, rgba(10, 15, 36, 0.55) 100%);
}

.mini-frag {
    position: absolute;
    border: 1.5px solid var(--antiqued-gold);
    filter: saturate(0.3) brightness(0.7);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}

.mini-frag-a {
    width: 38%; height: 50%;
    top: 14%; right: 8%;
    transform: rotate(5deg);
    background:
        linear-gradient(150deg, rgba(184, 115, 51, 0.45), rgba(26, 35, 64, 0.7)),
        radial-gradient(circle at 70% 30%, rgba(232, 220, 200, 0.18), transparent 70%);
    clip-path: polygon(6% 0, 100% 5%, 96% 95%, 0 100%);
}

.mini-frag-b {
    width: 32%; height: 38%;
    bottom: 10%; left: 8%;
    transform: rotate(-4deg);
    background:
        linear-gradient(120deg, rgba(46, 74, 122, 0.7), rgba(78, 205, 196, 0.2)),
        radial-gradient(circle at 30% 70%, rgba(232, 220, 200, 0.18), transparent 70%);
    clip-path: polygon(0 8%, 95% 0, 100% 92%, 5% 100%);
}

.mini-shape {
    position: absolute;
    opacity: 0.4;
}

.mini-circle {
    width: 32%; aspect-ratio: 1;
    border-radius: 50%;
    top: 50%; left: 40%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(46, 74, 122, 0.7), transparent 70%);
}

.mini-rect {
    width: 60%; height: 1px;
    top: 36%; left: 20%;
    background: linear-gradient(90deg, transparent, var(--antiqued-gold), transparent);
    transform: rotate(-6deg);
    opacity: 0.6;
}

.mini-type {
    position: absolute;
    font-family: var(--serif);
    font-weight: 900;
    color: var(--champagne-ivory);
    opacity: 0.18;
    bottom: -10%; right: -2%;
    font-size: min(160px, 36%);
    line-height: 0.85;
}

.mini-caption {
    position: absolute;
    bottom: 12px; left: 14px;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--antiqued-gold);
}

@media (max-width: 768px) {
    .dispatch-grid {
        grid-template-columns: 1fr;
        grid-template-areas: "sec" "h" "img" "b" "pq" "m";
    }
    .meta-list li { min-width: 120px; padding-right: 12px; }
}

/* ============================================================
   SPREAD III :: FEATURE
   ============================================================ */
.feature-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto auto auto;
    grid-template-areas:
        "img img img img img img sec sec sec sec sec sec"
        "img img img img img img b   b   b   b   b   b"
        "pq  pq  pq  pq  pq  pq  b   b   b   b   b   b"
        "stats stats stats stats stats stats stats stats stats stats stats stats";
    gap: clamp(20px, 2vw, 36px) var(--gutter);
    align-items: start;
}

.feature-grid .zone-image { grid-area: img; }
.feature-grid .feature-section { grid-area: sec; align-self: end; }
.feature-grid .feature-body { grid-area: b; }
.feature-grid .feature-pull { grid-area: pq; }
.feature-grid .zone-stats { grid-area: stats; }

.feature-headline {
    font-weight: 900;
    font-size: clamp(40px, 5.4vw, 92px);
    line-height: 0.98;
    margin-bottom: 18px;
}

.feature-headline em {
    font-style: italic;
}

.collage-feature {
    position: relative;
    width: 100%;
    aspect-ratio: 1.05 / 1;
    border: 1px solid var(--midnight-edge);
    overflow: hidden;
    background: var(--deep-indigo);
}

.feature-base {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 35% 25%, rgba(78, 205, 196, 0.25), transparent 55%),
        radial-gradient(ellipse at 75% 80%, rgba(201, 165, 92, 0.18), transparent 55%),
        radial-gradient(ellipse at 60% 55%, rgba(184, 115, 51, 0.12), transparent 65%),
        linear-gradient(140deg, var(--abyss-navy) 0%, var(--twilight-panel) 100%);
    filter: saturate(0.6) brightness(0.85);
}

.feature-base::after {
    content: "";
    position: absolute; inset: 0;
    background:
        repeating-radial-gradient(circle at 20% 20%, rgba(232, 220, 200, 0.04) 0 1px, transparent 1px 6px),
        radial-gradient(circle at 50% 50%, transparent 30%, rgba(10, 15, 36, 0.7) 100%);
}

.feature-frag {
    position: absolute;
    border: 2px solid var(--antiqued-gold);
    filter: saturate(0.3) brightness(0.6) sepia(0.15);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
}

.feature-frag-1 {
    width: 56%; height: 34%;
    top: 8%; left: 10%;
    transform: rotate(-4deg);
    background:
        linear-gradient(150deg, rgba(46, 74, 122, 0.7), rgba(78, 205, 196, 0.2)),
        radial-gradient(circle at 70% 30%, rgba(232, 220, 200, 0.22), transparent 70%);
    clip-path: polygon(4% 0, 100% 6%, 96% 94%, 0 100%);
}

.feature-frag-2 {
    width: 40%; height: 30%;
    bottom: 14%; right: 6%;
    transform: rotate(5deg);
    background:
        linear-gradient(120deg, rgba(184, 115, 51, 0.45), rgba(26, 35, 64, 0.65)),
        radial-gradient(circle at 30% 70%, rgba(201, 165, 92, 0.3), transparent 70%);
    clip-path: polygon(8% 0, 100% 4%, 92% 100%, 0 96%);
}

.feature-frag-3 {
    width: 28%; height: 22%;
    top: 50%; left: 22%;
    transform: rotate(7deg);
    background:
        linear-gradient(160deg, rgba(78, 205, 196, 0.25), rgba(26, 35, 64, 0.7));
    clip-path: polygon(0 6%, 96% 0, 100% 96%, 6% 100%);
}

.feature-shape {
    position: absolute;
    background: var(--midnight-edge);
    opacity: 0.4;
}

.feature-shape-1 {
    width: 36%; aspect-ratio: 1;
    border-radius: 50%;
    top: 50%; right: -10%;
    transform: translate(0, -50%);
    background: radial-gradient(circle, rgba(46, 74, 122, 0.7), transparent 70%);
    opacity: 0.55;
}

.feature-shape-2 {
    width: 70%; height: 1px;
    top: 42%; left: 0%;
    background: linear-gradient(90deg, transparent, var(--antiqued-gold), transparent);
    transform: rotate(-8deg);
    opacity: 0.6;
}

.feature-type-large {
    position: absolute;
    font-family: var(--serif);
    font-weight: 900;
    font-style: italic;
    color: var(--champagne-ivory);
    opacity: 0.15;
    font-size: min(360px, 50%);
    line-height: 0.85;
    top: -8%; right: -4%;
}

.feature-type-medium {
    position: absolute;
    bottom: 16px; left: 16px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--antiqued-gold);
}

.eye-spot {
    position: absolute;
    bottom: 6%; right: 6%;
    width: 22%; height: auto;
}

.eye-spot circle {
    transform-origin: 50% 50%;
    animation: eyepulse 6s ease-in-out infinite;
}

@keyframes eyepulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

.stat-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2vw, 36px);
    padding-top: 18px;
}

.stat-figure {
    display: block;
    font-family: var(--serif);
    font-weight: 900;
    font-size: clamp(40px, 4.5vw, 64px);
    color: var(--antiqued-gold);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 8px;
    font-feature-settings: 'tnum' 1, 'lnum' 1;
}

.stat-label {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--steel-mist);
}

@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: 1fr;
        grid-template-areas: "sec" "img" "b" "pq" "stats";
    }
    .stat-list { grid-template-columns: 1fr; gap: 20px; }
}

/* ============================================================
   SPREAD IV :: ABYSS
   ============================================================ */
.abyss-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto 1fr auto;
    grid-template-areas:
        "sec sec sec sec sec sec sec sec sec . . pq"
        "n   n   n   n   n   n   n   pq  pq  pq pq pq"
        "n   n   n   n   n   n   n   dec dec dec dec dec";
    gap: clamp(20px, 2vw, 36px) var(--gutter);
}

.abyss-grid .abyss-section { grid-area: sec; }
.abyss-grid .note-list { grid-area: n; }
.abyss-grid .abyss-pull { grid-area: pq; align-self: center; }
.abyss-grid .abyss-decor { grid-area: dec; align-self: end; justify-self: end; }

.abyss-title {
    font-size: clamp(36px, 4.6vw, 64px);
}

.note-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 2vw, 32px);
    counter-reset: note;
}

.note {
    position: relative;
    padding: 18px 0 18px 56px;
    border-top: 1px solid var(--midnight-edge);
    min-height: 96px;
}

.note:first-child,
.note:nth-child(2) {
    border-top: 1px solid var(--midnight-edge);
}

.note-mark {
    position: absolute;
    left: 0; top: 18px;
    width: 32px; height: 32px;
    display: inline-block;
}

.note-mark svg { width: 100%; height: 100%; }

.note-title {
    font-family: var(--serif);
    font-weight: 700;
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.15;
    color: var(--champagne-ivory);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.note-body {
    font-family: var(--sans);
    font-size: 15px;
    color: var(--steel-mist);
    line-height: 1.6;
}

.fin-abyss {
    width: 200px; height: auto;
    opacity: 0.5;
    transform: scaleX(-1) rotate(8deg);
}

@media (max-width: 900px) {
    .abyss-grid {
        grid-template-columns: 1fr;
        grid-template-areas: "sec" "n" "pq" "dec";
    }
    .note-list { grid-template-columns: 1fr; }
}

/* ============================================================
   SPREAD V :: LEDGER
   ============================================================ */
.ledger-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto auto;
    grid-template-areas:
        "sec sec sec sec sec sec sec sec sec . . ."
        "tbl tbl tbl tbl tbl tbl tbl tbl pq  pq  pq  pq"
        "tbl tbl tbl tbl tbl tbl tbl tbl as  as  as  as";
    gap: clamp(20px, 2.4vw, 40px) var(--gutter);
    align-items: start;
}

.ledger-grid .zone-section { grid-area: sec; }
.ledger-grid .ledger-pullquote { grid-area: pq; }
.ledger-grid .ledger-table { grid-area: tbl; }
.ledger-grid .ledger-aside { grid-area: as; align-self: end; }

.ledger-title {
    font-size: clamp(40px, 5vw, 72px);
}

.ledger-table {
    width: 100%;
    font-family: var(--sans);
    color: var(--steel-mist);
    border-collapse: separate;
    border-spacing: 0;
}

.ledger-caption {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--antiqued-gold);
    text-align: left;
    padding-bottom: 14px;
    caption-side: top;
}

.ledger-table thead th {
    text-align: left;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--antiqued-gold);
    padding: 14px 18px;
    border-bottom: 1px solid var(--midnight-edge);
    border-top: 1px solid var(--midnight-edge);
}

.ledger-table tbody th,
.ledger-table tbody td {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(46, 74, 122, 0.5);
    font-size: 15px;
    text-align: left;
    vertical-align: middle;
}

.ledger-table tbody th {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 700;
    color: var(--champagne-ivory);
    font-size: 18px;
}

.ledger-table tbody tr:last-child th,
.ledger-table tbody tr:last-child td {
    border-bottom: 1px solid var(--midnight-edge);
}

.ledger-table tbody tr {
    transition: background 0.4s ease;
}

.ledger-table tbody tr:hover {
    background: rgba(26, 35, 64, 0.5);
}

.ledger-table .num {
    text-align: right;
    font-feature-settings: 'tnum' 1, 'lnum' 1;
    font-weight: 300;
    letter-spacing: 0.01em;
    font-variant-numeric: tabular-nums;
}

.ledger-table thead th.num { text-align: right; }

.positive { color: var(--reef-cyan); font-weight: 600; }
.negative { color: var(--coral-signal); font-weight: 600; }

.ledger-aside {
    background: rgba(26, 35, 64, 0.55);
    padding: 26px 28px;
    border: 1px solid var(--midnight-edge);
    position: relative;
}

.ledger-aside::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 2px;
    background: var(--antiqued-gold);
    transition: width var(--border-draw-speed) ease;
    transition-delay: 600ms;
}

.spread.in-view .ledger-aside::before { width: 100%; }

.aside-title {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--antiqued-gold);
    margin-bottom: 12px;
}

.ledger-aside p {
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.65;
    color: var(--steel-mist);
    margin-bottom: 10px;
}

.aside-foot {
    margin-top: 14px;
    font-family: var(--serif);
    font-style: italic;
    color: var(--antiqued-gold);
    font-size: 14px;
    letter-spacing: 0.05em;
}

.aside-mark {
    font-weight: 900;
}

@media (max-width: 900px) {
    .ledger-grid {
        grid-template-columns: 1fr;
        grid-template-areas: "sec" "pq" "tbl" "as";
    }
    .ledger-table thead th,
    .ledger-table tbody th,
    .ledger-table tbody td {
        padding: 12px 10px;
        font-size: 13px;
    }
    .ledger-table tbody th { font-size: 15px; }
}

/* ============================================================
   SPREAD VI :: ARCHIVE
   ============================================================ */
.archive-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto 1fr;
    grid-template-areas:
        "sec sec sec sec sec sec sec sec sec sec sec sec"
        "c1  c1  c1  c2  c2  c2  c3  c3  c3  c4  c4  c4";
    gap: clamp(28px, 3vw, 56px) var(--gutter);
}

.archive-grid .zone-section { grid-area: sec; }
.archive-grid .archive-card:nth-of-type(1) { grid-area: c1; }
.archive-grid .archive-card:nth-of-type(2) { grid-area: c2; }
.archive-grid .archive-card:nth-of-type(3) { grid-area: c3; }
.archive-grid .archive-card:nth-of-type(4) { grid-area: c4; }

.archive-card {
    position: relative;
    padding: 0 0 22px;
    cursor: pointer;
    transition: transform 0.5s ease;
}

.archive-card::before {
    content: "";
    position: absolute;
    left: 0; right: 0;
    bottom: 0; height: 1px;
    background: linear-gradient(90deg, var(--antiqued-gold), var(--midnight-edge), transparent);
    transform-origin: left;
    transform: scaleX(0);
    transition: transform var(--border-draw-speed) cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 600ms;
}

.spread.in-view .archive-card::before { transform: scaleX(1); }

.archive-card:hover {
    transform: translateY(-4px);
}

.archive-card:hover .archive-frame {
    border-color: var(--antiqued-gold);
}

.archive-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border: 1px solid var(--midnight-edge);
    overflow: hidden;
    margin-bottom: 18px;
    transition: border-color 0.4s ease;
}

.archive-base {
    position: absolute; inset: 0;
    filter: saturate(0.45) brightness(0.85);
}

.archive-base-1 {
    background:
        radial-gradient(ellipse at 30% 30%, rgba(78, 205, 196, 0.3), transparent 55%),
        radial-gradient(ellipse at 80% 80%, rgba(201, 165, 92, 0.18), transparent 55%),
        linear-gradient(150deg, var(--abyss-navy), var(--twilight-panel));
}

.archive-base-2 {
    background:
        radial-gradient(ellipse at 50% 25%, rgba(184, 115, 51, 0.3), transparent 55%),
        radial-gradient(ellipse at 30% 80%, rgba(46, 74, 122, 0.55), transparent 55%),
        linear-gradient(160deg, var(--deep-indigo), var(--abyss-navy));
}

.archive-base-3 {
    background:
        radial-gradient(ellipse at 60% 35%, rgba(46, 74, 122, 0.6), transparent 55%),
        radial-gradient(ellipse at 30% 75%, rgba(78, 205, 196, 0.18), transparent 55%),
        linear-gradient(135deg, var(--abyss-navy), var(--twilight-panel));
}

.archive-base-4 {
    background:
        radial-gradient(ellipse at 70% 20%, rgba(201, 165, 92, 0.22), transparent 55%),
        radial-gradient(ellipse at 30% 70%, rgba(184, 115, 51, 0.18), transparent 55%),
        linear-gradient(140deg, var(--abyss-navy), var(--deep-indigo));
}

.archive-base::after {
    content: "";
    position: absolute; inset: 0;
    background:
        repeating-linear-gradient(45deg, rgba(232, 220, 200, 0.03) 0 2px, transparent 2px 4px),
        radial-gradient(ellipse at center, transparent 30%, rgba(10, 15, 36, 0.65) 100%);
}

.archive-frag {
    position: absolute;
    border: 1.5px solid var(--antiqued-gold);
    filter: saturate(0.3) brightness(0.7);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}

.archive-frag-1 {
    width: 50%; height: 36%;
    top: 14%; right: 8%;
    transform: rotate(4deg);
    background:
        linear-gradient(150deg, rgba(46, 74, 122, 0.7), rgba(78, 205, 196, 0.25)),
        radial-gradient(circle at 70% 30%, rgba(232, 220, 200, 0.18), transparent 70%);
    clip-path: polygon(6% 0, 100% 4%, 96% 94%, 0 100%);
}

.archive-frag-2 {
    width: 44%; height: 32%;
    bottom: 16%; left: 10%;
    transform: rotate(-5deg);
    background:
        linear-gradient(120deg, rgba(184, 115, 51, 0.45), rgba(26, 35, 64, 0.65)),
        radial-gradient(circle at 30% 70%, rgba(201, 165, 92, 0.3), transparent 70%);
    clip-path: polygon(0 5%, 95% 0, 100% 92%, 5% 100%);
}

.archive-frag-3 {
    width: 56%; height: 30%;
    top: 22%; left: 12%;
    transform: rotate(-3deg);
    background:
        linear-gradient(140deg, rgba(78, 205, 196, 0.22), rgba(26, 35, 64, 0.7));
    clip-path: polygon(4% 0, 100% 8%, 96% 100%, 0 92%);
}

.archive-frag-4 {
    width: 42%; height: 36%;
    bottom: 12%; right: 10%;
    transform: rotate(6deg);
    background:
        linear-gradient(160deg, rgba(201, 165, 92, 0.35), rgba(26, 35, 64, 0.7)),
        radial-gradient(circle at 50% 50%, rgba(232, 220, 200, 0.15), transparent 70%);
    clip-path: polygon(0 6%, 92% 0, 100% 96%, 8% 100%);
}

.archive-num {
    position: absolute;
    bottom: 12px; right: 14px;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 900;
    font-size: 24px;
    color: var(--antiqued-gold);
    letter-spacing: 0.02em;
    z-index: 2;
}

.archive-kicker {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--burnished-copper);
    margin-bottom: 8px;
}

.archive-headline {
    font-weight: 900;
    font-size: clamp(20px, 1.8vw, 28px);
    line-height: 1.1;
    margin-bottom: 10px;
}

.archive-deck {
    font-family: var(--sans);
    font-size: 14px;
    color: var(--steel-mist);
    line-height: 1.6;
    margin-bottom: 12px;
}

.archive-meta {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--antiqued-gold);
}

@media (max-width: 1100px) {
    .archive-grid {
        grid-template-areas:
            "sec sec sec sec sec sec sec sec sec sec sec sec"
            "c1  c1  c1  c1  c1  c1  c2  c2  c2  c2  c2  c2"
            "c3  c3  c3  c3  c3  c3  c4  c4  c4  c4  c4  c4";
    }
}

@media (max-width: 700px) {
    .archive-grid {
        grid-template-columns: 1fr;
        grid-template-areas: "sec" "c1" "c2" "c3" "c4";
    }
}

/* ============================================================
   SPREAD VII :: COLOPHON
   ============================================================ */
.colophon-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto auto auto;
    grid-template-areas:
        "sec sec sec sec sec sec sec sec sec sec sec sec"
        "b   b   b   b   b   b   b   st  st  st  st  st"
        "co  co  co  co  co  co  co  co  co  co  co  co"
        "ft  ft  ft  ft  ft  ft  ft  ft  ft  ft  ft  ft";
    gap: clamp(20px, 2vw, 36px) var(--gutter);
}

.colophon-grid .zone-section { grid-area: sec; }
.colophon-grid .colophon-body { grid-area: b; }
.colophon-grid .zone-staff { grid-area: st; }
.colophon-grid .zone-correspond { grid-area: co; }
.colophon-grid .colophon-foot { grid-area: ft; }

.colophon-title {
    font-size: clamp(36px, 4.6vw, 64px);
}

.staff-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.staff-list li {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(46, 74, 122, 0.6);
    align-items: baseline;
}

.staff-list li:first-child { border-top: 1px solid var(--midnight-edge); }

.staff-role {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--antiqued-gold);
}

.staff-name {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 700;
    color: var(--champagne-ivory);
    font-size: 18px;
}

.zone-correspond .aside-title {
    margin-top: 8px;
}

.aside-text {
    font-family: var(--sans);
    font-size: 14px;
    color: var(--steel-mist);
    margin-bottom: 16px;
}

.correspond-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px var(--gutter);
}

.form-row {
    display: block;
    position: relative;
}

.form-row-area {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--antiqued-gold);
    margin-bottom: 6px;
}

.form-row input,
.form-row textarea {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--midnight-edge);
    padding: 8px 0 10px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 17px;
    color: var(--champagne-ivory);
    transition: border-color 0.4s ease;
    resize: none;
    outline: none;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: rgba(184, 196, 214, 0.4);
    font-style: italic;
}

.form-row input:hover,
.form-row textarea:hover {
    border-bottom-color: var(--antiqued-gold);
}

.form-row input:focus,
.form-row textarea:focus {
    border-bottom-color: var(--antiqued-gold);
}

.form-send {
    grid-column: 1 / -1;
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    padding: 12px 22px;
    background: transparent;
    border: 1px solid var(--midnight-edge);
    color: var(--champagne-ivory);
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s ease, color 0.4s ease;
}

.form-send::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--iridescence);
    background-size: 300% 300%;
    background-position: 0% 50%;
    opacity: 0;
    transition: opacity 0.4s ease, background-position 0.8s ease;
    z-index: -1;
}

.form-send:hover {
    color: var(--abyss-navy);
    border-color: var(--antiqued-gold);
}

.form-send:hover::before {
    opacity: 1;
    background-position: 100% 50%;
}

.send-arrow { font-size: 14px; }

.form-status {
    grid-column: 1 / -1;
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: var(--reef-cyan);
    min-height: 18px;
    margin-top: 6px;
}

.colophon-foot {
    border-top: 1px solid var(--midnight-edge);
    padding-top: 24px;
    margin-top: 16px;
}

.foot-rule {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--antiqued-gold), var(--midnight-edge), transparent);
    transform-origin: left;
    transform: scaleX(0);
    transition: transform var(--border-draw-speed) cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 400ms;
    margin-bottom: 22px;
}

.spread.in-view .foot-rule { transform: scaleX(1); }

.foot-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--steel-mist);
}

.colophon-foot .foot-mark {
    font-family: var(--serif);
    font-style: italic;
    color: var(--antiqued-gold);
    font-size: 22px;
    letter-spacing: 0;
}

@media (max-width: 900px) {
    .colophon-grid {
        grid-template-columns: 1fr;
        grid-template-areas: "sec" "b" "st" "co" "ft";
    }
    .correspond-form { grid-template-columns: 1fr; }
}

/* ============================================================
   Up to cover button
   ============================================================ */
.up-to-cover {
    position: fixed;
    right: clamp(18px, 2.5vw, 32px);
    bottom: clamp(20px, 3vh, 36px);
    z-index: 60;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(10, 15, 36, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--midnight-edge);
    color: var(--champagne-ivory);
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.4s ease, color 0.4s ease;
}

.up-to-cover.is-shown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.up-to-cover:hover {
    border-color: var(--antiqued-gold);
    color: var(--antiqued-gold);
}

.up-mark { font-size: 14px; color: var(--antiqued-gold); }

/* ============================================================
   Reveal delay tiers (cascading order)
   ============================================================ */
.reveal[data-reveal-order="1"] { --reveal-delay: 0ms; }
.reveal[data-reveal-order="2"] { --reveal-delay: 200ms; }
.reveal[data-reveal-order="3"] { --reveal-delay: 400ms; }
.reveal[data-reveal-order="4"] { --reveal-delay: 600ms; }
.reveal[data-reveal-order="5"] { --reveal-delay: 800ms; }
.reveal[data-reveal-order="6"] { --reveal-delay: 1000ms; }
