/* =============================================================================
   Before It Opens — MODERN BROADSHEET
   White canvas, near-black ink, one brick accent. Familiar block typography.
   Zero external requests: every url() below is a local /assets path.
   ============================================================================= */

/* ------------------------------------------------------------- typefaces -- */
/* Newsreader — variable (wght 400-700). Running text.
   SIL Open Font License 1.1 — see /assets/fonts/OFL-Newsreader.txt            */
@font-face {
  font-family: "Newsreader";
  src: url("/assets/fonts/newsreader-variable-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Newsreader";
  src: url("/assets/fonts/newsreader-italic-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ---------------------------------------------------------------- tokens -- */

:root {
  --paper:      #ffffff;
  --paper-2:    #f4f2ef;   /* alternating band */
  --paper-3:    #e9e6e1;
  --ink:        #131211;
  --ink-2:      #3b3833;
  --ink-3:      #6a655d;   /* meta — 5.6:1 on white */
  --brick:      #a8331e;   /* the single accent — 6.6:1 on white */
  --brick-deep: #7d2415;
  --hair:       #dedad4;
  --hair-2:     #c6c1b8;

  --sans:  ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
           "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --reading: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
             "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  /* fluid scale */
  --t-nano:  0.6875rem;
  --t-micro: 0.75rem;
  --t-small: 0.875rem;
  --t-body:  clamp(1.15rem, 1.07rem + 0.38vw, 1.3125rem);
  --t-lead:  clamp(1.25rem, 1.12rem + 0.65vw, 1.6rem);
  --t-h3:    clamp(1.35rem, 1.16rem + 0.9vw, 1.85rem);
  --t-h2:    clamp(1.75rem, 1.35rem + 1.9vw, 2.75rem);
  --t-h1:    clamp(2.75rem, 1.55rem + 5.4vw, 5.5rem);
  --t-hub:   clamp(2.1rem, 1.35rem + 3.4vw, 4rem);

  --gut:   clamp(1rem, 2.2vw, 2rem);
  --pad:   clamp(1.25rem, 4.4vw, 4rem);
  --shell: 92rem;

  --ease: cubic-bezier(0.2, 0.7, 0.25, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--reading);
  font-size: var(--t-body);
  line-height: 1.7;
  font-synthesis-weight: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  hanging-punctuation: first allow-end;
  overflow-x: hidden;
}

::selection { background: var(--brick); color: #fff; }

:focus-visible {
  outline: 2px solid var(--brick);
  outline-offset: 4px;
  border-radius: 2px;
}

img { max-width: 100%; }

/* ---------------------------------------------------------------- layout -- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.grid12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gut);
}

/* --------------------------------------------------------------- skiplink -- */

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 200;
  transform: translateY(-160%);
  background: var(--ink);
  color: #fff;
  font-family: var(--sans);
  font-size: var(--t-micro);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 1.2rem;
  text-decoration: none;
}
.skip-link:focus-visible { transform: none; }

/* -------------------------------------------------------- sticky masthead -- */

.site-head {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--hair);
}
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-head {
    background: rgba(255, 255, 255, 0.78);
    -webkit-backdrop-filter: blur(16px) saturate(1.6);
    backdrop-filter: blur(16px) saturate(1.6);
  }
}

.head-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.05rem, 0.92rem + 0.6vw, 1.4rem);
  letter-spacing: -0.025em;
  line-height: 1;
  padding: 0.75rem 0;
  white-space: nowrap;
}
.wordmark .mark {
  display: block;
  width: 0.62em;
  height: 0.62em;
  background: var(--brick);
  flex: none;
  transition: transform 0.4s var(--ease);
}
.wordmark:hover .mark { transform: rotate(45deg); }

.head-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.1rem, 1.6vw, 1.4rem);
  font-family: var(--sans);
  font-size: var(--t-nano);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.head-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;      /* 44px tap target */
  padding: 0 0.45rem;
  color: var(--ink-2);
  text-decoration: none;
  white-space: nowrap;
}
.head-nav a::after {
  content: "";
  position: absolute;
  left: 0.45rem;
  right: 0.45rem;
  bottom: 0.8rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.head-nav a:hover { color: var(--brick); }
.head-nav a:hover::after { transform: scaleX(1); }

/* ------------------------------------------------------------- hero (home) */

.hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: clamp(28rem, 74vh, 44rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  margin: 0;
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  border: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  /* two-axis scrim: keeps the photograph readable on the right while the
     headline block on the left stays well past AA against any image */
  background:
    linear-gradient(to right,
      rgba(9, 8, 7, 0.94) 0%,
      rgba(9, 8, 7, 0.86) 36%,
      rgba(9, 8, 7, 0.40) 66%,
      rgba(9, 8, 7, 0.06) 100%),
    linear-gradient(to top,
      rgba(9, 8, 7, 0.52) 0%,
      rgba(9, 8, 7, 0.12) 62%,
      rgba(9, 8, 7, 0) 100%);
}

.hero-in {
  width: 100%;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
.hero-body { grid-column: 1 / span 10; }

.hero .kicker { color: #f2b9a8; }

.hero-title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: var(--t-h1);
  line-height: 0.94;
  letter-spacing: -0.038em;
  color: #fff;
  margin: 0.35em 0 0;
  text-wrap: balance;
  max-width: 18ch;
}
.hero-title a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.5s var(--ease);
}
.hero-title a:hover { background-size: 100% 2px; }

.hero-deck {
  font-size: var(--t-lead);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
  max-width: 46ch;
  margin: 1.1rem 0 0;
}
.hero-meta {
  font-family: var(--sans);
  font-size: var(--t-micro);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin: 1.4rem 0 0;
}
.hero-credit {
  position: absolute;
  right: var(--pad);
  top: clamp(1.2rem, 3vw, 2rem);
  max-width: 15rem;
  margin: 0;
  text-align: right;
  font-family: var(--sans);
  font-size: var(--t-nano);
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.72);
}
@media (max-width: 46rem) {
  .hero-credit { display: none; }
  .hero-body { grid-column: 1 / -1; }
  .hero::after {
    background:
      linear-gradient(to top,
        rgba(9, 8, 7, 0.93) 0%,
        rgba(9, 8, 7, 0.84) 44%,
        rgba(9, 8, 7, 0.52) 74%,
        rgba(9, 8, 7, 0.22) 100%);
  }
}

