:root {
  --ink: #08090b;
  --ink-soft: #101216;
  --paper: #f0f0eb;
  --paper-muted: rgba(240, 240, 235, 0.62);
  --line: rgba(240, 240, 235, 0.17);
  --signal: #df4b3f;
  --signal-bright: #f08076;
  --page: clamp(20px, 4vw, 64px);
  --header-h: 92px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --display: "Helvetica Neue", "Arial Nova", Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }

html {
  background: var(--ink);
  color: var(--paper);
  scroll-behavior: smooth;
  scrollbar-color: var(--signal) var(--ink);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 84% 13%, rgba(223, 75, 63, 0.08), transparent 23rem),
    var(--ink);
  color: var(--paper);
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 50;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.022;
  pointer-events: none;
}

::selection { background: var(--signal); color: white; }

img, video { display: block; width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { color: inherit; font: inherit; }
button { cursor: pointer; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 500; letter-spacing: -0.055em; line-height: 0.93; }

.skip-link {
  position: fixed;
  top: -100%;
  left: 12px;
  z-index: 999;
  padding: 12px 18px;
  background: var(--paper);
  color: var(--ink);
}
.skip-link:focus { top: 12px; }

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  width: 100%;
  min-height: var(--header-h);
  padding: 25px var(--page);
  grid-template-columns: 1fr auto;
  align-items: start;
  border-bottom: 1px solid rgba(240, 240, 235, 0.12);
  mix-blend-mode: normal;
}

body.admin-bar .site-header { top: 32px; }

.wordmark {
  display: inline-flex;
  width: max-content;
  gap: 11px;
  align-items: center;
  color: var(--paper);
}

.wordmark__mark { width: 41px; height: auto; }
.wordmark__text { display: grid; gap: 3px; }
.wordmark__text strong { font-size: 13px; font-weight: 500; letter-spacing: 0.08em; line-height: 1; }
.wordmark__text small { color: rgba(240, 240, 235, 0.52); font-family: var(--mono); font-size: 7px; letter-spacing: 0.07em; line-height: 1; text-transform: uppercase; }

.site-nav__list {
  display: flex;
  gap: clamp(24px, 3vw, 52px);
  align-items: center;
  margin: 0;
  padding: 4px 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  color: rgba(240, 240, 235, 0.84);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--signal-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.hero {
  position: relative;
  display: grid;
  min-height: max(720px, 100svh);
  padding: calc(var(--header-h) + 34px) var(--page) 38px;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
}

.hero__media, .hero__veil { position: absolute; inset: 0; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.025); }
.hero__veil {
  background:
    linear-gradient(90deg, rgba(3, 4, 6, 0.82) 0%, rgba(3, 4, 6, 0.52) 43%, rgba(3, 4, 6, 0.12) 75%),
    linear-gradient(0deg, rgba(3, 4, 6, 0.62) 0%, transparent 38%);
}

.hero__topline, .hero__content, .hero__reel { position: relative; z-index: 2; }
.hero__topline { display: flex; justify-content: space-between; }

