/* ============================================================
   continu.ax  -- Vol. I -- No. IV
   Japanese-minimal editorial broadsheet, struck once cleanly
   by a digital lightning bolt.
   ============================================================ */

:root {
    --sumi: #0B0B0B;          /* primary ink */
    --washi: #F5F2EC;         /* page ground */
    --charcoal: #1F1F1F;      /* secondary text */
    --aged-grey: #9A968E;     /* hairlines, gutter, inactive */
    --vellum: #E6E1D6;        /* tertiary fill, inside-fold */
    --cinnabar: #FF2D2D;      /* glitch R-channel */
    --cyan-ghost: #00B0FF;    /* glitch B-channel */

    --gutter: 1px;
    --baseline: 8px;
    --margin-outer: 96px;
    --margin-mid: 64px;
    --column-gap: 24px;

    --font-display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
    --font-body: "EB Garamond", Georgia, serif;
    --font-mono: "JetBrains Mono", "SFMono-Regular", Menlo, monospace;

    --ease-paper: cubic-bezier(0.77, 0, 0.175, 1);
    --ease-ink: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

html {
    background: var(--washi);
    color: var(--sumi);
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 28px;
    font-feature-settings: "kern" 1, "liga" 1, "dlig" 1, "onum" 1;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
    cursor: none;
}

body {
    background: var(--washi);
    color: var(--sumi);
    cursor: none;
    position: relative;
}

/* uncoated stock paper noise -- very faint */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 18% 30%, rgba(11,11,11,0.012) 0, transparent 1px),
        radial-gradient(circle at 71% 62%, rgba(11,11,11,0.018) 0, transparent 1px),
        radial-gradient(circle at 39% 81%, rgba(11,11,11,0.014) 0, transparent 1px),
        radial-gradient(circle at 88% 14%, rgba(11,11,11,0.012) 0, transparent 1px);
    background-size: 3px 3px, 4px 4px, 5px 5px, 6px 6px;
    mix-blend-mode: multiply;
    opacity: 0.85;
    z-index: 1;
}

/* ============================================================
   FOLIO STRIP -- top of every spread
   ============================================================ */

.folio-strip {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 6vh;
    min-height: 48px;
    z-index: 50;
    background: var(--washi);
    pointer-events: auto;
}

.folio-inner {
    display: grid;
    grid-template-columns: auto auto 1fr auto auto;
    align-items: center;
    gap: 32px;
    padding: 16px var(--margin-outer) 8px;
    height: calc(6vh - 1px);
    min-height: 47px;
}

.folio-strip .folio-mark,
.folio-strip .folio-issue,
.folio-strip .folio-date,
.folio-strip .folio-counter,
.folio-section {
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--charcoal);
}

.folio-mark {
    color: var(--sumi);
    font-weight: 500;
}

.folio-sections {
    display: flex;
    gap: 14px;
    justify-self: end;
}

.folio-section {
    color: var(--aged-grey);
    transition: color 320ms var(--ease-ink);
    cursor: none;
    user-select: none;
}

.folio-section.is-active {
    color: var(--sumi);
}

.folio-counter {
    color: var(--sumi);
    font-variant-numeric: tabular-nums;
}

.folio-rule {
    height: 1px;
    background: var(--aged-grey);
    margin: 0 var(--margin-outer);
}

/* ============================================================
   READER -- snap-scroll spread container
   ============================================================ */

.reader {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    z-index: 2;
}

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

/* ============================================================
   SPREAD -- one editorial page-spread, 100vh
   ============================================================ */

.spread {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 640px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    background: var(--washi);
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 6vh;
    overflow: hidden;
}

/* the gutter -- 1px hairline at exactly 50vw */
.gutter {
    position: absolute;
    top: 6vh;
    bottom: 0;
    left: 50vw;
    width: 1px;
    background: var(--aged-grey);
    transform: translateX(-0.5px);
    z-index: 4;
    pointer-events: none;
}

/* inside-of-fold shadow gradient -- subtle vellum glow either side of gutter */
.spread::before,
.spread::after {
    content: "";
    position: absolute;
    top: 6vh;
    bottom: 0;
    width: 80px;
    pointer-events: none;
    z-index: 3;
}
.spread::before {
    left: calc(50vw - 80px);
    background: linear-gradient(to right, transparent 0%, rgba(230,225,214,0.55) 100%);
}
.spread::after {
    left: 50vw;
    background: linear-gradient(to left, transparent 0%, rgba(230,225,214,0.55) 100%);
}