/* very narrow: keep the masthead on one line */
@media (max-width: 26rem) {
  .head-nav { font-size: 0.625rem; letter-spacing: 0.1em; gap: 0; }
  .head-nav a { padding: 0 0.35rem; }
  .head-nav a::after { left: 0.35rem; right: 0.35rem; }
  .wordmark { font-size: 1rem; gap: 0.4rem; }
}

/* ------------------------------------------------------------- shared bits */

.kicker {
  font-family: var(--sans);
  font-size: var(--t-nano);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brick);
  margin: 0;
}

.meta, time {
  font-family: var(--sans);
  font-size: var(--t-micro);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
}

.rail-label {
  font-family: var(--sans);
  font-size: var(--t-nano);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 1rem;
}

a { color: var(--brick); text-underline-offset: 0.18em; text-decoration-thickness: 1px; }
a:hover { color: var(--brick-deep); }

h1, h2, h3, h4 { font-family: var(--sans); font-weight: 800; letter-spacing: -0.025em; }

/* ---------------------------------------------------------- desk index --- */

.desks {
  padding-block: clamp(3rem, 7vw, 5.5rem);
  border-bottom: 1px solid var(--hair);
}
.desks .rail-label { grid-column: 1 / span 3; }
.desks ul {
  grid-column: 4 / -1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  column-gap: var(--gut);
}
.desks li { border-top: 1px solid var(--hair); }
.desks a {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  min-height: 3.4rem;
  padding: 0.85rem 0;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: -0.015em;
  transition: color 0.3s var(--ease);
}
.desks a .dnum {
  font-size: var(--t-nano);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--brick);
  font-variant-numeric: tabular-nums;
  flex: none;
}
.desks a .dname {
  background-image: linear-gradient(var(--brick), var(--brick));
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s var(--ease);
}
.desks a:hover { color: var(--brick); }
.desks a:hover .dname { background-size: 100% 1px; }

@media (max-width: 52rem) {
  .desks .rail-label { grid-column: 1 / -1; }
  .desks ul { grid-column: 1 / -1; }
}

/* --------------------------------------------------------- featured pair -- */

.featured { padding-block: clamp(3rem, 7vw, 6rem); }
.featured-head {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 0.9rem;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}
.featured-head .rail-label { margin: 0; }
.featured-head h2 {
  font-size: var(--t-h3);
  margin: 0;
  letter-spacing: -0.03em;
}

.feat { grid-column: span 6; margin-bottom: 2.5rem; }
.feat:first-of-type { grid-column: span 7; }
.feat:last-of-type  { grid-column: span 5; }

.feat-img {
  display: block;
  margin: 0 0 1.15rem;
  overflow: hidden;
  background: var(--paper-3);
}
.feat-img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 0;
  transition: transform 0.9s var(--ease);
}
.feat:hover .feat-img img { transform: scale(1.045); }

.feat h3 {
  font-size: var(--t-h2);
  line-height: 1.04;
  margin: 0.5rem 0 0.6rem;
  text-wrap: balance;
}
.feat h3 a {
  color: var(--ink);
  text-decoration: none;
  background-image: linear-gradient(var(--brick), var(--brick));
  background-size: 0% 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.5s var(--ease), color 0.3s var(--ease);
}
.feat:hover h3 a { color: var(--brick); background-size: 100% 2px; }
.feat-deck {
  color: var(--ink-2);
  font-size: 1.0625rem;
  line-height: 1.55;
  margin: 0 0 0.7rem;
  max-width: 48ch;
}
.feat .meta { display: block; }

@media (max-width: 52rem) {
  .feat, .feat:first-of-type, .feat:last-of-type { grid-column: 1 / -1; }
}

/* ------------------------------------------------------------- hub bands -- */

.hub {
  width: 100%;
  padding-block: clamp(3.2rem, 7.5vw, 6.5rem);
  scroll-margin-top: 5rem;
}
.hub:nth-of-type(even) { background: var(--paper-2); }

