/* ════════════════════════════════════════════════════════════════
   THE DAILY SCHMOOZE  ·  styles.css
   Set in Bodoni Moda, Crimson Pro, UnifrakturMaguntia, Special Elite
   ════════════════════════════════════════════════════════════════ */

/* ──────────────────────────────  RESET  ────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

/* ──────────────────────────────  TOKENS  ───────────────────────── */
:root {
  /* Newsprint palette */
  --paper:         #f1ead7;
  --paper-light:   #f7f1de;
  --paper-dark:    #e3d8b8;
  --paper-edge:    #cbbf9e;

  /* Ink, with warmth */
  --ink:           #1a1612;
  --ink-soft:      #3a342c;
  --ink-faint:     #5a4f3f;
  --ink-fade:      #7a6e5a;

  /* Rules and accents */
  --rule:          #b8aa8a;
  --rule-strong:   #6e624a;
  --hairline:      #d4c8a8;
  --red:           #8c1a1a;
  --red-dark:      #6e1414;

  /* Fonts */
  --font-mast:    'UnifrakturMaguntia', 'Old English Text MT', 'Goudy Old Style', serif;
  --font-display: 'Fraunces', 'Cheltenham', 'Bodoni 72', 'Didot', 'Times New Roman', serif;
  --font-body:    'Crimson Pro', 'Crimson Text', 'Source Serif Pro', Georgia, serif;
  --font-mono:    'Special Elite', 'Courier Prime', 'American Typewriter', ui-monospace, monospace;

  /* Fraunces variable axis presets */
  --display-vars:    "opsz" 144, "SOFT" 50, "WONK" 0;
  --display-tight:   "opsz" 96,  "SOFT" 50, "WONK" 0;
  --display-mid:     "opsz" 60,  "SOFT" 60, "WONK" 0;
  --display-small:   "opsz" 24,  "SOFT" 60, "WONK" 0;

  /* Geometry */
  --max-w:        1320px;
  --gutter:       2rem;
  --col-rule-w:   1px;
}

/* ──────────────────────────────  BASE  ─────────────────────────── */
html { font-size: 17px; scroll-behavior: smooth; }
@media (min-width: 900px) { html { font-size: 18px; } }
@media (min-width: 1400px) { html { font-size: 19px; } }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 420;
  line-height: 1.5;
  font-feature-settings: "kern" 1, "liga" 1, "onum" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 80% at 50% 0%, rgba(255,255,255,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(0,0,0,0.05) 0%, transparent 60%);
  background-attachment: fixed;
}

/* Vignette and paper feel via fixed pseudo */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1000;
  box-shadow: inset 0 0 14rem rgba(36, 26, 12, 0.18);
}

/* Subtle paper grain across the entire page */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.5;
  mix-blend-mode: multiply;
  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.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.12  0 0 0 0 0.10  0 0 0 0 0.06  0 0 0 0.13 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

::selection {
  background: var(--ink);
  color: var(--paper-light);
}

/* ──────────────────────────────  TYPOGRAPHY  ───────────────────── */
h1, h2, h3, h4, h5 { margin: 0; font-weight: 600; }

.section-eyebrow,
.kicker,
.byline-row,
.dateline,
.flank-key,
.flank-val,
.flank-row,
.section-dek + *,
.stat-label,
.weather-strip,
.section-list,
.col-head,
.copyright,
.form-label,
.continued,
.wire-track,
.wire-cta,
.wire-label,
.motto {
  font-feature-settings: "kern" 1, "liga" 1, "smcp" 1;
}

/* ──────────────────────────────  WIRE TICKER  ──────────────────── */
.wire {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  background: var(--ink);
  color: var(--paper-light);
  border-bottom: 1px solid var(--ink);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 2.4rem;
}
.wire-label {
  padding: 0 1.1rem;
  background: var(--red);
  color: var(--paper-light);
  font-weight: 700;
  height: 100%;
  display: flex; align-items: center;
  letter-spacing: 0.14em;
  white-space: nowrap;
  font-feature-settings: "smcp" 1;
}
.wire-rail {
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex; align-items: center;
}
.wire-rail::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, var(--ink) 0%, transparent 4%, transparent 96%, var(--ink) 100%);
}
.wire-track {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  white-space: nowrap;
  animation: wire-scroll 64s linear infinite;
  padding-left: 100%;
}
.wire-track .sep { color: var(--red); }
.wire-cta {
  padding: 0 1.1rem;
  background: var(--red);
  color: var(--paper-light);
  height: 100%;
  display: flex; align-items: center;
  font-weight: 700;
  letter-spacing: 0.12em;
  border-left: 1px solid var(--ink);
  white-space: nowrap;
  transition: background 200ms ease, color 200ms ease;
}
.wire-cta:hover { background: var(--paper-light); color: var(--ink); }