.eyebrow {
  margin-bottom: 0;
  color: var(--paper-muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero__content { align-self: end; max-width: 1050px; padding-bottom: clamp(30px, 5vw, 76px); }
.hero h1 {
  max-width: 1000px;
  margin-bottom: 28px;
  font-size: clamp(65px, 10.4vw, 168px);
  line-height: 0.82;
}
.hero h1 span { display: block; }
.accent-text { color: rgba(240, 240, 235, 0.34); }
.hero__content > p { max-width: 590px; margin: 0; color: rgba(240, 240, 235, 0.78); font-size: clamp(16px, 1.5vw, 22px); line-height: 1.45; }

.hero__reel {
  display: flex;
  width: 100%;
  padding-top: 18px;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: rgba(240, 240, 235, 0.77);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero__reel i { color: var(--signal-bright); font-size: 19px; font-style: normal; }

.section { padding: clamp(100px, 13vw, 210px) var(--page); }
.section-heading { display: grid; margin-bottom: clamp(60px, 9vw, 130px); grid-template-columns: minmax(180px, 0.43fr) 1fr; gap: 30px; }
.section-heading h2, .capabilities__intro h2, .manifesto h2, .about-teaser h2, .contact-cta h2, .page-hero h1 {
  margin-bottom: 0;
  font-size: clamp(44px, 6.2vw, 96px);
}

.work-section { background: var(--ink); color: var(--paper); }
.work-section .eyebrow { color: var(--paper-muted); }
.project-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(54px, 8vw, 130px) clamp(18px, 3vw, 48px); }
.project-card:nth-child(4n + 2) { margin-top: clamp(90px, 14vw, 220px); }
.project-card:nth-child(4n + 3) { grid-column: 1 / -1; width: 72%; margin-left: auto; }
.project-card a { display: block; }
.project-card__media { position: relative; aspect-ratio: 16 / 10; background: #c9cbd0; overflow: hidden; }
.project-card__media::after { position: absolute; inset: 0; background: linear-gradient(125deg, transparent 55%, rgba(223, 75, 63, 0.22)); content: ""; }
.project-card__media img { height: 100%; filter: saturate(0.35) contrast(1.06); object-fit: cover; transition: filter 0.7s var(--ease), transform 1.1s var(--ease); }
.project-card__media video { width: 100%; height: 100%; filter: saturate(0.72) contrast(1.04); object-fit: cover; transition: filter 0.7s var(--ease), transform 1.1s var(--ease); }
.project-card--2 img { object-position: 70% center; transform: scale(1.17); }
.project-card--3 img { object-position: 35% 52%; transform: scale(1.28); }
.project-card:hover img { filter: saturate(0.9) contrast(1.03); transform: scale(1.04); }
.project-card:hover video { filter: saturate(1) contrast(1.02); transform: scale(1.025); }
.project-card__view {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  padding: 10px 13px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(10px);
  transition: 0.4s var(--ease);
}
.project-card:hover .project-card__view { opacity: 1; transform: none; }
.project-card__line { display: flex; padding-top: 18px; align-items: baseline; justify-content: space-between; gap: 18px; border-top: 1px solid var(--line); }
.project-card__line h3 { margin: 0; font-size: clamp(23px, 2.2vw, 36px); }
.project-card__line p { margin: 0; color: var(--paper-muted); font-family: var(--mono); font-size: 9px; letter-spacing: 0.08em; text-align: right; text-transform: uppercase; }

.work-library { margin-top: clamp(90px, 12vw, 180px); padding-top: clamp(55px, 7vw, 95px); columns: 3; column-gap: clamp(14px, 2vw, 30px); border-top: 1px solid var(--line); }
.work-library > .work-library__item, .work-library > .youtube-card { display: inline-block; width: 100%; margin: 0 0 clamp(40px, 5vw, 70px); break-inside: avoid; }
.reference-card { min-width: 0; margin: 0; }
.reference-card video { width: 100%; aspect-ratio: 9 / 16; background: #050608; object-fit: cover; }
.reference-card__meta { padding-top: 16px; border-top: 1px solid var(--line); }
.reference-card__meta h3 { margin: 0 0 8px; font-size: clamp(20px, 1.8vw, 29px); letter-spacing: -0.035em; line-height: 1.05; }
.reference-card__meta p { margin: 0; color: var(--paper-muted); font-family: var(--mono); font-size: 8px; letter-spacing: 0.07em; line-height: 1.5; text-transform: uppercase; }
.reference-channel { margin-top: clamp(48px, 7vw, 90px); }
.youtube-card { min-width: 0; }
.youtube-card__media { position: relative; aspect-ratio: 16 / 9; background: #050608; overflow: hidden; }
.youtube-card__media button { position: absolute; inset: 0; width: 100%; padding: 0; border: 0; background: #050608; color: white; }
.youtube-card__media img { width: 100%; height: 100%; filter: saturate(.72) contrast(1.08); object-fit: cover; transition: filter .5s var(--ease), transform .7s var(--ease); }
.youtube-card__media button:hover img { filter: saturate(1) contrast(1.03); transform: scale(1.025); }
.youtube-card__play { position: absolute; top: 50%; left: 50%; display: grid; width: 54px; height: 54px; place-items: center; border: 1px solid rgba(255,255,255,.68); border-radius: 50%; background: rgba(8,9,11,.58); font-size: 15px; line-height: 1; transform: translate(-50%, -50%); transition: background .3s ease, transform .3s var(--ease); }
.youtube-card__media button:hover .youtube-card__play { background: var(--signal); transform: translate(-50%, -50%) scale(1.08); }
.youtube-card__media iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.youtube-card__meta { padding-top: 15px; border-top: 1px solid var(--line); }
.youtube-card__meta h4 { min-height: 2.5em; margin: 0 0 8px; font-size: clamp(17px, 1.45vw, 23px); font-weight: 500; letter-spacing: -.025em; line-height: 1.18; }
.youtube-card__meta p { margin: 0; color: var(--paper-muted); font-family: var(--mono); font-size: 8px; letter-spacing: .07em; text-transform: uppercase; }

.manifesto { background: var(--ink); }
.manifesto > .eyebrow { margin-bottom: clamp(54px, 9vw, 136px); }
.manifesto__grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(40px, 8vw, 150px); align-items: end; }
.manifesto h2 em { color: var(--signal-bright); font-style: normal; }
.manifesto__copy { max-width: 540px; }
.manifesto__copy p { margin-bottom: 22px; color: rgba(240, 240, 235, 0.68); font-size: clamp(17px, 1.5vw, 22px); line-height: 1.55; }

.field-notes { background: var(--paper); color: var(--ink); }
.field-notes .eyebrow { color: rgba(8, 9, 11, 0.58); }
.field-notes__banner { margin: 0 0 clamp(35px, 5vw, 75px); }
.field-notes__banner img { aspect-ratio: 3 / 1; object-fit: cover; }
.field-notes figcaption { display: flex; padding-top: 12px; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(8, 9, 11, 0.2); color: rgba(8, 9, 11, 0.62); font-family: var(--mono); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; }
.field-notes__grid { display: grid; grid-template-columns: 0.95fr 1.1fr 0.85fr 0.95fr; gap: clamp(12px, 2vw, 32px); align-items: start; }
.field-notes__grid figure { margin: 0; }
.field-notes__grid figure:nth-child(even) { margin-top: clamp(45px, 8vw, 120px); }
.field-notes__grid img { aspect-ratio: 2 / 3; object-fit: cover; }
.field-notes__grid figure:nth-child(3) img { object-position: center 35%; }

.capabilities { display: grid; background: #0d0f13; grid-template-columns: 0.75fr 1.25fr; gap: clamp(50px, 9vw, 150px); }
.capabilities__intro h2 { margin-top: 45px; }
.capability-list { margin: 0; padding: 0; list-style: none; }
.capability-list li { display: grid; padding: 34px 0; grid-template-columns: 58px 1fr auto; gap: 18px; align-items: baseline; border-top: 1px solid var(--line); }
.capability-list li:last-child { border-bottom: 1px solid var(--line); }
.capability-list span { color: var(--signal-bright); font-family: var(--mono); font-size: 10px; }
.capability-list h3 { margin: 0; font-size: clamp(30px, 3.2vw, 52px); }
.capability-list p { max-width: 220px; margin: 0; color: var(--paper-muted); font-family: var(--mono); font-size: 10px; letter-spacing: 0.04em; text-align: right; text-transform: uppercase; }

.about-teaser { display: grid; grid-template-columns: 0.32fr 0.56fr 1fr; gap: clamp(30px, 5vw, 78px); align-items: start; border-top: 1px solid var(--line); }
.about-teaser__portrait { margin: 0; }
.about-teaser__portrait img { aspect-ratio: 4 / 5; filter: saturate(0.78) contrast(1.05); object-fit: cover; }
.about-teaser__content > p { max-width: 520px; margin: 38px 0; color: var(--paper-muted); font-size: clamp(17px, 1.6vw, 24px); }
.text-link { display: inline-flex; gap: 20px; padding-bottom: 8px; border-bottom: 1px solid var(--signal); font-family: var(--mono); font-size: 10px; letter-spacing: 0.09em; text-transform: uppercase; }
.text-link span { color: var(--signal-bright); transition: transform 0.3s var(--ease); }
.text-link:hover span { transform: translate(3px, -3px); }

.selected-clients { border-top: 1px solid var(--line); background: #08090b; }
.selected-clients > .eyebrow { margin-bottom: clamp(46px, 7vw, 90px); }
.collaboration-group { background: transparent; color: var(--paper); }
.collaboration-agency { display: grid; justify-items: center; padding-bottom: clamp(48px, 7vw, 90px); text-align: center; }
.collaboration-agency__logo { width: min(620px, 100%); background: transparent; }
.collaboration-agency__logo img { display: block; width: 100%; max-height: 180px; object-fit: contain; object-position: center; }
.collaboration-agency h2 { max-width: 880px; margin: clamp(34px, 5vw, 62px) 0 0; font-size: clamp(29px, 3.7vw, 58px); font-weight: 400; letter-spacing: -0.045em; line-height: 1.08; }
.collaboration-agency h2 strong { font-weight: 650; }
.client-logo-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.client-logo-card { display: grid; min-height: clamp(122px, 13vw, 180px); padding: clamp(16px, 2vw, 28px); place-items: center; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: transparent; overflow: hidden; }
.client-logo-card img { width: min(82%, 160px); max-height: 74px; object-fit: contain; opacity: 1; transition: transform .45s var(--ease); }
.client-logo-card:hover img { opacity: 1; transform: scale(1.045); }
.client-logo-card--wide img { width: min(92%, 190px); }
.client-logo-card--tall img { max-height: 98px; }

.contact-cta { min-height: 85svh; padding: clamp(100px, 13vw, 210px) var(--page) 60px; background: var(--signal); color: white; }
.contact-cta h2 { max-width: 1220px; margin: clamp(55px, 9vw, 130px) 0 70px; font-size: clamp(58px, 8.2vw, 126px); }
.contact-cta h2 span { color: rgba(255, 255, 255, 0.38); }
.contact-cta .eyebrow { color: rgba(255,255,255,.68); }
.cta-button { display: flex; width: min(100%, 620px); padding: 21px 0; align-items: center; justify-content: space-between; border: 0; border-top: 1px solid currentColor; border-bottom: 1px solid currentColor; background: transparent; font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.cta-button i { font-size: 20px; font-style: normal; transition: transform 0.35s var(--ease); }
.cta-button:hover i { transform: translate(4px, -4px); }

.site-footer { display: flex; padding: 48px var(--page); align-items: end; justify-content: space-between; gap: 30px; border-top: 1px solid var(--line); background: var(--ink); }
.site-footer p { margin: 8px 0 0; font-family: var(--mono); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; }
.site-footer__links { display: flex; gap: 18px 34px; flex-wrap: wrap; font-family: var(--mono); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; }

.page-shell { min-height: 80svh; padding-top: var(--header-h); }
.page-hero { padding: clamp(100px, 13vw, 200px) var(--page) clamp(70px, 10vw, 150px); }
.page-hero .eyebrow { margin-bottom: clamp(50px, 9vw, 120px); }
.page-hero h1 { max-width: 1260px; }
.page-hero h1 span { color: rgba(240, 240, 235, 0.35); }
.page-shell .work-section { padding-top: 80px; }
.about-banner { margin: 0; }
.about-banner img { width: 100%; aspect-ratio: 3 / 1; object-fit: cover; }

.project-hero { padding: calc(var(--header-h) + 110px) var(--page) 0; }
.project-hero .eyebrow { margin-bottom: 35px; }
.project-hero h1 { margin-bottom: 80px; font-size: clamp(60px, 12vw, 185px); }
.project-hero__image { aspect-ratio: 16 / 9; margin-right: calc(var(--page) * -1); margin-left: calc(var(--page) * -1); overflow: hidden; }
.project-hero__image img { height: 100%; object-fit: cover; }
.project-story { display: grid; grid-template-columns: 0.55fr 1fr; gap: clamp(50px, 10vw, 180px); }
.project-facts p { display: grid; margin: 0; padding: 16px 0; grid-template-columns: 95px 1fr; border-top: 1px solid var(--line); font-size: 13px; }
.project-facts p:last-child { border-bottom: 1px solid var(--line); }
.project-facts span { color: var(--paper-muted); font-family: var(--mono); font-size: 9px; letter-spacing: 0.09em; text-transform: uppercase; }
.prose { max-width: 760px; }
.prose h2 { margin: 1.5em 0 0.55em; font-size: clamp(38px, 5vw, 72px); }
.prose p { color: rgba(240, 240, 235, 0.72); font-size: clamp(17px, 1.55vw, 23px); line-height: 1.6; }
.prose > *:first-child { margin-top: 0; }

.about-body { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(50px, 10vw, 170px); border-top: 1px solid var(--line); }
.about-body__lead { font-size: clamp(29px, 3.8vw, 58px); letter-spacing: -0.04em; line-height: 1.15; }
.about-body__portrait { width: min(100%, 440px); margin: clamp(45px, 7vw, 90px) 0 0 auto; }
.about-body__portrait img { aspect-ratio: 4 / 5; object-fit: cover; }

.contact-layout { display: grid; padding-top: 60px; grid-template-columns: 0.7fr 1.3fr; gap: clamp(60px, 10vw, 180px); border-top: 1px solid var(--line); }
.contact-intro > p { max-width: 410px; color: var(--paper-muted); font-size: clamp(19px, 2vw, 28px); }
.contact-socials { display: flex; margin-top: 42px; gap: 24px; flex-wrap: wrap; }
.contact-socials a { display: inline-flex; padding-bottom: 7px; gap: 13px; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 9px; letter-spacing: 0.09em; text-transform: uppercase; transition: border-color .25s ease, color .25s ease; }
.contact-socials a:hover { border-color: var(--signal-bright); color: var(--signal-bright); }
.contact-socials span { transition: transform .3s var(--ease); }
.contact-socials a:hover span { transform: translate(3px, -3px); }
.contact-form label { display: block; margin-bottom: 36px; }
.contact-form label > span { display: block; margin-bottom: 12px; color: var(--paper-muted); font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-form input, .contact-form textarea { width: 100%; padding: 14px 0; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; outline: 0; background: transparent; font-size: clamp(18px, 2vw, 26px); transition: border-color 0.25s ease; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--signal-bright); }
.form-honeypot { position: absolute; left: -9999px; }
.form-status { padding: 14px; border-left: 2px solid #ff7d7d; background: rgba(255,125,125,.08); }
.form-status--success { border-color: #82d8ae; background: rgba(130,216,174,.08); }
.error-page { display: flex; min-height: 100svh; padding: calc(var(--header-h) + 100px) var(--page) 80px; flex-direction: column; justify-content: center; }
.error-page h1 { margin: 50px 0; font-size: clamp(68px, 12vw, 180px); }
.error-page h1 span { color: var(--signal-bright); }

.js .reveal { opacity: 0; transform: translateY(42px); transition: opacity 0.8s var(--ease), transform 0.9s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 820px) {
  :root {
    --header-h: 72px;
    --page: clamp(20px, 5vw, 32px);
  }
  body { font-size: 15px; }
  .site-header { min-height: var(--header-h); padding-top: 14px; padding-bottom: 14px; align-items: center; }
  .wordmark { min-height: 44px; gap: 9px; }
  .wordmark__mark { width: 34px; }
  .wordmark__text strong { font-size: 12px; }
  .wordmark__text small { display: none; }
  .menu-toggle { z-index: 2; display: flex; min-width: 74px; min-height: 44px; padding: 0; gap: 10px; align-items: center; justify-content: flex-end; color: var(--paper); font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; }
  .menu-toggle i, .menu-toggle i::after { display: block; width: 24px; height: 1px; background: currentColor; content: ""; transition: 0.3s ease; }
  .menu-toggle i::after { transform: translateY(6px); }
  .menu-toggle[aria-expanded="true"] i { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i::after { transform: rotate(-90deg); }
  .site-nav { position: fixed; inset: 0; display: grid; padding: calc(var(--header-h) + 48px) var(--page) max(40px, env(safe-area-inset-bottom)); align-content: center; overflow-y: auto; overscroll-behavior: contain; background: rgba(8,9,11,.985); opacity: 0; pointer-events: none; transition: opacity .4s ease; }
  .site-nav.is-open { opacity: 1; pointer-events: auto; }
  .site-nav__list { display: grid; width: 100%; gap: clamp(17px, 4vh, 28px); }
  .site-nav a { display: block; padding: 3px 0; font-size: clamp(40px, 11.5vw, 64px); font-weight: 500; letter-spacing: -0.055em; line-height: .95; text-transform: none; }
  .hero { min-height: 100svh; padding-top: calc(var(--header-h) + 22px); padding-bottom: 24px; }
  .hero__media img, .hero__media video { object-position: 58% center; }
  .hero__veil { background: linear-gradient(0deg, rgba(3,4,6,.88) 0%, rgba(3,4,6,.28) 75%); }
  .hero__topline span:last-child { display: none; }
  .hero__content { padding-bottom: clamp(28px, 7vw, 48px); }
  .hero h1 { margin-bottom: 22px; font-size: clamp(48px, 15.8vw, 82px); line-height: .84; }
  .hero__content > p { max-width: 100%; font-size: clamp(15px, 3.8vw, 18px); line-height: 1.48; }
  .hero__reel { padding-top: 14px; font-size: 9px; }
  .section { padding-top: clamp(80px, 15vw, 118px); padding-bottom: clamp(80px, 15vw, 118px); }
  .section-heading, .manifesto__grid, .capabilities, .about-teaser, .project-story, .about-body, .contact-layout { grid-template-columns: 1fr; }
  .section-heading { margin-bottom: clamp(48px, 10vw, 70px); gap: 26px; }
  .section-heading h2, .capabilities__intro h2, .manifesto h2, .about-teaser h2, .page-hero h1 { font-size: clamp(36px, 10.5vw, 56px); line-height: .98; }
  .project-grid { grid-template-columns: 1fr; gap: 0; }
  .project-card:nth-child(n) { width: 100%; margin: 0; grid-column: auto; }
  .project-card + .project-card { margin-top: clamp(38px, 9vw, 56px); }
  .project-card__line { padding-top: 14px; align-items: flex-start; }
  .project-card__line h3 { font-size: clamp(22px, 6vw, 30px); }
  .project-card__line p { max-width: 48%; font-size: 8px; line-height: 1.45; }
  .work-library { margin-top: clamp(72px, 13vw, 105px); padding-top: clamp(44px, 9vw, 66px); columns: 2; }
  .work-library > .work-library__item, .work-library > .youtube-card { margin-bottom: clamp(38px, 8vw, 56px); }
  .reference-card__meta h3 { font-size: clamp(20px, 5vw, 26px); }
  .youtube-card__play { width: 48px; height: 48px; }
  .youtube-card__meta h4 { min-height: auto; font-size: clamp(17px, 4.5vw, 22px); }
  .manifesto > .eyebrow { margin-bottom: clamp(42px, 10vw, 68px); }
  .manifesto__grid, .about-teaser { gap: clamp(34px, 9vw, 55px); }
  .manifesto__copy p { margin-bottom: 18px; font-size: clamp(16px, 4vw, 19px); line-height: 1.55; }
  .field-notes__banner img, .about-banner img { aspect-ratio: 16 / 7; }
  .field-notes__grid { grid-template-columns: 1fr 1fr; }
  .field-notes__grid figure:nth-child(even) { margin-top: clamp(24px, 6vw, 40px); }
  .field-notes figcaption { gap: 8px; font-size: 8px; line-height: 1.45; }
  .capabilities { gap: clamp(42px, 10vw, 70px); }
  .capabilities__intro h2 { margin-top: 26px; }
  .capability-list li { padding: 27px 0; grid-template-columns: 34px 1fr; gap: 12px; }
  .capability-list h3 { font-size: clamp(28px, 7.5vw, 42px); }
  .capability-list p { grid-column: 2; text-align: left; }
  .about-teaser__portrait { width: min(70vw, 360px); }
  .about-teaser__content > p { margin: 28px 0; font-size: clamp(16px, 4.2vw, 20px); }
  .collaboration-agency { padding-bottom: clamp(38px, 9vw, 62px); }
  .collaboration-agency__logo { width: min(480px, 100%); }
  .collaboration-agency__logo img { max-height: 130px; }
  .collaboration-agency h2 { margin-top: clamp(25px, 6vw, 38px); font-size: clamp(28px, 7.5vw, 40px); line-height: 1.08; }
  .client-logo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .client-logo-card { min-height: 108px; padding: 15px 10px; }
  .client-logo-card img { max-height: 66px; }
  .client-logo-card--wide img { width: 94%; }
  .client-logo-card--tall img { max-height: 78px; }
  .contact-cta { min-height: auto; padding-top: clamp(82px, 16vw, 118px); padding-bottom: clamp(54px, 11vw, 82px); }
  .contact-cta h2 { margin: clamp(42px, 9vw, 65px) 0 clamp(42px, 9vw, 65px); font-size: clamp(42px, 11vw, 66px); line-height: .96; }
  .cta-button { min-height: 54px; padding: 16px 0; }
  .site-footer { padding-top: 38px; padding-bottom: 38px; align-items: start; flex-direction: column; }
  .site-footer__links { width: 100%; margin-top: 25px; justify-content: flex-start; }
  .page-hero { padding-top: clamp(78px, 15vw, 112px); padding-bottom: clamp(62px, 12vw, 92px); }
  .page-hero .eyebrow { margin-bottom: clamp(38px, 9vw, 64px); }
  .project-hero { padding-top: calc(var(--header-h) + 58px); }
  .project-hero h1 { margin-bottom: 42px; font-size: clamp(46px, 12vw, 72px); line-height: .94; }
  .project-hero__image { aspect-ratio: 4 / 3; }
  .project-story { gap: clamp(40px, 10vw, 64px); }
  .project-facts p { grid-template-columns: 82px 1fr; }
  .prose h2 { font-size: clamp(34px, 9vw, 48px); }
  .prose p { font-size: clamp(16px, 4vw, 19px); }
  .about-body { gap: clamp(42px, 10vw, 65px); }
  .about-body__lead { font-size: clamp(26px, 7.3vw, 38px); line-height: 1.16; }
  .about-body__portrait { margin-top: clamp(35px, 8vw, 58px); }
  .contact-layout { padding-top: clamp(44px, 10vw, 66px); gap: clamp(44px, 11vw, 68px); }
  .contact-intro > p { font-size: clamp(17px, 4.5vw, 22px); }
  .contact-form label { margin-bottom: 30px; }
  .contact-form input, .contact-form textarea { font-size: 18px; }
}

@media (max-width: 480px) {
  :root { --page: 20px; }
  .hero { min-height: 100svh; padding-bottom: 20px; }
  .hero__content { padding-bottom: clamp(24px, 7vw, 36px); }
  .hero h1 { font-size: clamp(48px, 15.8vw, 64px); }
  .hero__content > p { font-size: 15px; }
  .section { padding-top: 72px; padding-bottom: 72px; }
  .section-heading { margin-bottom: 46px; gap: 22px; }
  .section-heading h2, .capabilities__intro h2, .manifesto h2, .about-teaser h2, .page-hero h1 { font-size: clamp(34px, 10.2vw, 42px); line-height: 1; }
  .project-card + .project-card { margin-top: 34px; }
  .project-card__line { display: grid; gap: 8px; }
  .project-card__line p { max-width: none; text-align: left; }
  .work-library { margin-top: 66px; padding-top: 42px; columns: 1; }
  .work-library > .work-library__item, .work-library > .youtube-card { margin-bottom: 42px; }
  .manifesto > .eyebrow { margin-bottom: 38px; }
  .manifesto__grid { gap: 30px; }
  .field-notes__grid { gap: 9px; }
  .field-notes__grid figure:nth-child(even) { margin-top: 24px; }
  .field-notes figcaption { display: block; font-size: 7px; overflow-wrap: anywhere; }
  .field-notes figcaption span { display: block; margin-bottom: 5px; }
  .capabilities { gap: 40px; }
  .capabilities__intro h2 { margin-top: 22px; }
  .capability-list li { padding: 23px 0; grid-template-columns: 30px 1fr; }
  .capability-list h3 { font-size: clamp(27px, 7.6vw, 34px); }
  .capability-list p { font-size: 8px; }
  .about-teaser { gap: 32px; }
  .about-teaser__portrait { width: min(78vw, 300px); }
  .about-teaser__content > p { margin: 24px 0; }
  .selected-clients > .eyebrow { margin-bottom: 38px; }
  .collaboration-agency__logo { width: min(300px, 100%); }
  .collaboration-agency__logo img { max-height: 96px; }
  .collaboration-agency h2 { margin-top: 24px; font-size: clamp(27px, 8vw, 34px); }
  .client-logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .client-logo-card { min-height: 94px; padding: 11px 9px; }
  .client-logo-card img { width: min(88%, 150px); max-height: 58px; }
  .client-logo-card--wide img { width: 96%; max-height: 58px; }
  .client-logo-card--tall img { max-height: 70px; }
  .contact-cta { padding-top: 72px; padding-bottom: 46px; }
  .contact-cta h2 { margin: 38px 0 42px; font-size: clamp(39px, 11.2vw, 50px); line-height: .97; }
  .site-footer { padding: 34px var(--page); }
  .site-footer__links { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .page-hero { padding-top: 72px; padding-bottom: 58px; }
  .page-hero .eyebrow { margin-bottom: 34px; }
  .project-hero { padding-top: calc(var(--header-h) + 44px); }
  .project-hero h1 { margin-bottom: 36px; font-size: clamp(42px, 12.5vw, 56px); }
  .project-story { gap: 38px; }
  .project-facts p { grid-template-columns: 76px 1fr; }
  .prose h2 { font-size: clamp(32px, 9.2vw, 40px); }
  .about-body__lead { font-size: clamp(25px, 7.5vw, 32px); }
  .contact-layout { padding-top: 40px; gap: 42px; }
  .contact-socials { margin-top: 32px; }
  .contact-form label { margin-bottom: 27px; }
}

@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

@media (max-width: 360px) {
  :root { --page: 18px; }
  .wordmark__mark { width: 31px; }
  .wordmark__text strong { font-size: 11px; }
  .menu-toggle { min-width: 68px; }
  .site-nav a { font-size: 38px; }
  .hero h1 { font-size: clamp(47px, 15.5vw, 56px); }
  .hero__topline { font-size: 9px; }
  .client-logo-card { min-height: 88px; }
  .contact-cta h2 { font-size: clamp(37px, 11vw, 42px); }
  .site-footer__links { grid-template-columns: 1fr; }
}

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