:root {
  --ink: #173127;
  --ink-soft: #24493a;
  --cream: #f4efe6;
  --paper: #fffdf8;
  --orange: #e66b64;
  --pink: #d9758e;
  --acid: #d8f0af;
  --blue: #79b5cf;
  --line: rgba(23, 49, 39, .18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --max: 1320px;
}

* { box-sizing: border-box; }

html { background: var(--cream); color: var(--ink); }

body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
a:focus-visible, summary:focus-visible { outline: 3px solid var(--pink); outline-offset: 4px; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: -.045em; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
code { font-family: "SFMono-Regular", Consolas, monospace; font-size: .9em; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--acid);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform .15s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  min-height: 82px;
  padding: 0 clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
  background: rgba(244, 239, 230, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 40;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .07em;
  line-height: 1;
}
.wordmark b { color: var(--orange); }
.wordmark-mark { display: grid; gap: 2px; transform: skewX(-12deg); }
.wordmark-mark i { display: block; width: 21px; height: 3px; background: var(--ink); }
.wordmark-mark i:nth-child(2) { background: var(--orange); transform: translateX(4px); }

.desktop-nav { display: flex; align-items: center; gap: 32px; }
.desktop-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .02em;
  white-space: nowrap;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--orange);
  transition: right .18s ease;
}
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }

.header-cta {
  justify-self: end;
  padding: 11px 15px;
  border: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .03em;
  transition: background .18s ease, color .18s ease;
}
.header-cta:hover { background: var(--ink); color: var(--paper); }
.mobile-nav { display: none; }

.kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.kicker-light { color: var(--acid); }

.hero {
  position: relative;
  min-height: calc(100svh - 82px);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  grid-template-rows: 1fr auto;
  color: var(--paper);
  background:
    radial-gradient(circle at 72% 48%, rgba(115, 134, 255, .28), transparent 30%),
    linear-gradient(115deg, #0b1913 0%, #173127 58%, #24493a 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: clamp(76px, 9vw, 136px) 5vw 80px clamp(24px, 7vw, 110px);
}
.hero h1 {
  margin: 0 0 28px;
  max-width: 780px;
  font-family: var(--serif);
  font-size: clamp(64px, 8.2vw, 132px);
  font-weight: 400;
  line-height: .82;
}
.hero h1 em { color: var(--orange); font-weight: 400; }
.hero-copy > p { max-width: 680px; color: rgba(255,255,255,.76); font-size: clamp(17px, 1.35vw, 21px); line-height: 1.65; }
.hero-actions { margin-top: 38px; display: flex; align-items: center; flex-wrap: wrap; gap: 26px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 50px;
  padding: 12px 19px;
  border: 1px solid currentColor;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .045em;
  text-transform: uppercase;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { border-color: var(--acid); background: var(--acid); color: var(--ink); }
.button-primary:hover { background: var(--paper); border-color: var(--paper); }
.button-dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.button-dark:hover { background: var(--orange); border-color: var(--orange); }
.text-link { display: inline-block; font-size: 13px; font-weight: 750; border-bottom: 1px solid currentColor; padding-bottom: 3px; }
.text-link.light { color: var(--paper); }

.hero-stage { position: relative; z-index: 2; min-height: 540px; align-self: stretch; display: grid; place-items: center; padding: 80px 4vw 40px; }
.screen-card {
  width: min(420px, 86%);
  aspect-ratio: .84;
  padding: clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  color: var(--ink);
  background: var(--cream);
  box-shadow: 28px 30px 0 var(--orange), -22px -22px 0 rgba(115,134,255,.6);
  transform: rotate(2.4deg);
}
.screen-card::before, .screen-card::after { content: ""; position: absolute; width: 12px; height: 12px; border: 2px solid var(--ink); border-radius: 50%; }
.screen-card::before { left: 20px; top: 20px; }
.screen-card::after { right: 20px; bottom: 20px; }
.screen-card span { margin-bottom: 22px; color: var(--orange); font-size: 11px; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.screen-card strong { font-family: var(--serif); font-size: clamp(40px, 5vw, 68px); font-weight: 400; line-height: .92; letter-spacing: -.055em; }
.screen-card strong:nth-of-type(2) { color: var(--blue); font-style: italic; }
.screen-glow { position: absolute; width: 65%; aspect-ratio: 1; border-radius: 50%; background: var(--pink); opacity: .14; filter: blur(45px); }
.stage-caption { position: absolute; right: 4vw; bottom: 56px; display: flex; gap: 10px; align-items: center; font-size: 10px; letter-spacing: .14em; }
.stage-caption b { color: var(--acid); }
.hero-orbit { position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.orbit-one { width: 650px; height: 650px; right: -200px; top: -240px; }
.orbit-two { width: 420px; height: 420px; left: 43%; bottom: -320px; }

.hero-stats {
  grid-column: 1 / -1;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.16);
  background: rgba(5,8,16,.22);
}
.hero-stats div { padding: 22px clamp(24px, 5vw, 80px); display: flex; align-items: baseline; gap: 15px; border-right: 1px solid rgba(255,255,255,.16); }
.hero-stats strong { color: var(--acid); font-family: var(--serif); font-size: 34px; font-weight: 400; }
.hero-stats span { color: rgba(255,255,255,.62); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

.section-pad { padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 110px); }
.section-heading { max-width: var(--max); margin: 0 auto 60px; }
.section-heading h2, .archive-callout h2, .footer-lead h2 { margin: 0; font-family: var(--serif); font-size: clamp(46px, 6vw, 88px); font-weight: 400; line-height: .95; }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr); gap: 10vw; align-items: end; }
.split-heading p { margin: 0; max-width: 600px; color: rgba(17,24,39,.68); font-size: 18px; line-height: 1.7; }

.manifesto { background: var(--cream); }
.principle-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.principle-grid article { min-height: 310px; padding: 30px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; }
.principle-grid article > span { color: var(--orange); font-family: var(--serif); font-style: italic; }
.principle-grid h3 { margin: auto 0 14px; font-family: var(--serif); font-size: 29px; font-weight: 400; }
.principle-grid p { margin-bottom: 0; color: rgba(17,24,39,.66); }

.feature-band { min-height: 630px; position: relative; overflow: hidden; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; padding: 90px 8vw; color: var(--paper); background: var(--orange); }
.feature-number { font-family: var(--serif); font-size: clamp(250px, 36vw, 600px); line-height: .7; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.42); transform: translateX(-8vw); }
.feature-copy { position: relative; z-index: 2; max-width: 720px; }
.feature-copy h2 { margin: 0 0 24px; font-family: var(--serif); font-size: clamp(58px, 8vw, 116px); font-weight: 400; line-height: .92; }
.feature-copy p { max-width: 590px; margin-bottom: 34px; font-size: 19px; color: rgba(255,255,255,.8); }
.feature-lines { position: absolute; inset: 0; pointer-events: none; }
.feature-lines i { position: absolute; height: 1px; width: 34vw; background: rgba(255,255,255,.34); transform-origin: right; }
.feature-lines i:nth-child(1) { right: -2vw; top: 12%; transform: rotate(-16deg); }
.feature-lines i:nth-child(2) { right: -1vw; top: 28%; transform: rotate(-9deg); }
.feature-lines i:nth-child(3) { right: 0; top: 46%; }
.feature-lines i:nth-child(4) { right: -1vw; top: 64%; transform: rotate(9deg); }
.feature-lines i:nth-child(5) { right: -2vw; top: 81%; transform: rotate(16deg); }