.hub-head { grid-column: 1 / -1; margin-bottom: clamp(2rem, 4.5vw, 3.4rem); }
.hub-index {
  font-family: var(--sans);
  font-size: var(--t-nano);
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--brick);
  margin: 0 0 0.7rem;
  font-variant-numeric: tabular-nums;
}
.hub-title {
  font-size: var(--t-hub);
  line-height: 0.98;
  letter-spacing: -0.038em;
  margin: 0;
  max-width: 16ch;
  text-wrap: balance;
}
.hub-blurb {
  font-size: var(--t-lead);
  line-height: 1.42;
  color: var(--ink-2);
  max-width: 52ch;
  margin: 1.1rem 0 0;
}

.index-list {
  grid-column: 1 / -1;
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--hair-2);
}
.index-list > li {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gut);
  align-items: start;
  padding: clamp(1.3rem, 2.6vw, 2.1rem) 0;
  border-bottom: 1px solid var(--hair);
}
.idx-rail { grid-column: 1 / span 3; }
.idx-rail .kicker { display: block; margin-bottom: 0.3rem; }
.idx-rail time { display: block; }
.idx-text { grid-column: 4 / span 6; }
.idx-thumb { grid-column: 10 / span 3; display: block; overflow: hidden; background: var(--paper-3); }
.idx-thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 0;
  transition: transform 0.9s var(--ease);
}
.index-list > li:hover .idx-thumb img { transform: scale(1.06); }

.index-list h3 {
  font-size: var(--t-h3);
  line-height: 1.1;
  margin: 0 0 0.45rem;
  text-wrap: balance;
}
.index-list h3 a {
  color: var(--ink);
  text-decoration: none;
  background-image: linear-gradient(var(--brick), var(--brick));
  background-size: 0% 1.5px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.45s var(--ease), color 0.3s var(--ease);
}
.index-list > li:hover h3 a { color: var(--brick); background-size: 100% 1.5px; }
.index-list p {
  margin: 0;
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 60ch;
}

.hub-top {
  grid-column: 1 / -1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  margin-top: 1.4rem;
  font-family: var(--sans);
  font-size: var(--t-nano);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-3);
}
.hub-top:hover { color: var(--brick); }

@media (max-width: 60rem) {
  .idx-text  { grid-column: 4 / -1; }
  .idx-thumb { display: none; }
}
@media (max-width: 40rem) {
  .idx-rail {
    grid-column: 1 / -1;
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
  }
  .idx-rail .kicker { margin-bottom: 0; }
  .idx-text { grid-column: 1 / -1; }
}

/* ------------------------------------------------------------ article page */

.article-head {
  padding-block: clamp(2.6rem, 6vw, 5rem) clamp(1.6rem, 3.5vw, 2.6rem);
}
.article-head .head-main { grid-column: 1 / span 8; }
.article-head .head-rail {
  grid-column: 10 / span 3;
  align-self: end;
  padding-bottom: 0.4rem;
}
.article-head h1 {
  font-size: var(--t-h1);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0.35em 0 0;
  text-wrap: balance;
  max-width: 20ch;
}
.article-head .deck {
  font-family: var(--reading);
  font-size: var(--t-lead);
  line-height: 1.42;
  color: var(--ink-2);
  max-width: 52ch;
  margin: 1.1rem 0 0;
}
.byline {
  font-family: var(--sans);
  font-size: var(--t-micro);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0;
  border-top: 2px solid var(--ink);
  padding-top: 0.7rem;
  line-height: 1.7;
}
@media (max-width: 60rem) {
  .article-head .head-main,
  .article-head .head-rail { grid-column: 1 / -1; }
  .article-head .head-rail { margin-top: 1.8rem; }
}

/* full-bleed lede photograph */
.lede-figure {
  width: 100%;
  margin: 0 0 clamp(2.2rem, 5vw, 3.6rem);
}
.lede-figure img {
  display: block;
  width: 100%;
  height: clamp(16rem, 52vh, 34rem);
  object-fit: cover;
  border: 0;
}
.lede-figure figcaption {
  max-width: var(--shell);
  margin-inline: auto;
  padding: 0.7rem var(--pad) 0;
}

figure { margin: 0; }
figcaption {
  font-family: var(--sans);
  font-size: var(--t-micro);
  line-height: 1.45;
  color: var(--ink-3);
  letter-spacing: 0.01em;
}

.article-body { padding-bottom: clamp(3rem, 6vw, 5rem); }
.article-body .body { grid-column: 2 / span 7; max-width: 64ch; }
.article-body .aside-rail {
  grid-column: 10 / span 3;
  position: sticky;
  top: 5.5rem;
  align-self: start;
}
@media (max-width: 60rem) {
  .article-body .body,
  .article-body .aside-rail { grid-column: 1 / -1; }
  .article-body .aside-rail { margin-top: 3rem; position: static; }
}

/* One familiar system sans throughout: regular for reading, heavy for sturdy,
   block-like headings and labels. */