/* crop-marks -- 8px L-shapes at outer corners */
.crop-mark {
    position: absolute;
    width: 14px;
    height: 14px;
    z-index: 5;
    pointer-events: none;
}
.crop-mark::before,
.crop-mark::after {
    content: "";
    position: absolute;
    background: var(--aged-grey);
}
.crop-mark::before { width: 14px; height: 1px; }
.crop-mark::after  { width: 1px; height: 14px; }

.crop-tl { top: calc(6vh + 16px); left: 24px; }
.crop-tl::before { top: 0; left: 0; }
.crop-tl::after  { top: 0; left: 0; }

.crop-tr { top: calc(6vh + 16px); right: 24px; }
.crop-tr::before { top: 0; right: 0; }
.crop-tr::after  { top: 0; right: 0; }

.crop-bl { bottom: 16px; left: 24px; }
.crop-bl::before { bottom: 0; left: 0; }
.crop-bl::after  { bottom: 0; left: 0; }

.crop-br { bottom: 16px; right: 24px; }
.crop-br::before { bottom: 0; right: 0; }
.crop-br::after  { bottom: 0; right: 0; }

/* the master curve SVG -- full spread, behind type */
.master-curve {
    position: absolute;
    inset: 6vh 0 0 0;
    width: 100%;
    height: calc(100% - 6vh);
    z-index: 2;
    pointer-events: none;
    opacity: 0.92;
}
.master-curve.is-idle .curve-path {
    animation: curve-drift 12s var(--ease-ink) infinite alternate;
}
@keyframes curve-drift {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(4px, -3px); }
}
.master-curve.is-fracturing .curve-path {
    animation: curve-fracture 280ms steps(4, end);
}
@keyframes curve-fracture {
    0%   { filter: none; transform: translate(0,0); }
    25%  { filter: drop-shadow(2px 0 0 var(--cinnabar)) drop-shadow(-2px 0 0 var(--cyan-ghost)); transform: translate(2px, 0); }
    50%  { filter: drop-shadow(-3px 0 0 var(--cinnabar)) drop-shadow(3px 0 0 var(--cyan-ghost)); transform: translate(-2px, 1px); }
    75%  { filter: drop-shadow(1px 0 0 var(--cinnabar)) drop-shadow(-1px 0 0 var(--cyan-ghost)); transform: translate(1px, 0); }
    100% { filter: none; transform: translate(0,0); }
}

/* ============================================================
   PAGE -- left & right within a spread
   ============================================================ */

.page {
    position: relative;
    padding: 56px var(--margin-outer) 80px var(--margin-outer);
    z-index: 6;
    display: flex;
    flex-direction: column;
}

.page-left {
    padding-right: var(--margin-mid);
}
.page-right {
    padding-left: var(--margin-mid);
}

/* ============================================================
   SPREAD I -- COVER
   ============================================================ */

.spread-cover .page-left {
    justify-content: flex-end;
    padding-bottom: 96px;
}

.masthead {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mast-eyebrow {
    color: var(--charcoal);
}

.mast-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(96px, 13.5vw, 220px);
    line-height: 0.92;
    letter-spacing: -0.035em;
    color: var(--sumi);
    margin-bottom: 8px;
}

.mast-line {
    display: block;
    overflow: hidden;
    line-height: 1.02;
}

.mast-line-italic {
    font-style: italic;
    font-weight: 300;
    letter-spacing: -0.04em;
    margin-left: 0.06em;
}

.mast-foot {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--aged-grey);
    padding-top: 12px;
    margin-top: 32px;
    max-width: 520px;
}

/* lede on right page */
.spread-cover .page-right {
    justify-content: center;
    gap: 40px;
}

.lede {
    max-width: 460px;
    margin-left: auto;
    margin-right: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lede-body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 28px;
    color: var(--sumi);
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    hanging-punctuation: first last;
}

.drop-cap::first-letter {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 5.2em;
    line-height: 0.86;
    float: left;
    padding: 6px 12px 0 0;
    color: var(--sumi);
    font-feature-settings: "onum" 1;
}

