/* concurrent.day — Victorian almanac × Bauhaus Futura
   Strict monochrome (#0E0E0C / #F2EBD8) + vermilion #C8341A used 7× total. */

:root {
    --press-black: #0E0E0C;
    --almanac-cream: #F2EBD8;
    --inner-leaf: #E8DFC4;
    --halftone: #7A746A;
    --iron-gall: #3B3631;
    --vermilion: #C8341A;

    --gutter-w: clamp(48px, 6vw, 96px);
    --plate-inset: clamp(18px, 2.4vw, 32px);
    --running-head-h: 28px;
    --folio-h: 28px;

    --font-display: "Big Shoulders Display", "Futura", "Jost", sans-serif;
    --font-body: "Jost", "Futura", system-ui, sans-serif;
    --font-fell: "IM Fell English SC", "Lora", Georgia, serif;
    --font-fell-it: "IM Fell DW Pica SC", "IM Fell English SC", Georgia, serif;
    --font-mono: "JetBrains Mono", "Space Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--almanac-cream);
    color: var(--press-black);
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

a { color: inherit; text-decoration: underline; text-decoration-thickness: 0.5px; text-underline-offset: 2px; }

.almanac {
    display: block;
    width: 100%;
}

/* ───────── Spread (the 100vh leaf-pair) ───────── */
.spread {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    background: var(--almanac-cream);
    display: grid;
    grid-template-columns: 1fr var(--gutter-w) 1fr;
    grid-template-rows: var(--running-head-h) 1fr var(--folio-h);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
    isolation: isolate;
}

.spread + .spread { border-top: 1px solid rgba(14,14,12,0.08); }

/* paper noise */
.paper-noise {
    position: absolute; inset: 0;
    pointer-events: none; z-index: 1;
    background:
        radial-gradient(ellipse at 20% 10%, rgba(59,54,49,0.04), transparent 60%),
        radial-gradient(ellipse at 85% 80%, rgba(59,54,49,0.05), transparent 65%);
    mix-blend-mode: multiply;
}
.paper-noise::after {
    content: "";
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 0.055  0 0 0 0 0.055  0 0 0 0 0.047  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    opacity: 0.06;
    mix-blend-mode: multiply;
}

/* foxing spots */
.foxing {
    position: absolute; inset: 0;
    z-index: 1; pointer-events: none;
    background:
        radial-gradient(circle 60px at 12% 22%, rgba(59,54,49,0.10), transparent 70%),
        radial-gradient(circle 90px at 78% 14%, rgba(59,54,49,0.08), transparent 70%),
        radial-gradient(circle 70px at 28% 78%, rgba(59,54,49,0.09), transparent 70%),
        radial-gradient(circle 110px at 88% 64%, rgba(59,54,49,0.07), transparent 70%),
        radial-gradient(circle 50px at 60% 40%, rgba(59,54,49,0.07), transparent 70%),
        radial-gradient(circle 80px at 6% 60%, rgba(59,54,49,0.06), transparent 70%),
        radial-gradient(circle 70px at 50% 92%, rgba(59,54,49,0.06), transparent 70%);
}

/* plate mark — the press-bed impression */
.plate-mark {
    position: absolute;
    inset: var(--plate-inset);
    z-index: 2;
    pointer-events: none;
    border: 1px solid rgba(14,14,12,0.18);
    box-shadow:
        inset 0 0 0 1px rgba(14,14,12,0.05),
        inset 0 0 14px rgba(14,14,12,0.04);
}

/* fleuron border (animated draw-on per spread) */
.fleuron-border {
    position: absolute;
    inset: calc(var(--plate-inset) + 6px);
    z-index: 3;
    pointer-events: none;
    border: 0.5px solid rgba(14,14,12,0.0);
    background:
        repeating-linear-gradient(90deg, transparent 0 8px, rgba(14,14,12,0.55) 8px 9px, transparent 9px 14px) top/100% 1px no-repeat,
        repeating-linear-gradient(90deg, transparent 0 8px, rgba(14,14,12,0.55) 8px 9px, transparent 9px 14px) bottom/100% 1px no-repeat,
        repeating-linear-gradient(0deg, transparent 0 8px, rgba(14,14,12,0.55) 8px 9px, transparent 9px 14px) left/1px 100% no-repeat,
        repeating-linear-gradient(0deg, transparent 0 8px, rgba(14,14,12,0.55) 8px 9px, transparent 9px 14px) right/1px 100% no-repeat;
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 900ms cubic-bezier(.65,.05,.36,1);
}
.spread.is-active .fleuron-border {
    transform: scaleY(1);
}

.fleuron-border--ornate {
    border: 1px solid var(--press-black);
    background:
        repeating-linear-gradient(90deg, var(--press-black) 0 1px, transparent 1px 6px) top/100% 6px no-repeat,
        repeating-linear-gradient(90deg, var(--press-black) 0 1px, transparent 1px 6px) bottom/100% 6px no-repeat,
        repeating-linear-gradient(0deg, var(--press-black) 0 1px, transparent 1px 6px) left/6px 100% no-repeat,
        repeating-linear-gradient(0deg, var(--press-black) 0 1px, transparent 1px 6px) right/6px 100% no-repeat;
}

/* the binding gutter */
.gutter {
    grid-column: 2;
    grid-row: 1 / 4;
    z-index: 4;
    position: relative;
    background:
        linear-gradient(90deg, rgba(232,223,196,1) 0%, rgba(232,223,196,0.4) 30%, rgba(232,223,196,0) 50%, rgba(232,223,196,0.4) 70%, rgba(232,223,196,1) 100%);
}
.gutter::before {
    content: "";
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    width: 1px;
    background: var(--press-black);
    box-shadow:
        -4px 0 4px -2px rgba(232,223,196,0.9),
         4px 0 4px -2px rgba(232,223,196,0.9);
    transform: translateX(-0.5px);
}

/* running head & folio */
.running-head {
    grid-row: 1;
    align-self: center;
    z-index: 5;
    font-family: var(--font-fell);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--iron-gall);
    padding: 0 calc(var(--plate-inset) + 18px);
}
.running-head--left  { grid-column: 1; justify-self: start; }
.running-head--right { grid-column: 3; justify-self: end; text-align: right; }