/* Mobile: drop the STOP THE PRESSES label so the ticker breathes */
@media (max-width: 760px) {
  .wire { grid-template-columns: 1fr auto; }
  .wire-label { display: none; }
  .wire-cta { font-size: 0.74rem; padding: 0 0.85rem; }
  .wire { background: var(--ink); }
}

@keyframes wire-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ──────────────────────────────  MASTHEAD  ─────────────────────── */
.masthead {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.4rem var(--gutter) 1.2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: end;
  border-bottom: 4px double var(--ink);
}
.masthead-flank {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.flank-left  { text-align: left; }
.flank-right { text-align: right; }
.flank-row { display: block; }
.flank-row.tiny { font-style: italic; opacity: 0.85; }
.flank-rule {
  height: 1px;
  background: var(--rule);
  margin: 0.45rem 0;
}
.flank-key { letter-spacing: 0.08em; }
.flank-val { font-weight: 700; margin-left: 0.2em; }
.big-date {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.15rem;
}

.masthead-center { text-align: center; }
.paper-name {
  font-family: var(--font-mast);
  font-weight: 400;
  color: var(--ink);
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-shadow: 0 0 1px rgba(0,0,0,0.25);
  margin-bottom: 0.3rem;
}
.paper-name .word { display: block; }
.paper-name .word:first-child {
  font-size: clamp(1.4rem, 3.6vw, 2.4rem);
  letter-spacing: 0.02em;
  margin-bottom: -0.1em;
}
.paper-name .word.big {
  font-size: clamp(3.5rem, 11vw, 8.6rem);
  line-height: 0.92;
}
.paper-tagline {
  margin: 0.6rem auto 1.1rem;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 36ch;
}
.masthead-rules {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  color: var(--ink-soft);
}
.masthead-rules .bar {
  height: 1px;
  background: var(--ink);
}
.masthead-rules .motto {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}

@media (max-width: 760px) {
  .masthead { grid-template-columns: 1fr; padding-top: 1.6rem; }
  .masthead-flank { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; text-align: center; }
  .flank-rule { display: none; }
  .flank-row.tiny { display: none; }
  .masthead-rules .motto { white-space: normal; font-size: 0.62rem; }
}

/* ──────────────────────────────  PAPER NAV  ────────────────────── */
.paper-nav {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--rule-strong);
}
.weather-strip {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 0.6rem 0;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--hairline);
  letter-spacing: 0.02em;
}
.weather-icon { color: var(--red); margin-right: 0.4em; }
.section-nav {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center;
  gap: 0;
  padding: 0.8rem 0;
}
.section-nav li {
  font-family: var(--font-display);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}
.section-nav li + li::before {
  content: '✶';
  color: var(--red);
  margin: 0 0.8rem;
  font-size: 0.7em;
  vertical-align: middle;
}
.section-nav a {
  color: var(--ink);
  border-bottom: 1px solid transparent;
  padding: 0.15em 0;
  transition: border-color 200ms ease, color 200ms ease;
}
.section-nav a:hover { border-color: var(--red); color: var(--red); }

/* ──────────────────────────────  PAGE WRAPPER  ─────────────────── */
.page {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.4rem var(--gutter) 4rem;
}

/* ──────────────────────────────  HERO BANNER  ──────────────────── */
.hero-banner {
  position: relative;
  margin-bottom: 2.2rem;
}
.hero-figure {
  position: relative;
  margin: 0;
  border-top: 4px double var(--ink);
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
}
.hero-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1.04) contrast(1.04);
  transition: transform 800ms cubic-bezier(.2,.7,.2,1);
  background: var(--paper-dark);
}
@media (max-width: 760px) {
  .hero-figure img { aspect-ratio: 4 / 3; }
}
.hero-banner:hover .hero-figure img { transform: scale(1.015); }

.hero-overlay-tag {
  position: absolute;
  left: 1.2rem; bottom: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  background: var(--paper-light);
  color: var(--ink);
  padding: 0.45em 0.9em;
  border: 1px solid var(--ink);
  box-shadow: 0 6px 0 -2px rgba(0,0,0,0.18);
}
@media (min-width: 760px) {
  .hero-overlay-tag {
    left: 2rem; bottom: 2rem;
    font-size: 0.86rem;
    padding: 0.55em 1.1em;
  }
}