.editions { background: var(--paper); }
.edition-list { max-width: var(--max); margin: 0 auto; border-top: 1px solid var(--line); }
.edition-card { display: grid; grid-template-columns: 1fr 4fr; gap: 5vw; padding: 46px 0; border-bottom: 1px solid var(--line); }
.edition-index { font-family: var(--serif); font-size: 38px; font-style: italic; color: var(--orange); }
.edition-card h3 { float: left; min-width: 170px; margin: 0 30px 20px 0; font-family: var(--serif); font-size: clamp(58px, 7vw, 96px); font-weight: 400; line-height: .8; }
.edition-card p { max-width: 760px; color: rgba(17,24,39,.68); }
.edition-card .edition-date { color: var(--ink); font-weight: 750; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 0; padding: 0; list-style: none; }
.tag-list li { padding: 7px 10px; border: 1px solid var(--line); font-size: 11px; font-weight: 700; }
.edition-list.compact .edition-card { grid-template-columns: 80px 1fr; }
.edition-list.compact .edition-card h3 { min-width: 150px; font-size: 68px; }
.after-years { max-width: var(--max); margin: 52px auto 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.after-years article { min-height: 270px; padding: 34px; border: 1px solid var(--line); background: var(--cream); }
.after-years h3 { margin: 72px 0 12px; font-family: var(--serif); font-size: 32px; font-weight: 400; }
.after-years p { color: rgba(23,49,39,.66); }
.compact-after { margin-top: 70px; }

.archive-callout { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 5vw; background: var(--acid); }
.archive-callout > div:nth-child(2) { max-width: 860px; }
.archive-callout p { max-width: 720px; color: rgba(17,24,39,.7); font-size: 18px; }
.callout-mark { font-family: var(--serif); font-size: 100px; }

.page-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  padding: clamp(90px, 12vw, 180px) clamp(24px, 7vw, 110px) 90px;
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  background: radial-gradient(circle at 80% 20%, rgba(251,91,152,.2), transparent 30%), var(--ink);
}
.page-hero::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(100deg, transparent 0 110px, rgba(255,255,255,.035) 111px 112px); }
.page-hero-copy { position: relative; z-index: 2; max-width: 1040px; }
.page-hero h1 { margin: 0 0 30px; font-family: var(--serif); font-size: clamp(58px, 8vw, 116px); font-weight: 400; line-height: .9; }
.page-hero h1 em { color: var(--orange); font-weight: 400; }
.page-hero p { max-width: 680px; color: rgba(255,255,255,.7); font-size: clamp(17px, 1.4vw, 21px); }
.page-number { position: absolute; right: 5vw; top: 8%; font-family: var(--serif); font-size: clamp(180px, 28vw, 430px); color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.11); line-height: 1; }
.page-hero-rule { position: absolute; width: 40vw; height: 6px; right: -10vw; bottom: 18%; background: var(--orange); transform: rotate(-6deg); }

.article-intro, .humanism-lead { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; background: var(--cream); }
.pull-quote { font-family: var(--serif); font-size: clamp(38px, 4.5vw, 66px); line-height: 1.05; letter-spacing: -.035em; }
.prose { max-width: 680px; }
.prose h2 { font-family: var(--serif); font-size: 48px; font-weight: 400; line-height: 1; }
.prose p { color: rgba(17,24,39,.72); font-size: 18px; line-height: 1.8; }
.prose .button { margin-top: 18px; }

.dark-section { color: var(--paper); background: var(--ink); }
.dark-section .split-heading p { color: rgba(255,255,255,.68); }
.three-up { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255,255,255,.15); }
.three-up article { min-height: 310px; padding: 36px; border-right: 1px solid rgba(255,255,255,.15); }
.three-up article:last-child { border-right: 0; }
.three-up b { color: var(--acid); font-family: var(--serif); font-size: 28px; }
.three-up h3 { margin: 100px 0 15px; font-family: var(--serif); font-size: 30px; font-weight: 400; }
.three-up p { color: rgba(255,255,255,.62); }