.folio {
    position: absolute;
    bottom: calc(var(--plate-inset) + 4px);
    z-index: 6;
    font-family: var(--font-fell);
    font-size: 13px;
    letter-spacing: 0.12em;
}
.folio--bl { left: calc(var(--plate-inset) + 18px); }
.folio--br { right: calc(var(--plate-inset) + 18px); }

.vermilion-ink { color: var(--vermilion); }

/* leaves */
.leaf {
    grid-row: 2;
    z-index: 5;
    position: relative;
    padding: 32px clamp(28px, 3vw, 56px);
    overflow: hidden;
}
.leaf--left  { grid-column: 1; }
.leaf--right { grid-column: 3; }

/* ────────────────── SPREAD I — The Banner ────────────────── */
.masthead {
    position: relative;
    margin-top: 14px;
    padding: 26px 18px 22px 18px;
    border-top: 0;
    border-bottom: 0;
}
.masthead__rule {
    position: absolute;
    left: 0; right: 0;
    height: 0;
}
.masthead__rule--top { top: 0; border-top: 2px solid var(--press-black); }
.masthead__rule--top-thin { top: 5px; border-top: 0.5px solid var(--press-black); }
.masthead__rule--bot { bottom: 0; border-top: 2px solid var(--press-black); }
.masthead__rule--bot-thin { bottom: 5px; border-top: 0.5px solid var(--press-black); }

.masthead__corner { position: absolute; width: 60px; height: 24px; opacity: 0.85; }
.masthead__corner svg { width: 100%; height: 100%; }
.masthead__corner--tl { top: -10px; left: -2px; }
.masthead__corner--tr { top: -10px; right: -2px; transform: scaleX(-1); }
.masthead__corner--bl { bottom: -10px; left: -2px; transform: scaleY(-1); }
.masthead__corner--br { bottom: -10px; right: -2px; transform: scale(-1, -1); }

.wordmark {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(48px, 8.4vw, 132px);
    line-height: 0.86;
    letter-spacing: -0.02em;
    margin: 0 0 6px 0;
    color: var(--press-black);
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
}
.wordmark span {
    display: inline-block;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 420ms cubic-bezier(.2,.8,.2,1), opacity 420ms ease;
}
.wordmark__dot { color: var(--press-black); }
.spread.is-active .wordmark span { transform: translateY(0); opacity: 1; }

.masthead__date {
    text-align: center;
    font-family: var(--font-mono);
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    margin-top: 8px;
}

.declamation {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(28px, 4.4vw, 64px);
    line-height: 1.02;
    letter-spacing: -0.005em;
    text-align: center;
    margin: 32px 0 22px 0;
}
.declamation span {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 360ms ease, transform 360ms cubic-bezier(.2,.8,.2,1);
}
.spread.is-active .declamation span {
    opacity: 1;
    transform: translateY(0);
}

.byline {
    font-family: var(--font-fell-it);
    font-style: italic;
    text-align: center;
    color: var(--iron-gall);
    font-size: 13px;
    line-height: 1.6;
    margin: 14px auto 0 auto;
    max-width: 60ch;
}