/* Hero collage row */
.hero-collage {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.9rem;
  padding: 0.9rem 0 0;
  border-bottom: none;
}
@media (max-width: 760px) {
  .hero-collage { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; padding-top: 0.6rem; }
  .hero-collage > *:nth-child(n+4) { display: none; }
}
.collage-tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--paper-dark);
  box-shadow: 2px 4px 0 -1px rgba(26, 22, 18, 0.18);
  transition: transform 280ms ease, box-shadow 280ms ease;
}
.collage-tile:hover {
  transform: translateY(-3px);
  box-shadow: 4px 8px 0 -1px rgba(26, 22, 18, 0.24);
}
.collage-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04);
  transition: transform 600ms ease, filter 400ms ease;
}
.collage-tile:hover img { transform: scale(1.05); }
.tile-label {
  position: absolute;
  left: 0.6rem; bottom: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  background: var(--ink);
  color: var(--paper-light);
  padding: 0.25em 0.55em;
  text-transform: uppercase;
}
.collage-more {
  background: var(--ink);
  color: var(--paper-light);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.tile-more {
  font-family: var(--font-display);
  font-feature-settings: "kern" 1, "liga" 1, "smcp" 0;
  font-variation-settings: var(--display-small);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(0.95rem, 1.4vw, 1.25rem);
  line-height: 1.1;
  letter-spacing: -0.005em;
  padding: 0 0.5rem;
}

/* ──────────────────────────────  LEAD GRID  ────────────────────── */
.lead-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  margin-bottom: 3rem;
}
@media (min-width: 980px) {
  .lead-grid {
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1fr);
    gap: 2.6rem;
  }
}

.lead-story { position: relative; min-width: 0; }

/* Kicker + Red CTA row */
.kicker-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
}
.kicker {
  display: flex; align-items: center; gap: 0.7rem;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.kicker-tag {
  background: var(--red);
  color: var(--paper-light);
  padding: 0.3em 0.7em;
  letter-spacing: 0.22em;
  font-weight: 700;
}
.kicker-cta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--paper-light);
  background: var(--red);
  padding: 0.5em 0.95em;
  border: 1px solid var(--red);
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
  white-space: nowrap;
}
.kicker-cta:hover {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-1px);
}

.lead-headline {
  font-family: var(--font-display);
  font-variation-settings: var(--display-vars);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: 0.7rem;
  text-wrap: balance;
  hyphens: auto;
}
.lead-headline em {
  font-style: italic;
  font-weight: 700;
  color: var(--red);
  font-variation-settings: var(--display-vars);
}
.lead-deck {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  color: var(--ink-soft);
  line-height: 1.4;
  max-width: 60ch;
  margin: 0 0 1.1rem;
  text-wrap: balance;
}
.byline-row {
  display: flex; flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 0.45rem 0;
  margin-bottom: 1rem;
}
.byline { color: var(--ink); font-weight: 700; letter-spacing: 0.1em; }
.dateline::before { content: '⌁ '; color: var(--red); }
.filed { font-style: italic; }

.hero-caption {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ink-faint);
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 1rem;
  line-height: 1.45;
  text-wrap: pretty;
  overflow-wrap: break-word;
}
.inline-figure figcaption {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--ink-faint);
  padding: 0.55rem 0 0;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 0.6rem;
  line-height: 1.4;
  text-wrap: pretty;
  overflow-wrap: break-word;
}

.lead-body {
  columns: 1;
  font-size: 1.05rem;
  line-height: 1.58;
  color: var(--ink);
  text-align: justify;
  hyphens: auto;
}
@media (min-width: 700px) {
  .lead-body {
    columns: 2;
    column-gap: 2rem;
    column-rule: 1px solid var(--hairline);
  }
}
.lead-body p { margin: 0 0 0.8rem; }
.lead-body p:last-child { margin-bottom: 0; }

.drop-cap {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 4em;
  line-height: 0.82;
  float: left;
  padding: 0.06em 0.12em 0 0;
  color: var(--ink);
  shape-outside: margin-box;
}

.continued {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--ink-soft);
  break-inside: avoid;
}
.continued a {
  color: var(--red);
  border-bottom: 1px solid var(--red);
  font-style: normal;
  letter-spacing: 0.05em;
}
.continued a:hover { background: var(--red); color: var(--paper-light); }

