@font-face {
  font-family: "Space Grotesk";
  src: url("/fonts/space-grotesk-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --canvas: #e9e5dc;
  --paper: #f4f1ea;
  --ink: #161513;
  --red: #e0392b;
  --muted: rgba(22, 21, 19, .68);
  --line: 2px solid var(--ink);
  --site: 1240px;
  --pad: 40px;
  --section: 60px;
  --font: "Space Grotesk", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

html { background: var(--canvas); color: var(--ink); scroll-behavior: smooth; }

body {
  min-width: 320px;
  max-width: var(--site);
  margin: 0 auto;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
a:hover { opacity: .74; }
a:focus-visible, summary:focus-visible { outline: 3px solid var(--red); outline-offset: 4px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { color: var(--muted); text-wrap: pretty; }
img { display: block; max-width: 100%; }
code { font-family: "SFMono-Regular", Consolas, monospace; font-size: .88em; overflow-wrap: anywhere; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--red);
  color: var(--paper);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  height: 72px;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  border-bottom: var(--line);
  background: var(--paper);
}

.wordmark { font-size: 18px; font-weight: 700; letter-spacing: -.01em; white-space: nowrap; }
.wordmark span { color: var(--red); }
.desktop-nav { display: flex; gap: 30px; align-items: center; }
.desktop-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.desktop-nav a.active, .desktop-nav a[aria-current="page"] { color: var(--red); }
.desktop-nav a.active::after, .desktop-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--red);
}
.header-cta {
  min-height: 40px;
  padding: 10px 20px;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.mobile-nav { display: none; }

.kicker {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.kicker-light { color: var(--red); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  border-bottom: var(--line);
}
.hero-copy {
  padding: 80px var(--pad) 70px;
  border-right: var(--line);
}
.hero-badges { margin-bottom: 36px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-badges span {
  padding: 5px 12px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-badges span:last-child { padding-block: 6.5px; border: 0; background: var(--red); color: var(--paper); }
.hero h1 {
  margin: 0;
  font-size: clamp(68px, 7.75vw, 96px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: .98;
  text-transform: uppercase;
}
.hero h1 span { color: var(--red); }
.hero-copy > p { max-width: 540px; margin: 36px 0 0; font-size: 17px; line-height: 1.6; }
.hero-stats { display: grid; grid-template-rows: repeat(4, 1fr); }
.hero-stats div {
  min-height: 145px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: var(--line);
}
.hero-stats div:last-child { border-bottom: 0; }
.hero-stats span { color: rgba(22,21,19,.55); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.hero-stats strong { font-size: 52px; font-weight: 700; letter-spacing: -.04em; line-height: 1; }
.hero-stats .accent { background: var(--red); color: var(--paper); }
.hero-stats .accent span { color: var(--paper); }
.hero-ticker {
  grid-column: 1 / -1;
  min-height: 54px;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: var(--line);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-ticker i { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: var(--red); }

.section-pad { padding: var(--section) var(--pad); border-bottom: var(--line); }
.section-heading { margin-bottom: 44px; }
.section-heading h2, .archive-callout h2, .footer-lead h2 {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.05;
  text-transform: uppercase;
}
.split-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 60px; }
.split-heading > * { flex: 1 1 0; }
.split-heading > p { max-width: 470px; margin: 0; }

.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 calc(var(--pad) * -1) calc(var(--section) * -1);
  border-top: var(--line);
}
.principle-grid article { min-height: 260px; padding: 30px 26px 40px; display: flex; flex-direction: column; border-right: var(--line); }
.principle-grid article:last-child { border-right: 0; }
.principle-grid article > span { color: var(--red); font-size: 13px; font-weight: 700; }
.principle-grid h3 { margin: auto 0 12px; font-size: 20px; line-height: 1.1; text-transform: uppercase; }
.principle-grid p { margin: 0; font-size: 13.5px; }

.feature-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: var(--line);
  background: var(--ink);
  color: var(--paper);
}
.feature-copy { padding: 70px var(--pad); border-right: 2px solid rgba(244,241,234,.25); }
.feature-copy h2 { margin: 0; font-size: 64px; line-height: 1; letter-spacing: -.04em; text-transform: uppercase; }
.feature-copy p { max-width: 460px; margin: 28px 0 34px; color: rgba(244,241,234,.75); font-size: 16px; }
.feature-visual { min-height: 510px; margin: 0; position: relative; overflow: hidden; }
.feature-visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.08); }
.feature-visual::after { content: "12"; position: absolute; right: 24px; bottom: -30px; color: var(--red); font-size: 180px; font-weight: 700; line-height: 1; letter-spacing: -.08em; mix-blend-mode: screen; }
.feature-visual figcaption, .editorial-visual figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 7px 10px;
  background: var(--paper);
  color: var(--ink);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.editorial-visual {
  height: 430px;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-bottom: var(--line);
  background: var(--ink);
}
.editorial-visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.06); }

.edition-list { border-top: var(--line); }
.edition-card { display: grid; grid-template-columns: 68px 1fr; gap: 28px; padding: 34px 0 42px; border-bottom: var(--line); }
.edition-index { color: var(--red); font-size: 20px; font-weight: 700; }
.edition-card h3 { float: left; min-width: 150px; margin: 0 28px 12px 0; font-size: 64px; letter-spacing: -.045em; line-height: .9; }
.edition-card .kicker { margin-bottom: 8px; }
.edition-card p { max-width: 760px; margin-bottom: 12px; font-size: 14px; }
.edition-date { color: var(--ink) !important; font-weight: 600; }
.tag-list { margin: 20px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.tag-list li { padding: 6px 9px; border: 1px solid var(--ink); font-size: 10px; font-weight: 600; text-transform: uppercase; }
.after-years { display: grid; grid-template-columns: 1fr 1fr; border: var(--line); border-bottom: 0; }
.after-years article { min-height: 230px; padding: 28px; border-right: var(--line); }
.after-years article:last-child { border-right: 0; }
.after-years h3 { margin: 60px 0 10px; font-size: 26px; text-transform: uppercase; }
.after-years p { margin: 0; font-size: 14px; }

.archive-callout { display: grid; grid-template-columns: 60px 1fr auto; gap: 34px; align-items: center; }
.archive-callout p { max-width: 700px; margin-bottom: 0; }
.callout-mark { color: var(--red); font-size: 56px; font-weight: 700; }

.button {
  min-height: 44px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 2px solid var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.button-primary { border-color: var(--red); background: var(--red); color: var(--paper); }
.button-dark { background: var(--ink); color: var(--paper); }
.text-link { display: inline-block; padding-bottom: 3px; border-bottom: 2px solid var(--red); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.text-link.light { color: var(--paper); }
.button-row { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 24px; align-items: center; }

.page-hero {
  min-height: 420px;
  padding: 70px var(--pad) 60px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: var(--line);
}
.page-hero-copy { max-width: 930px; position: relative; z-index: 2; }
.page-hero h1 { margin: 0; max-width: 930px; font-size: 76px; font-weight: 700; letter-spacing: -.04em; line-height: 1; text-transform: uppercase; }
.page-hero h1 em { color: var(--red); font-style: normal; }
.page-hero p { max-width: 610px; margin: 28px 0 0; font-size: 16px; }
.page-number { position: absolute; right: 32px; top: 12px; color: transparent; font-size: 170px; font-weight: 700; line-height: 1; -webkit-text-stroke: 1px rgba(22,21,19,.14); }
.page-hero-rule { position: absolute; right: var(--pad); bottom: 28px; width: 28%; height: 2px; background: var(--red); }

.article-intro, .humanism-lead, .partner-story, .location-layout, .contact-layout, .closed-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.pull-quote { font-size: 38px; font-weight: 700; letter-spacing: -.025em; line-height: 1.14; text-transform: uppercase; }
.prose { max-width: 650px; }
.prose h2, .humanism-lead h2, .partner-story h2, .contact-layout h2 { margin: 0 0 24px; font-size: 38px; line-height: 1.05; text-transform: uppercase; }
.prose p { font-size: 16px; }

.dark-section, .route-board { background: var(--ink); color: var(--paper); }
.dark-section p, .route-board p { color: rgba(244,241,234,.72); }
.three-up { display: grid; grid-template-columns: repeat(3, 1fr); border: 2px solid rgba(244,241,234,.35); }
.three-up article { min-height: 280px; padding: 30px; border-right: 2px solid rgba(244,241,234,.35); display: flex; flex-direction: column; }
.three-up article:last-child { border-right: 0; }
.three-up b { color: var(--red); }
.three-up h3 { margin: auto 0 12px; font-size: 22px; text-transform: uppercase; }
.three-up p { margin: 0; font-size: 14px; }

.program-year { display: grid; grid-template-columns: .7fr 1.3fr; gap: 50px; align-items: end; margin-bottom: 50px; }
.program-year > span { font-size: 104px; font-weight: 700; letter-spacing: -.055em; line-height: .8; }
.program-year h2 { margin: 0; font-size: 38px; line-height: 1; text-transform: uppercase; }
.program-year p { margin: 12px 0 0; }
.schedule-block { display: grid; grid-template-columns: 250px 1fr; border-top: var(--line); }
.schedule-day { padding: 18px 24px 18px 0; background: var(--ink); color: var(--paper); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.schedule-day span { display: block; padding-left: 22px; }
.schedule-list { padding-left: 28px; }
.schedule-list > div { min-height: 58px; padding: 14px 0; display: grid; grid-template-columns: 96px 1fr; gap: 18px; align-items: baseline; border-bottom: var(--line); }
.schedule-list time { color: var(--red); font-size: 14px; font-weight: 700; font-style: normal; }
.schedule-list strong { font-size: 15px; font-weight: 500; }
.single-day { min-height: 520px; }
.single-day .button { margin-top: 34px; }
.schedule-columns { display: grid; grid-template-columns: repeat(3, 1fr); border-top: var(--line); border-left: var(--line); }
.schedule-columns .schedule-block { display: block; border-top: 0; border-right: var(--line); }
.schedule-columns .schedule-day { padding: 15px 0; border-bottom: var(--line); }
.schedule-columns .schedule-list { padding: 20px 24px 30px; }
.schedule-columns .schedule-list > div { min-height: 0; padding: 7px 0; display: flex; gap: 14px; border-bottom: 0; }
.schedule-columns .schedule-list time { width: 64px; flex: 0 0 64px; }

.film-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 2px solid currentColor; border-left: 2px solid currentColor; }
.film-grid article { min-height: 230px; padding: 28px 26px 36px; display: flex; flex-direction: column; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; }
.film-grid span { color: var(--red); font-size: 12px; font-weight: 700; }
.film-grid h3 { margin: auto 0 10px; font-size: 20px; text-transform: uppercase; }
.film-grid p { margin: 0; font-size: 13px; }
.film-grid.light { margin-top: 36px; color: var(--ink); }

.historic-notice { max-width: 900px; margin: 48px auto 0; padding: 20px 24px; border: var(--line); border-left: 8px solid var(--red); font-size: 14px; }
.historic-notice.wide { max-width: none; margin: 0; border-width: 0 0 2px 8px; }

.award-strip { display: grid; grid-template-columns: .8fr 1.3fr auto; gap: 38px; align-items: center; }
.award-strip h2 { margin: 0; font-size: 38px; text-transform: uppercase; }
.award-list article { padding: 14px 0; display: grid; grid-template-columns: 145px 1fr; gap: 18px; border-bottom: var(--line); }
.award-list span { color: var(--red); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.award-list strong { font-size: 16px; font-weight: 600; }
.award-page article { padding: 34px 0; display: grid; grid-template-columns: 210px 1.25fr .75fr; gap: 30px; align-items: baseline; border-bottom: var(--line); }
.award-page h2 { margin: 0; font-size: 30px; text-transform: uppercase; }
.award-page p { margin: 0; font-size: 14px; }

.human-values { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0; }
.human-values article { min-height: 300px; padding: 42px var(--pad); display: flex; flex-direction: column; border-right: var(--line); border-bottom: var(--line); }
.human-values article:nth-child(even) { border-right: 0; }
.human-values span, .media-grid span, .location-card > span { color: var(--red); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.human-values h3 { margin: auto 0 14px; font-size: 30px; text-transform: uppercase; }
.human-values p { margin: 0; }
.question-band { padding: 24px var(--pad); display: flex; justify-content: space-between; gap: 24px; overflow: hidden; border-bottom: var(--line); background: var(--red); color: var(--paper); font-size: 28px; font-weight: 700; text-transform: uppercase; }

.source-note { padding: 28px var(--pad); display: grid; grid-template-columns: 165px 1fr auto; gap: 34px; align-items: center; border-bottom: var(--line); }
.source-note span { color: var(--red); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.source-note p { margin: 0; font-size: 13px; }
.source-note a { font-size: 11px; font-weight: 700; text-transform: uppercase; border-bottom: 2px solid var(--red); }

.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: var(--line); }
.method-grid article { min-height: 280px; padding: 28px; display: flex; flex-direction: column; border-right: var(--line); }
.method-grid article:last-child { border-right: 0; }
.method-grid h3 { margin: auto 0 12px; font-size: 24px; text-transform: uppercase; }
.method-grid p { margin: 0; font-size: 14px; }
.status { width: max-content; padding: 6px 9px; border: 1px solid currentColor; color: var(--red); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.status.exclude { background: var(--red); color: var(--paper); }

.route-board { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.route-board h2 { margin: 0; font-size: 40px; text-transform: uppercase; }
.route-list { display: flex; flex-direction: column; justify-content: center; }
.route-list code { padding: 13px 0; border-bottom: 2px solid rgba(244,241,234,.25); color: var(--paper); }

.partner-cards { border-top: var(--line); }
.partner-cards article, .contact-cards article { padding: 24px 0; border-bottom: var(--line); }
.partner-cards h3, .contact-cards h3 { margin: 0 0 8px; font-size: 21px; text-transform: uppercase; }
.partner-cards p, .contact-cards p { margin: 0; font-size: 14px; }
.people-grid { padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); }
.people-grid article { min-height: 330px; padding: 40px var(--pad); display: flex; flex-direction: column; border-right: var(--line); border-bottom: var(--line); }
.people-grid article:last-child { border-right: 0; }
.people-grid h2 { margin: auto 0 12px; font-size: 34px; text-transform: uppercase; }
.people-grid p { margin: 0; font-size: 14px; }
.media-grid { padding: 0; display: grid; grid-template-columns: 1fr 1fr; }
.media-grid article { min-height: 310px; padding: 42px var(--pad); display: flex; flex-direction: column; border-right: var(--line); border-bottom: var(--line); }
.media-grid article:nth-child(even) { border-right: 0; }
.media-grid h2 { margin: auto 0 12px; font-size: 28px; text-transform: uppercase; }
.media-grid p { margin: 0; }

.location-card { min-height: 430px; padding: 38px; display: flex; flex-direction: column; background: var(--red); color: var(--paper); }
.location-card > span { color: var(--paper); }
.location-card strong { margin: auto 0; font-size: 50px; line-height: 1; letter-spacing: -.04em; }
.location-card p { margin: 0; color: var(--paper); }
.closed-stamp { aspect-ratio: 1; max-width: 360px; display: grid; place-content: center; justify-self: center; border: 10px double var(--red); border-radius: 50%; color: var(--red); font-size: 56px; font-weight: 700; line-height: .85; text-align: center; transform: rotate(-8deg); }
.closed-stamp span { font-size: 13px; letter-spacing: .14em; }

.not-found { min-height: 650px; padding: 100px var(--pad); border-bottom: var(--line); background: var(--ink); color: var(--paper); }
.not-found h1 { margin: 0 0 30px; font-size: 88px; line-height: .9; letter-spacing: -.04em; text-transform: uppercase; }
.not-found h1 em { color: var(--red); font-style: normal; }
.not-found p { max-width: 560px; color: rgba(244,241,234,.72); }

.blog-index { padding-top: 0; }
.blog-card { background: var(--paper); }
.blog-card.featured {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  margin: 0 calc(var(--pad) * -1) var(--section);
  border-bottom: var(--line);
}
.blog-card-image { min-height: 330px; display: block; overflow: hidden; background: var(--ink); }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.blog-card-image:hover { opacity: 1; }
.blog-card-image:hover img { transform: scale(1.018); }
.blog-card-copy { padding: 28px; display: flex; flex-direction: column; }
.blog-card-copy h2 { margin: 48px 0 14px; font-size: 27px; letter-spacing: -.025em; line-height: 1.05; text-transform: uppercase; }
.blog-card-copy p { margin-bottom: 24px; font-size: 14px; }
.blog-card-copy .text-link { margin-top: auto; align-self: flex-start; }
.blog-card.featured .blog-card-copy { padding: 42px var(--pad); }
.blog-card.featured .blog-card-copy h2 { margin-top: auto; font-size: 46px; }
.blog-card.featured .blog-card-copy p { font-size: 16px; }
.blog-meta { display: flex; flex-wrap: wrap; gap: 10px 18px; color: rgba(22,21,19,.58); font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.blog-meta span:first-child { color: var(--red); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: var(--line); border-left: var(--line); }
.blog-grid .blog-card, .related-grid .blog-card { min-width: 0; display: flex; flex-direction: column; border-right: var(--line); border-bottom: var(--line); }
.blog-grid .blog-card-image, .related-grid .blog-card-image { min-height: 220px; aspect-ratio: 1.45; }
.blog-grid .blog-card-copy, .related-grid .blog-card-copy { flex: 1 1 auto; }

.blog-article-header { padding: 72px var(--pad) 58px; border-bottom: var(--line); }
.blog-article-header h1 { max-width: 1000px; margin: 28px 0 24px; font-size: clamp(58px, 6.6vw, 82px); font-weight: 700; letter-spacing: -.045em; line-height: .97; text-transform: uppercase; }
.blog-article-header > p { max-width: 760px; margin: 0; font-size: 19px; line-height: 1.6; }
.article-hero-image { height: 610px; margin: 0; position: relative; overflow: hidden; border-bottom: var(--line); background: var(--ink); }
.article-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.article-hero-image figcaption, .article-inline-image figcaption { padding: 10px 14px; background: var(--ink); color: var(--paper); font-size: 10px; font-weight: 600; letter-spacing: .08em; line-height: 1.4; text-transform: uppercase; }
.article-hero-image figcaption { position: absolute; right: 0; bottom: 0; max-width: 520px; }
.blog-article-layout { display: grid; grid-template-columns: 240px minmax(0, 760px); gap: 80px; justify-content: center; align-items: start; }
.article-toc { position: sticky; top: 24px; border-top: var(--line); }
.article-toc > span { padding: 16px 0; display: block; color: var(--red); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; border-bottom: var(--line); }
.article-toc nav { display: flex; flex-direction: column; }
.article-toc a { padding: 10px 0; border-bottom: 1px solid rgba(22,21,19,.25); font-size: 11px; font-weight: 600; line-height: 1.3; text-transform: uppercase; }
.article-body { min-width: 0; }
.article-body > p { margin: 0 0 27px; color: rgba(22,21,19,.82); font-size: 18px; line-height: 1.82; }
.article-body > p:first-child { font-size: 22px; font-weight: 500; line-height: 1.65; }
.article-body > h2 { margin: 72px 0 25px; padding-top: 20px; border-top: var(--line); font-size: 34px; letter-spacing: -.025em; line-height: 1.08; text-transform: uppercase; scroll-margin-top: 24px; }
.article-inline-image { margin: 58px -80px; border: var(--line); background: var(--ink); }
.article-inline-image img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.article-inline-image figcaption { border-top: var(--line); }
.related-articles { background: var(--canvas); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: var(--line); border-left: var(--line); background: var(--paper); }

.site-footer { border-bottom: var(--line); }
.footer-lead { padding: 60px var(--pad); display: grid; grid-template-columns: 1fr auto; gap: 60px; border-bottom: var(--line); }
.footer-lead h2 { font-size: 52px; }
.footer-lead h2 span { color: var(--red); }
.footer-lead nav { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 50px; align-content: start; }
.footer-lead nav a { font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.footer-base { padding: 16px var(--pad); display: flex; justify-content: space-between; gap: 30px; color: rgba(22,21,19,.58); font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }

@media (max-width: 1100px) {
  body { width: calc(100% - 32px); }
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .mobile-nav { display: block; justify-self: end; position: relative; }
  .mobile-nav summary { min-height: 44px; padding: 0 14px; display: grid; place-items: center; border: 2px solid var(--ink); cursor: pointer; font-size: 12px; font-weight: 700; text-transform: uppercase; }
  .mobile-nav nav { position: absolute; z-index: 50; top: 50px; right: 0; width: 260px; display: flex; flex-direction: column; padding: 10px; border: var(--line); background: var(--paper); box-shadow: 7px 7px 0 var(--ink); }
  .mobile-nav nav a { min-height: 44px; padding: 10px; display: flex; align-items: center; border-bottom: 1px solid rgba(22,21,19,.25); font-size: 12px; font-weight: 600; text-transform: uppercase; }
  .hero { grid-template-columns: minmax(0, 1fr) 280px; }
  .hero h1 { font-size: clamp(62px, 8vw, 84px); }
  .hero-ticker span:nth-of-type(even), .hero-ticker i:nth-of-type(even) { display: none; }
  .award-strip { grid-template-columns: 1fr 1.4fr; }
  .award-strip .button { grid-column: 1 / -1; justify-self: start; }
  .blog-article-layout { grid-template-columns: 210px minmax(0, 700px); gap: 50px; }
  .article-inline-image { margin-inline: -35px; }
}

@media (max-width: 820px) {
  :root { --pad: 28px; --section: 48px; }
  body { width: calc(100% - 24px); }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { border-right: 0; }
  .hero-stats { grid-template-columns: 1fr 1fr; grid-template-rows: auto; border-top: var(--line); }
  .hero-stats div { min-height: 130px; border-right: var(--line); }
  .hero-stats div:nth-child(even) { border-right: 0; }
  .hero-ticker span:nth-of-type(n+4), .hero-ticker i:nth-of-type(n+4) { display: none; }
  .principle-grid, .film-grid, .people-grid, .method-grid { grid-template-columns: 1fr 1fr; }
  .principle-grid article:nth-child(even), .film-grid article:nth-child(even), .people-grid article:nth-child(even), .method-grid article:nth-child(even) { border-right: 0; }
  .feature-band { grid-template-columns: 1fr; }
  .feature-copy { border-right: 0; border-bottom: 2px solid rgba(244,241,234,.25); }
  .feature-visual { min-height: 400px; }
  .split-heading, .article-intro, .humanism-lead, .partner-story, .location-layout, .contact-layout, .closed-page, .route-board { grid-template-columns: 1fr; display: grid; gap: 34px; }
  .split-heading > p { max-width: none; }
  .editorial-visual { height: 360px; }
  .schedule-block { grid-template-columns: 1fr; }
  .schedule-columns { grid-template-columns: 1fr; }
  .schedule-columns .schedule-block { border-bottom: var(--line); }
  .schedule-day { padding: 16px 0; }
  .award-page article { grid-template-columns: 1fr; gap: 10px; }
  .source-note { grid-template-columns: 1fr; gap: 10px; }
  .footer-lead { grid-template-columns: 1fr; }
  .blog-card.featured { grid-template-columns: 1fr; }
  .blog-card.featured .blog-card-image { min-height: 420px; }
  .blog-grid, .related-grid { grid-template-columns: 1fr 1fr; }
  .blog-article-layout { grid-template-columns: 1fr; }
  .article-toc { position: static; }
  .article-toc nav { display: grid; grid-template-columns: 1fr 1fr; column-gap: 24px; }
  .article-inline-image { margin-inline: 0; }
}

@media (max-width: 600px) {
  :root { --pad: 20px; --section: 42px; }
  html { background: var(--paper); }
  body { width: 100%; }
  .site-header { height: 66px; padding-inline: var(--pad); }
  .wordmark { font-size: 16px; }
  .hero-copy { padding: 54px var(--pad) 48px; }
  .hero-badges { margin-bottom: 28px; gap: 8px; }
  .hero-badges span { font-size: 9px; }
  .hero h1 { font-size: clamp(50px, 17vw, 70px); }
  .hero-copy > p { margin-top: 28px; font-size: 16px; }
  .hero-stats strong { font-size: 40px; }
  .hero-ticker { justify-content: flex-start; overflow: hidden; }
  .hero-ticker span:nth-of-type(n+3), .hero-ticker i:nth-of-type(n+3) { display: none; }
  .section-heading h2, .archive-callout h2, .footer-lead h2 { font-size: 34px; }
  .principle-grid, .film-grid, .human-values, .people-grid, .media-grid, .method-grid, .after-years { grid-template-columns: 1fr; }
  .principle-grid article, .film-grid article, .human-values article, .people-grid article, .media-grid article, .method-grid article, .after-years article { border-right: 0; }
  .principle-grid article { min-height: 220px; }
  .feature-copy { padding: 50px var(--pad); }
  .feature-copy h2 { font-size: 44px; }
  .feature-visual { min-height: 320px; }
  .feature-visual::after { font-size: 120px; }
  .editorial-visual { height: 280px; }
  .edition-card { grid-template-columns: 42px 1fr; gap: 12px; }
  .edition-card h3 { float: none; min-width: 0; font-size: 48px; }
  .archive-callout { grid-template-columns: 1fr; }
  .callout-mark { font-size: 42px; }
  .page-hero { min-height: 360px; padding-block: 54px 46px; }
  .page-hero h1 { font-size: 48px; }
  .page-number { font-size: 105px; }
  .page-hero-rule { display: none; }
  .pull-quote { font-size: 30px; }
  .three-up { grid-template-columns: 1fr; }
  .three-up article { min-height: 220px; border-right: 0; border-bottom: 2px solid rgba(244,241,234,.35); }
  .program-year { grid-template-columns: 1fr; gap: 26px; }
  .program-year > span { font-size: 80px; }
  .schedule-list { padding-left: 0; }
  .schedule-list > div { grid-template-columns: 78px 1fr; }
  .award-strip { grid-template-columns: 1fr; }
  .award-strip .button { grid-column: auto; }
  .award-list article { grid-template-columns: 110px 1fr; }
  .question-band { justify-content: flex-start; font-size: 21px; }
  .question-band span:nth-child(n+3) { display: none; }
  .location-card { min-height: 360px; }
  .location-card strong { font-size: 40px; }
  .closed-stamp { max-width: 270px; font-size: 44px; }
  .not-found { min-height: 540px; padding-top: 80px; }
  .not-found h1 { font-size: 58px; }
  .footer-lead { padding-block: 48px; }
  .footer-lead nav { grid-template-columns: 1fr; }
  .footer-base { flex-direction: column; gap: 8px; }
  .blog-card.featured { margin-bottom: 42px; }
  .blog-card.featured .blog-card-image { min-height: 280px; }
  .blog-card.featured .blog-card-copy { padding: 30px var(--pad); }
  .blog-card.featured .blog-card-copy h2 { margin-top: 44px; font-size: 34px; }
  .blog-grid, .related-grid { grid-template-columns: 1fr; }
  .blog-grid .blog-card-image, .related-grid .blog-card-image { min-height: 240px; }
  .blog-article-header { padding: 54px var(--pad) 44px; }
  .blog-article-header h1 { font-size: 47px; }
  .blog-article-header > p { font-size: 17px; }
  .article-hero-image { height: 320px; }
  .article-toc nav { grid-template-columns: 1fr; }
  .article-body > p { font-size: 17px; line-height: 1.75; }
  .article-body > p:first-child { font-size: 19px; }
  .article-body > h2 { margin-top: 54px; font-size: 29px; }
  .article-inline-image { margin-block: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

@media print {
  html, body { background: #fff; }
  body { width: auto; max-width: none; }
  .site-header, .site-footer, .hero-ticker, .button, .text-link { display: none !important; }
  .hero, .page-hero, .section-pad, .feature-copy { display: block; min-height: 0; padding: 24px 0; color: #000; background: #fff; border-color: #000; }
  .hero-stats, .feature-visual, .editorial-visual { display: none; }
}