.lede-marks {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--aged-grey);
    padding-top: 10px;
    margin-top: 8px;
    color: var(--charcoal);
    font-size: 11px;
    letter-spacing: 0.18em;
}

.ornament {
    align-self: flex-end;
    margin-top: 24px;
    color: var(--sumi);
}

/* ============================================================
   SPREAD II -- PULL QUOTE
   ============================================================ */

.spread-quote .page-left {
    justify-content: space-between;
    padding-bottom: 96px;
}

.caption-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 320px;
}

.mono {
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--charcoal);
}

.mono-tag {
    color: var(--sumi);
}

.caption {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 14px;
    line-height: 22px;
    color: var(--charcoal);
    max-width: 280px;
}

.ornament-crane {
    align-self: flex-start;
    color: var(--sumi);
    margin-top: auto;
}

.spread-quote .page-right {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.pull-quote {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(56px, 7vw, 116px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--sumi);
    text-align: center;
    position: relative;
    padding: 56px 0;
    border-top: 1px solid var(--aged-grey);
    border-bottom: 1px solid var(--aged-grey);
    max-width: 620px;
}

.pq-line {
    display: block;
    overflow: hidden;
}
.pq-italic {
    font-style: italic;
    font-weight: 500;
}

.pq-attr {
    margin-top: 32px;
    color: var(--charcoal);
    text-align: center;
    max-width: 460px;
}

/* ============================================================
   SPREAD III -- METHOD
   ============================================================ */

.spread-process .page {
    justify-content: flex-start;
    gap: 32px;
}

.proc-head {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
}

.proc-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(56px, 6.4vw, 104px);
    line-height: 0.96;
    letter-spacing: -0.03em;
    color: var(--sumi);
}

.proc-title-line { display: block; overflow: hidden; }
.proc-title-italic { font-style: italic; font-weight: 300; padding-left: 0.04em; }

.proc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 28px;
    counter-reset: proc;
}

.proc-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 6px;
    border-top: 1px solid var(--aged-grey);
    padding-top: 14px;
}

.proc-num {
    grid-row: 1 / span 2;
    color: var(--sumi);
    font-size: 13px;
    letter-spacing: 0.18em;
}

.proc-name {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.01em;
    color: var(--sumi);
}

.proc-body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 23px;
    color: var(--sumi);
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
}

.proc-marginalia {
    margin-top: 32px;
    border-top: 1px solid var(--aged-grey);
    border-bottom: 1px solid var(--aged-grey);
    padding: 14px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--charcoal);
    background: rgba(230,225,214,0.4);
}

.margin-row {
    display: flex;
    justify-content: space-between;
    padding: 0 4px;
}

.margin-row span:first-child {
    color: var(--aged-grey);
}
.margin-row span:last-child {
    color: var(--sumi);
}

/* ============================================================
   SPREAD IV -- COLOPHON
   ============================================================ */

.spread-colophon .page-left {
    justify-content: flex-start;
    gap: 36px;
}

.col-head {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.col-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(72px, 9vw, 160px);
    line-height: 0.94;
    letter-spacing: -0.035em;
    color: var(--sumi);
}

.col-title-line { display: block; overflow: hidden; }
.col-title-italic { font-style: italic; font-weight: 300; padding-left: 0.04em; }

.col-meta {
    border-top: 1px solid var(--aged-grey);
    margin-top: 12px;
}

.col-meta-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 24px;
    border-bottom: 1px solid var(--aged-grey);
    padding: 12px 0;
}

.col-meta-row dt {
    color: var(--charcoal);
}
.col-meta-row dd {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 24px;
    color: var(--sumi);
    font-style: italic;
}

.spread-colophon .page-right {
    justify-content: space-between;
    padding-bottom: 96px;
}

.col-contact {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.col-contact-h {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(48px, 5.4vw, 88px);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--sumi);
}

.col-contact-h span { display: block; overflow: hidden; }

.col-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-top: 1px solid var(--aged-grey);
    padding-top: 14px;
}

.col-links li {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    align-items: baseline;
    border-bottom: 1px solid var(--aged-grey);
    padding-bottom: 12px;
}

.col-link {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 26px;
    line-height: 32px;
    color: var(--sumi);
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: letter-spacing 320ms var(--ease-ink), color 320ms var(--ease-ink);
}