.program-year { max-width: var(--max); margin: 0 auto 70px; display: grid; grid-template-columns: .6fr 1.4fr; align-items: end; gap: 4vw; }
.program-year > span { font-family: var(--serif); font-size: clamp(100px, 19vw, 260px); line-height: .7; color: var(--orange); }
.program-year h2 { font-family: var(--serif); font-size: clamp(48px, 6vw, 80px); font-weight: 400; line-height: .95; }
.schedule-block { max-width: var(--max); margin: 0 auto 70px; display: grid; grid-template-columns: .65fr 1.35fr; border-top: 3px solid var(--ink); }
.schedule-day { padding: 25px 30px 25px 0; font-size: 13px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.schedule-list > div { min-height: 68px; padding: 18px 0; display: grid; grid-template-columns: 120px 1fr; gap: 20px; align-items: baseline; border-bottom: 1px solid var(--line); }
.schedule-list time { color: var(--orange); font-family: var(--serif); font-size: 21px; font-style: italic; }
.schedule-list strong { font-family: var(--serif); font-size: 25px; font-weight: 400; }
.single-day { min-height: 600px; }
.single-day .button { margin-left: calc(32.5% + 30px); }

.film-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); }
.film-grid article { min-height: 290px; padding: 32px; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.film-grid span { color: var(--acid); font-family: var(--serif); font-style: italic; }
.film-grid h3 { margin: 80px 0 12px; font-family: var(--serif); font-size: 28px; font-weight: 400; }
.film-grid p { color: rgba(255,255,255,.62); }
.film-grid.light { margin-top: 50px; color: var(--ink); border-color: var(--line); }
.film-grid.light article { border-color: var(--line); }
.film-grid.light span { color: var(--orange); }
.film-grid.light p { color: rgba(17,24,39,.66); }

.historic-notice { max-width: 900px; margin: 70px auto 0; padding: 22px 26px; border-left: 5px solid var(--orange); background: rgba(237,111,54,.1); color: rgba(17,24,39,.75); }
.historic-notice.wide { max-width: none; margin: 0 clamp(24px, 7vw, 110px) clamp(80px, 10vw, 150px); }
.button-row { margin-top: 42px; display: flex; align-items: center; flex-wrap: wrap; gap: 28px; }
.award-strip { display: grid; grid-template-columns: 1fr 1.4fr auto; gap: 6vw; align-items: center; background: var(--acid); }
.award-strip h2 { margin: 0; font-family: var(--serif); font-size: 64px; font-weight: 400; }
.award-list article { padding: 16px 0; border-bottom: 1px solid rgba(17,24,39,.25); display: grid; grid-template-columns: 150px 1fr; gap: 20px; }
.award-list span { font-size: 11px; font-weight: 800; text-transform: uppercase; }
.award-list strong { font-family: var(--serif); font-size: 21px; font-weight: 400; }
.award-page { max-width: var(--max); margin: 0 auto; }
.award-page article { padding: 55px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 5vw; align-items: center; }
.award-page h2 { margin: 0; font-family: var(--serif); font-size: clamp(42px, 5vw, 70px); font-weight: 400; line-height: .95; }
.award-page p { color: rgba(17,24,39,.68); }

.humanism-lead { align-items: start; }
.humanism-lead h2 { margin: 0; font-family: var(--serif); font-size: clamp(48px, 6vw, 80px); font-weight: 400; line-height: .95; }
.human-values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--ink); }
.human-values article { min-height: 360px; padding: clamp(38px, 6vw, 82px); background: var(--paper); }
.human-values article:nth-child(2), .human-values article:nth-child(3) { background: var(--cream); }
.human-values span { display: inline-block; color: var(--orange); font-size: 11px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.human-values h3 { max-width: 520px; margin: 100px 0 18px; font-family: var(--serif); font-size: clamp(32px, 4vw, 54px); font-weight: 400; line-height: 1; }
.human-values p { max-width: 520px; color: rgba(17,24,39,.65); }
.question-band { padding: 34px 5vw; display: flex; justify-content: space-around; gap: 30px; overflow: hidden; background: var(--orange); color: var(--paper); font-family: var(--serif); font-size: clamp(30px, 4vw, 60px); font-style: italic; white-space: nowrap; }

.source-note { padding: 40px clamp(24px, 7vw, 110px); display: grid; grid-template-columns: 180px 1fr auto; gap: 5vw; align-items: center; border-top: 1px solid var(--line); background: var(--paper); }
.source-note span { color: var(--orange); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.source-note p { margin: 0; max-width: 760px; color: rgba(17,24,39,.62); font-size: 14px; }
.source-note a { font-size: 12px; font-weight: 800; border-bottom: 1px solid; }

.archive-method { background: var(--paper); }
.method-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.method-grid article { min-height: 320px; padding: 32px; border: 1px solid var(--line); }
.method-grid h3 { margin: 90px 0 14px; font-family: var(--serif); font-size: 31px; font-weight: 400; }
.method-grid p { color: rgba(17,24,39,.65); }
.status { padding: 7px 10px; font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.status.keep { background: var(--acid); }
.status.enrich { background: var(--blue); color: white; }
.status.exclude { background: var(--pink); color: white; }

.route-board { display: grid; grid-template-columns: .75fr 1.25fr; gap: 8vw; color: var(--paper); background: var(--ink); }
.route-board h2 { font-family: var(--serif); font-size: clamp(48px, 6vw, 80px); font-weight: 400; line-height: .95; }
.route-board p { color: rgba(255,255,255,.62); }
.route-list { display: flex; flex-direction: column; justify-content: center; }
.route-list code { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.18); color: var(--acid); }

.partner-story { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: .65fr 1.35fr; gap: 7vw; }
.partner-story > div:first-child h2 { font-family: var(--serif); font-size: clamp(44px, 5vw, 70px); font-weight: 400; line-height: .95; }
.partner-cards { display: grid; gap: 14px; }
.partner-cards article { padding: 30px; border: 1px solid var(--line); }
.partner-cards h3 { margin-bottom: 10px; font-family: var(--serif); font-size: 28px; font-weight: 400; }
.partner-cards p { margin: 0; color: rgba(17,24,39,.65); }

.people-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.people-grid article { min-height: 430px; padding: clamp(32px, 5vw, 70px); background: var(--cream); }
.people-grid h2 { margin-top: 130px; font-family: var(--serif); font-size: clamp(42px, 5vw, 68px); font-weight: 400; }
.people-grid p { color: rgba(17,24,39,.65); }

.media-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); }
.media-grid article { min-height: 330px; padding: clamp(32px, 5vw, 64px); background: var(--paper); }
.media-grid span { color: var(--orange); font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .12em; }
.media-grid h2 { margin: 100px 0 12px; font-family: var(--serif); font-size: 42px; font-weight: 400; }
.media-grid p { color: rgba(17,24,39,.65); }