/* ──────────────────────────────  RAIL / SIDEBAR  ───────────────── */
.above-fold-rail {
  display: flex; flex-direction: column; gap: 1.6rem;
  border-left: 1px solid transparent;
  padding-left: 0;
}
@media (min-width: 980px) {
  .above-fold-rail {
    border-left: 1px solid var(--ink);
    padding-left: 2rem;
  }
}
.rail-card {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 1rem 0;
}
.rail-card:first-child { border-top: 4px double var(--ink); }

.rail-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
  letter-spacing: -0.005em;
}
.rail-list { display: flex; flex-direction: column; gap: 1rem; }
.rail-list li { border-bottom: 1px dashed var(--rule); padding-bottom: 1rem; }
.rail-list li:last-child { border-bottom: none; padding-bottom: 0; }
.rail-list a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  transition: color 200ms ease;
}
.rail-list a:hover .rail-hed { color: var(--red); }
.rail-list a:hover .rail-icon { color: var(--red); transform: rotate(-4deg) scale(1.05); }

.rail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: var(--paper-light);
  border: 1px solid var(--ink);
  flex-shrink: 0;
  transition: color 240ms ease, transform 240ms ease;
}
.rail-icon svg { width: 28px; height: 28px; display: block; }
.rail-text { display: grid; gap: 0.2rem; min-width: 0; }
.rail-hed {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  line-height: 1.2;
  letter-spacing: -0.005em;
  transition: color 200ms ease;
}
.rail-deck {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.38;
}

.rail-stat .stat-row {
  display: flex; align-items: baseline; gap: 0.8rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--rule);
}
.rail-stat .stat-row:last-child { border-bottom: none; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  color: var(--red);
  letter-spacing: -0.02em;
}
.stat-num small {
  font-size: 0.6em;
  vertical-align: super;
  margin-left: 0.05em;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

.rail-callout {
  background: var(--paper-light);
  padding: 1rem 1.1rem !important;
  border: 1px solid var(--ink) !important;
  border-top-width: 4px !important;
  border-top-style: double !important;
}
.callout-title {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.4rem;
}
.rail-callout p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.4;
  margin: 0;
}

/* Bold red CTA in the sidebar */
.rail-big-cta {
  display: block;
  background: var(--red);
  color: var(--paper-light);
  padding: 1.3rem 3.2rem 1.3rem 1.3rem;
  border: 1px solid var(--red);
  transition: background 220ms ease, transform 220ms ease;
  position: relative;
  overflow: hidden;
}
.rail-big-cta::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid var(--paper-light);
  pointer-events: none;
}
.rail-big-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}
.rail-big-cta-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.3rem;
}
.rail-big-cta-line {
  display: block;
  font-family: var(--font-display);
  font-variation-settings: var(--display-mid);
  font-style: italic;
  font-weight: 800;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: -0.01em;
}
.rail-big-cta-arrow {
  position: absolute;
  right: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 0.8;
  font-weight: 600;
  transition: transform 220ms ease;
}
.rail-big-cta:hover .rail-big-cta-arrow {
  transform: translateY(-50%) translateX(4px);
}

/* ──────────────────────────────  BELOW FOLD STORIES  ───────────── */
.below-fold-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
  border-top: 4px double var(--ink);
  padding-top: 2rem;
  margin-top: 1rem;
}
@media (min-width: 760px) {
  .below-fold-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 2.6rem;
  }
}
@media (min-width: 1100px) {
  .below-fold-grid { grid-template-columns: repeat(4, 1fr); }
}

.below-story { display: flex; flex-direction: column; }
.below-story + .below-story { position: relative; }
@media (min-width: 760px) {
  .below-story + .below-story::before {
    content: '';
    position: absolute;
    left: -1.3rem; top: 0; bottom: 0;
    width: 1px;
    background: var(--hairline);
  }
  .below-story:nth-child(3)::before { display: none; }
}
@media (min-width: 1100px) {
  .below-story:nth-child(3)::before { display: block; }
}
.below-hed {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  text-wrap: balance;
}
.below-hed em {
  font-style: italic;
  color: var(--red);
  font-weight: 600;
}
.inline-figure { margin: 0.5rem 0 0.8rem; }
.inline-figure img {
  width: 100%;
  filter: saturate(1.02) contrast(1.04);
  border: 1px solid var(--ink);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--paper-dark);
  transition: transform 500ms ease;
}
.inline-figure:hover img { transform: scale(1.015); }
.below-story p {
  font-size: 0.98rem;
  line-height: 1.5;
  margin: 0 0 0.7rem;
  text-align: justify;
  hyphens: auto;
  text-wrap: pretty;
}

