:root {
  --paper: #f3f0e8;
  --white: #fffdf8;
  --ink: #181715;
  --muted: #706d66;
  --line: rgba(24, 23, 21, 0.18);
  --line-strong: rgba(24, 23, 21, 0.42);
  --orange: #ef4b16;
  --orange-text: #b3340e;
  --cyan: #69c8c3;
  --olive: #b8bf55;
  --focus: #08766f;
  --page-max: 1440px;
  --reading-max: 760px;
  --gutter: clamp(18px, 3.2vw, 48px);
  --grid-gap: clamp(14px, 1.8vw, 28px);
  --header-height: 76px;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(24, 23, 21, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 23, 21, 0.026) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
figure, blockquote, dl, dd { margin: 0; }
address { font-style: normal; }

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }

.mono, .section-label { font-family: var(--mono); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-grid {
  width: min(100%, var(--page-max));
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.ruled-section { border-top: 1px solid var(--line); }

.section-label {
  grid-column: 1 / span 2;
  padding-top: 5px;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-heading h2,
.article-heading h2,
.inputs-intro h2,
.debate-title-block h2,
.outcomes-heading h2,
.post-heading h2,
.photos-heading h2,
.interviews-heading h2,
.place-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.6vw, 5rem);
  font-weight: 650;
  letter-spacing: 0.004em;
  line-height: 0.98;
}

.prose { max-width: var(--reading-max); }
.prose > *:first-child { margin-top: 0; }
.prose p { margin: 0 0 1.25em; }
.prose blockquote {
  margin: 2em 0;
  padding: 0 0 0 24px;
  border-left: 5px solid var(--orange);
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 13px 18px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { color: var(--ink); background: var(--cyan); }
.button-orange { color: var(--ink); border-color: var(--orange); background: var(--orange); }
.button-orange:hover { color: var(--ink); background: var(--cyan); border-color: var(--cyan); }
.button-media { color: var(--ink); border-color: var(--ink); background: var(--cyan); }
.button-media:hover { color: var(--white); border-color: var(--ink); background: var(--ink); }

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 18px;
  padding: 8px 0;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  width: 100%;
  min-height: var(--header-height);
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 240, 232, 0.96);
  transition: min-height 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 62px;
  box-shadow: 0 6px 20px rgba(24, 23, 21, 0.06);
}

.brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 3px;
  padding: 5px;
  color: var(--white);
  background: var(--orange);
}

.brand-mark i { display: block; background: currentColor; }
.brand-mark i:nth-child(1) { height: 52%; }
.brand-mark i:nth-child(2) { height: 100%; }
.brand-mark i:nth-child(3) { height: 72%; }