/* opener (right leaf with drop-cap) */
.opener {
    position: relative;
    margin-top: 30px;
}
.dropcap {
    float: left;
    width: clamp(110px, 14vw, 168px);
    height: clamp(110px, 14vw, 168px);
    margin: 4px 14px 0 0;
    shape-outside: margin-box;
    transform: scale(0.94);
    opacity: 0;
    transition: transform 420ms cubic-bezier(.2,.8,.2,1), opacity 420ms ease;
}
.spread.is-active .dropcap { transform: scale(1); opacity: 1; }

.opener__body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.55;
    text-align: justify;
    hyphens: auto;
    margin: 0;
}
.opener__body .line {
    display: block;
    clip-path: inset(0 0 100% 0);
    transform: translateY(2px);
    transition: clip-path 360ms cubic-bezier(.65,.05,.36,1), transform 360ms ease;
}
.spread.is-active .opener__body .line {
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
}

.margin-note {
    margin-top: 28px;
    padding: 12px 14px;
    border-top: 0.5px solid var(--press-black);
    border-bottom: 0.5px solid var(--press-black);
    font-family: var(--font-fell-it);
    font-style: italic;
    font-size: 12.5px;
    color: var(--iron-gall);
}

/* ────────────────── SPREAD II — Tide Table ────────────────── */
.spread-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(32px, 4.4vw, 56px);
    line-height: 0.95;
    letter-spacing: -0.01em;
    margin: 0 0 14px 0;
    display: flex;
    align-items: baseline;
    gap: 14px;
}
.spread-title__no {
    font-family: var(--font-fell);
    font-weight: 400;
    font-size: 0.5em;
    letter-spacing: 0.1em;
    color: var(--iron-gall);
}
.spread-title--small { font-size: clamp(28px, 3.4vw, 42px); }

.spread-lede {
    font-family: var(--font-fell-it);
    font-style: italic;
    font-size: 13px;
    color: var(--iron-gall);
    margin: 0 0 14px 0;
    max-width: 56ch;
}

.tide-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11.5px;
    font-family: var(--font-body);
    border-top: 1.5px solid var(--press-black);
    border-bottom: 1.5px solid var(--press-black);
}
.tide-table thead th {
    font-family: var(--font-fell);
    font-weight: 400;
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: left;
    padding: 6px 4px;
    border-bottom: 1px solid var(--press-black);
    color: var(--press-black);
    background: var(--almanac-cream);
}
.tide-table tbody tr {
    opacity: 0;
    transform: translateY(2px);
    transition: opacity 220ms ease, transform 220ms ease;
}
.tide-table tbody tr.row-in {
    opacity: 1;
    transform: translateY(0);
}
.tide-table tbody td {
    padding: 5px 4px;
    border-bottom: 0.4px solid rgba(14,14,12,0.4);
    vertical-align: middle;
    font-size: 11px;
}
.tide-table tbody tr:nth-child(odd) { background: var(--inner-leaf); }
.tide-table tbody tr.is-now {
    background: var(--almanac-cream);
}
.tide-table tbody tr.is-now td {
    color: var(--vermilion);
    font-weight: 500;
}
.tide-table tbody tr.is-now td:first-child { font-weight: 700; }
.tide-table .col-mk { width: 24px; }
.tide-table .col-mk svg { width: 22px; height: 22px; display: block; }
.tide-table .col-process { font-weight: 500; }
.tide-table .col-remarks { font-family: var(--font-fell-it); font-style: italic; color: var(--iron-gall); }

.tide-side h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    margin: 0 0 8px 0;
    letter-spacing: -0.005em;
}
.tide-side p {
    font-size: 13px;
    line-height: 1.55;
    text-align: justify;
    hyphens: auto;
    margin: 0 0 12px 0;
}
.legend {
    list-style: none;
    margin: 12px 0;
    padding: 8px 12px;
    border: 0.5px solid var(--press-black);
    background: var(--inner-leaf);
}
.legend li {
    display: flex; align-items: center; gap: 10px;
    font-size: 12px; padding: 3px 0;
    font-family: var(--font-mono);
    font-weight: 300;
}
.dot { display: inline-block; width: 10px; height: 10px; border: 1px solid var(--press-black); }
.dot--spring { background: var(--press-black); }
.dot--neap { background: transparent; }
.dot--now { background: var(--vermilion); border-color: var(--vermilion); }

.tide-illust {
    margin: 14px 0;
    padding: 8px;
    border: 0.5px solid var(--press-black);
}
.tide-illust svg { width: 100%; height: auto; }

