/* ============================================================
   political.bar — The Press Room Stylesheet
   Aesthetic: dark-academia editorial broadsheet
   Palette: Dossier (dark-neon, journalistic restraint)
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
    /* Backgrounds */
    --bg-primary:    #0D0D14;  /* Midnight Ink */
    --bg-secondary:  #161621;  /* Briefing Room */
    --bg-surface:    #1E1E2A;  /* Dispatch Grey */
    --bg-deeper:     #08080F;  /* deeper than primary, for fold below */

    /* Text */
    --text-primary:   #E8E0D0;  /* Aged Newsprint */
    --text-secondary: #C4BAA8;  /* Parchment */
    --text-tertiary:  #8B8578;  /* Weathered Stone */

    /* Accents */
    --accent-warm:   #8B7355;   /* Tobacco Stain */
    --accent-cool:   #6B9B7A;   /* Verdigris */
    --accent-signal: #A63D2F;   /* Wax Seal Red */

    /* Rules */
    --rule:          #3A3A4A;   /* Gunmetal */
    --rule-medium:   #8B7355;
    --rule-heavy:    #E8E0D0;

    /* Type */
    --font-display:  "Bebas Neue", "Inter", "Impact", sans-serif;
    --font-label:    "Barlow Condensed", "Inter", "Arial Narrow", sans-serif;
    --font-body:     "Lora", "IBM Plex Serif", Georgia, serif;
    --font-mono:     "IBM Plex Mono", "Courier New", monospace;
    --font-ui:       "Inter", system-ui, sans-serif;

    /* Layout */
    --gutter:        2.5rem;
    --max-width:     1440px;

    /* Motion */
    --ease-spring:   cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --ease-soft:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg-primary);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    position: relative;
    min-height: 100vh;
    padding-bottom: 40px; /* room for ticker */
}

p { margin: 0 0 1.1em 0; }
em, i { font-style: italic; color: var(--text-primary); }
strong, b { font-weight: 500; color: var(--text-primary); }

/* ---------- GRAIN OVERLAY ---------- */
.grain-svg {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    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.65' numOctaves='4' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.91  0 0 0 0 0.88  0 0 0 0 0.81  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    pointer-events: none;
    opacity: 0.04;
    mix-blend-mode: overlay;
    z-index: 9000;
}

/* faint vignette to suggest lamplight */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(139,115,85,0.08) 0%, rgba(0,0,0,0) 55%),
        radial-gradient(ellipse at 50% 100%, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 60%);
    pointer-events: none;
    z-index: 8500;
}

/* ============================================================
   RULES (the primary visual element)
   ============================================================ */
.rule {
    display: block;
    width: 100%;
    background: var(--rule);
}
.rule--hairline { height: 1px; background: var(--rule); }
.rule--medium   { height: 2px; background: var(--rule-medium); }
.rule--heavy    { height: 3px; background: var(--rule-heavy); }

.rule--dashed {
    background: transparent;
    border-top: 1px dashed var(--rule);
    height: 0;
}

.rule--inline {
    margin: 1.5rem 0;
    width: 60%;
}

/* ============================================================
   MONOGRAM (top-left fixed glyph)
   ============================================================ */
.monogram {
    position: fixed;
    top: 1.6rem;
    left: 1.6rem;
    z-index: 1000;
    background: transparent;
    border: 1px solid var(--rule-medium);
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.15em;
    padding: 0.55rem 0.9rem 0.45rem;
    cursor: pointer;
    transition: background 0.4s var(--ease-soft), color 0.4s var(--ease-soft), border-color 0.4s var(--ease-soft);
}
.monogram__glyph { display: inline-block; }
.monogram__rule {
    display: block;
    width: 0;
    height: 1px;
    background: var(--accent-cool);
    margin-top: 4px;
    transition: width 0.5s var(--ease-soft);
}
.monogram:hover {
    background: var(--bg-secondary);
    color: var(--accent-cool);
    border-color: var(--accent-cool);
}
.monogram:hover .monogram__rule { width: 100%; }

/* ============================================================
   TOC OVERLAY
   ============================================================ */
