@charset "utf-8";
/* ==========================================================================
   PIZZA MOTO BKLYN — editorial stylesheet
   Hand-written. No framework.

   COLOUR ARCHITECTURE
   Two fixed palettes (below) and a set of *band tokens* that flip per section.
   Components never name a literal colour: they use --fg / --rule / --accent,
   so a section can be dropped on white, near-black or tomato and everything
   inside it — labels, rules, captions, links — re-reads correctly.

   There is no cream, beige or warm paper anywhere in this file. The warmth in
   this design comes from the photography, not from the background.
   ========================================================================== */

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-var.woff2") format("woff2-variations"),
       url("../fonts/fraunces-var.woff2") format("woff2");
  font-weight: 300 900;
  font-stretch: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  /* ---- fixed palette ------------------------------------------------- */
  --black:      #111311;   /* primary near-black */
  --charcoal:   #1c1d1a;
  --white:      #fafaf8;   /* primary light surface */
  --neutral:    #f3f3f0;   /* secondary surface — used sparingly */
  --tomato:     #e3422f;
  --tomato-dk:  #a82d20;   /* the accessible tomato: for text on light */
  --mustard:    #e6a828;   /* very limited */
  --olive:      #586149;   /* very limited */
  --border:     #d5d5cf;

  /* neutral greys derived for text, deliberately un-warm */
  --grey-60:    #4a4c47;
  --grey-45:    #6c6e68;
  --grey-on-dk: #b4b6af;
  --rule-on-dk: #32342f;

  /* ---- band tokens: the default band is white ------------------------ */
  --bg:       var(--white);
  --fg:       var(--black);
  --fg-soft:  var(--grey-60);
  --fg-faint: var(--grey-45);
  --rule:     var(--border);
  --rule-hard: var(--black);
  --accent:   var(--tomato-dk);
  --accent-bright: var(--tomato);

  /* ---- type ---------------------------------------------------------- */
  --display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --body: "Iowan Old Style", Charter, "Bitstream Charter", Georgia, "Times New Roman", serif;
  --sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", "Cascadia Mono", Menlo, Consolas, "Courier New", monospace;

  --measure: 34rem;
  --gutter: clamp(1.15rem, 4.5vw, 3.25rem);
  --wide: 78rem;
}

/* ---- band flips ------------------------------------------------------ */
/* Near-black. Used for the masthead, the archive material and the footer. */
.on-dark {
  --bg: var(--black);
  --fg: var(--white);
  --fg-soft: var(--grey-on-dk);
  --fg-faint: #8d8f89;
  --rule: var(--rule-on-dk);
  --rule-hard: #43453f;
  --accent: var(--tomato);
  --accent-bright: var(--tomato);
  background: var(--bg);
  color: var(--fg);
}
.on-charcoal { --bg: var(--charcoal); }

/* Tomato. Type on this band is near-black — black on red is a print gesture,
   and it clears AA at every size, which white on this red does not. */
.on-tomato {
  --bg: var(--tomato);
  --fg: var(--black);
  /* On a saturated red there is no legible mid-tone: anything lighter than
     near-black drops under 4.5:1, and white lands at 4.13. So secondary text
     here stays black and the hierarchy is carried by size, weight and family
     instead of by tone — which is how this would be set in print anyway. */
  --fg-soft: var(--black);
  --fg-faint: var(--black);
  --rule: rgba(17, 19, 17, .26);
  --rule-hard: var(--black);
  --accent: var(--black);
  --accent-bright: var(--white);
  background: var(--bg);
  color: var(--fg);
}

/* Secondary neutral. Used sparingly — one or two blocks per page at most. */
.on-neutral { --bg: var(--neutral); background: var(--bg); }
.on-white { --bg: var(--white); background: var(--bg); color: var(--fg); }

/* --------------------------------------------------------- reset-ish --- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--black); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--body);
  font-size: 1.125rem;
  line-height: 1.62;
  font-synthesis-weight: none;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }

a { color: inherit; text-underline-offset: .18em; text-decoration-thickness: from-font; }
a:hover { color: var(--accent); }
:focus-visible { outline: 2px solid var(--accent-bright); outline-offset: 3px; }

::selection { background: var(--mustard); color: var(--black); }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--tomato); color: var(--white);
  padding: .7rem 1rem; z-index: 99; font-family: var(--sans); font-size: .85rem;
}
.skip:focus { left: 0; }

/* ------------------------------------------------------------- shell --- */
.wrap { width: 100%; max-width: var(--wide); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 52rem; }