/* ──────────────────────────────  THICK RULES  ──────────────────── */
.thick-rule {
  border: none;
  border-top: 1px solid var(--ink);
  border-bottom: 4px double var(--ink);
  height: 6px;
  margin: 3.5rem 0;
  position: relative;
}
.thick-rule::after {
  content: '✶ ✶ ✶';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--paper);
  padding: 0 1rem;
  color: var(--red);
  font-size: 0.9rem;
  letter-spacing: 0.6em;
}

/* ──────────────────────────────  SECTION HEADERS  ──────────────── */
.section-header {
  margin-bottom: 2rem;
  text-align: left;
}
.section-header.center { text-align: center; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.4rem;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  text-wrap: balance;
}
.section-title.big-cta {
  font-size: clamp(3rem, 6.4vw, 5.2rem);
  font-style: italic;
}
.section-dek {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 64ch;
  margin: 0;
  line-height: 1.45;
}
.section-header.center .section-dek { margin-left: auto; margin-right: auto; }

/* ──────────────────────────────  OPED  ────────────────────────── */
.oped {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background:
    linear-gradient(to right, rgba(140, 26, 26, 0.05), transparent 40%, transparent 60%, rgba(140, 26, 26, 0.05));
}
@media (min-width: 900px) {
  .oped {
    grid-template-columns: 0.8fr 2fr;
    gap: 3rem;
  }
}
.oped-flag { padding-right: 1rem; border-right: 1px solid transparent; }
@media (min-width: 900px) { .oped-flag { border-right: 1px solid var(--ink); } }

.oped-kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.4rem;
}
.oped-flagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
  color: var(--ink);
}
.oped-byline {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

.oped-body {
  columns: 1;
  font-size: 1.1rem;
  line-height: 1.62;
  text-align: justify;
  hyphens: auto;
}
@media (min-width: 1100px) {
  .oped-body { columns: 2; column-gap: 2.4rem; column-rule: 1px solid var(--hairline); }
}
.oped-body p { margin: 0 0 0.9rem; }
.oped-body .signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  text-align: right;
  margin-top: 0.4rem;
}

/* ──────────────────────────────  WHO KNEW  ─────────────────────── */
.who-knew { padding: 1.5rem 0; }
.stunt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px)  { .stunt-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .stunt-grid { grid-template-columns: repeat(3, 1fr); } }

.stunt {
  margin: 0;
  border-top: 1px solid var(--ink);
  padding-top: 1rem;
}
.stunt img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.04);
  border: 1px solid var(--ink);
  background: var(--paper-edge);
  transition: filter 400ms ease, transform 600ms ease;
}
.stunt:hover img {
  transform: scale(1.03);
  filter: saturate(1.12) contrast(1.06);
}
.stunt figcaption { padding: 0.9rem 0 0; }
.stunt h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
  text-wrap: balance;
}
.stunt p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.4;
  margin: 0;
}
.stunt em { color: var(--red); font-style: italic; }

/* ──────────────────────────────  BIG VAULT  ────────────────────── */
.big-vault { padding: 1rem 0; }

/* Marquee container — full-bleed across the viewport */
.vault-marquee {
  margin: 1.6rem calc(-1 * var(--gutter)) 0;
  padding: 1.4rem 0 1.4rem;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background:
    linear-gradient(to bottom, var(--paper-light) 0%, var(--paper) 100%);
  position: relative;
  overflow: hidden;
}
.vault-marquee::before,
.vault-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(40px, 8vw, 120px);
  z-index: 3;
  pointer-events: none;
}
.vault-marquee::before { left: 0;  background: linear-gradient(to right, var(--paper-light), transparent); }
.vault-marquee::after  { right: 0; background: linear-gradient(to left,  var(--paper),       transparent); }

.vault-track {
  display: flex;
  gap: 1.4rem;
  padding: 0 var(--gutter);
  width: max-content;
  animation: vault-marquee 70s linear infinite;
  will-change: transform;
}
.vault-marquee:hover .vault-track,
.vault-marquee:focus-within .vault-track,
.vault-marquee.is-paused .vault-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .vault-track { animation: none; padding-left: 0; }
}
@keyframes vault-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 0.7rem)); }
}

.vault-marquee-hint {
  position: absolute;
  bottom: 0.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-fade);
  background: var(--paper);
  padding: 0.2em 0.6em;
  pointer-events: none;
}