.toc-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13,13,20,0.97);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease-soft);
    overflow-y: auto;
}
.toc-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}
.toc-overlay__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 3rem 4rem;
}
.toc-overlay__masthead {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 3rem;
}
.toc-overlay__label {
    font-family: var(--font-label);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent-warm);
    font-size: 0.9rem;
}
.toc-overlay__rule {
    flex: 1;
    height: 1px;
    background: var(--rule-medium);
}
.toc-overlay__close {
    background: transparent;
    border: 1px solid var(--rule);
    color: var(--text-primary);
    font-size: 1.4rem;
    width: 2.4rem;
    height: 2.4rem;
    cursor: pointer;
    line-height: 1;
    transition: border-color 0.3s, color 0.3s;
}
.toc-overlay__close:hover {
    color: var(--accent-signal);
    border-color: var(--accent-signal);
}
.toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.toc-item {
    border-bottom: 1px dashed var(--rule);
}
.toc-item:first-child { border-top: 1px dashed var(--rule); }

.toc-item a {
    display: grid;
    grid-template-columns: 4rem 1fr auto;
    align-items: baseline;
    gap: 1.5rem;
    padding: 1.6rem 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    transition: padding-left 0.3s var(--ease-soft), color 0.3s;
}
.toc-item a:hover {
    color: var(--accent-cool);
    padding-left: 1.5rem;
}
.toc-num {
    color: var(--accent-warm);
    font-family: var(--font-label);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.15em;
}
.toc-title { text-transform: uppercase; }
.toc-folio {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-tertiary);
    letter-spacing: 0.1em;
}

/* ============================================================
   MASTHEAD
   ============================================================ */
.masthead {
    min-height: 100vh;
    padding: 6rem var(--gutter) 4rem;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}
.masthead > * { width: 100%; }

.masthead__rule-cluster {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 86%;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 1.2s var(--ease-soft) forwards;
}
.masthead__rule-cluster--top    { animation-delay: 0.1s; margin-bottom: 1.6rem; }
.masthead__rule-cluster--mid    { animation-delay: 0.7s; margin: 1.3rem auto; }
.masthead__rule-cluster--bottom { animation-delay: 1.3s; margin-top: 1.6rem; }

.masthead__metaline {
    font-family: var(--font-label);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.78rem;
    color: var(--accent-warm);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 0.3rem 0 1rem;
    opacity: 0;
    animation: fadeIn 1s var(--ease-soft) forwards;
    animation-delay: 0.3s;
}
.metaline__sep { color: var(--rule); }
.metaline__cell--price { color: var(--text-primary); font-weight: 500; }

.masthead__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(4.5rem, 18vw, 16rem);
    line-height: 0.85;
    letter-spacing: 0.04em;
    color: var(--text-primary);
    margin: 0.4rem 0;
    text-transform: lowercase;
    opacity: 0;
    animation: fadeIn 1.5s var(--ease-soft) forwards;
    animation-delay: 0.5s;
    text-shadow: 0 0 60px rgba(232,224,208,0.06);
}
.masthead__dot {
    color: var(--accent-signal);
    display: inline-block;
    transform: translateY(-0.05em);
}

.masthead__subhead {
    font-family: var(--font-body);
    font-style: italic;
    font-size: clamp(0.95rem, 1.3vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 38rem;
    margin: 0.6rem auto 1.2rem;
    line-height: 1.5;
    opacity: 0;
    animation: fadeIn 1s var(--ease-soft) forwards;
    animation-delay: 1s;
}

.masthead__dateline {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent-cool);
    letter-spacing: 0.08em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin: 0.6rem 0 1rem;
    opacity: 0;
    animation: fadeIn 1s var(--ease-soft) forwards;
    animation-delay: 1.4s;
}
.dateline__sep { color: var(--rule); }