.brand-copy { max-width: 390px; display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy b { font-size: 0.72rem; letter-spacing: 0.025em; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-family: var(--mono); font-size: 0.53rem; letter-spacing: 0.015em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: clamp(12px, 1.65vw, 28px); }
.site-nav a {
  position: relative;
  padding: 12px 0;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav a.nav-media { padding: 9px 10px; border: 1px solid var(--ink); background: rgba(105, 200, 195, 0.22); }
.site-nav a.nav-media::after { display: none; }
.site-nav a.nav-media:hover { background: var(--cyan); }
.site-nav a.nav-tools { color: var(--ink); }
.site-nav a.nav-tools::after { height: 5px; background: #d9ff43; transform: scaleX(1); opacity: 0.72; }
.site-nav a.nav-tools:hover::after { height: 100%; opacity: 1; z-index: -1; }
.site-nav a.nav-registration { min-height: 44px; padding: 10px 14px; display: inline-flex; align-items: center; color: var(--ink); background: var(--orange); transition: color 180ms ease, background-color 180ms ease; }
.site-nav a.nav-registration::after { display: none; }
.site-nav a.nav-registration:hover { color: var(--ink); background: var(--cyan); }
.menu-toggle { display: none; }

/* Home hero */
.home-hero {
  position: relative;
  padding-top: clamp(42px, 6vw, 92px);
  padding-bottom: clamp(74px, 9vw, 140px);
}

.hero-kicker { grid-column: 1 / -1; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.home-hero h1 {
  grid-column: 1 / span 9;
  margin: 24px 0 38px;
  font-size: clamp(3.6rem, 8.8vw, 9.2rem);
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: 0.82;
}
.home-hero h1 em { color: var(--orange); font-style: normal; }
.hero-lead {
  grid-column: 1 / span 5;
  margin: 0;
  font-size: clamp(1.2rem, 1.8vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.3;
}
.hero-curator { grid-column: 1 / span 5; margin: 18px 0 0; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.025em; text-transform: uppercase; }
.hero-curator a, .hero-facts a { text-underline-offset: 3px; }
.hero-actions { grid-column: 1 / span 8; display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px; margin-top: 10px; }
.hero-photo { grid-column: 1 / span 7; margin-top: clamp(50px, 7vw, 100px); }
.hero-photo img { width: auto; max-width: min(100%, 800px); height: auto; object-fit: contain; background: #d7d0c4; }
.hero-photo figcaption,
.day-cover figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 10px;
  border-top: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 0.65rem;
}
.hero-photo figcaption span { color: var(--orange); font-weight: 700; }

.hero-facts {
  grid-column: 8 / -1;
  align-self: end;
  margin-top: clamp(50px, 7vw, 100px);
  padding: 24px;
  color: var(--white);
  background: var(--orange);
}
.home-hero-no-media .hero-facts { grid-column: 6 / -1; }
.fact-number { display: block; margin: -10px 0 -18px; font-size: clamp(5.5rem, 10vw, 10rem); font-weight: 700; letter-spacing: -0.035em; line-height: 1; }
.hero-facts > p { margin: 0 0 38px; font-size: 1.05rem; line-height: 1.25; }
.hero-facts dl { border-top: 1px solid rgba(255,255,255,.45); }
.hero-facts dl div { display: grid; grid-template-columns: 40% 1fr; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.45); }
.hero-facts dt { font-family: var(--mono); font-size: 0.62rem; text-transform: uppercase; }
.hero-facts dd { font-size: 0.82rem; font-weight: 600; line-height: 1.35; }

/* Home sections */
.manifesto { padding-top: clamp(68px, 8vw, 120px); padding-bottom: clamp(76px, 9vw, 140px); }
.manifesto .section-heading { grid-column: 3 / span 9; }
.manifesto-copy { grid-column: 5 / span 6; margin-top: 34px; font-size: 1.04rem; }
.principles {
  grid-column: 1 / -1;
  margin: clamp(60px, 7vw, 100px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.principles li { min-height: 240px; padding: 18px; border-right: 1px solid var(--ink); }
.principles li:nth-child(-n+4) { border-bottom: 1px solid var(--ink); }
.principles li:nth-child(4n) { border-right: 0; }
.principles span { color: var(--orange); font-size: 0.7rem; }
.principles h3 { margin: 70px 0 10px; font-size: 1.6rem; letter-spacing: -0.04em; }
.principles p { max-width: 240px; margin: 0; color: var(--muted); font-size: 0.82rem; }

.diary { padding-top: clamp(70px, 8vw, 130px); padding-bottom: clamp(80px, 10vw, 150px); }
.diary-heading { grid-column: 3 / span 7; }
.diary-heading > p:last-child { max-width: 660px; margin: 28px 0 0; }
.days-grid {
  grid-column: 1 / -1;
  margin-top: clamp(46px, 6vw, 88px);
  margin-bottom: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}
.day-card {
  position: relative;
  min-height: 270px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  color: var(--muted);
  background: rgba(255,255,255,.12);
}
.day-card > a { min-height: 100%; flex: 1; display: flex; flex-direction: column; color: inherit; text-decoration: none; }
.day-card-active { color: var(--white); background: var(--orange); transition: background 180ms ease; }
.day-card-active:hover { color: var(--ink); background: var(--cyan); }
.day-status { font-size: 0.59rem; letter-spacing: 0.06em; text-transform: uppercase; }
.day-card strong { margin: 12px 0 34px; font-size: clamp(4rem, 6vw, 6.8rem); font-weight: 650; letter-spacing: -0.035em; line-height: 0.9; }
.day-card h3 { margin: auto 0 8px; font-size: 1rem; letter-spacing: -0.025em; line-height: 1.15; }
.day-card time, .day-date { font-family: var(--mono); font-size: 0.65rem; }
.day-arrow { position: absolute; right: 16px; bottom: 14px; font-size: 1.4rem; }

.featured-day { padding-top: clamp(70px, 8vw, 120px); padding-bottom: clamp(82px, 10vw, 150px); }
.feature-number {
  grid-column: 3 / span 3;
  color: var(--orange);
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.75;
}
.feature-copy { grid-column: 3 / span 5; align-self: end; margin-top: 18px; }
.feature-copy h2 { margin: 0 0 26px; font-size: clamp(2.5rem, 5vw, 5.8rem); font-weight: 650; letter-spacing: 0.003em; line-height: 0.92; }
.feature-copy > p:not(.eyebrow) { margin: 0 0 28px; }
.tag-list { margin: 0 0 32px; padding: 0; display: flex; flex-wrap: wrap; gap: 7px; list-style: none; }
.tag-list li { padding: 7px 10px; border: 1px solid var(--line-strong); font-family: var(--mono); font-size: 0.62rem; text-transform: uppercase; }
.feature-photo { grid-column: 9 / -1; grid-row: 2 / span 2; }
.feature-photo img { width: auto; max-width: 100%; height: auto; object-fit: contain; }
.feature-photo figcaption { padding-top: 9px; color: var(--muted); font-size: 0.62rem; }
.feature-no-media .feature-copy { grid-column: 6 / -1; }

.place { padding-top: clamp(74px, 9vw, 140px); padding-bottom: clamp(80px, 10vw, 160px); border-top: 1px solid var(--line); }
.place-photo { grid-column: 3 / span 4; }
.place-photo img { width: auto; max-width: 100%; height: auto; object-fit: contain; }
.place-copy { grid-column: 7 / span 5; align-self: center; }
.place-copy > p:not(.eyebrow, .source-note) { max-width: 620px; margin: 28px 0; }
.place-copy address { margin-top: 38px; padding-top: 18px; border-top: 1px solid var(--ink); font-size: 1.05rem; font-weight: 650; }
.place-copy .source-note { margin: 10px 0 0; color: var(--muted); font-size: 0.68rem; }
.place-no-media .place-copy { grid-column: 3 / span 8; }

/* Day article hero */
.day-hero { padding-top: clamp(30px, 4vw, 64px); padding-bottom: clamp(76px, 9vw, 140px); }
.breadcrumbs { grid-column: 1 / -1; display: flex; gap: 12px; color: var(--muted); font-size: 0.65rem; text-transform: uppercase; }
.breadcrumbs a { color: var(--ink); }
.day-index { grid-column: 1 / span 2; grid-row: 2 / span 2; margin-top: 44px; display: flex; align-items: flex-start; }
.day-index b { color: var(--orange); font-size: clamp(5rem, 9vw, 9.5rem); font-weight: 700; letter-spacing: -0.04em; line-height: 0.8; }
.day-index span { margin: 8px 0 0 8px; font-family: var(--mono); font-size: 0.7rem; }
.day-title-block { grid-column: 3 / span 9; margin-top: 44px; }
.day-title-block h1 { margin: 0; font-size: clamp(3.1rem, 7.4vw, 8.2rem); font-weight: 690; letter-spacing: 0.005em; line-height: 0.88; }
.day-title-block h1 em { color: var(--orange); font-style: normal; }
.day-deck { max-width: 900px; margin: 44px 0 0; font-size: clamp(1.25rem, 2vw, 1.9rem); letter-spacing: -0.025em; line-height: 1.28; }
.day-meta { grid-column: 3 / span 9; margin-top: 44px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); }
.day-meta div { padding: 12px 14px 0 0; }
.day-meta dt { color: var(--muted); font-size: 0.58rem; text-transform: uppercase; }
.day-meta dd { margin-top: 8px; font-size: 0.68rem; font-weight: 700; line-height: 1.4; }
.day-cover { grid-column: 1 / -1; margin-top: clamp(42px, 6vw, 86px); display: grid; justify-items: center; }
.day-cover img { width: auto; max-width: min(100%, 800px); height: auto; object-fit: contain; }
.day-cover figcaption { width: min(100%, 800px); }
.day-cover figcaption span { color: var(--orange); }

.day-summary { padding-top: 42px; padding-bottom: clamp(80px, 10vw, 140px); }
.summary-steps { grid-column: 3 / -1; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); list-style: none; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.summary-steps li { min-height: 220px; padding: 16px; border-right: 1px solid var(--ink); }
.summary-steps li:last-child { border-right: 0; }
.summary-steps span { color: var(--orange); font-size: 0.7rem; }
.summary-steps h3 { margin: 62px 0 10px; font-size: 1.4rem; letter-spacing: -0.035em; }
.summary-steps p { margin: 0; color: var(--muted); font-size: 0.82rem; }

/* Full report entry point */
.longread-callout {
  max-width: none;
  padding-top: clamp(72px, 8vw, 120px);
  padding-bottom: clamp(74px, 9vw, 130px);
  align-items: start;
  color: var(--white);
  background: var(--ink);
}
.longread-callout .section-label { color: rgba(255,255,255,.5); }
.longread-callout-copy { grid-column: 3 / span 7; }
.longread-callout-copy .eyebrow { color: var(--cyan); }
.longread-callout-copy h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.6rem, 5.7vw, 6.2rem);
  font-weight: 660;
  letter-spacing: .002em;
  line-height: .93;
}
.longread-callout-copy > p:not(.eyebrow) { max-width: 700px; margin: 32px 0 0; color: rgba(255,255,255,.7); font-size: 1.05rem; }
.longread-callout-button { margin-top: 38px; border-color: var(--cyan); color: var(--ink); background: var(--cyan); }
.longread-callout-button:hover { border-color: var(--orange); color: var(--ink); background: var(--orange); }
.longread-callout-index { grid-column: 10 / -1; justify-self: end; display: flex; align-items: flex-start; }
.longread-callout-index b { color: var(--orange); font-size: clamp(5rem, 9vw, 9.5rem); font-weight: 700; letter-spacing: -.04em; line-height: .8; }
.longread-callout-index span { margin: 8px 0 0 8px; font-family: var(--mono); font-size: .65rem; text-transform: uppercase; }

/* Full report page */
.longread-hero { padding-top: clamp(30px, 4vw, 64px); padding-bottom: clamp(78px, 9vw, 140px); }
.longread-daymark { grid-column: 1 / span 2; grid-row: 2 / span 2; margin-top: 46px; display: flex; flex-direction: column; align-items: flex-start; }
.longread-daymark span { margin-bottom: 10px; font-family: var(--mono); font-size: .62rem; text-transform: uppercase; }
.longread-daymark b { color: var(--orange); font-size: clamp(5rem, 9vw, 9.5rem); font-weight: 700; letter-spacing: -.04em; line-height: .78; }
.longread-heading { grid-column: 3 / span 9; margin-top: 46px; }
.longread-heading h1 { max-width: 1120px; margin: 0; font-size: clamp(3rem, 6.7vw, 7.4rem); font-weight: 690; letter-spacing: .004em; line-height: .9; }
.longread-heading > p:last-child { max-width: 860px; margin: 42px 0 0; font-size: clamp(1.25rem, 2vw, 1.9rem); letter-spacing: -.025em; line-height: 1.28; }
.longread-meta { grid-column: 3 / span 9; margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); }
.longread-meta div { padding: 12px 14px 0 0; }
.longread-meta dt { color: var(--muted); font-size: .58rem; text-transform: uppercase; }
.longread-meta dd { margin: 8px 0 0; font-size: .68rem; font-weight: 700; line-height: 1.4; }
.longread-content { padding-top: clamp(72px, 9vw, 130px); padding-bottom: clamp(94px, 11vw, 180px); align-items: start; background: var(--white); max-width: none; }
.longread-aside { grid-column: 1 / span 2; position: sticky; top: 100px; padding-top: 14px; border-top: 5px solid var(--orange); }
.longread-aside > p:first-child { margin: 0 0 18px; color: var(--orange); font-size: .62rem; text-transform: uppercase; }
.longread-aside > p:nth-child(2) { margin: 0; color: var(--muted); font-size: .72rem; line-height: 1.55; }
.longread-aside .text-link { margin-top: 28px; }
.longread-copy { grid-column: 4 / span 7; max-width: 820px; }
.prose-long > p:first-child { font-size: clamp(1.25rem, 1.8vw, 1.65rem); font-weight: 600; letter-spacing: -.02em; line-height: 1.35; }
.prose-long h2 { margin: 4.8rem 0 1.6rem; padding-top: 1.1rem; border-top: 1px solid var(--ink); font-size: clamp(2.05rem, 3.4vw, 3.6rem); font-weight: 660; letter-spacing: -.025em; line-height: 1.02; }
.prose-long h3 { margin: 3.5rem 0 1.25rem; color: var(--orange); font-size: clamp(1.35rem, 2.1vw, 2rem); font-weight: 660; letter-spacing: -.02em; line-height: 1.15; }
.prose-long ul, .prose-long ol { margin: 0 0 2.2rem; padding: 0; list-style: none; border-top: 1px solid var(--line-strong); }
.prose-long li { position: relative; min-height: 54px; margin: 0; padding: 14px 12px 14px 48px; border-bottom: 1px solid var(--line); }
.prose-long ul li::before { position: absolute; top: 19px; left: 12px; width: 8px; height: 8px; content: ""; background: var(--orange); }
.prose-long ol { counter-reset: longread-step; }
.prose-long ol li { counter-increment: longread-step; }
.prose-long ol li::before { position: absolute; top: 15px; left: 10px; content: counter(longread-step, decimal-leading-zero); color: var(--orange); font-family: var(--mono); font-size: .65rem; font-weight: 700; }
.prose-long li p { margin: 0; }
.prose-long > p > strong:only-child { display: block; margin: 2.4rem 0; padding: 24px; border-left: 6px solid var(--orange); color: var(--white); background: var(--ink); font-size: clamp(1.25rem, 2vw, 1.8rem); line-height: 1.3; }
.longread-return { max-width: none; padding-top: clamp(70px, 8vw, 120px); padding-bottom: clamp(72px, 8vw, 120px); align-items: end; background: var(--cyan); }
.longread-return > div { grid-column: 3 / span 7; }
.longread-return h2 { max-width: 900px; margin: 0; font-size: clamp(2.2rem, 4.7vw, 5rem); font-weight: 660; letter-spacing: .002em; line-height: .96; }
.longread-return .eyebrow { color: var(--ink); }
.longread-return > .button { grid-column: 10 / -1; justify-self: stretch; }

/* Long-form sections */
.article-section { padding-top: clamp(74px, 9vw, 140px); padding-bottom: clamp(80px, 10vw, 150px); }
.article-heading { grid-column: 3 / span 9; }
.article-heading h2 { max-width: 1100px; }
.article-copy { grid-column: 4 / span 6; margin-top: 46px; }
.pull-note { grid-column: 10 / -1; align-self: end; padding: 18px 0 0; border-top: 5px solid var(--cyan); }
.pull-note span { color: var(--muted); font-size: 0.62rem; text-transform: uppercase; }
.pull-note p { margin: 12px 0 0; font-size: 0.88rem; font-weight: 650; line-height: 1.4; }

.inputs-section { padding: clamp(76px, 9vw, 140px) 0; color: var(--white); background: var(--ink); }
.inputs-section .section-label { color: rgba(255,255,255,.55); }
.inputs-intro { grid-column: 3 / span 8; }
.inputs-intro > p:last-child { max-width: 720px; margin: 34px 0 0; color: rgba(255,255,255,.75); }
.inputs-list { grid-column: 1 / -1; margin: clamp(56px, 7vw, 100px) 0 0; padding: 0; display: grid; grid-template-columns: repeat(6, 1fr); list-style: none; border-top: 1px solid rgba(255,255,255,.45); border-left: 1px solid rgba(255,255,255,.45); }
.inputs-list li { min-height: 210px; padding: 14px; display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,.45); border-bottom: 1px solid rgba(255,255,255,.45); }
.inputs-list span { color: var(--cyan); font-family: var(--mono); font-size: 0.62rem; }
.inputs-list b { margin-top: auto; font-size: 1.35rem; }
.inputs-list small { margin-top: 4px; color: rgba(255,255,255,.58); font-family: var(--mono); font-size: 0.58rem; text-transform: uppercase; }
.inputs-rule { grid-column: 3 / span 8; margin: 50px 0 0; padding-left: 24px; border-left: 6px solid var(--orange); font-size: clamp(1.3rem, 2.1vw, 2rem); font-weight: 600; letter-spacing: -0.025em; line-height: 1.25; }
.inputs-rule span { display: block; margin-bottom: 12px; color: var(--cyan); font-size: 0.62rem; letter-spacing: 0.05em; text-transform: uppercase; }

.process-line { grid-column: 1 / -1; margin: clamp(60px, 7vw, 100px) 0 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); list-style: none; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.process-line li { min-height: 180px; padding: 14px; display: flex; flex-direction: column; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.process-line span { color: var(--orange); font-family: var(--mono); font-size: 0.62rem; }
.process-line b { margin-top: auto; font-size: 1.05rem; }
.process-line small { color: var(--muted); font-family: var(--mono); font-size: 0.58rem; text-transform: uppercase; }

.debate-section { padding: clamp(80px, 10vw, 160px) 0; color: var(--white); background: #292824; }
.debate-section .section-label { color: rgba(255,255,255,.5); }
.debate-title-block { grid-column: 3 / span 8; }
.debate-lead { grid-column: 5 / span 6; margin-top: 40px; font-size: 1.1rem; color: rgba(255,255,255,.76); }
.debate-body { grid-column: 3 / span 8; margin-top: 52px; color: rgba(255,255,255,.82); }
.debate-body blockquote { border-left-color: var(--cyan); }
.debate-columns { grid-column: 3 / -1; margin-top: 62px; display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.5); border-left: 1px solid rgba(255,255,255,.5); }
.debate-columns article { min-height: 360px; padding: 20px; display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,.5); border-bottom: 1px solid rgba(255,255,255,.5); }
.debate-columns span { color: var(--cyan); font-size: 0.65rem; text-transform: uppercase; }
.debate-columns h3 { max-width: 440px; margin: auto 0 20px; font-size: clamp(1.9rem, 3vw, 3.4rem); letter-spacing: 0.002em; line-height: 0.98; }
.debate-columns p { max-width: 560px; margin: 0; color: rgba(255,255,255,.68); }
.debate-conclusion { grid-column: 3 / span 8; margin-top: 52px; padding-left: 24px; border-left: 6px solid var(--orange); }
.debate-conclusion span { color: var(--cyan); font-size: 0.62rem; text-transform: uppercase; }
.debate-conclusion p { margin: 10px 0 0; font-size: clamp(1.35rem, 2.4vw, 2.4rem); font-weight: 650; letter-spacing: -0.03em; line-height: 1.2; }

.projects-section { padding-top: clamp(84px, 10vw, 160px); padding-bottom: clamp(86px, 10vw, 160px); }
.projects-heading { grid-column: 3 / span 8; }
.projects-heading > p:last-child { max-width: 660px; margin: 28px 0 0; }
.projects-grid { grid-column: 1 / -1; margin-top: clamp(54px, 7vw, 100px); display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.project-card { min-height: 520px; padding: clamp(18px, 2.5vw, 34px); display: flex; flex-direction: column; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: rgba(255,255,255,.18); }
.project-card-featured { background: var(--cyan); }
.project-card-dark { color: var(--white); background: var(--ink); }
.project-card-wide { grid-column: 1 / -1; min-height: 410px; }
.project-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.project-no { color: var(--orange); font-size: clamp(4rem, 7vw, 7rem); font-weight: 700; letter-spacing: -0.035em; line-height: 0.8; }
.project-card-featured .project-no { color: var(--ink); }
.project-author { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; }
.project-card h3 { max-width: 640px; margin: auto 0 22px; font-size: clamp(2rem, 3.2vw, 3.6rem); letter-spacing: 0.002em; line-height: 0.98; }
.project-card p { max-width: 700px; margin: 0 0 22px; }
.project-tags { margin: 0 0 28px; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; list-style: none; }
.project-tags li { padding: 6px 9px; border: 1px solid currentColor; font-family: var(--mono); font-size: 0.58rem; text-transform: uppercase; }
.project-links { margin: 0 0 28px; display: grid; border-top: 1px solid currentColor; }
.project-links a { min-height: 54px; padding: 12px 0; display: grid; grid-template-columns: minmax(0, 1fr) auto auto; align-items: center; gap: 12px; border-bottom: 1px solid currentColor; color: inherit; text-decoration: none; }
.project-links a:hover span { text-decoration: underline; text-underline-offset: 4px; }
.project-links span { font-size: 0.78rem; font-weight: 700; }
.project-links em { color: var(--muted); font-family: var(--mono); font-size: 0.56rem; font-style: normal; text-transform: uppercase; }
.project-links b { color: var(--orange); font-size: 1.1rem; }
.project-card small { margin-top: auto; padding-top: 16px; border-top: 1px solid currentColor; color: var(--muted); font-size: 0.67rem; }
.project-card-dark small, .project-card-dark .project-links em { color: rgba(255,255,255,.56); }
.project-card blockquote { margin: 0 0 28px; padding-left: 18px; border-left: 5px solid var(--orange); font-size: 1.1rem; font-weight: 650; }

.outcomes-section { padding-top: clamp(80px, 10vw, 150px); padding-bottom: clamp(82px, 10vw, 150px); }
.outcomes-heading { grid-column: 3 / span 8; }
.results-body { grid-column: 3 / span 7; margin-top: 42px; }
.outcomes-list { grid-column: 3 / -1; margin: 60px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.outcomes-list li { display: grid; grid-template-columns: 90px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--ink); }
.outcomes-list span { color: var(--orange); font-family: var(--mono); font-size: 0.68rem; }
.outcomes-list p { max-width: 760px; margin: 0; font-size: 1.05rem; font-weight: 600; }
.outcomes-note { grid-column: 3 / span 7; margin: 34px 0 0; padding-left: 18px; border-left: 4px solid var(--cyan); color: var(--muted); font-size: 0.76rem; }

.short-post { padding-top: clamp(80px, 10vw, 150px); padding-bottom: clamp(80px, 10vw, 150px); color: var(--white); background: var(--orange); max-width: none; }
.short-post > *:first-child { grid-column: 1 / span 2; }
.short-post .section-label { color: rgba(255,255,255,.68); }
.post-heading { grid-column: 3 / span 4; align-self: start; position: sticky; top: 100px; }
.short-post .eyebrow { color: var(--ink); }
.post-heading .button { margin-top: 34px; }
.post-text { grid-column: 7 / span 5; font-size: 1.05rem; }
.post-text p { padding-bottom: 1.25em; border-bottom: 1px solid rgba(255,255,255,.42); }
.copy-button.is-copied { color: var(--ink); background: var(--cyan); }

/* Gallery */
.photos-section { padding: clamp(86px, 10vw, 160px) 0; background: var(--white); }
.photos-heading .section-label { grid-column: 1 / span 2; }
.photos-heading > div { grid-column: 3 / span 6; }
.photos-heading > p { grid-column: 9 / -1; align-self: end; margin: 0; color: var(--muted); }
.photo-grid {
  width: min(100%, var(--page-max));
  margin: clamp(54px, 7vw, 100px) auto 0;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
  align-items: start;
}
.photo-item { grid-column: span 4; }
.photo-item.photo-wide { grid-column: span 8; }
.photo-item.photo-tall { grid-column: span 4; }
.photo-button { position: relative; width: 100%; padding: 0; display: block; overflow: hidden; border: 0; color: inherit; background: transparent; cursor: zoom-in; text-decoration: none; }
.photo-button img { width: 100%; max-width: 100%; height: auto; margin-inline: auto; object-fit: contain; transition: transform 350ms ease, filter 350ms ease; }
.photo-button:hover img { transform: scale(1.025); filter: contrast(1.04); }
.zoom-hint { position: absolute; right: 10px; bottom: 10px; width: 38px; height: 38px; display: grid; place-items: center; color: var(--white); background: var(--ink); }
.photo-item figcaption { display: flex; gap: 18px; padding: 9px 0; border-top: 1px solid var(--ink); font-size: 0.68rem; }
.photo-item figcaption span { color: var(--orange); }

.more-photos { margin-top: 54px; display: block; }
.more-photos summary { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 12px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); font-family: var(--mono); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; cursor: pointer; list-style: none; }
.more-photos summary::-webkit-details-marker { display: none; }
.more-photos summary i { font-style: normal; font-size: 1.4rem; transition: transform 180ms ease; }
.more-photos[open] summary i { transform: rotate(45deg); }
.extra-photo-grid { margin-top: var(--grid-gap); display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--grid-gap); }
.extra-photo-grid .photo-button img { aspect-ratio: 4 / 3; }

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 28px clamp(58px, 7vw, 110px);
  border: 0;
  color: var(--white);
  background: rgba(20, 20, 18, 0.96);
}
.lightbox::backdrop { background: rgba(20, 20, 18, 0.8); }
.lightbox[open] { display: grid; grid-template-columns: 50px minmax(0, 1fr) 50px; align-items: center; gap: 18px; }
.lightbox figure { height: calc(100vh - 56px); display: grid; grid-template-rows: minmax(0, 1fr) auto; gap: 12px; }
.lightbox img { width: auto; height: auto; max-width: 100%; max-height: 100%; align-self: center; justify-self: center; object-fit: contain; transition: opacity 160ms ease; }
.lightbox figcaption { text-align: center; font-family: var(--mono); font-size: 0.68rem; }
.lightbox button { border: 0; color: var(--white); background: transparent; cursor: pointer; }
.lightbox-prev, .lightbox-next { width: 50px; height: 50px; font-size: 1.8rem; }
.lightbox-close { position: fixed; z-index: 2; top: 16px; right: 20px; width: 50px; height: 50px; font-size: 2rem; }
.lightbox-status { position: fixed; z-index: 3; inset: 50% auto auto 50%; min-width: min(320px, calc(100vw - 40px)); padding: 12px 16px; display: none; flex-direction: column; gap: 6px; color: var(--white); background: var(--ink); font-family: var(--mono); font-size: 0.68rem; text-align: center; transform: translate(-50%, -50%); }
.lightbox-status a { display: none; color: var(--cyan); }
.lightbox.is-loading img { opacity: 0.22; }
.lightbox.is-loading .lightbox-status { display: flex; }
.lightbox.is-error .lightbox-status { display: flex; }
.lightbox.is-error .lightbox-status a { display: inline; }