.vault-card {
  display: block;
  flex: 0 0 320px;
  width: 320px;
  padding: 1rem;
  border: 1px solid var(--ink);
  background: var(--paper-light);
  box-shadow: 3px 5px 0 -1px rgba(26, 22, 18, 0.18);
  transition: background 200ms ease, transform 220ms ease, box-shadow 220ms ease;
}
@media (max-width: 600px) {
  .vault-card { flex: 0 0 260px; width: 260px; padding: 0.9rem; }
}
.vault-card:hover {
  background: var(--paper);
  transform: translateY(-4px);
  box-shadow: 5px 10px 0 -1px rgba(26, 22, 18, 0.22);
}
.vault-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04);
  border-bottom: 1px solid var(--ink);
  margin-bottom: 0.7rem;
  background: var(--paper-edge);
  transition: transform 500ms ease;
}
.vault-card:hover img { transform: scale(1.02); }
.vault-meta {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.vault-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin-bottom: 0.3rem;
  text-wrap: balance;
}
.vault-card p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.4;
}
.vault-footnote {
  margin-top: 1.6rem;
  font-family: var(--font-body);
  font-style: italic;
  color: var(--ink-faint);
  text-align: center;
  font-size: 0.98rem;
}

/* ──────────────────────────────  LETTERS  ──────────────────────── */
.letters-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  border-top: 1px solid var(--ink);
  padding-top: 1.6rem;
}
@media (min-width: 900px) { .letters-grid { grid-template-columns: repeat(3, 1fr); } }

.letter {
  padding: 1.6rem 1.4rem;
  background: var(--paper-light);
  border: 1px solid var(--ink);
  position: relative;
  display: flex; flex-direction: column;
}
.letter::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  border: 1px solid var(--ink);
  pointer-events: none;
  margin: 5px;
}
.letter-stamp {
  display: inline-flex; align-items: baseline; gap: 0.5rem;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.5rem;
  margin-bottom: 0.9rem;
}
.stamp-from {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--red);
}
.stamp-org {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.letter-body {
  font-family: var(--font-body);
  font-size: 1.06rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 1.1rem;
  flex-grow: 1;
  text-wrap: pretty;
}
.letter-sig {
  margin-top: auto;
  border-top: 1px dashed var(--rule);
  padding-top: 0.8rem;
}
.sig-line {
  font-family: 'Caveat', 'Snell Roundhand', 'Brush Script MT', cursive;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.sig-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

/* ──────────────────────────────  CLASSIFIEDS  ──────────────────── */
.classifieds-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 1.6rem;
  padding: 1.5rem 0 2rem;
  perspective: 1000px;
}
@media (min-width: 640px)  { .classifieds-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .classifieds-grid { grid-template-columns: repeat(3, 1fr); gap: 2.4rem 1.8rem; } }

/* Each ad is a paper clipping */
.ad {
  position: relative;
  background: var(--paper-light);
  padding: 1.3rem 1.3rem 1.5rem;
  border: 1px solid var(--ink);
  box-shadow: 3px 5px 0 -1px rgba(26, 22, 18, 0.18);
  transform: rotate(var(--ad-rot, 0deg));
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), box-shadow 320ms ease, background 200ms ease;
  cursor: default;
}
.ad:nth-child(1)  { --ad-rot: -1.2deg; }
.ad:nth-child(2)  { --ad-rot:  0.9deg; }
.ad:nth-child(3)  { --ad-rot: -0.5deg; }
.ad:nth-child(4)  { --ad-rot:  1.4deg; }
.ad:nth-child(5)  { --ad-rot: -1.0deg; }
.ad:nth-child(6)  { --ad-rot:  0.6deg; }
.ad:nth-child(7)  { --ad-rot: -1.3deg; }
.ad:nth-child(8)  { --ad-rot:  1.1deg; }

.ad:hover {
  transform: rotate(0deg) translateY(-5px) scale(1.025);
  box-shadow: 6px 12px 0 -2px rgba(26, 22, 18, 0.26);
  z-index: 4;
}

/* Inner double-border outline */
.ad::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid var(--ink-fade);
  pointer-events: none;
  opacity: 0.4;
  transition: opacity 240ms ease, border-color 240ms ease;
}
.ad:hover::before { opacity: 0.9; border-color: var(--ink); }

