@font-face {
  font-family: "League Gothic";
  src: url("../fonts/league-gothic-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

@font-face {
  font-family: "Merriweather";
  src: url("../fonts/merriweather-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --red: #e51b17;
  --red-dark: #c80d0a;
  --black: #050505;
  --ink: #161514;
  --paper: #f3f1ee;
  --white: #fff;
  --gray: #c8c5c1;
  --gray-dark: #68645f;
  --rule: 2px;
  --sans: "Montserrat", Helvetica, Arial, sans-serif;
  --display: "League Gothic", "Arial Narrow", sans-serif;
  --reading: "Merriweather", Georgia, serif;
  --max: 1540px;
  --gutter: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
a { color: inherit; text-underline-offset: 3px; }
a:hover { color: var(--red); }
p, h1, h2, h3, h4 { margin-top: 0; }
p:last-child { margin-bottom: 0; }
::selection { background: var(--red); color: var(--white); }

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 1000;
  padding: 12px 16px;
  transform: translateY(-180%);
  background: var(--white);
  border: var(--rule) solid var(--black);
  color: var(--black);
  font-weight: 800;
}
.skip-link:focus { transform: none; }

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

.wrap {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.utility {
  min-height: 34px;
  display: flex;
  align-items: center;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.utility__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.utility nav { display: flex; gap: 20px; }
.utility a { display: inline-flex; align-items: center; min-height: 34px; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 241, 238, .97);
  border-bottom: var(--rule) solid var(--black);
  backdrop-filter: blur(10px);
}
.site-header__inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto auto;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
}
.brand { display: inline-flex; align-items: center; width: fit-content; }
.brand img { width: clamp(210px, 18vw, 300px); }
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 26px);
}
.site-nav a {
  padding: 32px 0 27px;
  border-bottom: 5px solid transparent;
  color: var(--black);
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: .035em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { border-color: var(--red); color: var(--red); }
.header-cta {
  display: inline-flex;
  justify-content: space-between;
  gap: 22px;
  padding: 13px 15px 10px;
  background: var(--red);
  border: var(--rule) solid var(--red);
  color: var(--white);
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: .04em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}
.header-cta:hover { background: var(--black); border-color: var(--black); color: var(--white); }
.nav-toggle {
  display: none;
  min-width: 78px;
  padding: 11px 12px 8px;
  border: var(--rule) solid var(--black);
  background: transparent;
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.film {
  padding: 18px var(--gutter) 0;
  background: var(--white);
}
.film__frame {
  width: min(100%, 1840px);
  margin-inline: auto;
  border: var(--rule) solid var(--black);
  background: var(--black);
}
.film__meta {
  min-height: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: var(--paper);
  border-bottom: var(--rule) solid var(--black);
}
.film__meta > span,
.film__meta > a,
.film__meta button {
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.film__meta > span { padding-left: 16px; }
.film__meta > a { justify-self: end; padding-right: 16px; text-decoration: none; }
.film__controls { align-self: stretch; display: flex; }
.film__controls button {
  min-width: 86px;
  border: 0;
  border-left: 1px solid var(--black);
  background: var(--gray);
  cursor: pointer;
}
.film__controls button:last-child { border-right: 1px solid var(--black); }
.film__controls button:hover { background: var(--red); color: var(--white); }
.film__stage { position: relative; aspect-ratio: 16 / 8.45; overflow: hidden; }
.film__stage video { width: 100%; height: 100%; object-fit: cover; }
.film__caption {
  min-height: 46px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 11px 16px 9px;
  background: var(--paper);
  border-top: var(--rule) solid var(--black);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.hero-statement {
  min-height: 82svh;
  display: grid;
  align-items: end;
  padding-block: clamp(84px, 12vw, 190px) clamp(54px, 7vw, 100px);
  background: var(--red);
  color: var(--white);
  border-bottom: var(--rule) solid var(--black);
}
.hero-statement__grid {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(0, 4fr);
  gap: clamp(30px, 7vw, 110px);
}
.index-label,
.eyebrow {
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .14em;
  line-height: 1.45;
  text-transform: uppercase;
}
.hero-statement h1,
.page-hero h1,
.display-heading {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
  line-height: .77;
  text-transform: uppercase;
}
.hero-statement h1 { max-width: 1180px; font-size: clamp(78px, 12.2vw, 205px); }
.hero-statement__body {
  display: grid;
  grid-template-columns: minmax(0, 2fr) 1fr;
  gap: clamp(30px, 5vw, 80px);
  margin-top: clamp(42px, 6vw, 90px);
  padding-top: 18px;
  border-top: var(--rule) solid var(--white);
}
.hero-statement__body p {
  max-width: 62ch;
  margin: 0;
  font-family: var(--reading);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.65;
}
.hero-statement__actions { display: flex; flex-direction: column; align-items: stretch; gap: 10px; }

.button {
  min-height: 52px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 13px 15px 10px;
  border: var(--rule) solid currentColor;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: .04em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}
.button:hover { background: var(--black); border-color: var(--black); color: var(--white); }
.button--white { color: var(--white); }
.button--black { background: var(--black); border-color: var(--black); color: var(--white); }
.button--black:hover { background: var(--red); border-color: var(--red); }
.button--red { background: var(--red); border-color: var(--red); color: var(--white); }

.section { padding-block: clamp(76px, 9vw, 150px); border-bottom: var(--rule) solid var(--black); }
.section--white { background: var(--white); }
.section--black { background: var(--black); color: var(--white); border-color: var(--white); }
.section--red { background: var(--red); color: var(--white); }
.section--gray { background: var(--gray); }
.section-head {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(0, 4fr);
  gap: clamp(30px, 7vw, 110px);
  margin-bottom: clamp(48px, 7vw, 100px);
}
.section-head h2 {
  max-width: 1250px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(62px, 9.5vw, 160px);
  font-weight: 400;
  line-height: .78;
  text-transform: uppercase;
}
.section-head p {
  max-width: 760px;
  margin: 32px 0 0;
  font-family: var(--reading);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.72;
}
.section--black .section-head h2,
.section--red .section-head h2 { color: var(--white); }

.model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: var(--rule) solid currentColor;
  border-left: var(--rule) solid currentColor;
}
.model-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-right: var(--rule) solid currentColor;
  border-bottom: var(--rule) solid currentColor;
}
.model-card__num { font-size: 11px; font-weight: 750; letter-spacing: .12em; }
.model-card h3 {
  margin: auto 0 22px;
  color: inherit;
  font-family: var(--display);
  font-size: clamp(64px, 7vw, 116px);
  font-weight: 400;
  line-height: .75;
  text-transform: uppercase;
}
.model-card p { max-width: 31ch; margin: 0; font-size: 14px; line-height: 1.6; }
.model-card:hover { background: var(--red); color: var(--white); }

.photo-story {
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  min-height: 720px;
  border-top: var(--rule) solid var(--black);
  border-left: var(--rule) solid var(--black);
}
.photo-story__image { min-height: 620px; border-right: var(--rule) solid var(--black); border-bottom: var(--rule) solid var(--black); }
.photo-story__image img { width: 100%; height: 100%; object-fit: cover; }
.photo-story__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 60px);
  background: var(--white);
  border-right: var(--rule) solid var(--black);
  border-bottom: var(--rule) solid var(--black);
}
.photo-story__copy strong {
  font-family: var(--display);
  font-size: clamp(56px, 6vw, 106px);
  font-weight: 400;
  line-height: .78;
  text-transform: uppercase;
}
.photo-story__copy p { font-family: var(--reading); font-size: 16px; line-height: 1.65; }

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: var(--rule) solid var(--black);
  border-left: var(--rule) solid var(--black);
}
.focus-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border-right: var(--rule) solid var(--black);
  border-bottom: var(--rule) solid var(--black);
  text-decoration: none;
}
.focus-card:hover { background: var(--red); color: var(--white); }
.focus-card__code { font-family: var(--display); font-size: 70px; line-height: .8; }
.focus-card h3 { max-width: 10ch; margin: 0; font-family: var(--display); font-size: clamp(46px, 5vw, 78px); font-weight: 400; line-height: .78; text-transform: uppercase; }
.focus-card p { max-width: 36ch; margin: 22px 0 0; font-size: 13px; line-height: 1.55; }