.col-link:hover {
    letter-spacing: 0.02em;
    color: var(--charcoal);
}

.colophon-mark {
    align-self: flex-end;
    margin-top: 24px;
}

.end-mark {
    align-self: center;
    color: var(--sumi);
    font-size: 13px;
    letter-spacing: 0.4em;
    margin-top: 24px;
    padding-top: 12px;
    border-top: 1px solid var(--aged-grey);
    width: 140px;
    text-align: center;
}

/* ============================================================
   SPREAD FOOTER -- bottom rule, page no, section title
   ============================================================ */

.spread-footer {
    position: absolute;
    left: var(--margin-outer);
    right: var(--margin-outer);
    bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 6;
    pointer-events: none;
}

.spread-footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    height: 1px;
    background: var(--aged-grey);
}

.mono-num {
    color: var(--sumi);
    font-variant-numeric: tabular-nums;
}

/* ============================================================
   TYPESET LETTERS -- mast/title characters revealed by clip-path
   ============================================================ */

.typeset-char {
    display: inline-block;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 360ms var(--ease-ink);
    will-change: clip-path;
}

.typeset.is-revealed .typeset-char,
.typeset .typeset-char.is-revealed {
    clip-path: inset(0 0 0 0);
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */

.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: multiply;
    transition: opacity 200ms var(--ease-ink);
}

.cursor svg {
    overflow: visible;
}

.cursor-line {
    transition: opacity 200ms var(--ease-ink);
}

.cursor-enso {
    transform-origin: 12px 12px;
    transition: stroke-dashoffset 240ms var(--ease-ink);
}

.cursor.cursor-cross .cursor-line { opacity: 1; }
.cursor.cursor-cross .cursor-enso { stroke-dashoffset: 63; }

.cursor.cursor-enso .cursor-line { opacity: 0; }
.cursor.cursor-enso .cursor-enso { stroke-dashoffset: 0; }

.cursor.is-clicking {
    transform: translate(-50%, -50%) scale(0.78);
}

/* ink ripple on click */
.ink-ripple-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
}

.ink-ripple {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sumi);
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;
    animation: ink-ripple 600ms var(--ease-ink) forwards;
    pointer-events: none;
}

@keyframes ink-ripple {
    0%   { transform: translate(-50%, -50%) scale(1); opacity: 0.42; }
    50%  { transform: translate(-50%, -50%) scale(8); opacity: 0.16; }
    100% { transform: translate(-50%, -50%) scale(18); opacity: 0; }
}

/* ============================================================
   PAGE-TURN OVERLAY -- 40ms RGB chromatic split on snap
   ============================================================ */

.page-turn-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 60;
    opacity: 0;
}

.page-turn-overlay.is-firing {
    animation: page-turn-flash 480ms var(--ease-paper);
}

.ptl-r,
.ptl-g,
.ptl-b {
    position: absolute;
    inset: 0;
    mix-blend-mode: screen;
    opacity: 0;
}

.ptl-r { background: var(--cinnabar); }
.ptl-g { background: var(--washi); }
.ptl-b { background: var(--cyan-ghost); }

.page-turn-overlay.is-firing .ptl-r { animation: ptl-r-flash 480ms var(--ease-paper); }
.page-turn-overlay.is-firing .ptl-b { animation: ptl-b-flash 480ms var(--ease-paper); }
.page-turn-overlay.is-firing .ptl-g { animation: ptl-g-flash 480ms var(--ease-paper); }

@keyframes page-turn-flash {
    0%   { opacity: 1; }
    100% { opacity: 1; }
}
@keyframes ptl-r-flash {
    0%   { opacity: 0; transform: translate(0,0); }
    8%   { opacity: 0.18; transform: translate(-3px, 0); }
    16%  { opacity: 0; transform: translate(0,0); }
    100% { opacity: 0; }
}
@keyframes ptl-b-flash {
    0%   { opacity: 0; transform: translate(0,0); }
    8%   { opacity: 0.18; transform: translate(3px, 0); }
    16%  { opacity: 0; transform: translate(0,0); }
    100% { opacity: 0; }
}
@keyframes ptl-g-flash {
    0%   { opacity: 0; }
    100% { opacity: 0; }
}

/* ============================================================
   GLITCH STATES -- per-spread, applied to the active spread
   ============================================================ */