/* Red rubber stamp that appears on hover */
.ad::after {
  content: 'INQUIRE ✶ 412.977.8517';
  position: absolute;
  bottom: 0.7rem; right: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--red);
  border: 2px solid var(--red);
  padding: 0.3em 0.55em;
  transform: rotate(-10deg) scale(0.92);
  opacity: 0;
  background: rgba(241, 234, 215, 0.7);
  transition: opacity 240ms ease, transform 320ms cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
  text-transform: none;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-variant: small-caps;
}
.ad:hover::after {
  opacity: 0.94;
  transform: rotate(-14deg) scale(1.04);
}

/* ad-large gets a parchment gradient */
.ad.ad-large {
  background: linear-gradient(to bottom, var(--paper-light) 0%, var(--paper-edge) 200%);
}

/* ad-callout (Personals) is the black inverted clipping */
.ad.ad-callout {
  background: var(--ink);
  color: var(--paper-light);
}
.ad.ad-callout::before { border-color: var(--paper-edge); }
.ad.ad-callout .ad-head { color: var(--paper-light); border-color: var(--paper-light); }
.ad.ad-callout .ad-body strong { color: var(--paper-light); }
.ad.ad-callout::after {
  content: 'CALL ✶ 412.977.8517';
  background: rgba(26, 22, 18, 0.7);
  color: var(--paper-light);
  border-color: var(--paper-light);
}

.ad-head {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  color: var(--red);
  border-bottom: 1px solid var(--red);
  padding-bottom: 0.35rem;
  margin-bottom: 0.75rem;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 700;
}
.ad-body {
  font-family: var(--font-body);
  font-size: 0.99rem;
  line-height: 1.5;
  margin: 0;
}
.ad-body strong {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.005em;
  color: var(--ink);
  font-style: normal;
  font-variation-settings: var(--display-small);
}
.ad-body em { color: inherit; font-style: italic; }

/* ──────────────────────────────  EDITOR'S NOTE  ────────────────── */
.editor-note { padding: 1.5rem 0; }
.editor-body {
  columns: 1;
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: justify;
  hyphens: auto;
  max-width: 92ch;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .editor-body { columns: 2; column-gap: 2.4rem; column-rule: 1px solid var(--hairline); }
}
.editor-body p { margin: 0 0 0.9rem; }
.editor-body .signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  text-align: right;
  color: var(--ink-soft);
}

/* ──────────────────────────────  NEWSROOM BANNER  ──────────────── */
.newsroom-banner {
  margin: 3rem calc(-1 * var(--gutter)) 0;
  padding: 2.4rem var(--gutter);
  background: var(--ink);
  color: var(--paper-light);
  position: relative;
  border-top: 4px double var(--paper-light);
  border-bottom: 4px double var(--paper-light);
}
.newsroom-banner::before {
  content: 'REACH  THE  NEWSROOM';
  position: absolute;
  top: -0.7rem; left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--paper-light);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  padding: 0.3em 0.9em;
  white-space: nowrap;
}
.newsroom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 760px) {
  .newsroom-grid { grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; }
  .newsroom-grid::before,
  .newsroom-grid::after {
    content: '';
    width: 1px;
    height: 70%;
    background: rgba(241, 234, 215, 0.3);
    align-self: center;
  }
}
.newsroom-cell {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
}
.newsroom-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper-edge);
}
.newsroom-line {
  font-family: var(--font-display);
  font-variation-settings: var(--display-tight);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
  color: var(--paper-light);
  letter-spacing: -0.01em;
}
a.newsroom-line {
  border-bottom: 2px solid var(--red);
  padding-bottom: 0.1em;
  transition: color 200ms ease, border-color 200ms ease;
}
a.newsroom-line:hover { color: var(--red); border-color: var(--paper-light); }
.newsroom-fine {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--paper-edge);
  margin-top: 0.2rem;
  line-height: 1.4;
}