.location-layout { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: center; }
.location-card { min-height: 520px; padding: 55px; display: flex; flex-direction: column; color: var(--paper); background: var(--orange); transform: rotate(-1.5deg); box-shadow: 24px 24px 0 var(--ink); }
.location-card > span { font-size: 12px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.location-card strong { margin: auto 0; font-family: var(--serif); font-size: clamp(48px, 6vw, 78px); font-weight: 400; line-height: .95; }
.location-card p { margin: 0; }

.contact-layout { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: .7fr 1.3fr; gap: 8vw; }
.contact-layout h2 { font-family: var(--serif); font-size: clamp(48px, 6vw, 76px); font-weight: 400; line-height: .95; }
.contact-cards article { padding: 28px 0; border-bottom: 1px solid var(--line); }
.contact-cards h3 { font-family: var(--serif); font-size: 29px; font-weight: 400; }
.contact-cards p { color: rgba(17,24,39,.66); }

.closed-page { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; align-items: center; }
.closed-stamp { aspect-ratio: 1; display: grid; place-content: center; border: 10px double var(--orange); border-radius: 50%; color: var(--orange); font-size: clamp(42px, 6vw, 72px); font-weight: 900; line-height: .8; text-align: center; transform: rotate(-10deg); }
.closed-stamp span { font-size: 14px; letter-spacing: .16em; }

.not-found { min-height: 72svh; padding: clamp(90px, 12vw, 170px) 8vw; color: var(--paper); background: var(--ink); }
.not-found h1 { margin: 0 0 30px; font-family: var(--serif); font-size: clamp(74px, 12vw, 170px); font-weight: 400; line-height: .78; }
.not-found h1 em { color: var(--orange); font-weight: 400; }
.not-found p { max-width: 560px; color: rgba(255,255,255,.68); font-size: 18px; }

.site-footer { padding: clamp(70px, 8vw, 120px) clamp(24px, 7vw, 110px) 24px; color: var(--paper); background: #09140f; }
.footer-lead { padding-bottom: 65px; border-bottom: 1px solid rgba(255,255,255,.16); }
.footer-lead h2 { max-width: 920px; }
.footer-grid { padding: 54px 0; display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 8vw; }
.footer-grid p { max-width: 420px; color: rgba(255,255,255,.55); font-size: 14px; }
.footer-wordmark { margin-bottom: 24px; }
.footer-grid nav { display: flex; flex-direction: column; gap: 12px; font-size: 13px; font-weight: 700; }
.archive-status span { display: block; margin-bottom: 13px; color: var(--acid); font-size: 10px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.archive-status strong { font-family: var(--serif); font-size: 20px; font-weight: 400; }
.footer-base { padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.45); font-size: 11px; }

@media (max-width: 1050px) {
  .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 { cursor: pointer; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
  .mobile-nav nav { position: absolute; right: 0; top: 34px; width: 230px; padding: 20px; display: flex; flex-direction: column; gap: 15px; background: var(--paper); border: 1px solid var(--line); box-shadow: 0 18px 45px rgba(17,24,39,.15); }
  .hero { grid-template-columns: 1fr; }
  .hero-stage { min-height: 560px; padding-top: 20px; }
  .hero-copy { padding-bottom: 20px; }
  .principle-grid { grid-template-columns: repeat(2, 1fr); }
  .film-grid { grid-template-columns: repeat(2, 1fr); }
  .award-strip { grid-template-columns: 1fr; }
  .people-grid { grid-template-columns: 1fr; }
  .people-grid article { min-height: 280px; }
  .people-grid h2 { margin-top: 70px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .archive-status { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .site-header { min-height: 68px; padding: 0 20px; }
  .hero { min-height: auto; }
  .hero-copy { padding: 82px 24px 30px; }
  .hero h1 { font-size: clamp(58px, 19vw, 88px); }
  .hero-stage { min-height: 470px; }
  .screen-card { max-width: 310px; box-shadow: 18px 20px 0 var(--orange), -14px -14px 0 rgba(115,134,255,.6); }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats div { padding: 15px 24px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .hero-stats strong { font-size: 26px; }
  .section-pad { padding: 74px 24px; }
  .split-heading, .article-intro, .humanism-lead, .program-year, .schedule-block, .archive-callout, .route-board, .partner-story, .location-layout, .contact-layout, .closed-page { grid-template-columns: 1fr; gap: 38px; }
  .section-heading { margin-bottom: 42px; }
  .section-heading h2, .archive-callout h2, .footer-lead h2 { font-size: 48px; }
  .principle-grid, .film-grid, .human-values, .method-grid, .media-grid, .after-years { grid-template-columns: 1fr; }
  .principle-grid article { min-height: 250px; }
  .feature-band { min-height: 620px; grid-template-columns: 1fr; padding: 80px 24px; }
  .feature-number { position: absolute; top: 40px; left: 0; font-size: 330px; }
  .feature-copy { align-self: end; }
  .edition-card, .edition-list.compact .edition-card { grid-template-columns: 50px 1fr; gap: 16px; }
  .edition-card h3, .edition-list.compact .edition-card h3 { float: none; min-width: 0; font-size: 58px; }
  .archive-callout { align-items: start; }
  .callout-mark { font-size: 60px; }
  .page-hero { min-height: 560px; padding: 100px 24px 65px; }
  .page-hero h1 { font-size: clamp(54px, 16vw, 82px); }
  .three-up { grid-template-columns: 1fr; }
  .three-up article { min-height: 260px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .three-up h3 { margin-top: 70px; }
  .program-year > span { font-size: 140px; }
  .schedule-day { padding-bottom: 12px; }
  .schedule-list > div { grid-template-columns: 90px 1fr; }
  .schedule-list strong { font-size: 20px; }
  .single-day .button { margin-left: 0; }
  .award-page article { grid-template-columns: 1fr; gap: 14px; }
  .award-list article { grid-template-columns: 110px 1fr; }
  .human-values article { min-height: 310px; }
  .human-values h3 { margin-top: 70px; }
  .question-band { justify-content: flex-start; }
  .source-note { grid-template-columns: 1fr; gap: 12px; }
  .route-board { padding: 74px 24px; }
  .partner-story { padding-left: 24px; padding-right: 24px; }
  .location-card { min-height: 430px; padding: 38px; }
  .closed-stamp { max-width: 300px; justify-self: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .archive-status { grid-column: auto; }
  .footer-base { flex-direction: column; }
}

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

@media print {
  .site-header, .site-footer, .hero-actions, .button { display: none !important; }
  .page-hero, .hero, .dark-section, .route-board { color: #000; background: #fff; min-height: auto; }
  .section-pad { padding: 30px 0; }
}

/* Fixed-width charter — Cinema 21 Archive Modernism */
:root {
  --site-width: 1040px;
  --max: 920px;
  --pad-x: 56px;
  --section-y: 80px;
  --gap-sm: 32px;
  --gap-lg: 64px;
  --night: #171918;
  --ink: #1e3a2f;
  --ink-soft: #315344;
  --cream: #f5f1e6;
  --paper: #fffdf7;
  --sage: #527a4a;
  --copper: #c86636;
  --orange: #994820;
  --blue: #2e6e8e;
  --acid: #527a4a;
  --pink: #994820;
  --line: rgba(30, 58, 47, .28);
  --display: Rockwell, "Roboto Slab", "American Typewriter", Georgia, "Times New Roman", serif;
  --serif: "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Arial, Helvetica, sans-serif;
}

html {
  background: #14251d;
  color: var(--ink);
}

body {
  width: 100%;
  max-width: var(--site-width);
  min-height: 100svh;
  margin: 0 auto;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 0 0 1px rgba(245, 241, 230, .18);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.62;
}

h1, h2, h3 { font-family: var(--display) !important; letter-spacing: -.035em; }
p { color: rgba(30, 58, 47, .78); }

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 4px;
}

.skip-link {
  left: max(12px, calc((100vw - var(--site-width)) / 2 + 12px));
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--ink);
  font-family: var(--sans);
  font-weight: 800;
}

.site-header {
  position: relative;
  top: auto;
  z-index: 40;
  display: block;
  min-height: 0;
  padding: 0;
  background: var(--paper);
  border: 0;
  backdrop-filter: none;
  font-family: var(--sans);
}

.archive-bar {
  min-height: 28px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--night);
  color: var(--cream);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1;
  text-transform: uppercase;
}

.masthead-main {
  min-height: 96px;
  padding: 16px 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 32px;
  border-bottom: 4px double var(--ink);
}

.wordmark { gap: 15px; color: var(--ink); }
.wordmark-mark {
  position: relative;
  width: 54px;
  height: 54px;
  display: block;
  flex: 0 0 auto;
  border: 3px solid var(--ink);
  border-radius: 50%;
  transform: none;
}
.wordmark-mark::after {
  content: "";
  position: absolute;
  inset: 19px;
  border: 2px solid var(--ink);
  border-radius: 50%;
}
.wordmark-mark i {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--copper);
}
.wordmark-mark i:nth-child(1) { left: 21px; top: 6px; }
.wordmark-mark i:nth-child(2) { left: 8px; top: 30px; transform: none; }
.wordmark-mark i:nth-child(3) { right: 7px; top: 30px; }
.wordmark-copy { display: flex; flex-direction: column; gap: 1px; }
.wordmark-copy small {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .3em;
  line-height: 1.1;
  text-transform: uppercase;
}
.wordmark-copy > span {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1;
}
.wordmark b { color: var(--ink); }
.masthead-motto {
  margin: 0;
  color: var(--sage);
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  white-space: nowrap;
}
.header-cta {
  min-height: 44px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.header-cta:hover { background: var(--ink); color: var(--paper); }

.desktop-nav {
  min-height: 44px;
  padding: 0 28px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  background: var(--ink);
  border-bottom: 1px solid var(--night);
}
.desktop-nav a {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  color: var(--cream);
  border-right: 1px solid rgba(245, 241, 230, .16);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.desktop-nav a:first-child { border-left: 1px solid rgba(245, 241, 230, .16); }
.desktop-nav a::after { bottom: 0; height: 3px; background: var(--copper); }
.mobile-nav { display: none; }

.kicker,
.archive-status span,
.media-grid span,
.human-values span,
.location-card > span {
  color: var(--orange);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
}
.kicker-light { color: var(--sage); }

main > section { background: var(--paper); border-bottom: 1px solid var(--line); }
.section-pad { padding: var(--section-y) var(--pad-x); }
.section-heading { max-width: var(--max); margin-bottom: 48px; }
.section-heading h2,
.archive-callout h2,
.footer-lead h2 {
  font-size: 38px;
  line-height: 1.04;
}
.split-heading { grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); gap: var(--gap-lg); }
.split-heading p { color: rgba(30, 58, 47, .76); font-size: 17px; line-height: 1.7; }

.hero {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
  grid-template-rows: auto auto;
  color: var(--ink);
  background: var(--paper);
  border-bottom: 4px double var(--ink);
}
.hero::before,
.hero-orbit,
.screen-glow { display: none; }
.hero-copy {
  padding: 72px var(--gap-sm) 56px var(--pad-x);
  align-self: center;
}
.hero h1 {
  max-width: 560px;
  margin-bottom: 24px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 58px;
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .94;
}
.hero h1 em {
  color: var(--ink);
  font-weight: 900;
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: var(--copper);
  text-decoration-thickness: 5px;
  text-underline-offset: 6px;
}
.hero-copy > p { max-width: 610px; color: rgba(30, 58, 47, .78); font-size: 18px; line-height: 1.68; }
.hero-actions { margin-top: 32px; gap: 22px; }
.button {
  min-height: 44px;
  border-radius: 0;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}
.button-primary { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.button-primary:hover { border-color: var(--orange); background: var(--orange); color: var(--paper); }
.button-dark { background: var(--ink); color: var(--paper); }
.button-dark:hover { border-color: var(--orange); background: var(--orange); }
.text-link { font-family: var(--sans); font-size: 12px; font-weight: 900; letter-spacing: .04em; }
.text-link.light { color: var(--ink); }

.hero-stage {
  min-height: 500px;
  padding: 56px var(--pad-x) 56px 24px;
  display: grid;
  place-items: center;
  border-left: 1px solid var(--line);
}
.screen-card {
  width: 100%;
  max-width: 330px;
  aspect-ratio: .78;
  padding: 24px;
  justify-content: flex-end;
  overflow: hidden;
  border: 4px double var(--ink);
  color: var(--ink);
  background: #e2e9df;
  box-shadow: 6px 6px 0 var(--ink);
  transform: none;
}
.screen-card::before,
.screen-card::after { display: none; }
.screen-card span {
  position: absolute;
  top: 18px;
  left: 20px;
  right: 20px;
  margin: 0;
  color: var(--orange);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  text-align: center;
}
.screen-card strong {
  position: relative;
  z-index: 3;
  color: var(--ink);
  font-family: var(--display);
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -.075em;
  line-height: .83;
}
.screen-card strong:nth-of-type(2) { color: var(--ink); font-style: normal; }
.screen-mountain {
  position: absolute;
  z-index: 1;
  left: -8%;
  right: -8%;
  top: 70px;
  height: 190px;
  background: var(--sage);
  clip-path: polygon(0 100%, 20% 60%, 32% 72%, 58% 14%, 72% 58%, 100% 34%, 100% 100%);
}
.screen-mountain::before {
  content: "";
  position: absolute;
  left: 40%;
  top: 12%;
  width: 32%;
  height: 52%;
  background: var(--paper);
  clip-path: polygon(50% 0, 100% 100%, 52% 64%, 34% 100%, 0 100%);
}
.screen-mountain::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -18px;
  height: 58px;
  border-top: 14px solid var(--ink);
  border-bottom: 14px solid var(--ink);
}
.screen-mountain i {
  position: absolute;
  z-index: 2;
  bottom: -11px;
  width: 14px;
  height: 14px;
  background: var(--paper);
}
.screen-mountain i:nth-child(1) { left: 18%; }
.screen-mountain i:nth-child(2) { left: 48%; }
.screen-mountain i:nth-child(3) { right: 18%; }
.stage-caption { right: var(--pad-x); bottom: 26px; color: var(--ink); font-family: var(--sans); }
.stage-caption b { color: var(--orange); }

.hero-stats {
  background: var(--paper);
  border-top: 4px double var(--ink);
}
.hero-stats div { padding: 18px 28px; border-right: 1px solid var(--line); }
.hero-stats strong { color: var(--ink); font-family: var(--display); font-size: 28px; font-weight: 900; }
.hero-stats span { color: var(--blue); font-family: var(--sans); font-size: 11px; font-weight: 900; }

.manifesto,
.editions,
.archive-method,
.dark-section,
.route-board,
.archive-callout,
.award-strip,
.question-band { color: var(--ink); background: var(--paper); }

.principle-grid { grid-template-columns: repeat(4, 1fr); border-color: var(--line); }
.principle-grid article { min-height: 245px; padding: 26px 22px; border-color: var(--line); }
.principle-grid h3 { font-size: 23px; }
.principle-grid p { color: rgba(30,58,47,.72); }

.feature-band {
  min-height: 0;
  padding: 88px var(--pad-x) 72px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  color: var(--ink);
  background: var(--paper);
  border-top: 4px double var(--ink);
  border-bottom: 4px double var(--ink);
}
.feature-band::before {
  content: "";
  position: absolute;
  top: 18px;
  left: var(--pad-x);
  right: var(--pad-x);
  height: 10px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 11px, transparent 11px 24px);
}
.feature-number {
  color: transparent;
  font-family: var(--display);
  font-size: 180px;
  font-weight: 900;
  -webkit-text-stroke: 2px var(--ink);
  transform: none;
}
.feature-copy h2 { font-family: var(--display); font-size: 48px; font-weight: 900; }
.feature-copy p { color: rgba(30,58,47,.76); font-size: 17px; }
.feature-copy .text-link { color: var(--ink); }
.feature-lines { display: none; }

.edition-list,
.edition-card,
.after-years article,
.partner-cards article,
.method-grid article,
.media-grid,
.media-grid article,
.contact-cards article { border-color: var(--line); background: var(--paper); }
.edition-card { grid-template-columns: 70px 1fr; gap: var(--gap-sm); padding: 38px 0; }
.edition-card h3,
.edition-list.compact .edition-card h3 { min-width: 130px; font-size: 54px; font-weight: 900; }
.edition-index { color: var(--orange); font-family: var(--display); font-style: normal; }
.edition-card p,
.after-years p,
.partner-cards p,
.method-grid p,
.media-grid p { color: rgba(30,58,47,.72); }
.after-years { gap: var(--gap-sm); }
.after-years article { min-height: 220px; padding: 28px; }
.after-years h3 { margin-top: 54px; font-size: 27px; }
.tag-list li { border-color: var(--line); font-family: var(--sans); font-size: 10px; text-transform: uppercase; }

.archive-callout { grid-template-columns: 70px 1fr auto; gap: var(--gap-sm); border-top: 4px double var(--ink); border-bottom: 4px double var(--ink); }
.archive-callout p { color: rgba(30,58,47,.74); font-size: 17px; }
.callout-mark { color: var(--copper); font-family: var(--display); font-size: 58px; }

.page-hero {
  min-height: 410px;
  padding: 72px var(--pad-x) 64px;
  align-items: flex-end;
  color: var(--ink);
  background: var(--paper);
  border-bottom: 4px double var(--ink);
}
.page-hero::before { display: none; }
.page-hero h1 { max-width: 720px; margin-bottom: 22px; font-size: 56px; font-weight: 900; line-height: .96; }
.page-hero h1 em { color: var(--ink); font-weight: 900; font-style: normal; text-decoration: underline; text-decoration-color: var(--copper); text-decoration-thickness: 4px; text-underline-offset: 6px; }
.page-hero p { max-width: 660px; color: rgba(30,58,47,.74); font-size: 18px; }
.page-number { right: var(--pad-x); top: 28px; color: transparent; font-family: var(--display); font-size: 150px; font-weight: 900; -webkit-text-stroke: 1px rgba(30,58,47,.18); }
.page-hero-rule { width: 42%; height: 1px; right: var(--pad-x); bottom: 34px; background: var(--copper); transform: none; }

.article-intro,
.humanism-lead,
.route-board,
.partner-story,
.location-layout,
.contact-layout,
.closed-page { gap: var(--gap-lg); background: var(--paper); }
.pull-quote { font-family: var(--display); font-size: 36px; font-weight: 900; line-height: 1.08; }
.prose { max-width: 640px; }
.prose h2 { font-family: var(--display); font-size: 34px; font-weight: 900; }
.prose p { color: rgba(30,58,47,.76); font-size: 17px; line-height: 1.72; }

.dark-section .split-heading p,
.three-up p,
.film-grid p,
.route-board p { color: rgba(30,58,47,.72); }
.three-up { border-color: var(--line); }
.three-up article { min-height: 250px; padding: 28px; border-color: var(--line); }
.three-up b { color: var(--orange); font-family: var(--display); }
.three-up h3 { margin-top: 72px; font-size: 25px; }

.program-year { gap: var(--gap-sm); }
.program-year > span { color: var(--copper); font-family: var(--display); font-size: 112px; font-weight: 900; }
.program-year h2 { font-family: var(--display); font-size: 42px; font-weight: 900; }
.schedule-block { border-top: 4px double var(--ink); }
.schedule-day { font-family: var(--sans); }
.schedule-list > div { border-color: var(--line); }
.schedule-list time { color: var(--orange); font-family: var(--sans); font-size: 14px; font-style: normal; font-weight: 900; }
.schedule-list strong { font-family: var(--serif); font-size: 21px; font-weight: 700; }
.single-day { min-height: 0; }

.film-grid,
.film-grid.light { grid-template-columns: repeat(3, 1fr); border-color: var(--line); background: var(--paper); }
.film-grid article,
.film-grid.light article { min-height: 240px; padding: 26px; border-color: var(--line); background: var(--paper); }
.film-grid span,
.film-grid.light span { color: var(--blue); font-family: var(--sans); font-style: normal; font-weight: 900; }
.film-grid h3 { margin-top: 60px; font-size: 23px; }
.film-grid p,
.film-grid.light p { color: rgba(30,58,47,.72); }

.historic-notice {
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 5px solid var(--copper);
  background: var(--paper);
  color: rgba(30,58,47,.76);
}
.historic-notice.wide { margin: 0 var(--pad-x) var(--section-y); }
.award-strip { grid-template-columns: 1fr 1.4fr auto; gap: var(--gap-sm); border-top: 4px double var(--ink); border-bottom: 4px double var(--ink); }
.award-strip h2 { font-size: 38px; font-weight: 900; }
.award-list article { border-color: var(--line); }
.award-list span { color: var(--blue); font-family: var(--sans); }
.award-list strong { font-family: var(--serif); }
.award-page article { gap: var(--gap-sm); }
.award-page h2 { font-size: 38px; font-weight: 900; }

.humanism-lead h2,
.route-board h2,
.partner-story > div:first-child h2,
.contact-layout h2 { font-size: 38px; font-weight: 900; }
.human-values { gap: 0; background: var(--paper); border-top: 1px solid var(--line); }
.human-values article,
.human-values article:nth-child(2),
.human-values article:nth-child(3) { min-height: 300px; padding: 48px var(--pad-x); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.human-values h3 { margin-top: 68px; font-size: 34px; font-weight: 900; }
.human-values p { color: rgba(30,58,47,.72); }
.question-band { padding: 28px var(--pad-x); color: var(--ink); border-top: 4px double var(--ink); border-bottom: 4px double var(--ink); font-family: var(--display); font-size: 28px; font-style: normal; font-weight: 900; }

.source-note { padding: 32px var(--pad-x); gap: var(--gap-sm); border-color: var(--line); background: var(--paper); }
.source-note span { color: var(--orange); font-family: var(--sans); }
.source-note p { color: rgba(30,58,47,.68); }

.method-grid { gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.method-grid article { min-height: 270px; border-top: 0; border-left: 0; }
.method-grid h3 { margin-top: 68px; font-size: 26px; }
.status { border: 1px solid currentColor; background: transparent !important; font-family: var(--sans); }
.status.keep { color: var(--sage); }
.status.enrich { color: var(--blue); }
.status.exclude { color: var(--orange); }

.route-board { color: var(--ink); border-top: 4px double var(--ink); border-bottom: 4px double var(--ink); }
.route-list code { color: var(--blue); border-color: var(--line); }
.partner-cards { gap: 0; border-top: 1px solid var(--line); }
.partner-cards article { border-top: 0; }
.partner-cards h3 { font-size: 24px; }

.people-grid { grid-template-columns: repeat(3, 1fr); gap: 0; background: var(--paper); border-top: 1px solid var(--line); }
.people-grid article { min-height: 330px; padding: 48px 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.people-grid h2 { margin-top: 86px; font-size: 38px; font-weight: 900; }
.people-grid p { color: rgba(30,58,47,.72); }
.media-grid h2 { margin-top: 72px; font-size: 32px; font-weight: 900; }

.location-card {
  min-height: 430px;
  padding: 42px;
  color: var(--paper);
  background: var(--ink);
  border: 4px double var(--paper);
  box-shadow: 6px 6px 0 var(--copper);
  transform: none;
}
.location-card strong { font-family: var(--display); font-size: 48px; font-weight: 900; }
.location-card p { color: rgba(245,241,230,.76); }
.contact-cards h3 { font-size: 25px; }
.closed-page { max-width: var(--max); }
.closed-stamp { border-color: var(--copper); color: var(--orange); font-family: var(--sans); }

.not-found {
  min-height: 560px;
  padding: 96px var(--pad-x);
  color: var(--ink);
  background: var(--paper);
}
.not-found h1 { font-family: var(--display); font-size: 82px; font-weight: 900; line-height: .88; }
.not-found h1 em { color: var(--ink); font-weight: 900; font-style: normal; text-decoration: underline; text-decoration-color: var(--copper); }
.not-found p { color: rgba(30,58,47,.72); }
.not-found .text-link.light { color: var(--ink); }

.site-footer {
  padding: 72px var(--pad-x) 24px;
  color: var(--paper);
  background: var(--ink);
  border-top: 8px solid var(--night);
  font-family: var(--serif);
}
.footer-lead { padding-bottom: 48px; border-color: rgba(245,241,230,.22); }
.footer-lead .kicker { color: #b8d4e4; }
.footer-lead h2 { font-family: var(--display); font-weight: 900; }
.footer-grid { grid-template-columns: 1.3fr .7fr 1fr; padding: 44px 0; gap: var(--gap-lg); }
.footer-grid p { color: rgba(245,241,230,.66); }
.footer-wordmark { color: var(--paper); }
.footer-wordmark b { color: var(--paper); }
.archive-status span { color: #b8d4e4; }
.archive-status strong { font-family: var(--serif); }
.footer-base { color: rgba(245,241,230,.76); border-color: rgba(245,241,230,.22); }

@media (max-width: 1088px) {
  body { width: calc(100% - 32px); }
  .masthead-motto { display: none; }
  .masthead-main { grid-template-columns: minmax(0, 1fr) auto; }
  .desktop-nav a { padding-inline: 14px; }
}

@media (max-width: 900px) {
  :root { --pad-x: 36px; --section-y: 68px; --gap-lg: 48px; }
  .desktop-nav { display: none; }
  .header-cta { display: none; }
  .masthead-main { grid-template-columns: minmax(0, 1fr) auto; }
  .mobile-nav { display: block; justify-self: end; position: relative; font-family: var(--sans); }
  .mobile-nav summary { min-height: 44px; padding: 0 14px; display: grid; place-items: center; cursor: pointer; border: 1px solid var(--ink); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
  .mobile-nav nav { position: absolute; z-index: 50; right: 0; top: 48px; width: 260px; padding: 12px; display: flex; flex-direction: column; background: var(--paper); border: 2px solid var(--ink); box-shadow: 5px 5px 0 var(--ink); }
  .mobile-nav nav a { min-height: 44px; padding: 10px 12px; display: flex; align-items: center; border-bottom: 1px solid var(--line); font-size: 12px; font-weight: 900; text-transform: uppercase; }
  .hero { grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr); }
  .hero-stage { min-height: 450px; padding-right: var(--pad-x); }
  .screen-card { max-width: 290px; }
  .principle-grid { grid-template-columns: repeat(2, 1fr); }
  .film-grid { grid-template-columns: repeat(2, 1fr); }
  .award-strip { grid-template-columns: 1fr; }
  .people-grid { grid-template-columns: 1fr; }
  .people-grid article { min-height: 250px; }
  .people-grid h2 { margin-top: 52px; }
  .article-intro,
  .humanism-lead,
  .partner-story,
  .location-layout,
  .contact-layout,
  .closed-page { grid-template-columns: 1fr; }
  .location-card { min-height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .archive-status { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --pad-x: 20px; --section-y: 48px; --gap-sm: 22px; --gap-lg: 34px; }
  html { background: var(--paper); }
  body { width: 100%; max-width: none; box-shadow: none; font-size: 16px; }
  .skip-link { left: 12px; }
  .archive-bar { min-height: 32px; padding: 0 12px; font-size: 9px; letter-spacing: .08em; }
  .masthead-main { min-height: 78px; padding: 12px 16px; gap: 12px; }
  .wordmark { gap: 10px; }
  .wordmark-mark { width: 40px; height: 40px; border-width: 2px; }
  .wordmark-mark::after { inset: 14px; }
  .wordmark-mark i { width: 7px; height: 7px; }
  .wordmark-mark i:nth-child(1) { left: 15px; top: 4px; }
  .wordmark-mark i:nth-child(2) { left: 5px; top: 23px; }
  .wordmark-mark i:nth-child(3) { right: 5px; top: 23px; }
  .wordmark-copy > span { font-size: 16px; }
  .wordmark-copy small { font-size: 9px; }
  .hero { display: block; }
  .hero-copy { padding: 52px var(--pad-x) 42px; }
  .hero h1 { font-size: 40px; line-height: .98; }
  .hero-copy > p { font-size: 16px; }
  .hero-stage { min-height: 56px; padding: 18px var(--pad-x); display: block; border-top: 1px solid var(--line); border-left: 0; }
  .hero-stage::before { content: ""; display: block; width: 100%; height: 12px; background: repeating-linear-gradient(90deg, var(--ink) 0 10px, transparent 10px 21px); }
  .screen-card,
  .stage-caption { display: none; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats div { padding: 12px var(--pad-x); border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-stats strong { font-size: 22px; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2,
  .archive-callout h2,
  .footer-lead h2,
  .humanism-lead h2,
  .route-board h2,
  .partner-story > div:first-child h2,
  .contact-layout h2 { font-size: 30px; }
  .split-heading,
  .article-intro,
  .humanism-lead,
  .program-year,
  .schedule-block,
  .archive-callout,
  .route-board,
  .partner-story,
  .location-layout,
  .contact-layout,
  .closed-page { grid-template-columns: 1fr; gap: var(--gap-lg); }
  .principle-grid,
  .film-grid,
  .human-values,
  .method-grid,
  .media-grid,
  .after-years { grid-template-columns: 1fr; }
  .feature-band { min-height: 0; grid-template-columns: 1fr; padding: 70px var(--pad-x) 48px; }
  .feature-number { position: static; font-size: 100px; line-height: .8; }
  .feature-copy h2 { font-size: 34px; }
  .edition-card,
  .edition-list.compact .edition-card { grid-template-columns: 40px 1fr; gap: 14px; }
  .edition-card h3,
  .edition-list.compact .edition-card h3 { float: none; min-width: 0; font-size: 42px; }
  .after-years h3 { margin-top: 42px; }
  .archive-callout { align-items: start; }
  .callout-mark { font-size: 42px; }
  .page-hero { min-height: 0; padding: 56px var(--pad-x) 48px; }
  .page-hero h1 { font-size: 40px; }
  .page-hero p { font-size: 16px; }
  .page-number { right: var(--pad-x); top: 16px; font-size: 76px; }
  .page-hero-rule { display: none; }
  .pull-quote { font-size: 29px; }
  .three-up { grid-template-columns: 1fr; }
  .three-up article { min-height: 220px; border-right: 0; border-bottom: 1px solid var(--line); }
  .three-up h3 { margin-top: 52px; }
  .program-year > span { font-size: 78px; }
  .program-year h2 { font-size: 32px; }
  .schedule-list > div { grid-template-columns: 78px 1fr; gap: 12px; }
  .schedule-list strong { font-size: 18px; }
  .single-day .button { margin-left: 0; }
  .award-page article { grid-template-columns: 1fr; gap: 12px; }
  .award-list article { grid-template-columns: 100px 1fr; }
  .human-values article,
  .human-values article:nth-child(2),
  .human-values article:nth-child(3) { min-height: 250px; padding: 38px var(--pad-x); border-right: 0; }
  .human-values h3 { margin-top: 52px; font-size: 29px; }
  .question-band { justify-content: flex-start; font-size: 22px; }
  .source-note { grid-template-columns: 1fr; gap: 12px; }
  .route-board { padding: var(--section-y) var(--pad-x); }
  .route-list code { overflow-wrap: anywhere; }
  .partner-story { padding-left: var(--pad-x); padding-right: var(--pad-x); }
  .location-card { min-height: 360px; padding: 30px; box-shadow: 4px 4px 0 var(--copper); }
  .location-card strong { font-size: 38px; }
  .closed-stamp { max-width: 250px; justify-self: center; }
  .not-found { min-height: 460px; padding: 72px var(--pad-x); }
  .not-found h1 { font-size: 56px; }
  .site-footer { padding: 56px var(--pad-x) 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .archive-status { grid-column: auto; }
  .footer-base { flex-direction: column; }
}

@media (max-width: 360px) {
  .masthead-main { padding-inline: 12px; gap: 10px; }
  .wordmark-copy > span { font-size: 14px; }
  .mobile-nav summary { padding-inline: 12px; }
}

@media print {
  html { background: #fff; }
  body { width: auto; max-width: none; margin: 0; box-shadow: none; }
  .site-header,
  .site-footer,
  .hero-actions,
  .button { display: none !important; }
  main > section,
  .page-hero,
  .hero,
  .dark-section,
  .route-board,
  .feature-band,
  .archive-callout,
  .award-strip,
  .question-band {
    min-height: 0;
    color: #000;
    background: #fff;
    border-color: #000;
  }
  .hero { display: block; }
  .hero-stage,
  .hero-stats { display: none; }
  .hero-copy,
  .page-hero,
  .section-pad { padding: 30px 0; }
}