.body {
  font-size: var(--t-body);
  font-weight: 400;
  line-height: 1.68;
}
.method-note {
  margin: 0 0 2rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--brick);
  background: color-mix(in srgb, var(--paper) 82%, var(--brick) 18%);
  color: var(--ink-2);
  font-family: var(--sans);
  font-size: 0.88rem;
  line-height: 1.55;
}
.body p { margin: 0 0 1.3em; }
.body h2 {
  position: relative;
  font-size: var(--t-h2);
  line-height: 1.06;
  letter-spacing: -0.032em;
  margin: 2.6em 0 0.7em;
  text-wrap: balance;
}
.body h2::before {
  content: "";
  position: absolute;
  top: -0.9rem;
  left: 0;
  width: 3.5rem;
  height: 3px;
  background: var(--brick);
}
.body h3 {
  font-size: var(--t-h3);
  line-height: 1.15;
  margin: 2.1em 0 0.5em;
}
.body ul, .body ol { margin: 0 0 1.35em; padding-left: 1.35em; }
.body li { margin-bottom: 0.5em; }
.body li::marker { color: var(--brick); }
.body strong { font-weight: 700; }
.body em { font-style: italic; }

/* deliberate pull quote — the one centered block on the site */
.body blockquote {
  margin: 2.6em 0;
  padding: 0;
  border: 0;
  text-align: center;
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(1.4rem, 1.05rem + 1.5vw, 2.1rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-wrap: balance;
}
.body blockquote p { margin: 0; }
.body blockquote::before {
  content: "";
  display: block;
  width: 3.5rem;
  height: 3px;
  background: var(--brick);
  margin: 0 auto 1.1rem;
}

.body hr {
  border: 0;
  height: 1px;
  background: var(--hair-2);
  margin: 2.8em 0;
}

.body table {
  border-collapse: collapse;
  width: 100%;
  margin: 0 0 1.6em;
  font-size: var(--t-small);
  display: block;
  overflow-x: auto;
}
.body th, .body td {
  padding: 0.55rem 1rem 0.55rem 0;
  border-bottom: 1px solid var(--hair);
  text-align: left;
  vertical-align: top;
}
.body th {
  font-family: var(--sans);
  font-size: var(--t-nano);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  border-bottom: 2px solid var(--ink);
}

.body-figure { margin: 2.6em 0; }
.body-figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
}
.body-figure figcaption { padding-top: 0.65rem; }

.endmark {
  width: 0.7rem;
  height: 0.7rem;
  background: var(--brick);
  margin: 2.8rem 0 0;
}

.more {
  border-top: 2px solid var(--ink);
  padding-top: 1rem;
}
.more h2 {
  font-family: var(--sans);
  font-size: var(--t-nano);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 0.4rem;
}
.more ul { list-style: none; margin: 0; padding: 0; }
.more li { border-bottom: 1px solid var(--hair); }
.more a {
  display: block;
  padding: 0.9rem 0;
  min-height: 2.75rem;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: -0.015em;
  transition: color 0.3s var(--ease), padding-left 0.35s var(--ease);
}
.more a:hover { color: var(--brick); padding-left: 0.5rem; }

/* ------------------------------------------------------------ static page */

.page-body { padding-bottom: clamp(3rem, 6vw, 5rem); }
.page-body .body { grid-column: 2 / span 7; max-width: 68ch; }
@media (max-width: 60rem) { .page-body .body { grid-column: 1 / -1; } }

/* ---------------------------------------------------------------- footer -- */

.site-foot {
  width: 100%;
  background: var(--ink);
  color: #ddd8d0;
  padding-block: clamp(3rem, 6vw, 5rem);
}
.foot-mark {
  grid-column: 1 / span 4;
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.6rem, 1.1rem + 2vw, 2.6rem);
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  margin: 0 0 1.2rem;
}
.foot-nav {
  grid-column: 6 / span 3;
  display: flex;
  flex-direction: column;
  font-family: var(--sans);
  font-size: var(--t-nano);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.foot-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: #ddd8d0;
  text-decoration: none;
  width: fit-content;
}
.foot-nav a:hover { color: #f2b9a8; }
.foot-fine {
  grid-column: 10 / span 3;
  font-size: var(--t-small);
  line-height: 1.55;
  color: #ada69d;
  margin: 0 0 0.8rem;
}
@media (max-width: 60rem) {
  .foot-mark, .foot-nav, .foot-fine { grid-column: 1 / -1; }
  .foot-nav { flex-direction: row; flex-wrap: wrap; gap: 0 1.2rem; margin-bottom: 1.4rem; }
}

/* ---------------------------------------------------------------- motion -- */

@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .reveal {
      animation: reveal-up linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 55%;
    }
    @keyframes reveal-up {
      from { opacity: 0; transform: translateY(1.5rem); }
      to   { opacity: 1; transform: none; }
    }
  }
}

/* ----------------------------------------------------------------- print -- */