.masthead__manicule {
    font-size: 1.4rem;
    color: var(--accent-warm);
    margin-top: 2rem;
    transform: rotate(90deg);
    opacity: 0;
    animation: fadeIn 1s var(--ease-soft) forwards, manicuteBob 2s ease-in-out infinite;
    animation-delay: 2s, 3s;
}
@keyframes manicuteBob {
    0%, 100% { transform: rotate(90deg) translateX(0); }
    50%      { transform: rotate(90deg) translateX(6px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SECTION HEADER (typographic)
   ============================================================ */
.section-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.2rem;
    max-width: var(--max-width);
    margin: 0 auto 2.5rem;
    padding: 2rem var(--gutter) 0.5rem;
}
.section-header--narrow { max-width: 880px; }

.section-header__label {
    font-family: var(--font-label);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.85rem;
    color: var(--accent-warm);
}
.section-header__rule {
    height: 1px;
    background: linear-gradient(to right, var(--rule), var(--rule-medium), var(--rule));
}
.section-header__folio {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    color: var(--text-tertiary);
    text-transform: uppercase;
}

/* ============================================================
   LEDE — broadsheet two-column
   ============================================================ */
.lede {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter) 5rem;
}

.broadsheet {
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 3rem;
    align-items: start;
}

/* LEAD COLUMN */
.lead-column {
    border-top: 1px solid var(--rule);
    padding-top: 1.5rem;
}

.kicker {
    font-family: var(--font-label);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent-warm);
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}
.kicker--center { text-align: center; }

.lead-headline {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.5rem, 5.5vw, 4.6rem);
    line-height: 0.92;
    letter-spacing: 0.04em;
    color: var(--text-primary);
    text-transform: uppercase;
    margin: 0 0 1.2rem;
    text-wrap: balance;
}

.lead-subhead {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.55;
    color: var(--text-secondary);
    margin: 0 0 1.6rem;
    max-width: 38rem;
}

.byline {
    font-family: var(--font-label);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    color: var(--text-tertiary);
    margin-bottom: 1.5rem;
}
.byline__by    { color: var(--accent-warm); }
.byline__author{ color: var(--text-primary); margin: 0 0.3rem; }
.byline__sep   { color: var(--rule); margin: 0 0.5rem; }

.lead-body {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0 0 1.3rem;
    text-align: justify;
    hyphens: auto;
}

.dropcap {
    float: left;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 5.2rem;
    line-height: 0.85;
    color: var(--text-primary);
    padding: 0.05em 0.18em 0 0;
    margin: 0.05em 0.1em 0 0;
    border-right: 1px solid var(--rule);
    margin-right: 0.4em;
    padding-right: 0.4em;
}

.lead-body--pull {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1.45;
    color: var(--text-primary);
    border-left: 2px solid var(--accent-warm);
    padding: 0.4rem 0 0.4rem 1.5rem;
    margin: 1.8rem 0;
    text-align: left;
}

.lede__manicule {
    text-align: center;
    color: var(--accent-warm);
    font-size: 1.4rem;
    margin: 1.5rem 0;
    letter-spacing: 1em;
}

/* ============================================================
   SIDEBAR WIRE
   ============================================================ */
.sidebar-wire {
    background: var(--bg-secondary);
    padding: 1.5rem 1.6rem 1.8rem;
    border-left: 1px solid var(--rule);
    border-top: 1px solid var(--rule);
    position: relative;
    will-change: transform;
}
.sidebar-wire::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 24px;
    height: 24px;
    border-top: 2px solid var(--accent-warm);
    border-left: 2px solid var(--accent-warm);
}
.sidebar-wire::after {
    content: "";
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 24px;
    height: 24px;
    border-bottom: 2px solid var(--accent-warm);
    border-right: 2px solid var(--accent-warm);
}

.wire-head {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-label);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}
.wire-head__bullet { color: var(--accent-cool); font-size: 0.8rem; }
.wire-head__label  { flex: 1; }
.wire-head__time   {
    font-family: var(--font-mono);
    color: var(--accent-cool);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
}

.wire-rule {
    height: 1px;
    background: var(--rule);
    margin: 0.8rem 0 1.2rem;
    position: relative;
}
.wire-rule::before, .wire-rule::after {
    content: "";
    position: absolute;
    top: -2px;
    width: 4px;
    height: 4px;
    background: var(--accent-warm);
    border-radius: 50%;
}
.wire-rule::before { left: 0; }
.wire-rule::after  { right: 0; }