.programs-grid {
  display: grid;
  grid-template-columns: 1.55fr .75fr;
  gap: 24px;
}
.program-card {
  min-height: 650px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 4vw, 60px);
  border: var(--rule) solid var(--black);
  text-decoration: none;
}
.program-card--primary { background: var(--red); color: var(--white); }
.program-card--secondary { background: var(--black); color: var(--white); }
.program-card h3 {
  max-width: 9ch;
  margin: auto 0 30px;
  color: inherit;
  font-family: var(--display);
  font-size: clamp(74px, 9vw, 150px);
  font-weight: 400;
  line-height: .74;
  text-transform: uppercase;
}
.program-card--secondary h3 { font-size: clamp(62px, 6vw, 100px); }
.program-card p { max-width: 52ch; margin: 0 0 26px; font-family: var(--reading); font-size: 15px; line-height: 1.65; }
.program-card__link { display: flex; justify-content: space-between; padding-top: 13px; border-top: var(--rule) solid currentColor; font-size: 11px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.program-card:hover { background: var(--white); color: var(--black); }

.evidence-band { padding-block: clamp(70px, 10vw, 170px); background: var(--black); color: var(--white); border-bottom: var(--rule) solid var(--white); }
.evidence-band blockquote {
  max-width: 1280px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(78px, 12vw, 194px);
  line-height: .76;
  text-transform: uppercase;
}
.evidence-band blockquote span { color: var(--red); }
.evidence-band__note {
  max-width: 760px;
  margin: 55px 0 0 auto;
  padding-top: 16px;
  border-top: var(--rule) solid var(--white);
  font-family: var(--reading);
  font-size: 17px;
  line-height: 1.7;
}

.idea-list { border-top: var(--rule) solid var(--black); }
.idea-list article {
  display: grid;
  grid-template-columns: .55fr 2fr 1fr 50px;
  gap: 28px;
  align-items: start;
  padding: 24px 4px 20px;
  border-bottom: var(--rule) solid var(--black);
}
.idea-list__meta { font-size: 10px; font-weight: 750; letter-spacing: .12em; line-height: 1.55; text-transform: uppercase; }
.idea-list h3 { margin: 0; font-family: var(--display); font-size: clamp(42px, 4.5vw, 76px); font-weight: 400; line-height: .8; text-transform: uppercase; }
.idea-list p { margin: 0; font-family: var(--reading); font-size: 14px; line-height: 1.65; }
.idea-list__arrow { font-family: var(--display); font-size: 34px; line-height: 1; text-align: right; }

.closing {
  padding-block: clamp(75px, 10vw, 155px);
  background: var(--red);
  color: var(--white);
}
.closing__grid { display: grid; grid-template-columns: 1.5fr .65fr; gap: clamp(40px, 8vw, 120px); align-items: end; }
.closing h2 { margin: 0; font-family: var(--display); font-size: clamp(86px, 12vw, 190px); font-weight: 400; line-height: .75; text-transform: uppercase; }
.closing__links { border-top: var(--rule) solid var(--white); }
.closing__links a {
  display: flex;
  justify-content: space-between;
  padding: 14px 4px 10px;
  border-bottom: var(--rule) solid var(--white);
  font-family: var(--display);
  font-size: 29px;
  letter-spacing: .03em;
  text-decoration: none;
  text-transform: uppercase;
}
.closing__links a:hover { padding-inline: 14px; background: var(--white); color: var(--black); }

.page-hero {
  min-height: 68svh;
  display: flex;
  align-items: end;
  padding-block: clamp(90px, 11vw, 175px) clamp(45px, 6vw, 90px);
  background: var(--red);
  color: var(--white);
  border-bottom: var(--rule) solid var(--black);
}
.page-hero--black { background: var(--black); }
.page-hero--paper { background: var(--paper); color: var(--black); }
.page-hero__grid { display: grid; grid-template-columns: minmax(120px, 1fr) minmax(0, 4fr); gap: clamp(30px, 7vw, 110px); }
.page-hero h1 { max-width: 1250px; font-size: clamp(88px, 13vw, 210px); }
.page-hero__lede {
  max-width: 770px;
  margin: 48px 0 0;
  padding-top: 16px;
  border-top: var(--rule) solid currentColor;
  font-family: var(--reading);
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.65;
}

.split-copy {
  display: grid;
  grid-template-columns: minmax(240px, .7fr) minmax(0, 1.7fr);
  gap: clamp(40px, 8vw, 130px);
}
.split-copy__lead { font-family: var(--reading); font-size: clamp(22px, 2vw, 32px); line-height: 1.55; }
.split-copy__body { max-width: 850px; }
.split-copy__body h2 { margin: 0 0 32px; font-family: var(--display); font-size: clamp(64px, 7vw, 116px); font-weight: 400; line-height: .78; text-transform: uppercase; }
.split-copy__body p { font-family: var(--reading); font-size: 17px; line-height: 1.78; }

.principle-list { border-top: var(--rule) solid currentColor; }
.principle-list article {
  display: grid;
  grid-template-columns: 90px minmax(250px, 1fr) minmax(280px, 1.4fr);
  gap: 30px;
  padding: 28px 0 24px;
  border-bottom: var(--rule) solid currentColor;
}
.principle-list b { font-size: 11px; letter-spacing: .13em; }
.principle-list h3 { margin: 0; color: inherit; font-family: var(--display); font-size: clamp(48px, 5.5vw, 88px); font-weight: 400; line-height: .78; text-transform: uppercase; }
.principle-list p { max-width: 50ch; margin: 0; font-family: var(--reading); font-size: 15px; line-height: 1.7; }

.pathway {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: var(--rule) solid var(--black);
  border-left: var(--rule) solid var(--black);
}
.pathway div {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border-right: var(--rule) solid var(--black);
  border-bottom: var(--rule) solid var(--black);
}
.pathway span { font-size: 10px; font-weight: 750; letter-spacing: .12em; }
.pathway strong { font-family: var(--display); font-size: clamp(42px, 4.5vw, 70px); font-weight: 400; line-height: .8; text-transform: uppercase; }
.pathway div:nth-child(2n) { background: var(--red); color: var(--white); }

.disclosure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: var(--rule) solid currentColor;
  border-left: var(--rule) solid currentColor;
}
.disclosure-grid article { min-height: 240px; padding: 22px; border-right: var(--rule) solid currentColor; border-bottom: var(--rule) solid currentColor; }
.disclosure-grid h3 { margin: 50px 0 16px; color: inherit; font-family: var(--display); font-size: 47px; font-weight: 400; line-height: .82; text-transform: uppercase; }
.disclosure-grid p { margin: 0; font-size: 13px; line-height: 1.6; }