.label {
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  font-weight: 650;
  color: var(--accent);
  margin: 0;
}
.label--ink { color: var(--fg); }
.label--faint { color: var(--fg-faint); font-weight: 600; }

.meta {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .04em;
  color: var(--fg-faint);
  margin: 0;
}
.meta a { color: var(--fg-soft); }

/* ------------------------------------------------------------ header --- */
/* The masthead is a near-black slab. On the homepage the hero continues it. */
.masthead { border-bottom: 1px solid var(--rule); }
.masthead__bar {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; padding-block: 1rem 0;
}
.wordmark {
  font-family: var(--display);
  font-weight: 800;
  font-variation-settings: "SOFT" 0, "WONK" 1, "opsz" 80;
  font-size: clamp(1.32rem, 3.6vw, 1.85rem);
  line-height: .92;
  letter-spacing: -.02em;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  color: var(--fg);
}
.wordmark span { display: block; white-space: nowrap; }
.wordmark span + span { color: var(--accent-bright); }
.masthead__rule {
  font-family: var(--mono); font-size: .64rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--fg-faint);
  padding-block: .7rem .75rem;
  border-top: 1px solid var(--rule); margin-top: .9rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}

.nav { display: flex; gap: clamp(.9rem, 2.4vw, 1.9rem); flex-wrap: wrap; }
.nav a {
  font-family: var(--sans); font-size: .76rem; font-weight: 650;
  letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; padding-block: .3rem;
  border-bottom: 2px solid transparent;
  color: var(--fg);
}
.nav a:hover, .nav a[aria-current="page"] { border-bottom-color: var(--accent-bright); color: var(--fg); }
.nav--foot a { font-size: .72rem; letter-spacing: .1em; }

@media (max-width: 40rem) {
  .masthead__bar { flex-wrap: wrap; gap: .55rem; }
  .masthead__bar .nav { flex-basis: 100%; gap: .85rem 1.15rem; }
  .masthead__bar .nav a { font-size: .7rem; letter-spacing: .1em; }
  .masthead__rule { margin-top: .5rem; font-size: .6rem; letter-spacing: .16em; }
}

/* --------------------------------------------------------- hero ------- */
.hero { padding-block: clamp(2.4rem, 7vw, 5.5rem) clamp(2rem, 5vw, 3.4rem); }
.hero__kicker { margin-bottom: clamp(1rem, 3vw, 1.7rem); }
.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-variation-settings: "SOFT" 10, "WONK" 1, "opsz" 144;
  font-size: clamp(3.1rem, 13.4vw, 9.4rem);
  line-height: .82;
  letter-spacing: -.035em;
  text-transform: uppercase;
  margin: 0 0 clamp(1.1rem, 3vw, 1.8rem);
  text-wrap: balance;
  color: var(--fg);
}
.hero h1 em { font-style: normal; color: var(--accent-bright); display: block; }
.hero__lede {
  font-size: clamp(1.15rem, 2.3vw, 1.5rem);
  line-height: 1.42; max-width: 30rem; margin: 0;
  color: var(--fg-soft);
}
.hero__grid { display: grid; gap: clamp(1.4rem, 4vw, 2.6rem); grid-template-columns: 1fr; align-items: end; }
@media (min-width: 62rem) { .hero__grid { grid-template-columns: 1.15fr .85fr; } }

/* -------------------------------------------------------- full bleed --- */
/* Photographs run edge to edge and are never tinted or filtered. */
.bleed { width: 100%; margin: 0; color: var(--fg); }
.bleed img { width: 100%; object-fit: cover; }
.bleed--tall img { aspect-ratio: 3 / 2; }
.bleed--band img { aspect-ratio: 21 / 9; }
/* the opening and closing photographs get real height — at 21:9 against a black
   ground a dark photograph just reads as more black */