.tide-credo {
    font-family: var(--font-fell-it);
    font-style: italic;
    font-size: 12.5px;
    color: var(--iron-gall);
    text-align: center;
    border-top: 0.5px solid var(--press-black);
    padding-top: 12px;
    margin-top: 14px;
}

/* ────────────────── SPREAD III — Wheel of Hours ────────────────── */
.spread--III .leaf--left,
.spread--III .leaf--right {
    overflow: hidden;
    pointer-events: none;
}
.wheel-leaf .spread-title { pointer-events: auto; }
.wheel-leaf .folio { pointer-events: auto; }

.vert-strip {
    position: absolute;
    top: 50%;
    z-index: 5;
    font-family: var(--font-fell);
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--iron-gall);
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    white-space: nowrap;
}
.vert-strip--left { left: 12px; }
.vert-strip--right { right: 12px; transform: translateY(-50%) rotate(90deg); }

.wheel-wrap {
    grid-column: 1 / 4;
    grid-row: 2;
    z-index: 6;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wheel {
    width: clamp(420px, 60vh, 720px);
    height: clamp(420px, 60vh, 720px);
    max-width: 92vw;
    overflow: visible;
}
#wheel-hands {
    transform-origin: 0 0;
}
#hand-hour, #hand-minute, #hand-second {
    transform-origin: 0 0;
    transform: rotate(0deg);
    transition: transform 380ms cubic-bezier(.2,.8,.2,1);
}
.spread.is-active #hand-second {
    transition: transform 0.2s linear;
}

#wheel-sectors text {
    font-family: var(--font-fell);
    font-size: 7px;
    letter-spacing: 0.06em;
    fill: var(--press-black);
}
#wheel-sectors .sector-num {
    font-family: var(--font-fell);
    font-size: 9px;
    fill: var(--iron-gall);
}
#wheel-sectors line { stroke: var(--press-black); stroke-width: 0.4; }

.wheel-leaf {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.wheel-caption {
    margin-top: auto;
    margin-bottom: 0;
    font-family: var(--font-fell-it);
    font-style: italic;
    font-size: 12.5px;
    color: var(--iron-gall);
}
.wheel-legend {
    list-style: none;
    margin: 0;
    padding: 0;
    column-count: 2;
    column-gap: 18px;
    font-family: var(--font-mono);
    font-size: 9.5px;
    line-height: 1.5;
    color: var(--press-black);
}
.wheel-legend li {
    break-inside: avoid;
    padding: 1px 0;
}
.wheel-legend .num {
    font-family: var(--font-fell);
    color: var(--iron-gall);
    margin-right: 4px;
}

/* ────────────────── SPREAD IV — Specimen Sheet ────────────────── */
.specimen-leaf {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
}
.specimen {
    display: flex;
    align-items: baseline;
    gap: 14px;
    border-bottom: 0.5px solid rgba(14,14,12,0.5);
    padding-bottom: 6px;
    overflow: hidden;
}
.specimen__tag {
    font-family: var(--font-mono);
    font-weight: 300;
    font-size: 9.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--iron-gall);
    flex: 0 0 auto;
    min-width: 38px;
}
.specimen__tag--red { color: var(--vermilion); }
.specimen__word {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.01em;
    color: var(--press-black);
    white-space: nowrap;
    overflow: hidden;
    transform: scaleY(0.96);
    opacity: 0;
    transition: transform 320ms ease, opacity 320ms ease;
}
.spread--IV.is-active .specimen__word { transform: scaleY(1); opacity: 1; }

.specimen--6 .specimen__word { font-weight: 400; }
.specimen--12 .specimen__word { font-weight: 400; }
.specimen--18 .specimen__word { font-weight: 500; }
.specimen--24 .specimen__word { font-weight: 600; }
.specimen--36 .specimen__word { font-weight: 700; }
.specimen--48 .specimen__word { font-weight: 800; }
.specimen--72 .specimen__word { font-weight: 900; }

.specimen--96 {
    margin: 6px 0;
    border-top: 1.5px solid var(--vermilion);
    border-bottom: 1.5px solid var(--vermilion);
    padding: 8px 0;
}
.specimen__word--red {
    color: var(--vermilion);
    font-weight: 900;
}
.specimen--144 {
    border-bottom: 0;
    padding-bottom: 0;
}
.specimen__word--ribbon {
    font-weight: 900;
    letter-spacing: 0.04em;
    color: var(--press-black);
}