.portfolio-state {
  min-height: 580px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  border: var(--rule) solid var(--black);
}
.portfolio-state__visual { position: relative; min-height: 580px; overflow: hidden; border-right: var(--rule) solid var(--black); }
.portfolio-state__visual img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }
.portfolio-state__visual::after { content: "WORK IN PROGRESS"; position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 18px 11px; background: var(--red); color: var(--white); font-family: var(--display); font-size: clamp(44px, 5vw, 82px); line-height: .8; }
.portfolio-state__copy { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(28px, 5vw, 70px); background: var(--white); }
.portfolio-state__copy h2 { margin: 0; font-family: var(--display); font-size: clamp(65px, 8vw, 130px); font-weight: 400; line-height: .76; text-transform: uppercase; }
.portfolio-state__copy p { font-family: var(--reading); font-size: 16px; line-height: 1.72; }

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: var(--rule) solid var(--black);
  border-left: var(--rule) solid var(--black);
}
.article-card { min-height: 480px; display: flex; flex-direction: column; padding: 22px; border-right: var(--rule) solid var(--black); border-bottom: var(--rule) solid var(--black); }
.article-card:nth-child(2) { background: var(--red); color: var(--white); }
.article-card:nth-child(3) { background: var(--black); color: var(--white); }
.article-card h2 { margin: auto 0 26px; color: inherit; font-family: var(--display); font-size: clamp(55px, 6vw, 100px); font-weight: 400; line-height: .76; text-transform: uppercase; }
.article-card p { margin: 0; font-family: var(--reading); font-size: 14px; line-height: 1.65; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: var(--rule) solid var(--black);
  border-left: var(--rule) solid var(--black);
}
.contact-card { min-height: 380px; display: flex; flex-direction: column; padding: clamp(24px, 4vw, 55px); border-right: var(--rule) solid var(--black); border-bottom: var(--rule) solid var(--black); }
.contact-card h2 { margin: auto 0 20px; font-family: var(--display); font-size: clamp(65px, 8vw, 125px); font-weight: 400; line-height: .75; text-transform: uppercase; }
.contact-card p { max-width: 52ch; font-family: var(--reading); font-size: 15px; line-height: 1.65; }
.contact-card a { width: fit-content; margin-top: 22px; font-size: 12px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.contact-card:nth-child(2) { background: var(--black); color: var(--white); }
.contact-card:nth-child(3) { background: var(--red); color: var(--white); }

.site-footer {
  padding-block: clamp(55px, 8vw, 110px) 30px;
  background: var(--black);
  color: var(--white);
}
.footer-lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: end;
  padding-bottom: clamp(45px, 7vw, 90px);
  border-bottom: var(--rule) solid var(--white);
}
.footer-lead img { width: min(100%, 650px); }
.footer-lead p { max-width: 15ch; justify-self: end; margin: 0; font-family: var(--display); font-size: clamp(42px, 5vw, 80px); line-height: .78; text-align: right; text-transform: uppercase; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 30px; padding-block: 40px; }
.footer-grid h2 { margin: 0 0 16px; color: var(--red); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid p,
.footer-grid a { font-size: 12px; line-height: 1.65; }
.footer-grid ul { margin: 0; padding: 0; list-style: none; }
.footer-grid a { text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.4); font-size: 9px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }

.notice {
  padding: 16px 18px;
  border: var(--rule) solid currentColor;
  font-size: 12px;
  line-height: 1.65;
}

@media (max-width: 1180px) {
  .site-header__inner { grid-template-columns: minmax(210px, 1fr) auto; }
  .nav-toggle { display: block; justify-self: end; }
  .header-cta { display: none; }
  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-bottom: 18px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px 4px 9px; border-bottom: 1px solid var(--black); font-size: 29px; }
  .model-grid { grid-template-columns: repeat(2, 1fr); }
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .pathway { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
}

@media (max-width: 780px) {
  .utility__inner { justify-content: center; }
  .utility__inner > span { display: none; }
  .site-header__inner { min-height: 72px; }
  .brand img { width: min(240px, 66vw); }
  .film { padding: 0; }
  .film__frame { border-inline: 0; }
  .film__meta { grid-template-columns: 1fr auto; }
  .film__meta > span { display: none; }
  .film__controls { grid-column: 1; grid-row: 1; }
  .film__meta > a { grid-column: 2; grid-row: 1; }
  .film__stage { aspect-ratio: 16 / 9; }
  .film__stage video { object-fit: contain; }
  .film__caption { align-items: start; flex-direction: column; gap: 3px; }
  .hero-statement__grid,
  .section-head,
  .page-hero__grid { grid-template-columns: 1fr; }
  .hero-statement__body { grid-template-columns: 1fr; }
  .hero-statement h1 { font-size: clamp(78px, 22vw, 130px); }
  .section-head h2 { font-size: clamp(68px, 19vw, 116px); }
  .page-hero h1 { font-size: clamp(88px, 24vw, 140px); }
  .model-grid { grid-template-columns: 1fr; }
  .model-card { min-height: 310px; }
  .photo-story,
  .programs-grid,
  .portfolio-state,
  .split-copy,
  .closing__grid { grid-template-columns: 1fr; }
  .photo-story__image,
  .portfolio-state__visual { min-height: 480px; border-right: var(--rule) solid var(--black); }
  .focus-grid { grid-template-columns: 1fr; }
  .program-card { min-height: 520px; }
  .idea-list article { grid-template-columns: 1fr 50px; gap: 16px; }
  .idea-list__meta,
  .idea-list p { grid-column: 1; }
  .idea-list h3 { grid-column: 1; }
  .idea-list__arrow { grid-column: 2; grid-row: 1 / 4; }
  .principle-list article { grid-template-columns: 55px 1fr; }
  .principle-list p { grid-column: 2; }
  .pathway { grid-template-columns: 1fr 1fr; }
  .disclosure-grid,
  .article-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .footer-lead { grid-template-columns: 1fr; align-items: start; }
  .footer-lead p { justify-self: start; text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .site-header__inner { grid-template-columns: minmax(0, 1fr) auto; gap: 12px; }
  .brand img { width: min(188px, 58vw); }
  .nav-toggle { min-width: 72px; padding-inline: 9px; }
  .utility nav { gap: 12px; }
  .film__meta > a { padding-right: 10px; }
  .film__controls button { min-width: 70px; }
  .hero-statement h1 { font-size: clamp(62px, 21vw, 96px); }
  .page-hero h1 { font-size: clamp(68px, 21vw, 96px); }
  .page-hero__grid > *,
  .focus-grid > *,
  .focus-card > * { min-width: 0; }
  .focus-card h3 { font-size: clamp(42px, 14vw, 62px); overflow-wrap: anywhere; }
  .focus-card { min-height: 300px; }
  .pathway { grid-template-columns: 1fr; }
  .pathway div { min-height: 180px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: start; flex-direction: column; }
}

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

@media print {
  .utility, .site-header, .film__controls, .site-footer { display: none !important; }
  body { background: var(--white); color: var(--black); }
}