/* ──────────────────────────────  SUBMIT FORM  ──────────────────── */
.submit-tip {
  padding: 2rem 0;
  background:
    linear-gradient(to bottom, var(--paper-dark) 0%, var(--paper) 30%, var(--paper) 70%, var(--paper-dark) 100%);
  margin: 0 calc(-1 * var(--gutter));
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.tip-form {
  max-width: 720px;
  margin: 2rem auto 0;
  padding: 2rem;
  background: var(--paper-light);
  border: 1px solid var(--ink);
  position: relative;
}
.tip-form::before,
.tip-form::after {
  content: '';
  position: absolute;
  left: 6px; right: 6px;
  height: 1px;
  background: var(--ink);
}
.tip-form::before { top: 6px; }
.tip-form::after  { bottom: 6px; }
.form-row {
  display: grid; grid-template-columns: 1fr; gap: 1.1rem;
  margin-bottom: 1.1rem;
}
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-field { display: block; }
.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.35rem;
}
.tip-form input,
.tip-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--ink);
  padding: 0.5rem 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--ink);
  outline: none;
  resize: vertical;
  transition: border-color 200ms ease;
}
.tip-form input:focus,
.tip-form textarea:focus { border-bottom-color: var(--red); }
.tip-form textarea {
  border: 1.5px solid var(--ink);
  padding: 0.7rem 0.9rem;
  min-height: 9rem;
  margin-bottom: 1.1rem;
}
.form-foot {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  margin-top: 0.4rem;
}
.tip-submit {
  background: var(--ink);
  color: var(--paper-light);
  border: 1px solid var(--ink);
  padding: 0.9em 1.6em;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
}
.tip-submit:hover { background: var(--red); border-color: var(--red); }
.form-fineprint {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: 0;
}
.form-fineprint a {
  color: var(--red);
  border-bottom: 1px solid var(--red);
}
.form-success {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  background: var(--ink);
  color: var(--paper-light);
}
.form-success h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}

/* ──────────────────────────────  COLOPHON  ─────────────────────── */
.colophon {
  margin-top: 0;
  padding: 3rem var(--gutter) 2rem;
  background: var(--paper-dark);
  color: var(--ink);
  font-family: var(--font-body);
  border-top: 1px solid var(--ink);
  position: relative;
}
.colophon::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 6px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 8px, transparent 8px 16px);
}
.colophon-flag {
  max-width: var(--max-w);
  margin: 0 auto 2.4rem;
  text-align: center;
  padding-bottom: 1.6rem;
  border-bottom: 4px double var(--ink);
}
.colophon-name {
  display: block;
  font-family: var(--font-mast);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1;
  color: var(--ink);
  letter-spacing: 0.005em;
  text-shadow: 0 0 1px rgba(0,0,0,0.25);
  margin-bottom: 0.5rem;
}
.colophon-line {
  font-family: var(--font-mono);
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.colophon-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
}
@media (min-width: 760px) {
  .colophon-grid { grid-template-columns: 1.3fr 1fr 1fr 1.4fr; gap: 2.6rem; }
}
.col-head {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.7rem;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.4rem;
}
.colophon p { margin: 0 0 0.5rem; font-size: 0.96rem; line-height: 1.55; color: var(--ink); }
.colophon a {
  color: var(--ink);
  border-bottom: 1px solid var(--ink-fade);
  transition: border-color 200ms ease, color 200ms ease;
}
.colophon a:hover { color: var(--red); border-color: var(--red); }

.staff-list { margin: 0; }
.staff-list dt {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.6rem;
}
.staff-list dt:first-child { margin-top: 0; }
.staff-list dd {
  font-family: var(--font-display);
  font-variation-settings: var(--display-small);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.1;
  color: var(--ink);
  margin: 0.05rem 0 0;
}

.motto-line {
  font-family: var(--font-display);
  font-variation-settings: var(--display-mid);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--red);
  margin-top: 0.8rem;
  letter-spacing: -0.005em;
}

.copyright {
  max-width: var(--max-w);
  margin: 2.4rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ink);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
}
.copyright em { color: var(--red); font-style: italic; }

/* ──────────────────────────────  PRINT  ────────────────────────── */
@media print {
  .wire, .paper-nav, .colophon, .grain { display: none; }
  body { background: white; }
}

/* ──────────────────────────────  FRAUNCES AXES  ────────────────── */
/* Set proper optical size + softness for each display heading scale. */
.lead-headline,
.section-title,
.section-title.big-cta {
  font-variation-settings: var(--display-vars);
}
.below-hed,
.oped-flagline,
.rail-big-cta-line {
  font-variation-settings: var(--display-tight);
}
.rail-title,
.stunt h4,
.vault-card h4,
.stamp-org,
.stat-num,
.tile-more,
.form-success h4 {
  font-variation-settings: var(--display-mid);
}
.rail-hed,
.big-date,
.ad-body strong,
.tip-submit {
  font-variation-settings: var(--display-small);
}

/* ──────────────────────────────  REDUCED MOTION  ───────────────── */
@media (prefers-reduced-motion: reduce) {
  .wire-track { animation: none; padding-left: 0; }
  .hero-banner:hover .hero-figure img,
  .stunt:hover img,
  .vault-card:hover img,
  .inline-figure:hover img,
  .collage-tile:hover img { transform: none; }
  * { transition: none !important; }
}