@media print {
  body { background: #fff; color: #000; font-size: 11pt; overflow: visible; }
  .site-head { position: static; border: 0; }
  .skip-link, .head-nav, .hero-credit, .more, .endmark,
  .foot-nav, .desks, .idx-thumb, .feat-img { display: none; }
  .hero { min-height: 0; background: none; }
  .hero > img, .hero::after { display: none; }
  .hero-title, .hero-deck, .hero-meta { color: #000; }
  .site-foot { background: none; color: #000; }
  .foot-mark, .foot-fine { color: #000; }
  .article-body .body, .page-body .body { grid-column: 1 / -1; max-width: none; }
  .lede-figure img { height: auto; }
  a { color: #000; }
  .body a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #444; }
  h1, h2, h3 { break-after: avoid; }
  blockquote, li, figure { break-inside: avoid; }
}

/* =============================================================================
   2026 EDITORIAL ISSUE SYSTEM
   A compact, desk-led trade magazine. This block intentionally supersedes the
   earlier broadsheet treatment without altering the content pipeline.
   ============================================================================= */

@media screen {
  :root {
    --paper: #f1f0ea;
    --paper-2: #e6e8e3;
    --paper-3: #d6dad5;
    --ink: #0d2027;
    --ink-2: #34474c;
    --ink-3: #5d6b6d;
    --brick: #d94f24;
    --brick-deep: #a93618;
    --hair: #cfd2cc;
    --hair-2: #aeb6b2;
    --shell: 88rem;
    --pad: clamp(1rem, 3vw, 3rem);
    --gut: clamp(1rem, 2vw, 1.75rem);
    --shadow: 0 18px 45px rgba(13, 32, 39, 0.13);
  }

  body {
    min-width: 20rem;
    background:
      linear-gradient(90deg, rgba(13, 32, 39, 0.035) 1px, transparent 1px) 0 0 / 5.5rem 100%,
      var(--paper);
  }

  a { transition: color 180ms ease, background-color 180ms ease; }
  img { display: block; }

  .site-head {
    position: sticky;
    top: 0;
    z-index: 100;
    overflow-x: clip;
    background: rgba(241, 240, 234, 0.94);
    border: 0;
    box-shadow: 0 1px 0 var(--hair);
    backdrop-filter: blur(16px);
  }

  .mastline {
    display: grid;
    grid-template-columns: minmax(14rem, 1fr) auto auto;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 4rem);
    min-height: 5.4rem;
  }

  .wordmark {
    min-height: 3rem;
    padding: 0;
    font-size: clamp(2rem, 3vw, 3.1rem);
    font-weight: 800;
    letter-spacing: -0.035em;
  }

  .mastline-note {
    margin: 0;
    padding-left: 1rem;
    border-left: 3px solid var(--brick);
    color: var(--ink-2);
    font-family: var(--sans);
    font-size: var(--t-nano);
    font-weight: 650;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-transform: uppercase;
  }

  .mastline-note span { color: var(--ink-3); font-weight: 500; }

  .head-nav {
    gap: 0.15rem;
    font-size: var(--t-nano);
    letter-spacing: 0.1em;
  }

  .head-nav a {
    min-height: 3rem;
    padding-inline: 0.7rem;
  }

  .head-nav a::after { display: none; }
  .head-nav a:hover { color: var(--paper); background: var(--ink); }

  .desk-strip { background: var(--ink); }
  .desk-strip .shell {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    padding-inline: var(--pad);
  }

  .desk-strip a {
    display: grid;
    place-items: center;
    min-height: 3rem;
    padding: 0.4rem 0.7rem;
    color: #e8ebe7;
    border-left: 1px solid rgba(255,255,255,0.15);
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 650;
    letter-spacing: 0.07em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
  }

  .desk-strip a:last-child { border-right: 1px solid rgba(255,255,255,0.15); }
  .desk-strip a:hover { color: #fff; background: var(--brick); }

  .kicker {
    color: var(--brick-deep);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
  }

  .kicker a { color: inherit; }

  .section-number {
    margin: 0;
    color: var(--brick);
    font-family: var(--sans);
    font-size: clamp(2.5rem, 5vw, 5.5rem);
    font-weight: 800;
    letter-spacing: -0.08em;
    line-height: 0.75;
    font-variant-numeric: tabular-nums;
  }

  /* Front page lead: a bounded photo plate, never a screen-wide background. */
  .front-lead {
    /* Top-aligned: the photo tracks the headline's first line. Bottom-aligning
       it dropped the plate to the floor of the row and left the gap above. */
    align-items: start;
    padding-block: clamp(2.5rem, 6vw, 5.5rem);
    border-bottom: 1px solid var(--hair-2);
  }

  .lead-label {
    grid-column: 1;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 0.2rem;
  }

  .lead-label span {
    color: var(--brick);
    font-family: var(--sans);
    font-size: clamp(2.7rem, 5vw, 5.2rem);
    font-weight: 800;
    letter-spacing: -0.08em;
    line-height: 0.8;
  }

  .lead-label p {
    margin: 0;
    color: var(--ink-3);
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }

  .lead-image {
    grid-column: 2 / span 6;
  }

  .lead-image img {
    width: 100%;
    height: auto !important;
    aspect-ratio: 3 / 2;
    background: var(--paper-3);
    object-fit: cover;
    object-position: center;
  }

  .lead-image figcaption { padding-top: 0.55rem; }

  .lead-copy {
    grid-column: 8 / -1;
    padding-bottom: 1.7rem;
  }

  .lead-copy h1 {
    margin: 0.35rem 0 1.1rem;
    font-size: clamp(2.6rem, 4.8vw, 5.4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.92;
    text-wrap: balance;
  }

  .lead-copy h1 a,
  .desk-lead-copy h2 a,
  .feat h3 a,
  .story-copy h3 a {
    color: var(--ink);
    text-decoration: none;
  }

  .lead-copy h1 a:hover,
  .desk-lead-copy h2 a:hover,
  .feat h3 a:hover,
  .story-copy h3 a:hover { color: var(--brick-deep); }

  .lead-deck {
    margin: 0 0 1.3rem;
    color: var(--ink-2);
    font-size: clamp(1.08rem, 1.35vw, 1.3rem);
    line-height: 1.48;
  }

  /* Two secondary stories only. */
  .latest { padding-block: clamp(4rem, 8vw, 7rem); }

  .featured-head,
  .directory-head,
  .archive-head {
    display: grid;
    grid-template-columns: minmax(4rem, 1fr) minmax(0, 8fr);
    align-items: end;
    gap: var(--gut);
    padding-bottom: 1.4rem;
    border-bottom: 3px solid var(--ink);
  }

  .featured-head { margin: 0; }

  .featured-head h2,
  .directory-head h2,
  .archive-head h2 {
    margin: 0.25rem 0 0;
    font-size: clamp(2rem, 3.6vw, 3.8rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
  }

  .featured-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--gut);
    margin-top: 2rem;
  }

  .feat,
  .feat:first-of-type,
  .feat:last-of-type {
    display: grid;
    grid-template-columns: minmax(10rem, 0.8fr) minmax(0, 1.2fr);
    grid-template-rows: auto auto 1fr auto;
    align-items: start;
    gap: 0 1.4rem;
    margin: 0;
    padding-top: 0.75rem;
    border-top: 1px solid var(--hair-2);
  }

  .feat-img {
    grid-row: 1 / span 4;
    margin: 0;
  }

  .feat-img img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
  }

  .feat h3 {
    margin: 0.55rem 0;
    font-size: clamp(1.55rem, 2.4vw, 2.4rem);
    line-height: 1;
    letter-spacing: -0.045em;
  }

  .feat-deck {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 0.8rem;
    color: var(--ink-2);
    font-size: 0.96rem;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  /* Six clear desks replace the full 51-story homepage archive. */
  .desk-directory {
    padding-block: clamp(4rem, 8vw, 7rem);
    background: var(--ink);
    color: #f4f5f1;
  }

  .directory-head { border-color: rgba(255,255,255,0.65); }
  .directory-head .kicker { color: #ff9c73; }
  .directory-head h2 { max-width: 17ch; color: #fff; }

  .directory-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    border-left: 1px solid rgba(255,255,255,0.2);
  }

  .directory-card {
    display: grid;
    grid-template-columns: 3.5rem minmax(0, 1fr);
    grid-template-rows: auto 1fr auto;
    gap: 0.6rem 1.2rem;
    min-height: 12rem;
    padding: 1.5rem;
    color: #eef0ec;
    border-right: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    text-decoration: none;
  }

  .directory-card:hover { color: #fff; background: var(--brick-deep); }

  .directory-index {
    grid-row: 1 / span 3;
    color: #ff9c73;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
  }

  .directory-card strong {
    grid-column: 2;
    min-width: 0;
    max-width: 14ch;
    font-family: var(--sans);
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
  }

  .directory-card > span:nth-child(3) {
    grid-column: 2;
    min-width: 0;
    max-width: 46ch;
    color: #c7cfcc;
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .directory-card small {
    grid-column: 2;
    align-self: end;
    color: #fff;
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  /* Desk pages */
  .desk-head {
    padding-block: clamp(3rem, 7vw, 6.5rem);
    border-bottom: 1px solid var(--hair-2);
  }

  .desk-intro { grid-column: 2 / span 9; }
  .breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    min-height: 2.75rem;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
    color: var(--ink-3);
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .breadcrumbs a { color: var(--ink-2); }
  .desk-index { margin: 0 0 0.7rem; color: var(--brick-deep); font-family: var(--sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
  .desk-intro h1 { max-width: 13ch; margin: 0; font-size: clamp(3.4rem, 7vw, 7.4rem); letter-spacing: -0.075em; line-height: 0.88; }
  .desk-intro > p:last-child { max-width: 50ch; margin: 1.5rem 0 0; color: var(--ink-2); font-size: var(--t-lead); line-height: 1.45; }

  .desk-lead {
    align-items: center;
    padding-block: clamp(3rem, 6vw, 5rem);
    border-bottom: 1px solid var(--hair-2);
  }

  .desk-lead-image { grid-column: 1 / span 7; }
  .desk-lead-image img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: center; }
  .desk-lead-image figcaption { padding-top: 0.55rem; }
  .desk-lead-copy { grid-column: 9 / -1; }
  .desk-lead-copy h2 { margin: 0.55rem 0 1rem; font-size: clamp(2.2rem, 4vw, 4.2rem); line-height: 0.94; letter-spacing: -0.06em; }
  .desk-lead-copy > p:not(.kicker):not(.meta) { color: var(--ink-2); font-size: 1.05rem; line-height: 1.5; }

  .desk-archive { padding-block: clamp(4rem, 8vw, 7rem); }
  .archive-head { margin-bottom: 2rem; }
  .desk-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--hair-2); }
  .desk-list > li {
    display: grid;
    grid-template-columns: 3rem 9rem minmax(0, 1fr) 9rem;
    align-items: center;
    gap: var(--gut);
    min-height: 9.5rem;
    padding-block: 1.1rem;
    border-bottom: 1px solid var(--hair);
  }

  .story-number { color: var(--brick-deep); font-family: var(--sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; }
  .story-thumb { overflow: hidden; background: var(--paper-3); }
  .story-thumb img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: center; transition: transform 250ms ease; }
  .desk-list > li:hover .story-thumb img { transform: scale(1.035); }
  .story-copy h3 { margin: 0.35rem 0 0.45rem; font-size: clamp(1.45rem, 2.2vw, 2rem); line-height: 1.05; }
  .story-copy > p:last-child { display: -webkit-box; overflow: hidden; margin: 0; color: var(--ink-2); font-size: 0.93rem; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
  .story-meta { margin: 0; color: var(--ink-3); font-family: var(--sans); font-size: 0.7rem; line-height: 1.7; letter-spacing: 0.07em; text-align: right; text-transform: uppercase; }

  /* Article */
  .article-head { padding-block: clamp(3rem, 7vw, 6rem) clamp(2rem, 4vw, 3rem); }
  .article-head .head-main { grid-column: 2 / span 8; }
  .article-head .head-rail { grid-column: 10 / span 3; }
  .article-head .breadcrumbs { margin-bottom: 2rem; }
  .article-head h1 { max-width: 18ch; font-size: clamp(3.2rem, 6.3vw, 6.8rem); line-height: 0.9; letter-spacing: -0.07em; }
  .article-head .deck { max-width: 48ch; font-size: clamp(1.2rem, 1.8vw, 1.55rem); }
  .byline { border-color: var(--brick); }

  .lede-figure { width: min(100% - 2rem, var(--shell)); margin-bottom: clamp(3rem, 6vw, 5rem); }
  .lede-figure img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; object-position: center; box-shadow: var(--shadow); }
  .lede-figure figcaption { max-width: none; padding: 0.65rem 0 0; }

  .article-body { padding-bottom: clamp(3rem, 6vw, 5rem); }
  .article-body .body { grid-column: 3 / span 6; max-width: 66ch; }
  .article-body .aside-rail { grid-column: 10 / span 3; top: 8.5rem; }
  .body { color: #1f343a; }
  .body h2 { letter-spacing: -0.045em; }
  .body h2::before { width: 2.2rem; background: var(--brick); }
  .body blockquote { color: var(--ink); }
  .body-figure img { height: auto; aspect-ratio: auto; object-fit: contain; object-position: center; }

  .more { border-color: var(--brick); }
  .more h2 { margin: 0.55rem 0 0.8rem; font-size: 1.45rem; letter-spacing: -0.03em; text-transform: none; }
  .more h2 a { color: var(--ink); text-decoration: none; }

  .chapter-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin-top: clamp(2rem, 5vw, 4rem);
    margin-bottom: clamp(4rem, 8vw, 7rem);
    padding: 1px;
    background: var(--ink);
  }

  .chapter-nav a { min-height: 10rem; padding: 1.5rem; color: var(--paper); background: var(--ink); text-decoration: none; }
  .chapter-nav a:last-child { text-align: right; }
  .chapter-nav a:hover { background: var(--brick-deep); }
  .chapter-nav span { display: block; color: #bfc8c5; font-family: var(--sans); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
  .chapter-nav strong { display: block; max-width: 28rem; margin-top: 0.65rem; font-family: var(--sans); font-size: clamp(1.2rem, 2vw, 1.7rem); line-height: 1.12; }
  .chapter-nav a:last-child strong { margin-left: auto; }

  .page-body .body { grid-column: 3 / span 6; }

  /* Heavy system-sans headings over the same familiar reading face. */
  h1,
  h2,
  h3,
  h4,
  .directory-card strong,
  .chapter-nav strong {
    font-family: var(--sans);
    font-weight: 800;
    letter-spacing: -0.025em;
  }

  .lead-copy h1,
  .article-head h1,
  .desk-intro h1 {
    line-height: 0.96;
    letter-spacing: -0.028em;
  }

  .desk-lead-copy h2,
  .featured-head h2,
  .directory-head h2,
  .archive-head h2,
  .feat h3,
  .story-copy h3,
  .body h2,
  .body h3,
  .more h2 {
    line-height: 1.04;
    letter-spacing: -0.018em;
  }

  /* HTML dimensions reserve space, while an explicit auto height prevents
     those dimensions from turning horizontal photos into vertical strips. */
  .lead-image img,
  .feat-img img,
  .desk-lead-image img,
  .story-thumb img,
  .lede-figure img {
    width: 100%;
    height: auto !important;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
  }

  /* The front-page plate runs deeper than the rest so it stands as tall as the
     headline column beside it. Overrides the 16:9 group above; the mobile
     breakpoint puts it back to 16:9 when the plate goes full width. */
  .lead-image img { aspect-ratio: 3 / 2; }

  .desk-list > li {
    grid-template-columns: 3rem 12rem minmax(0, 1fr) 8rem;
  }

  /* Footer */
  .site-foot { padding-block: clamp(3rem, 6vw, 5rem); background: #08171d; }
  .foot-mark { grid-column: 1 / span 3; font-size: clamp(2.3rem, 4vw, 4rem); }
  .foot-desks { grid-column: 5 / span 3; display: flex; flex-direction: column; }
  .foot-desks a,
  .foot-nav a { display: inline-flex; align-items: center; min-height: 2.75rem; width: fit-content; color: #dbe0dc; font-family: var(--sans); font-size: 0.72rem; font-weight: 650; letter-spacing: 0.09em; text-decoration: none; text-transform: uppercase; }
  .foot-desks a:hover,
  .foot-nav a:hover { color: #ff9c73; }
  .foot-nav { grid-column: 8 / span 2; }
  .foot-fine { grid-column: 10 / span 3; }
}

@media screen and (max-width: 64rem) {
  .mastline { grid-template-columns: 1fr auto; }
  .mastline-note { display: none; }
  .front-lead { align-items: start; }
  .lead-label { grid-column: 1; }
  .lead-image { grid-column: 2 / span 6; }
  .lead-copy { grid-column: 8 / -1; padding-bottom: 0; }
  .lead-copy h1 { font-size: clamp(2.5rem, 5.8vw, 4.2rem); }
  .feat, .feat:first-of-type, .feat:last-of-type { grid-template-columns: 9rem 1fr; }
  .desk-intro { grid-column: 1 / span 10; }
  .desk-lead-image { grid-column: 1 / span 7; }
  .desk-lead-copy { grid-column: 8 / -1; }
  .article-head .head-main { grid-column: 1 / span 9; }
  .article-body .body { grid-column: 2 / span 7; }
}

@media screen and (max-width: 48rem) {
  :root { --pad: 1rem; --gut: 1rem; }
  .mastline { min-height: auto; display: flex; flex-wrap: wrap; gap: 0 1rem; padding-block: 0.55rem; }
  .wordmark { min-height: 2.75rem; font-size: 1.8rem; }
  .head-nav { margin-left: auto; }
  .head-nav a { min-height: 2.75rem; padding-inline: 0.45rem; font-size: 0.64rem; }
  .desk-strip .shell { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .desk-strip a { min-height: 2.75rem; padding: 0.25rem; border-bottom: 1px solid rgba(255,255,255,0.15); font-size: 0.65rem; }

  .front-lead { display: grid; grid-template-columns: 3rem minmax(0, 1fr); padding-block: 2rem 3.5rem; }
  .lead-label { grid-column: 1; grid-row: 1 / span 2; }
  .lead-label p { display: none; }
  .lead-image { grid-column: 2; }
  .lead-image img { height: auto !important; aspect-ratio: 16 / 9; }
  .lead-copy { grid-column: 1 / -1; margin-top: 1.5rem; }
  .lead-copy h1 { font-size: clamp(2.8rem, 13vw, 4.25rem); }
  .lead-deck { font-size: 1.08rem; }

  .latest { padding-block: 3.5rem; }
  .featured-head,
  .directory-head,
  .archive-head { grid-template-columns: 3.5rem minmax(0, 1fr); }
  .featured-grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .feat, .feat:first-of-type, .feat:last-of-type { grid-template-columns: 7.5rem minmax(0, 1fr); gap: 0 1rem; }
  .feat h3 { font-size: 1.55rem; }
  .feat-deck { -webkit-line-clamp: 2; }

  .desk-directory { padding-block: 3.5rem; }
  .directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .directory-card { display: flex; flex-direction: column; min-height: 9.5rem; padding: 1rem; }
  .directory-card > span:nth-child(3) { display: none; }
  .directory-card small { margin-top: auto; }

  .desk-head { padding-block: 2rem 3.5rem; }
  .desk-intro { grid-column: 1 / -1; }
  .desk-intro h1 { font-size: clamp(3.4rem, 16vw, 5.2rem); }
  .desk-lead { display: block; padding-block: 2rem 3.5rem; }
  .desk-lead-copy { margin-top: 1.5rem; }
  .desk-lead-copy h2 { font-size: 2.5rem; }
  .desk-archive { padding-block: 3.5rem; }
  .desk-list > li { grid-template-columns: 2rem 6.5rem minmax(0, 1fr); gap: 0.8rem; min-height: 8.5rem; }
  .story-meta { display: none; }
  .story-copy h3 { font-size: 1.3rem; }
  .story-copy > p:last-child { -webkit-line-clamp: 2; font-size: 0.82rem; }

  .article-head { display: block; padding-block: 2rem 2.5rem; }
  .article-head h1 { font-size: clamp(3rem, 14vw, 4.8rem); }
  .article-head .head-rail { margin-top: 1.5rem; }
  .lede-figure { width: calc(100% - 2rem); margin-bottom: 3rem; }
  .article-body { display: block; }
  .article-body .body { max-width: none; }
  .article-body .aside-rail { position: static; margin-top: 3.5rem; }
  .body { font-size: 1.06rem; }
  .body-figure img { aspect-ratio: auto; }
  .chapter-nav { grid-template-columns: 1fr; }
  .chapter-nav a:last-child { text-align: left; }
  .chapter-nav a:last-child strong { margin-left: 0; }
  .page-body { display: block; }

  .site-foot .grid12 { display: block; }
  .foot-desks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-block: 1.5rem; }
  .foot-nav { margin-bottom: 1.5rem; }
}

@media print {
  *, *::before, *::after { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
  .site-head, .site-foot, .desk-strip, .foot-desks, .aside-rail, .chapter-nav { display: none !important; }
  .lede-figure { width: 100%; }
}