.dispatch {
    border-bottom: 1px dashed var(--rule);
    padding: 0.8rem 0 0.9rem;
    font-family: var(--font-mono);
}
.dispatch:first-of-type { padding-top: 0.2rem; }

.dispatch__time {
    color: var(--accent-warm);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.dispatch__body {
    color: var(--accent-cool);
    font-size: 0.82rem;
    line-height: 1.55;
    margin: 0;
    letter-spacing: 0.01em;
}

.dispatch--breaking .dispatch__time { color: var(--accent-signal); }
.dispatch--breaking .dispatch__body { color: var(--text-primary); }

.breaking-dot {
    display: inline-block;
    width: 8px; height: 8px;
    background: var(--accent-signal);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-signal);
    animation: breakingPulse 1.6s ease-in-out infinite;
    margin-right: 0.2rem;
}
@keyframes breakingPulse {
    0%, 100% { opacity: 1;   transform: scale(1); }
    50%      { opacity: 0.4; transform: scale(0.7); }
}

.wire-pull {
    background: var(--bg-surface);
    padding: 1rem 1rem 0.8rem;
    margin: 1.2rem -0.4rem;
    border-top: 1px solid var(--accent-warm);
    border-bottom: 1px solid var(--accent-warm);
    position: relative;
}
.wire-pull__mark {
    position: absolute;
    top: -0.6rem;
    left: 0.8rem;
    background: var(--bg-secondary);
    color: var(--accent-warm);
    font-family: var(--font-display);
    font-size: 1.4rem;
    padding: 0 0.4rem;
    margin: 0;
}
.wire-pull__quote {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-primary);
    margin: 0 0 0.6rem;
}
.wire-pull__attr {
    font-family: var(--font-label);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.7rem;
    color: var(--accent-warm);
    margin: 0;
    text-align: right;
}

.wire-foot {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-tertiary);
    margin: 1rem 0 0;
    letter-spacing: 0.15em;
}

/* ============================================================
   INTERSTITIAL PULL QUOTES
   ============================================================ */
.interstitial {
    min-height: 90vh;
    background: var(--bg-deeper);
    padding: 6rem var(--gutter);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    position: relative;
}
.interstitial--alt {
    background: var(--bg-secondary);
}
.interstitial__rule-top, .interstitial__rule-bottom {
    width: min(80%, 600px);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.interstitial__rule-top    { margin-bottom: 2.5rem; }
.interstitial__rule-bottom { margin-top: 2.5rem; }

.interstitial__lead {
    font-family: var(--font-label);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.85rem;
    color: var(--accent-warm);
    margin: 0 0 2rem;
}

.interstitial__quote {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.8rem, 4.5vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: 0.03em;
    color: var(--text-primary);
    text-transform: uppercase;
    max-width: 1100px;
    margin: 0 0 2rem;
    text-wrap: balance;
}
.interstitial__quote--small {
    font-size: clamp(1.5rem, 3.5vw, 2.6rem);
}
.interstitial__quote em {
    font-style: italic;
    color: var(--accent-cool);
    font-family: var(--font-body);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
}

.interstitial__quote .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s var(--ease-soft), transform 0.4s var(--ease-soft);
}
.interstitial__quote.is-typed .word {
    opacity: 1;
    transform: translateY(0);
}

.interstitial__attr {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1rem;
    color: var(--text-tertiary);
    margin: 0;
}

/* ============================================================
   FOLD LINE
   ============================================================ */
.fold-line {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 2.5rem var(--gutter);
    max-width: var(--max-width);
    margin: 0 auto;
}
.fold-line__rule {
    flex: 1;
    height: 0;
    border-top: 1px dashed var(--rule);
}
.fold-line__label {
    font-family: var(--font-label);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.6rem;
    color: var(--accent-warm);
    white-space: nowrap;
}

/* ============================================================
   EDITORIAL (below the fold — single column, blur-focus)
   ============================================================ */
.editorial {
    background: var(--bg-primary);
    padding: 3rem var(--gutter) 5rem;
}
.editorial__article {
    max-width: 760px;
    margin: 0 auto;
    filter: blur(2px);
    opacity: 0.7;
    transition: filter 1s var(--ease-soft), opacity 1s var(--ease-soft);
}
.editorial__article.is-focused {
    filter: blur(0);
    opacity: 1;
}