.bleed--hero img { aspect-ratio: 16 / 9; }
@media (max-width: 45rem) {
  .bleed--band img { aspect-ratio: 4 / 3; }
  .bleed--hero img { aspect-ratio: 4 / 3; }
}
.bleed figcaption { padding-block: .8rem 1.2rem; }

figcaption {
  font-family: var(--sans);
  font-size: .78rem;
  line-height: 1.45;
  color: var(--fg-faint);
  padding-top: .55rem;
  max-width: 40rem;
}
figcaption b { color: var(--fg-soft); font-weight: 650; }
figcaption a { color: var(--fg-faint); }
.credit {
  font-family: var(--mono); font-size: .66rem; letter-spacing: .02em;
  display: block; margin-top: .3rem; color: var(--fg-faint); opacity: .9;
}

/* ---------------------------------------------------------- sections --- */
.section { padding-block: clamp(2.4rem, 6vw, 4.4rem); }
.section--ruled { border-top: 1px solid var(--rule-hard); }
.section--thin { border-top: 1px solid var(--rule); }

.section__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; margin-bottom: clamp(1.4rem, 3.4vw, 2.2rem);
}
.section__head h2 {
  font-family: var(--display); font-weight: 750;
  font-variation-settings: "SOFT" 0, "WONK" 1, "opsz" 72;
  font-size: clamp(1.8rem, 4.6vw, 2.9rem);
  line-height: 1.02; letter-spacing: -.024em; margin: 0;
  text-transform: uppercase; color: var(--fg);
}

/* ------------------------------------------------------ feature slab --- */
.feature { display: grid; gap: clamp(1.4rem, 3.6vw, 2.8rem); grid-template-columns: 1fr; }
@media (min-width: 58rem) {
  .feature { grid-template-columns: 1.05fr 1fr; align-items: center; }
  .feature--flip > figure { order: 2; }
}
.feature h3 {
  font-family: var(--display); font-weight: 800;
  font-variation-settings: "SOFT" 12, "WONK" 1, "opsz" 110;
  font-size: clamp(2.1rem, 6.4vw, 3.9rem);
  line-height: .92; letter-spacing: -.03em; margin: .5rem 0 .9rem;
  text-transform: uppercase; text-wrap: balance; color: var(--fg);
}
.feature h3 a { text-decoration: none; }
.feature h3 a:hover { color: var(--accent-bright); }
.feature p { margin: 0 0 1rem; max-width: 33rem; color: var(--fg-soft); }
.feature img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
@media (max-width: 58rem) { .feature img { aspect-ratio: 3 / 2; } }

/* -------------------------------------------------------- story list --- */
/* Deliberately not cards: a rule, a label, a headline. */
.stories { display: grid; gap: 0; }
.story {
  display: grid; gap: .35rem 1.6rem;
  padding-block: clamp(1.2rem, 2.9vw, 1.85rem);
  border-top: 1px solid var(--rule);
  grid-template-columns: 1fr;
}
.story:first-child { border-top: 0; padding-top: 0; }
@media (min-width: 48rem) {
  .story { grid-template-columns: 9.75rem 1fr 12rem; align-items: start; }
}
.story h2, .story h3 {
  font-family: var(--display); font-weight: 700;
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 48;
  font-size: clamp(1.34rem, 3.1vw, 1.78rem);
  line-height: 1.08; letter-spacing: -.018em; margin: 0 0 .35rem;
  text-wrap: balance; color: var(--fg);
}
.story h2 a, .story h3 a { text-decoration: none; }
.story h2 a:hover, .story h3 a:hover { color: var(--accent); text-decoration: underline; }
.story p { margin: 0; font-size: 1rem; line-height: 1.5; color: var(--fg-soft); max-width: 38rem; }
.story__meta { font-family: var(--mono); font-size: .68rem; color: var(--fg-faint); line-height: 1.5; }