/* Interviews */
.interviews-section {
  max-width: none;
  padding-top: clamp(86px, 10vw, 150px);
  padding-bottom: clamp(86px, 10vw, 150px);
  color: var(--white);
  background: var(--ink);
}
.interviews-section .section-label { color: rgba(255,255,255,.58); }
.interviews-heading { grid-column: 3 / span 7; }
.interviews-heading .eyebrow { color: var(--cyan); }
.interviews-heading > p:last-child {
  max-width: 760px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 1.04rem;
}
.interviews-grid {
  grid-column: 3 / -1;
  margin-top: clamp(48px, 6vw, 82px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap);
}
.interview-card {
  padding-top: 14px;
  display: grid;
  grid-template-columns: minmax(170px, .78fr) minmax(0, 1fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: start;
  border-top: 1px solid rgba(255,255,255,.42);
}
.interview-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  object-fit: cover;
  background: #000;
}
.interview-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--cyan);
  font-size: .64rem;
}
.interview-meta time { color: rgba(255,255,255,.58); }
.interview-copy h3 {
  margin: clamp(24px, 3vw, 44px) 0 18px;
  font-size: clamp(1.45rem, 2.25vw, 2.4rem);
  font-weight: 650;
  letter-spacing: -.025em;
  line-height: 1.02;
}
.interview-copy > p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: .82rem;
}
.interview-copy > a {
  min-height: 44px;
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.article-footer { padding-top: clamp(70px, 8vw, 120px); padding-bottom: clamp(80px, 9vw, 140px); background: var(--white); max-width: none; }
.editorial-note { grid-column: 3 / span 6; }
.editorial-note span { color: var(--orange); font-size: 0.62rem; text-transform: uppercase; }
.editorial-note p { margin: 12px 0 0; color: var(--muted); font-size: 0.76rem; }
.day-navigation { grid-column: 1 / -1; margin-top: 70px; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.day-navigation > * { min-height: 145px; padding: 18px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); text-decoration: none; }
.day-navigation > a:hover { background: var(--cyan); }
.day-navigation span[aria-disabled="true"] { color: var(--muted); }
.day-navigation .mono { font-size: 0.62rem; text-transform: uppercase; }
.day-navigation b { font-size: 1.5rem; letter-spacing: -0.035em; }
.day-navigation .day-navigation-registration { background: var(--orange); }
.day-navigation .day-navigation-registration:hover { background: var(--cyan); }
.day-navigation .day-navigation-registration b { max-width: 19ch; font-size: clamp(1.35rem, 2.2vw, 2rem); line-height: 1.02; }

/* IT dictionary teaser */
.dictionary-teaser { padding-top: clamp(76px, 9vw, 138px); padding-bottom: clamp(78px, 9vw, 142px); align-items: end; }
.dictionary-teaser-copy { grid-column: 3 / span 7; }
.dictionary-teaser-copy h2 { max-width: 980px; margin: 0; font-size: clamp(2.5rem, 5.5vw, 6rem); font-weight: 660; letter-spacing: .002em; line-height: .94; }
.dictionary-teaser-copy > p:not(.eyebrow) { max-width: 720px; margin: 32px 0; color: var(--muted); font-size: 1.02rem; }
.dictionary-teaser-specimens { grid-column: 10 / -1; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.dictionary-teaser-specimens span { min-height: 112px; padding: 14px; display: flex; align-items: flex-end; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); font-size: clamp(1rem, 2vw, 1.8rem); font-weight: 700; }
.dictionary-teaser-specimens span:nth-child(2) { background: var(--cyan); }
.dictionary-teaser-specimens span:nth-child(3) { background: var(--orange); }

/* IT dictionary page */
[hidden] { display: none !important; }
.glossary-page .eyebrow { color: var(--orange-text); }
.glossary-page :focus-visible { outline-color: var(--focus); }
.glossary-browser :focus-visible, .glossary-note :focus-visible { outline-color: var(--cyan); }

.glossary-hero { padding-top: clamp(42px, 5vw, 68px); padding-bottom: clamp(62px, 7vw, 98px); align-items: end; }
.glossary-hero-kicker { grid-column: 1 / -1; font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.glossary-hero-title { grid-column: 1 / -1; margin-top: clamp(30px, 4vw, 54px); }
.glossary-hero-title h1 { margin: 0; display: flex; align-items: baseline; gap: .01em; white-space: nowrap; font-size: clamp(4rem, 8.4vw, 8.3rem); font-weight: 710; letter-spacing: -.04em; line-height: .86; }
.glossary-hero-title h1 em { color: var(--orange); font-style: normal; }
.glossary-hero-lead { grid-column: 1 / span 7; margin-top: clamp(40px, 5vw, 66px); }
.glossary-hero-lead p { max-width: 740px; margin: 0; font-size: clamp(1.45rem, 2.6vw, 2.55rem); font-weight: 620; letter-spacing: -.03em; line-height: 1.1; }
.glossary-hero-lead span { display: block; margin-top: 22px; color: var(--muted); font-size: .72rem; text-transform: uppercase; }
.glossary-hero-signs { grid-column: 9 / -1; align-self: end; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.glossary-hero-signs span { min-height: 98px; padding: 14px; display: flex; align-items: flex-end; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); font-family: var(--mono); font-size: clamp(1.4rem, 2.7vw, 2.7rem); font-weight: 700; }
.glossary-hero-signs span:nth-child(2) { background: var(--cyan); }
.glossary-hero-signs span:nth-child(3) { background: var(--olive); }
.glossary-hero-signs span:nth-child(4) { background: var(--orange); }

.glossary-intro { padding-top: clamp(62px, 6vw, 88px); padding-bottom: clamp(66px, 7vw, 96px); align-items: start; }
.glossary-intro-heading { grid-column: 3 / span 6; }
.glossary-intro-heading h2 { max-width: 700px; margin: 0; font-size: clamp(2.25rem, 3.8vw, 4rem); font-weight: 660; letter-spacing: 0; line-height: .98; }
.glossary-intro-copy { grid-column: 9 / -1; margin-top: 0; }

.glossary-browser { padding: clamp(66px, 7vw, 96px) 0 clamp(78px, 8vw, 112px); color: var(--white); background: var(--ink); }
.glossary-browser .section-label { color: rgba(255,255,255,.62); }
.glossary-toolbar-main { grid-column: 3 / -1; }
.glossary-toolbar-main h2 { max-width: 850px; margin: 0; font-size: clamp(2.6rem, 4.7vw, 4.9rem); font-weight: 670; letter-spacing: -.02em; line-height: .94; }
.glossary-search { position: relative; margin-top: clamp(30px, 4vw, 48px); display: block; }
.glossary-search input { width: 100%; height: 62px; padding: 0 62px 0 0; border: 0; border-bottom: 2px solid var(--white); border-radius: 0; outline: 0; color: var(--white); background: transparent; font-size: clamp(1.15rem, 1.7vw, 1.65rem); font-weight: 600; }
.glossary-search input::placeholder { color: rgba(255,255,255,.48); }
.glossary-search input:focus { border-color: var(--cyan); }
.glossary-search kbd { position: absolute; right: 0; bottom: 14px; min-width: 34px; padding: 5px 9px; border: 1px solid rgba(255,255,255,.55); border-radius: 2px; color: rgba(255,255,255,.82); font-family: var(--mono); font-size: .72rem; text-align: center; }
.glossary-filters { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.glossary-filters button { min-height: 42px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.58); border-radius: 999px; color: var(--white); background: transparent; font-family: var(--mono); font-size: .68rem; font-weight: 700; text-transform: uppercase; cursor: pointer; }
.glossary-filters button:hover, .glossary-filters button.is-active { border-color: var(--cyan); color: var(--ink); background: var(--cyan); }
.glossary-count { margin: 18px 0 0; color: rgba(255,255,255,.68); font-size: .68rem; text-transform: uppercase; }

.glossary-grid { width: min(100%, var(--page-max)); margin: clamp(42px, 5vw, 68px) auto 0; padding-inline: var(--gutter); border-bottom: 1px solid rgba(255,255,255,.46); }
.glossary-card { min-width: 0; border-top: 1px solid rgba(255,255,255,.46); }
.glossary-card summary { min-height: 150px; padding: 20px 18px; display: grid; grid-template-columns: 48px minmax(210px, .65fr) minmax(340px, 1.35fr) 30px; grid-template-rows: auto 1fr; gap: 8px 22px; list-style: none; cursor: pointer; transition: color 160ms ease, background-color 160ms ease; }
.glossary-card summary::-webkit-details-marker { display: none; }
.glossary-card summary:hover { color: var(--ink); background: var(--cyan); }
.glossary-card[open] summary { color: var(--ink); background: var(--orange); }
.glossary-card-number { grid-column: 1; grid-row: 1; color: #ff7040; font-size: .72rem; }
.glossary-card summary:hover .glossary-card-number, .glossary-card[open] .glossary-card-number { color: var(--ink); }
.glossary-card-category { grid-column: 2; grid-row: 1; color: rgba(255,255,255,.68); font-size: .66rem; text-transform: uppercase; }
.glossary-card summary:hover .glossary-card-category, .glossary-card[open] .glossary-card-category { color: rgba(24,23,21,.7); }
.glossary-card-heading { grid-column: 2; grid-row: 2; align-self: end; display: flex; flex-direction: column; }
.glossary-card-heading strong { font-size: clamp(1.5rem, 2.15vw, 2.25rem); letter-spacing: -.03em; line-height: 1; overflow-wrap: anywhere; }
.glossary-card-heading em { margin-top: 8px; color: var(--cyan); font-family: var(--mono); font-size: .7rem; font-style: normal; text-transform: uppercase; }
.glossary-card summary:hover .glossary-card-heading em, .glossary-card[open] .glossary-card-heading em { color: var(--ink); }
.glossary-card-definition { grid-column: 3; grid-row: 1 / span 2; align-self: center; max-width: 720px; color: rgba(255,255,255,.78); font-size: .94rem; }
.glossary-card summary:hover .glossary-card-definition, .glossary-card[open] .glossary-card-definition { color: var(--ink); }
.glossary-card-toggle { grid-column: 4; grid-row: 1 / span 2; align-self: center; justify-self: end; font-size: 1.5rem; line-height: 1; transition: transform 160ms ease; }
.glossary-card[open] .glossary-card-toggle { transform: rotate(45deg); }
.glossary-card-body { padding: 30px 34px 36px 88px; display: grid; grid-template-columns: 1.15fr .9fr 1fr; gap: 34px; color: var(--ink); background: var(--white); border-top: 1px solid var(--ink); }
.glossary-card-body > * { min-width: 0; }
.glossary-card-body .mono { display: block; margin-bottom: 11px; color: var(--muted); font-size: .68rem; text-transform: uppercase; }
.glossary-card-body p { margin: 0; font-size: .92rem; }
.glossary-translation { display: grid; gap: 24px; align-content: start; }
.glossary-analogy { padding-left: 16px; border-left: 4px solid var(--orange); }
.glossary-memory { padding: 13px 15px; color: var(--ink); background: rgba(105,200,195,.28); font-size: .8rem !important; font-weight: 650; line-height: 1.45; }
.glossary-memory span { margin-right: 5px; color: var(--orange-text); font-family: var(--mono); }
.glossary-taxonomy { display: grid; gap: 22px; align-content: start; }
.glossary-aliases ul, .glossary-related ul, .glossary-sources ul { margin: 0; padding: 0; list-style: none; }
.glossary-aliases ul, .glossary-related ul { display: flex; flex-wrap: wrap; gap: 6px; }
.glossary-aliases li, .glossary-related li { padding: 6px 9px; border: 1px solid var(--ink); font-family: var(--mono); font-size: .66rem; line-height: 1.35; }
.glossary-aliases li { background: rgba(105,200,195,.28); }
.glossary-sources li { border-top: 1px solid var(--line); }
.glossary-sources li:last-child { border-bottom: 1px solid var(--line); }
.glossary-sources a { padding: 9px 0; display: flex; justify-content: space-between; gap: 10px; font-size: .72rem; font-weight: 700; text-decoration: none; }
.glossary-sources a:hover { color: var(--orange-text); }
.glossary-empty { width: min(100%, var(--page-max)); margin: 42px auto 0; padding: 34px var(--gutter); color: var(--ink); background: var(--orange); font-size: clamp(1.2rem, 1.8vw, 1.8rem); font-weight: 650; }

.code-symbols { padding-top: clamp(68px, 7vw, 98px); padding-bottom: clamp(74px, 8vw, 112px); }
.code-symbols-heading { grid-column: 3 / span 8; }
.code-symbols-heading h2 { max-width: 860px; margin: 0; font-size: clamp(2.25rem, 4vw, 4.2rem); font-weight: 660; letter-spacing: 0; line-height: .98; }
.code-symbols-heading > p:last-child { max-width: 720px; margin: 24px 0 0; color: var(--muted); }
.symbol-grid { grid-column: 1 / -1; margin: clamp(44px, 5vw, 68px) 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.symbol-grid li { min-height: 280px; padding: 18px; display: flex; flex-direction: column; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.symbol-grid li:nth-child(5n+2) { background: var(--cyan); }
.symbol-grid li:nth-child(5n+4) { background: var(--olive); }
.symbol-grid code { color: var(--orange-text); background: transparent; font-family: var(--mono); font-size: clamp(2rem, 3.4vw, 3.8rem); font-weight: 700; letter-spacing: -.05em; }
.symbol-grid li:nth-child(5n+2) code, .symbol-grid li:nth-child(5n+4) code { color: var(--ink); }
.symbol-grid b { margin-top: auto; font-size: 1rem; }
.symbol-grid p { margin: 8px 0 0; color: var(--muted); font-size: .78rem; }
.symbol-grid li > span { margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(24,23,21,.24); font-size: .7rem; line-height: 1.42; }

.glossary-note { max-width: none; padding-top: clamp(68px, 7vw, 98px); padding-bottom: clamp(72px, 8vw, 108px); color: var(--white); background: var(--ink); }
.glossary-note .section-label { color: rgba(255,255,255,.62); }
.glossary-note .eyebrow { color: #ff7040; }
.glossary-note > div:last-child { grid-column: 3 / span 8; }
.glossary-note h2 { max-width: 850px; margin: 0; font-size: clamp(2.3rem, 4.2vw, 4.3rem); font-weight: 660; letter-spacing: 0; line-height: .98; }
.glossary-note > div:last-child > p:not(.eyebrow) { max-width: 720px; margin: 26px 0; color: rgba(255,255,255,.72); }

/* Student projects */
.projects-teaser {
  padding-top: clamp(72px, 8vw, 126px);
  padding-bottom: clamp(76px, 9vw, 140px);
  align-items: end;
}
.projects-teaser-copy { grid-column: 3 / span 7; }
.projects-teaser-copy h2 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5.7rem);
  font-weight: 660;
  letter-spacing: 0;
  line-height: .94;
}
.projects-teaser-copy > p:not(.eyebrow) { max-width: 720px; margin: 28px 0; }
.projects-teaser-number {
  grid-column: 10 / -1;
  align-self: end;
  color: var(--orange);
  font-size: clamp(7rem, 14vw, 14rem);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: .7;
}

.student-projects-hero {
  min-height: min(900px, calc(100vh - var(--header-height)));
  padding-top: clamp(34px, 5vw, 72px);
  padding-bottom: clamp(68px, 9vw, 132px);
  align-content: start;
}
.projects-hero-kicker {
  grid-column: 1 / -1;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.projects-hero-title { grid-column: 1 / span 9; margin-top: clamp(48px, 7vw, 102px); }
.projects-hero-title h1 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(3.8rem, 8.3vw, 8.8rem);
  font-weight: 690;
  letter-spacing: -.035em;
  line-height: .82;
}
.projects-hero-title h1 em { color: var(--orange); font-style: normal; }
.projects-hero-copy {
  grid-column: 1 / span 6;
  margin-top: clamp(44px, 6vw, 84px);
  align-self: end;
}
.projects-hero-copy > p {
  max-width: 740px;
  margin: 0 0 24px;
  font-size: clamp(1.18rem, 1.75vw, 1.7rem);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.3;
}
.projects-hero-stat {
  grid-column: 8 / -1;
  align-self: end;
  margin-top: clamp(44px, 6vw, 84px);
  padding: clamp(22px, 3vw, 40px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 22px;
  color: var(--ink);
  background: var(--cyan);
}
.projects-hero-stat strong {
  grid-row: 1 / span 2;
  font-size: clamp(6rem, 10vw, 10rem);
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: .76;
}
.projects-hero-stat p {
  margin: 0;
  align-self: end;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.15;
}
.projects-hero-stat span {
  padding-top: 12px;
  border-top: 1px solid rgba(24,23,21,.42);
  font-size: .62rem;
  line-height: 1.45;
  text-transform: uppercase;
}

.student-projects-intro {
  padding-top: clamp(72px, 8vw, 124px);
  padding-bottom: clamp(64px, 8vw, 112px);
}
.student-projects-intro-copy { grid-column: 3 / span 8; }
.student-projects-intro h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.7rem, 5.4vw, 6.2rem);
  font-weight: 670;
  letter-spacing: -.025em;
  line-height: .9;
}
.student-projects-intro-copy > p:last-child {
  max-width: 720px;
  margin: 34px 0 0;
  font-size: 1.05rem;
}

.student-projects-section { padding-bottom: clamp(86px, 11vw, 170px); }
.student-projects-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
}
.student-project-card {
  --project-accent: var(--orange);
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--ink);
  border-top: 7px solid var(--project-accent);
  background: rgba(255,253,248,.72);
}
.student-project-card[data-accent="cyan"] { --project-accent: var(--cyan); }
.student-project-card[data-accent="orange"] { --project-accent: var(--orange); }
.student-project-card[data-accent="olive"] { --project-accent: var(--olive); }
.student-project-card[data-accent="lime"] { --project-accent: #caff42; }
.student-project-card[data-accent="rust"] { --project-accent: #b45c3e; }
.student-project-card[data-accent="grey"] { --project-accent: #90928c; }
.student-project-copy {
  min-width: 0;
  padding: clamp(20px, 2.2vw, 30px);
  display: flex;
  flex: 1;
  flex-direction: column;
}
.student-project-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: .61rem;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.student-project-author-row {
  margin: 22px 0 14px;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}
.student-project-portrait {
  width: 76px;
  height: 76px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 24%;
  background: var(--project-accent);
}
.student-project-portrait-placeholder {
  display: grid;
  place-items: center;
  border-style: dashed;
  color: var(--muted);
}
.student-project-portrait-placeholder span {
  font-family: var(--mono);
  font-size: .54rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.student-project-author {
  margin: 0 0 7px;
  color: var(--orange-text);
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.student-project-level {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px 9px;
  color: var(--muted);
  font-size: .56rem;
  letter-spacing: .045em;
  line-height: 1.25;
  text-transform: uppercase;
}
.student-project-level strong { color: var(--ink); font-size: .68rem; }
.student-project-level small { font: inherit; }
.student-project-copy h2 {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  font-weight: 690;
  letter-spacing: -.045em;
  line-height: .92;
}
.student-project-description { margin: 16px 0 0; color: var(--muted); font-size: .9rem; }
.student-project-links {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
}
.student-project-diploma {
  color: var(--orange-text);
  text-decoration-color: var(--orange);
}

.student-projects-note {
  max-width: none;
  padding-top: clamp(72px, 8vw, 124px);
  padding-bottom: clamp(78px, 9vw, 140px);
  color: var(--white);
  background: var(--ink);
}
.student-projects-note .section-label { color: rgba(255,255,255,.6); }
.student-projects-note > div:last-child { grid-column: 3 / span 8; }
.student-projects-note h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5.7rem);
  font-weight: 660;
  letter-spacing: -.025em;
  line-height: .94;
}
.student-projects-note > div:last-child > p:not(.eyebrow) {
  max-width: 720px;
  margin: 30px 0;
  color: rgba(255,255,255,.72);
}

/* Footer */
.site-footer {
  max-width: none;
  padding-top: 36px;
  padding-bottom: 36px;
  align-items: end;
  color: var(--white);
  background: var(--ink);
}
.footer-brand { grid-column: 1 / span 4; color: var(--cyan); font-size: 0.82rem; font-weight: 700; text-decoration: none; }
.site-footer p { margin: 0; font-family: var(--mono); font-size: 0.62rem; line-height: 1.55; }
.site-footer p:nth-of-type(1) { grid-column: 5 / span 3; }
.site-footer p:nth-of-type(2) { grid-column: 8 / span 3; }
.site-footer a { text-underline-offset: 3px; }
.back-top { grid-column: 11 / -1; justify-self: end; font-family: var(--mono); font-size: 0.65rem; text-transform: uppercase; }

/* 404 */
.not-found { min-height: 100vh; padding-top: clamp(46px, 8vw, 120px); padding-bottom: 60px; align-content: center; }
.not-found-number { grid-column: 1 / span 5; align-self: center; color: var(--orange); font-size: clamp(8rem, 22vw, 22rem); font-weight: 700; letter-spacing: -0.04em; line-height: .7; }
.not-found-copy { grid-column: 6 / -1; align-self: center; }
.not-found-copy h1 { margin: 0; font-size: clamp(3rem, 7vw, 7.5rem); letter-spacing: -0.02em; line-height: .9; }
.not-found-copy > p:not(.eyebrow) { max-width: 620px; margin: 32px 0; }

/* Responsive */
@media (max-width: 1100px) {
  .student-projects-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-hero h1 { grid-column: 1 / -1; }
  .hero-lead, .hero-curator, .hero-actions { grid-column: 1 / span 7; }
  .hero-photo { grid-column: 1 / span 7; }
  .hero-facts { grid-column: 8 / -1; }
  .days-grid { grid-template-columns: repeat(3, 1fr); }
  .inputs-list { grid-template-columns: repeat(3, 1fr); }
  .inputs-list li { min-height: 170px; }
  .photo-item, .photo-item.photo-tall { grid-column: span 6; }
  .photo-item.photo-wide { grid-column: span 12; }
  .dictionary-teaser-copy { grid-column: 3 / span 6; }
  .dictionary-teaser-specimens { grid-column: 9 / -1; }
  .glossary-card summary { grid-template-columns: 44px minmax(190px, .75fr) minmax(300px, 1.25fr) 28px; }
  .symbol-grid { grid-template-columns: repeat(3, 1fr); }
  .projects-hero-title { grid-column: 1 / span 10; }
  .projects-hero-copy { grid-column: 1 / span 7; }
  .projects-hero-stat { grid-column: 8 / -1; }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .site-header { gap: 14px; }
  .brand-copy small { display: none; }
  .site-nav { gap: 12px; }
  .site-nav a { font-size: 0.6rem; }
  .site-nav a.nav-media { padding-inline: 7px; }
}

@media (max-width: 900px) {
  :root { --header-height: 68px; }
  .site-header { flex-wrap: wrap; }
  .js-ready .site-header { flex-wrap: nowrap; }
  .menu-toggle {
    width: 54px;
    min-height: 44px;
    padding: 0;
    display: none;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    border: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span { font-family: var(--mono); font-size: 0.62rem; text-transform: uppercase; }
  .menu-toggle i, .menu-toggle i::before { width: 18px; height: 1px; display: block; content: ""; background: var(--ink); transition: transform 180ms ease; }
  .menu-toggle i::before { transform: translateY(6px); }
  .menu-toggle[aria-expanded="true"] i { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i::before { transform: rotate(90deg); }
  .site-nav {
    position: static;
    width: 100%;
    padding: 10px var(--gutter) 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--ink);
    background: var(--paper);
  }
  .js-ready .menu-toggle { display: flex; }
  .js-ready .site-nav { position: absolute; top: 100%; right: 0; left: 0; width: auto; display: none; }
  .js-ready .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .site-nav a.nav-media { padding-inline: 14px; border: 0; border-bottom: 1px solid var(--line); background: rgba(105, 200, 195, 0.22); }
  .site-nav a.nav-registration { padding-inline: 14px; }
  .site-nav a::after { display: none; }

  .section-label { grid-column: 1 / -1; margin-bottom: 18px; }
  .manifesto .section-heading,
  .diary-heading,
  .projects-teaser-copy,
  .feature-copy,
  .place-copy,
  .article-heading,
  .inputs-intro,
  .debate-title-block,
  .projects-heading,
  .outcomes-heading,
  .post-heading,
  .editorial-note { grid-column: 1 / -1; }
  .longread-callout-copy { grid-column: 1 / span 8; }
  .longread-callout-index { grid-column: 9 / -1; }
  .dictionary-teaser-copy { grid-column: 1 / span 9; }
  .dictionary-teaser-specimens { grid-column: 10 / -1; }
  .glossary-hero-title { grid-column: 1 / -1; }
  .glossary-hero-lead { grid-column: 1 / span 7; }
  .glossary-hero-signs { grid-column: 8 / -1; }
  .glossary-intro-heading { grid-column: 1 / span 6; }
  .glossary-intro-copy { grid-column: 7 / -1; margin-top: 0; }
  .glossary-toolbar-main, .code-symbols-heading, .glossary-note > div:last-child { grid-column: 1 / -1; }
  .projects-hero-title { grid-column: 1 / -1; }
  .projects-hero-copy { grid-column: 1 / span 7; }
  .projects-hero-stat { grid-column: 8 / -1; }
  .student-projects-intro-copy, .student-projects-note > div:last-child { grid-column: 1 / -1; }
  .longread-heading { grid-column: 3 / -1; }
  .longread-meta { grid-column: 3 / -1; }
  .longread-aside { grid-column: 1 / span 2; }
  .longread-copy { grid-column: 3 / -1; }
  .longread-return > div { grid-column: 1 / span 8; }
  .longread-return > .button { grid-column: 9 / -1; }
  .manifesto-copy, .article-copy, .inputs-rule, .debate-lead, .debate-body, .debate-conclusion, .results-body, .outcomes-list, .outcomes-note, .post-text { grid-column: 2 / -1; }
  .principles { grid-template-columns: repeat(2, 1fr); }
  .principles li { border-right: 1px solid var(--ink); }
  .principles li:nth-child(even) { border-right: 0; }
  .principles li:nth-child(-n+6) { border-bottom: 1px solid var(--ink); }
  .feature-number { grid-column: 1 / span 4; }
  .projects-teaser-number { grid-column: 10 / -1; }
  .feature-photo { grid-column: 8 / -1; }
  .place-photo { grid-column: 1 / span 5; }
  .place-copy { grid-column: 6 / -1; }
  .feature-no-media .feature-copy, .place-no-media .place-copy { grid-column: 1 / -1; }

  .day-index { grid-column: 1 / span 2; }
  .day-title-block { grid-column: 3 / -1; }
  .day-meta { grid-column: 3 / -1; grid-template-columns: repeat(2, 1fr); row-gap: 14px; }
  .summary-steps { grid-column: 1 / -1; }
  .pull-note { grid-column: 2 / span 6; margin-top: 30px; }
  .process-line { grid-template-columns: repeat(3, 1fr); }
  .process-line li:nth-child(n+4) { min-height: 150px; }
  .debate-columns { grid-column: 1 / -1; }
  .projects-grid { grid-template-columns: 1fr; }
  .glossary-card summary { min-height: 144px; grid-template-columns: 42px minmax(180px, .8fr) minmax(240px, 1.2fr) 26px; gap-inline: 16px; }
  .glossary-card-body { grid-template-columns: 1fr 1fr; padding: 26px 28px; }
  .glossary-sources { grid-column: 1 / -1; }
  .project-card-wide { grid-column: auto; }
  .post-heading { position: static; }
  .post-text { margin-top: 46px; }
  .photos-heading .section-label, .photos-heading > div, .photos-heading > p { grid-column: 1 / -1; }
  .photos-heading > p { margin-top: 22px; }
  .interviews-heading, .interviews-grid { grid-column: 1 / -1; }
  .interview-card { grid-template-columns: 1fr; }
  .interview-card video { width: min(100%, 300px); }
  .footer-brand { grid-column: 1 / span 4; }
  .site-footer p:nth-of-type(1) { grid-column: 5 / span 4; }
  .site-footer p:nth-of-type(2) { grid-column: 9 / -1; }
  .back-top { grid-column: 1 / -1; justify-self: start; margin-top: 28px; }
}

@media (max-width: 680px) {
  :root { --gutter: 18px; --grid-gap: 14px; }
  body { font-size: 16px; }
  .brand-copy small { display: none; }
  .brand-copy b { font-size: 0.64rem; }
  .home-hero { padding-top: 32px; }
  .home-hero h1 { max-width: 100%; margin-top: 18px; font-size: clamp(2.3rem, 10.4vw, 4.4rem); line-height: .9; overflow-wrap: anywhere; }
  .hero-lead, .hero-curator, .hero-actions, .hero-photo, .hero-facts { grid-column: 1 / -1; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-photo { margin-top: 52px; }
  .hero-photo img { aspect-ratio: auto; }
  .hero-facts { margin-top: 0; }
  .home-hero-no-media .hero-facts { grid-column: 1 / -1; margin-top: 52px; }
  .projects-teaser-copy, .projects-teaser-number, .projects-hero-title, .projects-hero-copy, .projects-hero-stat, .student-projects-intro-copy, .student-projects-note > div:last-child { grid-column: 1 / -1; }
  .projects-teaser-number { margin-top: 58px; }
  .student-projects-hero { min-height: 0; }
  .projects-hero-title { margin-top: 38px; }
  .projects-hero-title h1 { font-size: clamp(2.8rem, 13.5vw, 5.3rem); line-height: .86; }
  .projects-hero-copy, .projects-hero-stat { margin-top: 42px; }
  .projects-hero-stat { grid-template-columns: auto 1fr; }
  .student-projects-grid { grid-template-columns: 1fr; }
  .student-project-meta { align-items: flex-start; flex-direction: column; gap: 5px; }
  .student-project-author-row { margin-top: 22px; }
  .student-project-links { align-items: flex-start; flex-direction: column; }
  .dictionary-teaser-copy, .dictionary-teaser-specimens, .glossary-hero-title, .glossary-hero-lead, .glossary-hero-signs, .glossary-intro-heading, .glossary-intro-copy, .glossary-toolbar-main, .code-symbols-heading, .glossary-note > div:last-child { grid-column: 1 / -1; }
  .dictionary-teaser-specimens, .glossary-hero-signs { margin-top: 32px; }
  .glossary-hero-title h1 { gap: 0; font-size: clamp(2.9rem, 13.4vw, 4.5rem); line-height: .88; }
  .glossary-hero-lead { margin-top: 32px; }
  .glossary-hero-signs span { min-height: 84px; }
  .glossary-intro-copy { margin-top: 28px; }
  .glossary-toolbar-main h2 { font-size: clamp(2.35rem, 10vw, 4.2rem); }
  .glossary-search input { height: 60px; padding-right: 0; font-size: 1.05rem; }
  .glossary-search kbd { display: none; }
  .glossary-filters { margin-right: calc(var(--gutter) * -1); padding-right: var(--gutter); padding-bottom: 8px; flex-wrap: nowrap; gap: 6px; overflow-x: auto; }
  .glossary-filters button { min-height: 40px; flex: 0 0 auto; font-size: .66rem; }
  .glossary-card summary { min-height: 0; grid-template-columns: 36px minmax(0, 1fr) 24px; grid-template-rows: auto auto auto; gap: 8px 10px; padding: 18px 6px; }
  .glossary-card-number { grid-column: 1; grid-row: 1; }
  .glossary-card-category { grid-column: 2; grid-row: 1; }
  .glossary-card-heading { grid-column: 1 / span 2; grid-row: 2; margin-top: 4px; }
  .glossary-card-heading strong { font-size: clamp(1.45rem, 7vw, 2rem); }
  .glossary-card-definition { grid-column: 1 / -1; grid-row: 3; margin-top: 8px; font-size: .88rem; }
  .glossary-card-toggle { grid-column: 3; grid-row: 1 / span 2; align-self: start; }
  .glossary-card-body { grid-template-columns: 1fr; padding: 24px 18px; }
  .glossary-sources { grid-column: auto; }
  .symbol-grid { grid-template-columns: repeat(2, 1fr); }
  .symbol-grid li { min-height: 190px; }
  .principles { grid-template-columns: 1fr; }
  .principles li { min-height: 190px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .principles li:last-child { border-bottom: 0; }
  .principles h3 { margin-top: 42px; }
  .days-grid { grid-template-columns: repeat(2, 1fr); }
  .day-card { min-height: 220px; }
  .feature-number { grid-column: 1 / span 6; }
  .feature-copy, .feature-photo, .place-photo, .place-copy { grid-column: 1 / -1; }
  .feature-photo { grid-row: auto; margin-top: 40px; }
  .feature-photo img { height: auto; aspect-ratio: auto; }
  .place-copy { margin-top: 34px; }

  .breadcrumbs { font-size: 0.58rem; }
  .day-index { grid-column: 1 / -1; grid-row: auto; margin-top: 30px; }
  .day-title-block { grid-column: 1 / -1; margin-top: 8px; }
  .day-title-block h1 { font-size: clamp(2.55rem, 11.2vw, 4.3rem); line-height: .9; }
  .day-deck { margin-top: 30px; }
  .day-meta { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
  .day-cover { margin-top: 34px; }
  .day-cover img { aspect-ratio: auto; }
  .day-cover figcaption { flex-direction: column; gap: 4px; }
  .summary-steps { grid-template-columns: 1fr; }
  .summary-steps li { min-height: 180px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .summary-steps li:last-child { border-bottom: 0; }
  .summary-steps h3 { margin-top: 42px; }
  .longread-callout-copy { grid-column: 1 / -1; }
  .longread-callout-index { display: none; }
  .longread-daymark { grid-column: 1 / -1; grid-row: auto; margin-top: 30px; }
  .longread-heading { grid-column: 1 / -1; margin-top: 26px; }
  .longread-heading h1 { font-size: clamp(2.5rem, 10.8vw, 4.4rem); line-height: .92; }
  .longread-heading > p:last-child { margin-top: 30px; }
  .longread-meta { grid-column: 1 / -1; grid-template-columns: 1fr; row-gap: 14px; }
  .longread-content { row-gap: 56px; }
  .longread-aside { grid-column: 1 / -1; position: static; }
  .longread-copy { grid-column: 1 / -1; }
  .prose-long h2 { margin-top: 4rem; font-size: clamp(1.9rem, 9vw, 3rem); }
  .prose-long h3 { margin-top: 3rem; }
  .prose-long li { padding-right: 2px; }
  .longread-return > div, .longread-return > .button { grid-column: 1 / -1; }
  .longread-return > .button { margin-top: 28px; justify-self: start; }
  .manifesto-copy, .article-copy, .inputs-rule, .debate-lead, .debate-conclusion, .outcomes-list, .outcomes-note, .post-text, .pull-note { grid-column: 1 / -1; }
  .inputs-list { grid-template-columns: repeat(2, 1fr); }
  .inputs-list li { min-height: 150px; }
  .process-line { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-line li { min-width: 0; min-height: 150px; }
  .debate-columns { grid-template-columns: 1fr; }
  .debate-columns article { min-height: 330px; }
  .project-card { min-height: 460px; }
  .outcomes-list li { grid-template-columns: 44px 1fr; }
  .photo-item, .photo-item.photo-wide, .photo-item.photo-tall { grid-column: 1 / -1; }
  .photo-wide .photo-button img, .photo-button img, .photo-tall .photo-button img { max-height: none; object-fit: contain; }
  .extra-photo-grid { grid-template-columns: 1fr 1fr; }
  .extra-photo-grid .photo-button img { aspect-ratio: 1 / 1; object-fit: cover; }
  .interviews-grid { grid-template-columns: 1fr; }
  .interview-card { grid-template-columns: minmax(128px, .66fr) minmax(0, 1fr); }
  .interview-card video { width: 100%; }
  .interview-copy h3 { margin-top: 18px; }
  .lightbox { padding: 56px 12px 18px; }
  .lightbox[open] { grid-template-columns: 1fr 1fr; grid-template-rows: minmax(0, 1fr) 48px; gap: 8px; }
  .lightbox figure { grid-column: 1 / -1; grid-row: 1; height: calc(100vh - 134px); }
  .lightbox-prev, .lightbox-next { grid-row: 2; justify-self: center; }
  .editorial-note { grid-column: 1 / -1; }
  .day-navigation { grid-template-columns: 1fr; }
  .site-footer { row-gap: 24px; }
  .footer-brand, .site-footer p:nth-of-type(1), .site-footer p:nth-of-type(2), .back-top { grid-column: 1 / -1; }
  .back-top { margin-top: 0; }
  .not-found-number, .not-found-copy { grid-column: 1 / -1; }
  .not-found-number { margin-bottom: 50px; }
}

@media (max-width: 400px) {
  .section-heading h2,
  .article-heading h2,
  .inputs-intro h2,
  .debate-title-block h2,
  .outcomes-heading h2,
  .post-heading h2,
  .photos-heading h2,
  .interviews-heading h2,
  .place-copy h2 { font-size: clamp(1.9rem, 9.6vw, 3rem); }
  .feature-copy h2 { font-size: clamp(2rem, 10vw, 3.2rem); }
  .day-title-block h1 { font-size: clamp(2.3rem, 10.4vw, 4rem); }
  .process-line { grid-template-columns: 1fr; }
  .process-line b { overflow-wrap: anywhere; }
  .dictionary-teaser-copy h2, .glossary-intro-heading h2, .code-symbols-heading h2, .glossary-note h2 { font-size: clamp(2rem, 10vw, 3.2rem); }
  .projects-teaser-copy h2, .student-projects-intro h2, .student-projects-note h2 { font-size: clamp(2rem, 10vw, 3.2rem); }
  .dictionary-teaser-specimens { grid-template-columns: 1fr 1fr; }
  .dictionary-teaser-specimens span { min-height: 88px; }
  .symbol-grid { grid-template-columns: 1fr; }
  .symbol-grid li { min-height: 190px; }
  .interview-card { grid-template-columns: 1fr; }
  .interview-card video { width: min(100%, 280px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

@media print {
  .site-header, .site-footer, .button, .photo-grid, .more-photos, .lightbox, .day-navigation { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  body::before { display: none; }
  .section-grid { max-width: none; padding-inline: 0; }
  .inputs-section, .debate-section, .short-post { color: #000; background: #fff; border-block: 1px solid #000; }
  .project-card-dark { color: #000; background: #fff; }
  article section { break-inside: avoid; }
  .longread-content { break-inside: auto !important; }
  .longread-aside, .longread-return { display: none !important; }
  .longread-copy { grid-column: 1 / -1; max-width: none; }
  .prose-long h2, .prose-long h3 { break-after: avoid; }
}