.editorial__headline {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 0.95;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 1.6rem;
    text-wrap: balance;
}

.editorial__rule-cluster {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 50%;
    margin: 0 auto 2.4rem;
}

.editorial__body {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin: 0 0 1.5rem;
    text-align: justify;
    hyphens: auto;
}
.editorial__body em { color: var(--text-primary); }
.dropcap--editorial { font-size: 5.6rem; }
.editorial__term {
    font-family: var(--font-mono);
    font-size: 0.9em;
    color: var(--accent-cool);
    letter-spacing: 0.02em;
}

.editorial__pull {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.2rem;
    margin: 2.6rem -1rem;
    padding: 1.6rem 0;
    border-top: 2px solid var(--accent-warm);
    border-bottom: 2px solid var(--accent-warm);
}
.editorial__pull-mark {
    font-family: var(--font-body);
    font-size: 2.4rem;
    color: var(--accent-signal);
    line-height: 1;
}
.editorial__pull-mark--right { text-align: right; }
.editorial__pull-text {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1.4;
    color: var(--text-primary);
    margin: 0;
    text-align: center;
}

.editorial__signoff {
    font-family: var(--font-label);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.85rem;
    color: var(--accent-warm);
    text-align: right;
    margin: 2.5rem 0 0;
}

/* ============================================================
   WAX SEAL
   ============================================================ */
.wax-seal {
    width: 90px;
    height: 90px;
    margin: 3rem auto 0;
    transform: scale(0) rotate(-180deg);
    transition: transform 0.9s var(--ease-spring);
    filter:
        drop-shadow(0 4px 8px rgba(166,61,47,0.35))
        drop-shadow(0 1px 0 rgba(0,0,0,0.6));
}
.wax-seal--small {
    width: 70px;
    height: 70px;
}
.wax-seal.is-stamped {
    transform: scale(1) rotate(0deg);
}
.wax-seal__svg {
    width: 100%;
    height: 100%;
}

/* ============================================================
   DOSSIER
   ============================================================ */
.dossier {
    background: var(--bg-secondary);
    padding: 3rem var(--gutter) 5rem;
    border-top: 1px solid var(--rule);
}
.dossier__article {
    max-width: 800px;
    margin: 0 auto;
    filter: blur(2px);
    opacity: 0.7;
    transition: filter 1s var(--ease-soft), opacity 1s var(--ease-soft);
}
.dossier__article.is-focused {
    filter: blur(0);
    opacity: 1;
}

.dossier__headline {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 1rem;
}

.dossier__deck {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-tertiary);
    text-align: center;
    margin: 0 0 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.dossier__rule {
    margin: 2.5rem 0;
}

.dossier__list {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: dossier;
}

.dossier__item {
    display: grid;
    grid-template-columns: 4rem 1fr;
    gap: 1.5rem;
    padding: 1.8rem 0;
    border-bottom: 1px dashed var(--rule);
}
.dossier__item:first-child { padding-top: 0.5rem; }

.dossier__num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--accent-warm);
    line-height: 1;
    letter-spacing: 0.05em;
}

.dossier__entry-head {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1.18rem;
    line-height: 1.45;
    color: var(--text-primary);
    margin: 0 0 0.7rem;
}
.dossier__entry-body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
    text-align: justify;
    hyphens: auto;
}

.dossier__close {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-tertiary);
    text-align: center;
    margin: 2rem auto 0;
    max-width: 40rem;
    line-height: 1.6;
}
.dossier__close em { color: var(--text-primary); font-style: italic; }

/* ============================================================
   COLOPHON
   ============================================================ */