.spread.glitch-scan-tear::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 18px;
    top: 42%;
    background:
        linear-gradient(to right,
            rgba(255,45,45,0.18) 0%,
            rgba(0,176,255,0.18) 100%
        ),
        var(--washi);
    transform: translateX(-6px);
    z-index: 7;
    pointer-events: none;
    mix-blend-mode: multiply;
    animation: scan-tear 300ms steps(3, end);
    box-shadow: 0 -1px 0 rgba(11,11,11,0.18), 0 1px 0 rgba(11,11,11,0.18);
}
@keyframes scan-tear {
    0%   { transform: translateX(0); opacity: 0.0; }
    20%  { transform: translateX(-6px); opacity: 0.95; }
    50%  { transform: translateX(6px); opacity: 0.85; }
    80%  { transform: translateX(-3px); opacity: 0.6; }
    100% { transform: translateX(0); opacity: 0; }
}

.glitch-kerning {
    animation: kerning-collapse 360ms steps(3, end);
}
@keyframes kerning-collapse {
    0%   { letter-spacing: inherit; }
    33%  { letter-spacing: -0.12em; }
    66%  { letter-spacing: 0.3em; }
    100% { letter-spacing: inherit; }
}

.glitch-datamosh {
    position: relative;
    color: transparent;
}
.glitch-datamosh::before {
    content: attr(data-mosh);
    position: absolute;
    inset: 0;
    color: var(--sumi);
    font-family: var(--font-mono);
    font-size: 0.86em;
    letter-spacing: 0;
    background: var(--vellum);
}

/* off-grid jitter applied to a single child for 200ms */
.glitch-jitter {
    animation: glitch-jitter 220ms steps(2, end);
}
@keyframes glitch-jitter {
    0%   { transform: translate(0,0); }
    25%  { transform: translate(0, -3px); }
    50%  { transform: translate(0, 3px); }
    75%  { transform: translate(0, -2px); }
    100% { transform: translate(0,0); }
}

/* ============================================================
   PAGINATOR
   ============================================================ */

.paginator {
    position: fixed;
    bottom: 24px;
    right: var(--margin-outer);
    z-index: 70;
    display: flex;
    align-items: center;
    gap: 16px;
    background: transparent;
}

.pg-btn {
    background: transparent;
    border: 1px solid var(--aged-grey);
    color: var(--sumi);
    font-family: var(--font-mono);
    font-size: 13px;
    width: 36px;
    height: 28px;
    cursor: none;
    transition: background 240ms var(--ease-ink), color 240ms var(--ease-ink), border-color 240ms var(--ease-ink);
    line-height: 1;
}

.pg-btn:hover {
    background: var(--sumi);
    color: var(--washi);
    border-color: var(--sumi);
}

.pg-state {
    color: var(--sumi);
    font-variant-numeric: tabular-nums;
}

/* ============================================================
   RESPONSIVE -- scale down the print metaphor on narrow screens
   ============================================================ */

@media (max-width: 1024px) {
    :root {
        --margin-outer: 48px;
        --margin-mid: 32px;
    }
    .folio-inner { gap: 16px; padding: 12px var(--margin-outer) 8px; }
    .folio-rule { margin: 0 var(--margin-outer); }
    .page { padding: 40px var(--margin-outer) 80px; }
}

@media (max-width: 768px) {
    :root {
        --margin-outer: 24px;
        --margin-mid: 16px;
    }
    html { font-size: 16px; line-height: 26px; }
    .folio-inner { grid-template-columns: auto 1fr auto; }
    .folio-issue, .folio-date { display: none; }

    .spread {
        grid-template-columns: 1fr;
    }
    .gutter,
    .spread::before,
    .spread::after { display: none; }

    .page-left { padding: 32px var(--margin-outer) 16px; }
    .page-right { padding: 16px var(--margin-outer) 80px; }

    .mast-title { font-size: clamp(64px, 16vw, 92px); }
    .pull-quote { font-size: clamp(40px, 11vw, 64px); padding: 32px 0; }
    .proc-title, .col-title, .col-contact-h { font-size: clamp(48px, 11vw, 72px); }

    .crop-mark { display: none; }
    .paginator { right: var(--margin-outer); }
    .lede { max-width: 100%; }
}

/* hide native cursor on interactive too */
a, button { cursor: none; }