/* ────────────────── SPREAD V — Pattern Book ────────────────── */
.pattern-leaf {
    display: flex;
    flex-direction: column;
}
.pattern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 4px;
    flex: 1;
    margin: 8px 0;
}
.cartouche {
    border: 0.5px solid var(--press-black);
    background: var(--almanac-cream);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 320ms ease, transform 320ms ease;
}
.spread.is-active .cartouche {
    opacity: 1;
    transform: scale(1);
}
.cartouche__art {
    flex: 1;
    background: var(--inner-leaf);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.cartouche__art svg {
    width: 100%;
    height: 100%;
    display: block;
}
.cartouche__cap {
    border-top: 0.5px solid var(--press-black);
    padding: 2px 4px;
    font-family: var(--font-mono);
    font-size: 7.5px;
    line-height: 1.25;
    color: var(--press-black);
    background: var(--almanac-cream);
    min-height: 28px;
}
.cartouche__cap b {
    font-family: var(--font-fell);
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 8px;
    display: block;
}

.gutter-strip {
    grid-column: 2;
    grid-row: 2;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.gutter-strip span {
    transform: rotate(-90deg);
    white-space: nowrap;
    font-family: var(--font-fell);
    font-size: 10.5px;
    letter-spacing: 0.32em;
    color: var(--vermilion);
    text-transform: uppercase;
    background: var(--almanac-cream);
    padding: 3px 14px;
    border-top: 0.5px solid var(--vermilion);
    border-bottom: 0.5px solid var(--vermilion);
}

.pattern-credo {
    font-family: var(--font-fell-it);
    font-style: italic;
    font-size: 11px;
    color: var(--iron-gall);
    text-align: center;
    border-top: 0.5px solid var(--press-black);
    padding-top: 8px;
    margin: 6px 0 0 0;
}

/* ────────────────── SPREAD VI — Colophon ────────────────── */
.colophon-leaf {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: 56px clamp(40px, 5vw, 90px);
    text-align: center;
}
.colophon-ornament { width: 100%; max-width: 320px; margin: 0 auto; opacity: 0.85; }
.colophon-ornament svg { width: 100%; height: 24px; display: block; }

.colophon-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 42px;
    margin: 18px 0 16px 0;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.colophon-body {
    font-family: var(--font-body);
    font-size: 13.5px;
    line-height: 1.7;
    text-align: justify;
    text-align-last: center;
    hyphens: auto;
    max-width: 50ch;
    margin: 0 auto;
}
.colophon-body em { font-family: var(--font-fell-it); font-style: italic; }
.colophon-body strong { font-weight: 700; letter-spacing: 0.01em; }

.colophon-address {
    margin-top: 48px;
    padding: 18px 0;
    border-top: 1.5px solid var(--press-black);
    border-bottom: 1.5px solid var(--press-black);
}
.address-line {
    font-family: var(--font-fell);
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 4px 0;
}
.address-line--street {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 28px;
    letter-spacing: 0.02em;
    text-transform: lowercase;
    margin: 8px 0;
}
.post-link { text-decoration: none; border-bottom: 1px solid var(--press-black); }
.address-line--small {
    font-family: var(--font-fell-it);
    font-style: italic;
    font-size: 11.5px;
    letter-spacing: 0.04em;
    text-transform: none;
    color: var(--iron-gall);
}

.colophon-finis {
    margin: 28px 0 8px 0;
    font-family: var(--font-fell);
    font-size: 13px;
    letter-spacing: 0.32em;
    color: var(--iron-gall);
}
.finis-mark {
    display: inline-block;
    padding: 0 8px;
}
.footnote {
    margin-top: auto;
    font-family: var(--font-mono);
    font-weight: 300;
    font-size: 9.5px;
    color: var(--iron-gall);
    border-top: 0.5px solid rgba(14,14,12,0.4);
    padding-top: 8px;
    text-align: center;
}

/* ───────── Reduced motion ───────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
    .wordmark span,
    .declamation span,
    .opener__body .line,
    .dropcap,
    .specimen__word,
    .cartouche {
        opacity: 1 !important;
        transform: none !important;
        clip-path: none !important;
    }
    .fleuron-border { transform: scaleY(1) !important; }
}

/* ───────── Smaller viewport adjustments ───────── */
@media (max-width: 900px) {
    .spread { grid-template-columns: 1fr 16px 1fr; }
    .wordmark { font-size: clamp(36px, 11vw, 80px); }
    .declamation { font-size: clamp(20px, 4.6vw, 32px); }
    .specimen__word { font-size: 32px !important; }
    .specimen--72 .specimen__word { font-size: 56px !important; }
    .specimen--96 .specimen__word { font-size: 44px !important; }
    .specimen--144 .specimen__word { font-size: 64px !important; }
    .pattern-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(6, 1fr); }
}