.colophon {
    background: var(--bg-deeper);
    padding: 3rem var(--gutter) 6rem;
    border-top: 1px solid var(--rule);
}
.colophon__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.colophon__rule-cluster {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 60%;
    margin: 2rem auto;
}
.colophon__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 2.4rem;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    text-transform: uppercase;
    margin: 0 0 1.5rem;
}
.colophon__body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0 0 2rem;
}
.colophon__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 2rem;
    margin: 2rem 0;
    text-align: left;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 2rem 0;
}
.colophon__cell {
    border-left: 1px solid var(--rule);
    padding-left: 1rem;
}
.colophon__label {
    font-family: var(--font-label);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    color: var(--accent-warm);
    margin: 0 0 0.3rem;
}
.colophon__value {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin: 0;
}

.colophon__motto {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.8rem;
    letter-spacing: 0.15em;
    color: var(--accent-warm);
    text-transform: uppercase;
    margin: 1.5rem 0 0.3rem;
}
.colophon__motto-trans {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--text-tertiary);
    margin: 0 0 2rem;
}
.colophon__final {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-tertiary);
    letter-spacing: 0.05em;
    line-height: 1.7;
    margin: 1.5rem 0 0;
    border-top: 1px dashed var(--rule);
    padding-top: 1.5rem;
}

/* ============================================================
   TICKER TAPE
   ============================================================ */
.ticker {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--rule-medium);
    overflow: hidden;
    z-index: 800;
    display: flex;
    align-items: center;
}
.ticker::before {
    content: "WIRE";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    background: var(--bg-primary);
    color: var(--accent-warm);
    font-family: var(--font-label);
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--rule-medium);
    z-index: 2;
}
.ticker::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(to left, var(--bg-secondary) 0%, rgba(22,22,33,0) 100%);
    z-index: 2;
    pointer-events: none;
}
.ticker__rail {
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    white-space: nowrap;
    animation: tickerScroll 90s linear infinite;
}
.ticker:hover .ticker__rail { animation-play-state: paused; }

.ticker__item {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--accent-cool);
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0 0.4rem;
    cursor: default;
    transition: color 0.3s, font-size 0.3s;
    position: relative;
}
.ticker__item::after {
    content: "";
    position: absolute;
    left: 0.4rem;
    right: 0.4rem;
    bottom: 6px;
    height: 1px;
    background: var(--accent-warm);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-soft);
}
.ticker__item:hover {
    color: var(--text-primary);
    font-size: 0.85rem;
}
.ticker__item:hover::after { transform: scaleX(1); }

.ticker__sep {
    color: var(--accent-warm);
    font-size: 0.75rem;
    opacity: 0.6;
}
.ticker__time {
    color: var(--accent-warm);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
}
.ticker__breaking {
    color: var(--accent-signal);
    font-weight: 500;
}

@keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================================
   FOCUSED REVEAL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s var(--ease-soft), transform 0.9s var(--ease-soft);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1023px) {
    .broadsheet {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .sidebar-wire {
        order: 2;
        margin-top: 2rem;
    }
    .lead-column { order: 1; }
}

@media (max-width: 720px) {
    :root { --gutter: 1.2rem; }
    body { font-size: 16px; }

    .monogram { top: 1rem; left: 1rem; padding: 0.4rem 0.7rem; font-size: 0.8rem; }
    .toc-overlay__inner { padding: 5rem 1.5rem 3rem; }
    .toc-item a {
        grid-template-columns: 3rem 1fr auto;
        gap: 0.8rem;
        font-size: 1.3rem;
    }

    .masthead { padding: 5rem 1.2rem 3rem; }
    .masthead__metaline { gap: 0.5rem; font-size: 0.65rem; }
    .masthead__dateline { font-size: 0.7rem; gap: 0.4rem; }

    .dropcap { font-size: 4rem; }
    .lead-body--pull { font-size: 1.15rem; padding-left: 1rem; }

    .editorial__pull {
        grid-template-columns: 1fr;
        text-align: center;
        margin: 2rem 0;
    }
    .editorial__pull-mark { display: none; }

    .colophon__grid {
        grid-template-columns: 1fr 1fr;
    }

    .ticker::before { width: 60px; font-size: 0.65rem; }
    .ticker__rail { left: 60px; }
    .section-header { padding: 1.5rem 1.2rem 0.4rem; gap: 0.7rem; }
    .section-header__label { font-size: 0.7rem; letter-spacing: 0.18em; }
    .section-header__folio { font-size: 0.65rem; }
}