/* --------------------------------------------------- neighbourhoods --- */
/* Typographic columns separated by hairlines. No card backgrounds. */
.hoods { display: grid; gap: 0; }
@media (min-width: 40rem) { .hoods { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 66rem) { .hoods { grid-template-columns: repeat(4, 1fr); } }
.hood {
  padding: clamp(1.2rem, 2.8vw, 1.7rem) clamp(1rem, 2vw, 1.5rem) clamp(1.4rem, 3vw, 2rem) 0;
  display: flex; flex-direction: column; gap: .55rem; text-decoration: none;
  border-top: 1px solid var(--rule);
  color: var(--fg);
}
@media (min-width: 40rem) {
  .hood { border-left: 1px solid var(--rule); padding-left: clamp(1rem, 2vw, 1.5rem); }
  .hood:nth-child(2n + 1) { border-left: 0; padding-left: 0; }
}
@media (min-width: 66rem) {
  .hood:nth-child(2n + 1) { border-left: 1px solid var(--rule); padding-left: clamp(1rem, 2vw, 1.5rem); }
  .hood:first-child { border-left: 0; padding-left: 0; }
}
.hood h3 {
  font-family: var(--display); font-weight: 750;
  font-variation-settings: "SOFT" 0, "WONK" 1, "opsz" 60;
  font-size: clamp(1.28rem, 2.6vw, 1.5rem); line-height: 1.02; margin: 0;
  letter-spacing: -.018em; text-transform: uppercase; color: var(--fg);
}
.hood p { margin: 0; font-size: .95rem; line-height: 1.45; color: var(--fg-soft); }
.hood .meta { margin-top: auto; padding-top: .6rem; }
.hood:hover h3 { color: var(--accent); }
.on-tomato .hood:hover h3 { color: var(--white); }

/* --------------------------------------------------------- article ---- */
.article { padding-block: clamp(1.8rem, 4vw, 2.8rem) 0; }
.article__head { max-width: 46rem; }
.article__head h1 {
  font-family: var(--display); font-weight: 800;
  font-variation-settings: "SOFT" 8, "WONK" 1, "opsz" 120;
  font-size: clamp(2.35rem, 7.2vw, 4.6rem);
  line-height: .93; letter-spacing: -.032em;
  margin: .65rem 0 1rem; text-wrap: balance; color: var(--fg);
}
.article__standfirst {
  font-size: clamp(1.1rem, 2.2vw, 1.34rem);
  line-height: 1.45; color: var(--fg-soft);
  max-width: 34rem; margin: 0 0 1.5rem;
}
.byline {
  font-family: var(--mono); font-size: .72rem; color: var(--fg-faint);
  border-top: 1px solid var(--rule-hard); border-bottom: 1px solid var(--rule);
  padding-block: .7rem; display: flex; gap: 1.4rem; flex-wrap: wrap;
}

.prose { max-width: 46rem; }
.prose > * { margin-block: 0; }
.prose > * + * { margin-top: 1.15em; }
.prose > p, .prose > ul, .prose > ol,
.prose > h2, .prose > h3, .prose > blockquote { max-width: var(--measure); }
.prose > .pull, .prose > .note { max-width: 39rem; }
.prose h2 {
  font-family: var(--display); font-weight: 750;
  font-variation-settings: "SOFT" 0, "WONK" 1, "opsz" 60;
  font-size: clamp(1.55rem, 3.6vw, 2.05rem); line-height: 1.08;
  letter-spacing: -.02em; margin-top: 2.4em; margin-bottom: .1em;
  text-wrap: balance;
}
.prose h3 {
  font-family: var(--display); font-weight: 700;
  font-variation-settings: "opsz" 36;
  font-size: 1.22rem; line-height: 1.2; margin-top: 2em; margin-bottom: -.35em;
}
.prose h2 + p, .prose h3 + p { margin-top: .75em; }
.prose a { color: var(--accent); text-decoration: underline; }
.prose a:hover { background: var(--mustard); color: var(--black); text-decoration: none; }
.prose ul, .prose ol { padding-left: 1.15rem; margin-block: 1.15em; }
.prose li + li { margin-top: .5em; }
.prose li::marker { color: var(--tomato); }
.prose strong, .prose b { font-weight: 650; }

.prose > p.opener::first-letter {
  font-family: var(--display);
  font-weight: 800;
  font-variation-settings: "SOFT" 20, "WONK" 1, "opsz" 144;
  float: left;
  font-size: 3.85em;
  line-height: .78;
  padding: .06em .09em 0 0;
  color: var(--tomato);
}

/* pull quote — a rule and large type, no panel */
.pull {
  margin-block: 2.3em; padding-left: 1.2rem;
  border-left: 4px solid var(--tomato);
  font-family: var(--display); font-weight: 650;
  font-variation-settings: "SOFT" 10, "WONK" 1, "opsz" 72;
  font-size: clamp(1.45rem, 3.4vw, 2rem);
  line-height: 1.16; letter-spacing: -.02em; color: var(--fg);
}
.pull cite { display: block; font: 400 .72rem/1.5 var(--mono); color: var(--fg-faint); margin-top: .7rem; letter-spacing: .03em; font-style: normal; }

/* side note — rules only */
.note {
  border-top: 2px solid var(--black); border-bottom: 1px solid var(--rule);
  padding-block: .95rem 1.05rem; margin-block: 2.1em;
  font-family: var(--sans); font-size: .92rem; line-height: 1.5; color: var(--fg-soft);
}
.note p { margin: .45rem 0 0; }
.note > .label { margin-bottom: 0; }

/* ---------------------------------------------------- archive module --- */
/* Recovered 2009 material is always printed on near-black. It is the one
   element that looks like a different document, because it is one. */
.archive {
  background: var(--black);
  color: var(--white);
  padding: clamp(1.15rem, 2.8vw, 1.7rem) clamp(1.15rem, 2.8vw, 1.8rem) clamp(1.3rem, 3vw, 1.9rem);
  margin-block: 2.3em;
  border-left: 4px solid var(--tomato);
  --fg: var(--white);
  --fg-soft: var(--grey-on-dk);
  --fg-faint: #8d8f89;
  --accent: var(--tomato);
}
/* inside an already-dark band the module steps up to charcoal so it still reads
   as a separate document rather than dissolving into the page */
.on-dark .archive {
  background: var(--charcoal);
  border-top: 1px solid var(--rule-on-dk);
  border-right: 1px solid var(--rule-on-dk);
  border-bottom: 1px solid var(--rule-on-dk);
}
/* tomato on charcoal is 4.10:1 — under AA for a 11px label, so on a dark band
   the label goes white and the tomato stays in the rule down the left edge */
.on-dark .archive .label { color: var(--white); }
.archive .label { color: var(--tomato); }
.archive blockquote {
  margin: .85rem 0 0; font-family: var(--mono);
  font-size: .9rem; line-height: 1.62; color: var(--white);
}
.archive blockquote p + p { margin-top: .8em; }
.archive .meta { margin-top: 1rem; color: #8d8f89; }
.archive .meta a, .archive a { color: var(--grey-on-dk); }
.archive a:hover { color: var(--tomato); }

/* timeline */
.timeline { list-style: none; padding: 0; margin-block: 2em; }
.timeline li {
  display: grid; gap: .15rem .9rem; grid-template-columns: 1fr;
  padding-block: .9rem; border-top: 1px solid var(--rule);
}
.timeline li:last-child { border-bottom: 1px solid var(--rule); }
@media (min-width: 34rem) { .timeline li { grid-template-columns: 6.5rem 1fr; } }
.timeline time {
  font-family: var(--mono); font-size: .78rem; font-weight: 600;
  color: var(--accent); letter-spacing: .02em; padding-top: .18em;
}
.timeline p { margin: 0; font-size: 1rem; line-height: 1.5; color: var(--fg-soft); }
.timeline b { font-weight: 650; color: var(--fg); }

/* table */
.tablewrap {
  overflow-x: auto; margin-block: 2em;
  border-top: 2px solid var(--black);
  background:
    linear-gradient(to right, var(--bg) 30%, transparent) left / 3rem 100% no-repeat,
    linear-gradient(to left, var(--bg) 30%, transparent) right / 3rem 100% no-repeat,
    radial-gradient(farthest-side at 0 50%, rgba(17,19,17,.14), transparent) left / 1.1rem 100% no-repeat,
    radial-gradient(farthest-side at 100% 50%, rgba(17,19,17,.14), transparent) right / 1.1rem 100% no-repeat;
  background-attachment: local, local, scroll, scroll;
}
.tablewrap:focus-visible { outline: 2px solid var(--tomato); outline-offset: 2px; }
table { border-collapse: collapse; width: 100%; min-width: 32rem; font-size: .95rem; }
th, td { text-align: left; padding: .75rem .9rem .75rem 0; border-bottom: 1px solid var(--rule); vertical-align: top; color: var(--fg-soft); }
th { font-family: var(--sans); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-faint); font-weight: 650; }
td b { font-weight: 650; color: var(--fg); }

.prose figure { margin-block: 2.3em; }
.prose figure img { width: 100%; }

/* sources */
.sources { margin-top: 3rem; border-top: 2px solid var(--black); padding-top: 1.15rem; }
.sources ol { padding-left: 1.2rem; margin: .8rem 0 0; }
.sources li { font-size: .93rem; line-height: 1.5; margin-top: .55rem; color: var(--fg-soft); }
.sources a { color: var(--accent); }

/* read-next — hairline grid, no cards */
.readnext {
  display: grid; gap: 0;
  border-top: 2px solid var(--black);
  margin-top: clamp(2.6rem, 6vw, 4.2rem);
}
@media (min-width: 46rem) { .readnext { grid-template-columns: repeat(3, 1fr); } }
.readnext a {
  padding: 1.15rem 1.3rem 1.5rem 0; text-decoration: none;
  display: flex; flex-direction: column; gap: .45rem;
  border-top: 1px solid var(--rule);
}
@media (min-width: 46rem) {
  .readnext a { border-top: 0; border-left: 1px solid var(--rule); padding-left: 1.3rem; }
  .readnext a:first-child { border-left: 0; padding-left: 0; }
}
.readnext h3 {
  font-family: var(--display); font-weight: 700; font-variation-settings: "opsz" 40;
  font-size: 1.14rem; line-height: 1.14; margin: 0; letter-spacing: -.014em; color: var(--fg);
}
.readnext a:hover h3 { color: var(--accent); }
/* the read-next block is the red break on article pages, so it needs its own
   spacing and a hover that does not rely on colour — white on tomato is 4.13:1,
   under AA at this size, so hover underlines instead of recolouring */
.on-tomato .readnext { border-top: 0; margin-top: 0; padding-block: clamp(1.6rem, 4vw, 2.6rem) clamp(1.8rem, 4vw, 2.8rem); }
.on-tomato .readnext a:hover h3 { color: var(--black); text-decoration: underline; text-underline-offset: .16em; }

/* --------------------------------------------------------- footer ----- */
.foot { padding-block: clamp(2rem, 4.5vw, 2.8rem) 2.2rem; }
.foot__top { display: flex; gap: 1.5rem 2.5rem; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; }
.foot__disclosure {
  font-family: var(--sans); font-size: .82rem; line-height: 1.55;
  color: var(--fg-faint); max-width: 34rem; margin: 1.7rem 0 0;
  border-top: 1px solid var(--rule); padding-top: 1rem;
}
.foot__disclosure a { color: var(--fg-soft); }
.foot__disclosure a:hover { color: var(--tomato); }
.foot__legal { font-family: var(--mono); font-size: .66rem; letter-spacing: .05em; color: var(--fg-faint); margin: 1.1rem 0 0; text-transform: uppercase; }

/* --------------------------------------------------------- 404 -------- */
.lost { padding-block: clamp(3rem, 10vw, 7rem) clamp(2rem, 6vw, 4rem); }
.lost h1 {
  font-family: var(--display); font-weight: 800;
  font-variation-settings: "SOFT" 20, "WONK" 1, "opsz" 144;
  font-size: clamp(3rem, 14vw, 8rem); line-height: .84;
  letter-spacing: -.035em; text-transform: uppercase; margin: .6rem 0 1rem; color: var(--fg);
}
.lost h1 em { font-style: normal; color: var(--accent-bright); display: block; }

/* --------------------------------------------------- hub index page --- */
.hub__intro { max-width: 36rem; font-size: clamp(1.08rem, 2.1vw, 1.28rem); line-height: 1.5; color: var(--fg-soft); }

/* utility */
.divider { height: 2px; background: var(--black); margin-block: clamp(2rem, 5vw, 3.2rem); }

@media print {
  .masthead__rule, .nav, .readnext, .foot__top { display: none; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .archive { background: #fff; color: #000; border-left: 3px solid #000; }
  .archive blockquote, .archive .meta { color: #000; }
}
