@font-face {
  font-family: "Instrument Sans";
  src: url("assets/instrument-sans.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: #f2eaef;
  --cream: #f2eaef;
  --paper-mid: #c6a8bd;
  --paper-shadow: #b18ca3;
  --navy: #302e3b;
  --navy-soft: #665773;
  --red: #e25350;
  --red-dark: #bc3f3e;
  --coral-light: #e87763;
  --ink: #302e3b;
  --muted: #665773;
  --line: rgba(48, 46, 59, .2);
  --light-line: rgba(242, 234, 239, .28);
  --header-height: 76px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --z-content: 1;
  --z-header: 20;
  --z-grain: 30;
  --z-skip: 40;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Instrument Sans", sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: var(--z-grain);
  pointer-events: none;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

::selection { color: var(--paper); background: var(--red-dark); }

body.motion-paused *,
body.motion-paused *::before,
body.motion-paused *::after {
  animation-play-state: paused !important;
}

body.motion-paused .hero-register,
body.motion-paused .hero-register * {
  animation-play-state: running !important;
}

a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { display: block; max-width: 100%; }

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

.hero :focus-visible,
.contact :focus-visible,
.site-header:not(.is-past-hero) :focus-visible {
  outline-color: var(--cream);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: var(--z-skip);
  padding: 11px 14px;
  color: var(--cream);
  background: var(--navy);
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 180ms var(--ease);
}

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

.container {
  width: min(1380px, calc(100% - clamp(32px, 6vw, 96px)));
  margin-inline: auto;
}

.section-space { padding-block: clamp(96px, 11vw, 172px); }

.section-label {
  margin: 0 0 28px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.copy-signal { color: var(--red); }
.copy-signal-on-dark { color: #f07a71; }

.button,
.header-cta {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid currentColor;
  color: var(--cream);
  background: var(--navy);
  font-size: 13px;
  font-weight: 680;
  text-decoration: none;
  transition: color 280ms var(--ease), background-color 280ms var(--ease), transform 280ms var(--ease);
}

.button::before,
.header-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 360ms var(--ease);
}

.button:hover::before,
.header-cta:hover::before { transform: scaleX(1); }
.button:hover,
.header-cta:hover { color: var(--cream); }
.button:active,
.header-cta:active { transform: translateY(1px) scale(.985); }

.button-light {
  color: var(--navy);
  background: var(--cream);
  border-color: var(--cream);
}

.button-light:hover { color: var(--cream); }

.button-outline {
  color: var(--cream);
  background: transparent;
  border-color: rgba(255, 250, 240, .72);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  gap: 10px;
  color: var(--cream);
  font-size: 13px;
  font-weight: 650;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.text-link span { color: #f16a62; transition: transform 280ms var(--ease); }
.text-link:hover span { transform: translate(4px, 4px); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-header);
  height: var(--header-height);
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 250, 240, .24);
  background: linear-gradient(180deg, rgba(5, 15, 27, .48), transparent);
  transition: color 320ms var(--ease), background-color 320ms var(--ease), border-color 320ms var(--ease), backdrop-filter 320ms var(--ease);
}

html:not(.header-ready) .site-header,
.site-header.is-static { position: absolute; }

.site-header.is-past-hero {
  color: var(--navy);
  border-color: var(--line);
  background: rgba(241, 238, 229, .94);
  backdrop-filter: blur(16px) saturate(120%);
}

.site-header-inner {
  width: min(1480px, calc(100% - 40px));
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  color: inherit;
  font-size: 15px;
  font-weight: 690;
  letter-spacing: -.035em;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  flex: 0 0 auto;
  overflow: visible;
}

.brand-mark path,
.campaign-signature path,
.footer-brand path {
  fill: none;
  stroke: currentColor;
  stroke-width: 12;
  stroke-linecap: square;
  stroke-linejoin: round;
}

.brand-mark .brand-signal,
.footer-brand .brand-signal { stroke: var(--coral-light); }

.site-header.is-past-hero .brand-mark .brand-signal { stroke: var(--red-dark); }

.brand:hover .brand-mark path {
  stroke: var(--red);
  stroke-dasharray: .19 .81;
  animation: signal-route 2.2s linear infinite;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 38px);
}

.nav-links a,
.motion-toggle {
  color: inherit;
  font-size: 12px;
  font-weight: 590;
  text-decoration: none;
}

.nav-links a { position: relative; padding-block: 12px; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.motion-toggle {
  display: none;
  min-height: 44px;
  padding: 0 12px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.motion-toggle[hidden] { display: none !important; }
html.motion-enabled .motion-toggle { display: inline-flex; align-items: center; justify-content: center; }
.motion-toggle:hover { color: #f16a62; }
.site-header.is-past-hero .motion-toggle:hover { color: var(--red-dark); }

.header-cta {
  min-height: 42px;
  padding-inline: 17px;
  color: var(--navy);
  background: var(--cream);
  border-color: var(--cream);
  font-size: 12px;
}

.site-header.is-past-hero .header-cta {
  color: var(--cream);
  background: var(--navy);
  border-color: var(--navy);
}

@media (prefers-reduced-transparency: reduce) {
  .site-header.is-past-hero { backdrop-filter: none; background: var(--paper); }
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--cream);
  background: #0c1825;
}

.hero-scene,
.hero-wash,
.hero-picture,
.hero-picture img {
  position: absolute;
  inset: 0;
}

.hero-scene { z-index: -3; overflow: hidden; }
.hero-picture { margin: 0; }

.hero-picture img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 56% center;
  transform: scale(1.055);
  will-change: transform;
}

.hero-wash {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 14, 26, .92) 0%, rgba(4, 14, 26, .69) 39%, rgba(4, 14, 26, .2) 68%, rgba(4, 14, 26, .08) 100%),
    linear-gradient(0deg, rgba(4, 14, 26, .72) 0%, transparent 54%),
    linear-gradient(180deg, rgba(4, 14, 26, .34), transparent 24%);
}

.hero-light {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 42% 12%, rgba(255, 241, 194, .2), transparent 28%);
  mix-blend-mode: screen;
  opacity: .5;
  will-change: transform, opacity;
}

.traffic-shadow {
  position: absolute;
  left: -42%;
  bottom: -11%;
  width: 42%;
  height: 28%;
  border-radius: 50%;
  background: rgba(3, 11, 19, .72);
  filter: blur(30px);
  transform: skewX(-18deg);
  will-change: transform;
}

.traffic-shadow-b {
  left: auto;
  right: -55%;
  bottom: -17%;
  width: 54%;
  height: 31%;
  opacity: .58;
}

.hero-route {
  position: absolute;
  z-index: -1;
  right: clamp(22px, 5vw, 84px);
  top: clamp(118px, 16vh, 180px);
  width: clamp(180px, 25vw, 390px);
  overflow: visible;
  filter: drop-shadow(0 16px 36px rgba(3, 11, 19, .22));
}

.hero-route path,
.contact-route path {
  fill: none;
  stroke-width: 8;
  stroke-linecap: square;
  stroke-linejoin: round;
}

.route-base { stroke: rgba(255, 250, 240, .25); }
.route-signal {
  stroke: var(--red);
  stroke-dasharray: .18 .82;
  stroke-dashoffset: 1;
  will-change: stroke-dashoffset;
}

.hero-inner {
  width: min(1380px, calc(100% - clamp(32px, 6vw, 96px)));
  margin-inline: auto;
  padding: calc(var(--header-height) + 72px) 0 clamp(46px, 8vh, 92px);
}

.hero-kicker {
  margin: 0 0 22px;
  color: #f29b94;
  font-size: 11px;
  font-weight: 720;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(72px, 10vw, 154px);
  font-weight: 610;
  line-height: .8;
  letter-spacing: -.078em;
  text-wrap: balance;
}

.hero-deck {
  max-width: 640px;
  margin: 30px 0 0;
  color: rgba(255, 250, 240, .86);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.45;
}

.hero-audience {
  max-width: 640px;
  margin: 10px 0 0;
  color: rgba(255, 250, 240, .62);
  font-size: 13px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}

/* Strategic thesis */
.thesis { border-bottom: 1px solid var(--line); }

.thesis-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.thesis-heading h2,
.fights-intro h2,
.work-heading h2,
.team-heading h2 {
  margin: 0;
  font-size: clamp(52px, 6.3vw, 96px);
  font-weight: 610;
  line-height: .87;
  letter-spacing: -.07em;
  text-wrap: balance;
}

.thesis-copy {
  max-width: 780px;
  padding-top: 44px;
}

.thesis-copy p {
  margin: 0 0 30px;
  font-size: clamp(25px, 2.7vw, 42px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.045em;
  text-wrap: pretty;
}

.thesis-copy p:last-child { margin-bottom: 0; color: var(--muted); font-size: clamp(18px, 1.6vw, 23px); line-height: 1.5; letter-spacing: -.02em; }
.thesis-copy .thesis-turn { color: var(--red); font-weight: 680; }

/* Civic covenant */
.covenant {
  padding-block: clamp(96px, 11vw, 164px);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.covenant-lines { border-top: 1px solid var(--line); }

.covenant-lines p {
  display: grid;
  grid-template-columns: minmax(150px, .5fr) minmax(0, 1.5fr);
  gap: 40px;
  align-items: baseline;
  margin: 0;
  padding: clamp(28px, 4vw, 52px) 0;
  border-bottom: 1px solid var(--line);
}

.covenant-lines span {
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}

.covenant-lines strong {
  font-size: clamp(40px, 6vw, 92px);
  font-weight: 590;
  line-height: .92;
  letter-spacing: -.065em;
  text-wrap: balance;
}

/* Fights */
.fights { position: relative; }
.fights-intro { background: var(--paper); }

.fights-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: end;
}

.fights-intro h2 { max-width: 980px; }
.fights-intro-grid > p {
  max-width: 520px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.fight-stack { position: relative; }

.fight-panel {
  position: sticky;
  top: 0;
  min-height: 100dvh;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  box-shadow: 0 -24px 70px rgba(8, 29, 56, .16);
}

.fight-panel:nth-child(1) { z-index: 1; }
.fight-panel:nth-child(2) { z-index: 2; }
.fight-panel:nth-child(3) { z-index: 3; }

.fight-visual {
  position: absolute;
  inset: 0;
  z-index: -2;
  margin: 0;
  overflow: hidden;
}

.fight-visual img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transform: scale(1.015);
}

.fight-content {
  position: relative;
  width: min(690px, 46vw);
  margin-left: max(4vw, calc((100vw - 1380px) / 2));
  padding: clamp(30px, 4vw, 58px) 0;
}

.fight-label {
  margin: 0 0 24px;
  font-size: 11px;
  font-weight: 720;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.fight-content h3 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(56px, 7vw, 112px);
  font-weight: 700;
  line-height: .78;
  letter-spacing: -.077em;
  text-transform: uppercase;
  text-wrap: balance;
}

.fight-content > p:not(.fight-label) {
  max-width: 560px;
  margin: 30px 0 0;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.52;
}

.campaign-signature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  font-size: 10px;
  font-weight: 680;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.campaign-signature svg { width: 38px; flex: 0 0 auto; }

.fight-immigration { color: var(--navy); background: var(--paper); }
.fight-immigration .fight-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(241, 238, 229, .99) 0%, rgba(241, 238, 229, .94) 31%, rgba(241, 238, 229, .24) 58%, transparent 75%);
}

.fight-immigration .fight-visual img { object-position: 54% center; }
.fight-immigration .fight-label { color: var(--red); }

.fight-affordability { color: var(--cream); background: var(--red); }
.fight-affordability .fight-visual { left: 42%; }
.fight-affordability .fight-visual img { object-position: 62% center; }
.fight-affordability .fight-content { width: 36vw; max-width: 570px; }
.fight-affordability .fight-label { color: var(--cream); }
.fight-affordability .fight-content > p:not(.fight-label) { color: var(--cream); }

.fight-accountability { justify-content: flex-end; color: var(--cream); background: var(--navy); }
.fight-accountability .fight-visual { right: 39%; }
.fight-accountability .fight-visual img { object-position: 47% center; }
.fight-accountability .fight-content {
  width: 32vw;
  max-width: 520px;
  margin: 0 max(4vw, calc((100vw - 1380px) / 2)) 0 0;
}
.fight-accountability .fight-label { color: #f07a71; }
.fight-accountability .fight-content > p:not(.fight-label) { color: rgba(255, 250, 240, .76); }

/* Agency process */
.work { overflow: hidden; background: var(--paper); }

.work-grid {
  display: grid;
  grid-template-columns: minmax(0, .76fr) minmax(0, 1.24fr);
  gap: clamp(64px, 9vw, 140px);
  align-items: start;
}

.work-heading {
  position: sticky;
  top: calc(var(--header-height) + 54px);
}

.work-heading > p:not(.section-label) {
  max-width: 540px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.work-heading strong {
  display: block;
  max-width: 540px;
  margin-top: 22px;
  color: var(--red);
  font-size: 18px;
  line-height: 1.4;
}

.process {
  position: relative;
  min-width: 0;
}

.process-route {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 72px;
  height: 100%;
  overflow: visible;
}

.process-route path {
  fill: none;
  stroke: var(--red);
  stroke-width: 8;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1800ms var(--ease);
}

.reveal-ready .process-route path { stroke-dashoffset: 1; }
.reveal-ready .process.in-view .process-route path { stroke-dashoffset: 0; }

.process-step {
  min-height: 190px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 28px;
  align-items: start;
  padding: 34px 0 42px 92px;
  border-bottom: 1px solid var(--line);
}

.process-step:first-of-type { border-top: 1px solid var(--line); }

.process-step > span {
  padding-top: 8px;
  color: var(--red);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.process-step h3 {
  margin: 0 0 12px;
  font-size: clamp(34px, 3.2vw, 50px);
  font-weight: 630;
  line-height: .96;
  letter-spacing: -.05em;
}

.process-step p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.capability-ticker {
  margin-top: clamp(90px, 11vw, 150px);
  overflow: visible;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-track {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.capability-track span {
  display: inline-flex;
  align-items: center;
  min-height: 82px;
  padding-inline: clamp(28px, 4vw, 68px);
  border-left: 1px solid var(--line);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 620;
  letter-spacing: -.025em;
  white-space: normal;
}

.capability-track span[aria-hidden="true"] { display: none; }

/* Team */
.team {
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.team-heading { max-width: 1040px; margin-bottom: clamp(64px, 8vw, 112px); }
.team-list { border-top: 1px solid var(--line); }

.person {
  display: grid;
  grid-template-columns: clamp(116px, 9vw, 144px) .78fr .62fr 1.25fr auto;
  grid-template-areas: "portrait name role copy link";
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  padding: clamp(30px, 3.4vw, 50px) 0;
  border-bottom: 1px solid var(--line);
}

.person-portrait {
  grid-area: portrait;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #8f877d;
  border: 1px solid rgba(8, 29, 56, .16);
  box-shadow: 8px 8px 0 rgba(8, 29, 56, .055);
}

.person-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person h3 {
  grid-area: name;
  margin: 0;
  font-size: clamp(29px, 2.8vw, 42px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -.055em;
}

.person-role {
  grid-area: role;
  margin: 0;
  color: var(--red);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.person > p:not(.person-role) {
  grid-area: copy;
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.person a {
  grid-area: link;
  font-size: 12px;
  font-weight: 650;
  text-underline-offset: 5px;
  white-space: nowrap;
}

.person a span { color: var(--red); }

/* Contact */
.contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--cream);
  background: var(--navy);
}

.contact-inner {
  position: relative;
  z-index: var(--z-content);
  min-height: 78dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(120px, 14vw, 210px);
}

.contact .section-label { color: #f07a71; }

.contact h2 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(60px, 8.2vw, 126px);
  font-weight: 610;
  line-height: .82;
  letter-spacing: -.074em;
  text-wrap: balance;
}

.contact-inner > p:not(.section-label) {
  max-width: 670px;
  margin: 34px 0 0;
  color: rgba(255, 250, 240, .72);
  font-size: 18px;
  line-height: 1.52;
}

.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.contact-inner > .contact-next {
  max-width: 670px;
  margin-top: 18px;
  color: rgba(255, 250, 240, .52);
  font-size: 12px;
  line-height: 1.5;
}

.contact-route {
  position: absolute;
  z-index: 0;
  width: min(52vw, 760px);
  right: -8vw;
  top: 6%;
  opacity: .24;
  transform: rotate(-7deg);
}

.footer {
  position: relative;
  z-index: var(--z-content);
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 26px;
  align-items: center;
  border-top: 1px solid var(--light-line);
  color: rgba(255, 250, 240, .6);
  font-size: 11px;
}

.footer > a:last-child { justify-self: end; text-underline-offset: 4px; }
.footer p { margin: 0; }

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: var(--cream);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.footer-brand svg { width: 34px; }

/* Not found */
.error-page {
  min-height: 100svh;
  color: var(--cream);
  background: var(--navy);
}

.error-page .site-header { position: absolute; }

.not-found {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-block: calc(var(--header-height) + 72px) 72px;
}

.not-found .contact-route {
  width: min(70vw, 900px);
  right: -10vw;
  top: 8%;
  opacity: .28;
}

.not-found-inner {
  position: relative;
  z-index: var(--z-content);
}

.not-found h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(72px, 11vw, 164px);
  font-weight: 610;
  line-height: .82;
  letter-spacing: -.078em;
  text-wrap: balance;
}

.not-found-copy {
  max-width: 560px;
  margin: 30px 0 0;
  color: rgba(255, 250, 240, .7);
  font-size: 18px;
  line-height: 1.5;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
}

/* Motion */
@keyframes hero-camera {
  0% { transform: scale(1.055) translate3d(-.7%, 0, 0); }
  48% { transform: scale(1.095) translate3d(.5%, -.45%, 0); }
  100% { transform: scale(1.075) translate3d(1.1%, .3%, 0); }
}

@keyframes light-drift {
  0% { transform: translate3d(-3%, 0, 0) scale(1); opacity: .34; }
  55% { transform: translate3d(4%, 2%, 0) scale(1.08); opacity: .62; }
  100% { transform: translate3d(1%, -1%, 0) scale(1.03); opacity: .45; }
}

@keyframes traffic-a {
  0%, 8% { transform: translate3d(0, 0, 0) skewX(-18deg); opacity: 0; }
  18% { opacity: .68; }
  52% { transform: translate3d(340%, -4%, 0) skewX(-18deg); opacity: .65; }
  60%, 100% { transform: translate3d(380%, -4%, 0) skewX(-18deg); opacity: 0; }
}

@keyframes traffic-b {
  0%, 54% { transform: translate3d(0, 0, 0) skewX(14deg); opacity: 0; }
  62% { opacity: .44; }
  92% { transform: translate3d(-310%, -2%, 0) skewX(14deg); opacity: .42; }
  100% { transform: translate3d(-330%, -2%, 0) skewX(14deg); opacity: 0; }
}

@keyframes signal-route { to { stroke-dashoffset: -1; } }
@keyframes ticker { to { transform: translate3d(-50%, 0, 0); } }

@media (prefers-reduced-motion: no-preference) {
  html.motion-enabled .hero-picture img { animation: hero-camera 22s ease-in-out infinite alternate; }
  html.motion-enabled .hero-light { animation: light-drift 14s ease-in-out infinite alternate; }
  html.motion-enabled .traffic-shadow-a { animation: traffic-a 17s ease-in-out infinite; }
  html.motion-enabled .traffic-shadow-b { animation: traffic-b 21s ease-in-out infinite; }
  html.motion-enabled .route-signal { animation: signal-route 7s linear infinite; }

  html.motion-enabled body:not(.motion-paused) .capability-ticker { overflow: hidden; }
  html.motion-enabled body:not(.motion-paused) .capability-track {
    width: max-content;
    display: flex;
    align-items: center;
    will-change: transform;
    animation: ticker 34s linear infinite;
  }
  html.motion-enabled body:not(.motion-paused) .capability-track span { white-space: nowrap; }
  html.motion-enabled body:not(.motion-paused) .capability-track span[aria-hidden="true"] { display: inline-flex; }

  .reveal-ready [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition: opacity 720ms var(--ease), transform 720ms var(--ease);
  }

  .reveal-ready [data-reveal].is-visible { opacity: 1; transform: none; }

  .hero-inner [data-reveal]:nth-child(2) { transition-delay: 70ms; }
  .hero-inner [data-reveal]:nth-child(3) { transition-delay: 140ms; }
  .hero-inner [data-reveal]:nth-child(4) { transition-delay: 190ms; }
  .hero-inner [data-reveal]:nth-child(5) { transition-delay: 240ms; }

  .person:hover { transform: translate3d(8px, 0, 0); }
  .person { transition: transform 320ms var(--ease); }
  .person-portrait img { transition: transform 520ms var(--ease); }
  .person:hover .person-portrait img { transform: scale(1.018); }
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    html.motion-enabled .fight-visual img {
      animation: fight-image-drift linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 100%;
    }
    @keyframes fight-image-drift {
      from { transform: scale(1.02) translate3d(-1%, 0, 0); }
      to { transform: scale(1.08) translate3d(1%, 0, 0); }
    }
  }
}

/* Responsive */
@media (max-width: 1120px) {
  .nav-links { gap: 20px; }
  .nav-links a:nth-child(3) { display: none; }
  .fight-content h3 { font-size: clamp(54px, 8vw, 88px); }
  .fight-affordability .fight-content { width: 38vw; }
  .person {
    grid-template-columns: 124px .8fr .65fr 1.25fr;
    grid-template-areas:
      "portrait name role copy"
      "portrait name role link";
    align-items: start;
  }
}

@media (max-width: 900px) {
  :root { --header-height: 68px; }
  .site-header-inner { width: calc(100% - 28px); gap: 18px; }
  .nav-links a:not(:first-child) { display: none; }
  .capability-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .hero-route { right: -40px; top: 18%; width: 260px; opacity: .72; }
  .hero-picture img { object-position: 62% center; }
  .hero-wash {
    background:
      linear-gradient(90deg, rgba(4, 14, 26, .91), rgba(4, 14, 26, .45) 65%, rgba(4, 14, 26, .18)),
      linear-gradient(0deg, rgba(4, 14, 26, .78), transparent 64%);
  }

  .thesis-grid,
  .fights-intro-grid,
  .work-grid { grid-template-columns: 1fr; gap: 54px; }
  .thesis-copy { padding-top: 0; }
  .work-heading { position: static; }

  .fight-panel {
    position: relative;
    top: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    padding-top: 0;
    box-shadow: none;
  }

  .fight-visual,
  .fight-affordability .fight-visual,
  .fight-accountability .fight-visual {
    position: relative;
    inset: auto;
    height: min(68vw, 620px);
    order: 1;
  }

  .fight-content,
  .fight-affordability .fight-content,
  .fight-accountability .fight-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: clamp(48px, 8vw, 80px) max(28px, 6vw);
    order: 2;
  }

  .fight-immigration .fight-shade { display: none; }
  .fight-immigration .fight-content { background: var(--paper); }
  .fight-accountability .fight-content { background: var(--navy); }

  .person {
    grid-template-columns: 116px minmax(160px, .8fr) minmax(0, 1.4fr);
    grid-template-areas:
      "portrait name copy"
      "portrait role copy"
      "portrait . link";
  }
}

@media (max-width: 640px) {
  .container { width: calc(100% - 28px); }
  .section-space { padding-block: 84px; }

  .brand { font-size: 13px; gap: 7px; }
  .brand-mark { width: 31px; }
  .nav-links { display: none; }
  .header-actions { margin-left: auto; }
  .header-cta { min-height: 40px; padding-inline: 12px; font-size: 11px; }
  html.motion-enabled .motion-toggle {
    position: relative;
    width: 40px;
    min-width: 40px;
    padding: 0;
    font-size: 0;
  }
  html.motion-enabled .motion-toggle::before {
    content: "";
    width: 12px;
    height: 14px;
    background: linear-gradient(90deg, currentColor 0 3px, transparent 3px 8px, currentColor 8px 11px, transparent 11px);
  }
  html.motion-enabled body.motion-paused .motion-toggle::before {
    width: 0;
    height: 0;
    margin-left: 2px;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 11px solid currentColor;
    background: none;
  }

  .hero { min-height: 100svh; }
  .hero-inner { width: calc(100% - 28px); padding: 124px 0 max(24px, env(safe-area-inset-bottom)); }
  .hero h1 { max-width: 620px; font-size: clamp(62px, 18vw, 86px); line-height: .82; }
  .hero-deck { max-width: 480px; margin-top: 22px; font-size: 17px; }
  .hero-audience { max-width: 380px; font-size: 12px; }
  .hero-actions { gap: 16px; margin-top: 16px; }
  .hero-actions .button { min-height: 44px; padding-inline: 16px; }
  .hero-route { top: 15%; right: -74px; width: 220px; opacity: .55; }
  .traffic-shadow { display: none; }

  .thesis-heading h2,
  .fights-intro h2,
  .work-heading h2,
  .team-heading h2 { font-size: 52px; }
  .thesis-copy p { font-size: 27px; }
  .thesis-copy p:last-child { font-size: 17px; }

  .covenant { padding-block: 84px; }
  .covenant-lines p { grid-template-columns: 1fr; gap: 12px; padding-block: 28px; }
  .covenant-lines strong { font-size: 47px; }

  .fights-intro-grid > p { font-size: 17px; }
  .fight-visual,
  .fight-affordability .fight-visual,
  .fight-accountability .fight-visual { height: 58svh; min-height: 390px; }
  .fight-content h3 { font-size: clamp(52px, 15vw, 72px); }
  .fight-content > p:not(.fight-label) { margin-top: 22px; font-size: 16px; }

  .process-route { width: 42px; }
  .process-step { grid-template-columns: 1fr; gap: 10px; min-height: 180px; padding: 28px 0 36px 64px; }
  .process-step h3 { font-size: 36px; }
  .capability-ticker { margin-top: 78px; }
  .capability-track { grid-template-columns: 1fr; }
  .capability-track span { min-height: 68px; }

  .team-heading { margin-bottom: 54px; }
  .person {
    grid-template-columns: 96px minmax(0, 1fr);
    grid-template-areas:
      "portrait name"
      "portrait role"
      "copy copy"
      "link link";
    column-gap: 20px;
    row-gap: 10px;
    padding-block: 30px;
  }
  .person-portrait { align-self: start; box-shadow: 6px 6px 0 rgba(8, 29, 56, .055); }
  .person h3 { align-self: end; }
  .person > p:not(.person-role) { margin-top: 12px; }
  .person a { margin-top: 8px; }

  .contact-inner { min-height: 74svh; padding-block: 110px 92px; }
  .contact h2 { font-size: 58px; }
  .contact-inner > p:not(.section-label) { margin-top: 26px; font-size: 16px; }
  .contact-route { width: 92vw; right: -34vw; top: 8%; }
  .contact-actions { flex-direction: column; align-items: stretch; }
  .contact-actions .button { width: 100%; }
  .footer { grid-template-columns: 1fr; gap: 12px; padding-block: 28px 38px; }
  .footer > a:last-child { justify-self: start; }

  .not-found { padding-block: calc(var(--header-height) + 54px) 52px; }
  .not-found h1 { font-size: clamp(68px, 21vw, 96px); }
  .not-found-copy { font-size: 16px; }
  .not-found .contact-route { width: 118vw; right: -56vw; top: 14%; }
}

@media (max-width: 340px) {
  .brand > span { display: none; }
  .person { grid-template-columns: 84px minmax(0, 1fr); column-gap: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero-picture img,
  .fight-visual img { transform: none; }
  .reveal-ready .process-route path { stroke-dashoffset: 0; }
  .capability-track { transform: none; }
  .fight-panel { position: relative; top: auto; }
}

/* America in Register */
.section-label { color: var(--red-dark); }
.copy-signal { color: var(--red-dark); }
.copy-signal-on-dark,
.hero-kicker,
.contact .section-label { color: var(--coral-light); }

.site-header {
  border-color: rgba(242, 234, 239, .24);
  background: linear-gradient(180deg, rgba(36, 32, 44, .74), rgba(36, 32, 44, 0));
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--red);
  transform: scaleY(.38);
  transform-origin: top;
  transition: transform 420ms var(--ease);
}

.site-header.is-past-hero {
  color: var(--ink);
  background: rgba(242, 234, 239, .94);
}

.site-header.is-past-hero::before { transform: scaleY(1); }
.menu-toggle { display: none; }

.hero {
  min-height: max(720px, 100dvh);
  background: var(--navy);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  height: 8px;
  background: linear-gradient(90deg, var(--red) 0 57%, var(--paper-mid) 57% 72%, var(--navy) 72%);
}

.hero-picture {
  opacity: 1;
  transition: opacity 900ms var(--ease);
}

.hero-picture img {
  object-position: 58% center;
  filter: saturate(.72) contrast(1.06) sepia(.08);
}

.hero-film {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 58% center;
  opacity: 0;
  transform: scale(1.012);
  transition: opacity 1100ms var(--ease);
}

.hero.film-ready .hero-film { opacity: 1; }
.hero.film-ready .hero-picture { opacity: 0; }

.hero-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background: repeating-linear-gradient(0deg, rgba(48, 46, 59, .26) 0 1px, transparent 1px 4px);
  mix-blend-mode: multiply;
}

.hero-wash {
  background:
    linear-gradient(90deg, rgba(37, 33, 45, .96) 0%, rgba(37, 33, 45, .78) 38%, rgba(37, 33, 45, .2) 72%, rgba(37, 33, 45, .1) 100%),
    linear-gradient(0deg, rgba(37, 33, 45, .84) 0%, rgba(37, 33, 45, .08) 64%),
    linear-gradient(180deg, rgba(37, 33, 45, .52), transparent 26%);
}

.hero-register {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  pointer-events: none;
  visibility: hidden;
}

.hero-register span {
  display: block;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
}

.hero-register span:nth-child(1),
.hero-register span:nth-child(4) { background: var(--navy); }
.hero-register span:nth-child(2),
.hero-register span:nth-child(5) { background: var(--red); }
.hero-register span:nth-child(3) { background: var(--paper-mid); }

.hero-inner {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(54px, 7vh, 86px);
}

.hero h1 {
  max-width: 1240px;
  font-size: clamp(78px, 11.5vw, 176px);
  line-height: .78;
  letter-spacing: -.082em;
}

.hero-deck { color: rgba(242, 234, 239, .88); }
.hero-audience { color: rgba(242, 234, 239, .62); }
.hero-route { opacity: .8; mix-blend-mode: screen; }
.route-base { stroke: rgba(242, 234, 239, .24); }

.thesis {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.thesis::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 clamp(18px, 3vw, 48px);
  width: 1px;
  background: linear-gradient(var(--red) 0 17%, var(--line) 17% 83%, var(--navy) 83%);
}

.thesis-heading h2,
.fights-intro h2,
.work-heading h2,
.team-heading h2 { color: var(--ink); }

.thesis-copy .thesis-turn { color: var(--red-dark); }

/* Citizen First Constitutionalism */
.doctrine {
  position: relative;
  overflow: hidden;
  padding-top: clamp(104px, 11vw, 170px);
  color: var(--ink);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.doctrine-heading {
  display: grid;
  grid-template-columns: minmax(180px, .32fr) minmax(0, 1.68fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: start;
  margin-bottom: clamp(70px, 9vw, 130px);
}

.doctrine-heading .section-label { padding-top: 13px; }

.doctrine-heading h2 {
  margin: 0;
  font-size: clamp(68px, 9.5vw, 146px);
  font-weight: 620;
  line-height: .8;
  letter-spacing: -.08em;
  text-wrap: balance;
}

.doctrine-heading h2 span { color: var(--red-dark); }

.doctrine-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  gap: clamp(54px, 9vw, 140px);
  align-items: center;
  margin-bottom: clamp(92px, 11vw, 160px);
}

.doctrine-flag {
  position: relative;
  margin: 0;
  transform: rotate(-1.15deg);
  background: var(--paper-mid);
  box-shadow: 13px 13px 0 var(--red), 26px 26px 0 var(--navy);
}

.doctrine-flag::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(242, 234, 239, .46);
  pointer-events: none;
}

.doctrine-flag img { width: 100%; height: auto; }

.doctrine-flag figcaption {
  margin: 0;
  padding: 18px 22px 20px;
  color: var(--paper);
  background: var(--navy);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.doctrine-copy { max-width: 650px; }

.doctrine-copy p {
  margin: 0;
  padding: 25px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
  letter-spacing: -.018em;
}

.doctrine-copy p:last-child { border-bottom: 1px solid var(--line); }

.doctrine-copy .doctrine-lead {
  padding-top: 0;
  border-top: 0;
  color: var(--ink);
  font-size: clamp(25px, 2.25vw, 36px);
  font-weight: 530;
  line-height: 1.18;
  letter-spacing: -.04em;
}

.doctrine-copy strong { color: var(--red-dark); font-weight: 700; }

.doctrine-test {
  color: var(--paper);
  background: var(--red-dark);
  border-top: 10px solid var(--navy);
}

.doctrine-test-inner {
  min-height: 280px;
  display: grid;
  grid-template-columns: minmax(130px, .32fr) minmax(0, 1.38fr) auto;
  gap: clamp(32px, 5vw, 78px);
  align-items: center;
  padding-block: clamp(54px, 7vw, 92px);
}

.doctrine-test span {
  font-size: 11px;
  font-weight: 740;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.doctrine-test p {
  max-width: 900px;
  margin: 0;
  font-size: clamp(35px, 4.7vw, 72px);
  font-weight: 620;
  line-height: .94;
  letter-spacing: -.06em;
}

.doctrine-test strong {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding-left: clamp(28px, 4vw, 60px);
  border-left: 1px solid rgba(242, 234, 239, .38);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1;
  white-space: nowrap;
}

.fights-intro {
  position: relative;
  color: var(--ink);
  background: var(--paper-mid);
  border-bottom: 1px solid var(--ink);
}

.fights-intro::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 12px;
  background: linear-gradient(90deg, var(--red) 0 46%, var(--navy) 46% 82%, var(--paper) 82%);
}

.fights-intro-grid > p { color: var(--ink-soft, var(--navy-soft)); }

.fight-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .12;
  background:
    repeating-linear-gradient(0deg, rgba(48, 46, 59, .28) 0 1px, transparent 1px 4px),
    linear-gradient(90deg, transparent 0 49.85%, rgba(242, 234, 239, .38) 49.85% 50%, transparent 50%);
  mix-blend-mode: multiply;
}

.fight-content { z-index: 2; }

.fight-folio {
  display: block;
  margin-bottom: clamp(42px, 7vh, 84px);
  font-size: 20px;
  font-weight: 720;
  letter-spacing: -.03em;
}

.fight-immigration .fight-shade {
  background: linear-gradient(90deg, rgba(242, 234, 239, .99) 0%, rgba(242, 234, 239, .95) 31%, rgba(242, 234, 239, .3) 58%, transparent 75%);
}

.fight-immigration .fight-label { color: var(--red-dark); }

.fight-affordability .fight-label {
  display: inline-flex;
  width: max-content;
  padding: 8px 10px;
  color: var(--paper);
  background: var(--navy);
}

.fight-accountability .fight-label { color: var(--coral-light); }
.fight-accountability .fight-content > p:not(.fight-label) { color: rgba(242, 234, 239, .76); }

.work {
  position: relative;
  color: var(--ink);
  background: var(--paper);
  border-top: 12px solid var(--red);
}

.work::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--navy);
  transform: translateY(12px);
}

.work-heading strong,
.process-step > span { color: var(--red-dark); }

.capability-ticker {
  color: var(--paper);
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: inset 0 7px 0 var(--red), inset 0 -7px 0 var(--paper-mid);
}

.capability-track span {
  min-height: 100px;
  border-color: rgba(242, 234, 239, .2);
}

.team {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.team::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, var(--navy) 0 31%, var(--red) 31% 62%, var(--paper-shadow) 62%);
}

.person-role { color: var(--red-dark); }
.person-portrait { background: var(--paper-shadow); border-color: var(--line); }
.person > p:not(.person-role) { color: var(--muted); }

@media (min-width: 901px) {
  .team-heading { max-width: 1180px; }

  .team-list {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(24px, 3vw, 48px);
    align-items: start;
    border: 0;
  }

  .person {
    display: block;
    padding: 0 0 36px;
    border-top: 1px solid var(--line);
    border-bottom: 0;
  }

  .person:nth-child(1) { grid-column: 1 / 5; }
  .person:nth-child(2) { grid-column: 5 / 9; margin-top: clamp(90px, 9vw, 142px); }
  .person:nth-child(3) { grid-column: 9 / 13; margin-top: clamp(24px, 3vw, 50px); }

  .person-portrait {
    width: calc(100% - 12px);
    margin: 12px 0 0;
    box-shadow: 12px 12px 0 var(--paper-shadow);
  }

  .person:nth-child(2) .person-portrait { box-shadow: 12px 12px 0 var(--red); }
  .person:nth-child(3) .person-portrait { box-shadow: 12px 12px 0 var(--navy-soft); }

  .person h3 {
    margin-top: 34px;
    font-size: clamp(38px, 3.8vw, 58px);
  }

  .person-role { margin-top: 13px; }
  .person > p:not(.person-role) { margin-top: 24px; }
  .person a { display: inline-block; margin-top: 24px; }
}

.contact {
  color: var(--paper);
  background: var(--navy);
}

.contact::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 -12vw 0 48%;
  opacity: .34;
  background:
    linear-gradient(90deg, var(--navy) 0 43%, transparent 43%),
    repeating-linear-gradient(0deg, var(--red) 0 7.69%, var(--red) 7.69%, var(--paper-mid) 7.69% 15.38%);
  transform: rotate(-5deg) scale(1.16);
  transform-origin: center;
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000);
}

.contact h2 { color: var(--paper); }
.contact-inner > p:not(.section-label) { color: rgba(242, 234, 239, .74); }
.contact-inner > .contact-next { color: rgba(242, 234, 239, .56); }

@keyframes register-out {
  0% { visibility: visible; opacity: 0; transform: scaleX(0); }
  12% { opacity: 1; transform: scaleX(1); }
  56% { opacity: 1; transform: scaleX(1); transform-origin: left center; }
  100% { visibility: hidden; opacity: 1; transform: translate3d(104%, 0, 0); }
}

@media (prefers-reduced-motion: no-preference) {
  html.motion-enabled .hero-register { visibility: visible; }
  html.motion-enabled .hero-register span { animation: register-out 1.15s var(--ease) both; }
  html.motion-enabled .hero-register span:nth-child(2) { animation-delay: 55ms; }
  html.motion-enabled .hero-register span:nth-child(3) { animation-delay: 110ms; }
  html.motion-enabled .hero-register span:nth-child(4) { animation-delay: 165ms; }
  html.motion-enabled .hero-register span:nth-child(5) { animation-delay: 220ms; }
  html.motion-enabled .hero.film-ready .hero-picture img { animation: none; }

  .reveal-ready .doctrine-flag[data-reveal] { transform: translate3d(-28px, 22px, 0) rotate(-1.15deg); }
  .reveal-ready .doctrine-flag[data-reveal].is-visible { transform: rotate(-1.15deg); }

  .person:hover { transform: translate3d(0, -8px, 0); }
}

@media (max-width: 1120px) {
  .nav-links a { display: block !important; }
}

@media (max-width: 900px) {
  .hero { min-height: 100svh; }
  .hero-film { object-position: 63% center; }
  .doctrine-heading { grid-template-columns: 1fr; gap: 18px; }
  .doctrine-heading .section-label { padding-top: 0; }
  .doctrine-grid { grid-template-columns: 1fr; gap: 76px; }
  .doctrine-flag { width: min(86%, 680px); }
  .doctrine-copy { max-width: 760px; }
  .doctrine-test-inner { grid-template-columns: 1fr; gap: 25px; }
  .doctrine-test strong { align-self: auto; padding: 24px 0 0; border-left: 0; border-top: 1px solid rgba(242, 234, 239, .38); }
  .fight-folio { margin-bottom: 32px; }
}

@media (max-width: 740px) {
  body.menu-open { overflow: hidden; }

  .site-header-inner { grid-template-columns: auto 1fr; }

  .nav-links {
    position: fixed;
    inset: var(--header-height) 0 auto;
    width: 100%;
    min-height: calc(100svh - var(--header-height));
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0;
    padding: 32px 20px 44px;
    color: var(--ink);
    background: var(--paper);
    border-top: 9px solid var(--red);
    visibility: hidden;
    opacity: 0;
    transform: translate3d(0, -16px, 0);
    transition: opacity 280ms var(--ease), transform 280ms var(--ease), visibility 280ms;
  }

  .nav-links::before {
    content: "Citizens first. The Constitution always.";
    max-width: 310px;
    margin-bottom: auto;
    padding-top: 16px;
    color: var(--red-dark);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: .08em;
  }

  .nav-links a,
  .nav-links a:not(:first-child) {
    display: block !important;
    width: 100%;
    padding: 12px 0;
    border-top: 1px solid var(--line);
    font-size: clamp(34px, 12vw, 56px);
    font-weight: 620;
    line-height: 1;
    letter-spacing: -.06em;
  }

  .nav-links a:last-child { border-bottom: 1px solid var(--line); }
  .nav-links a::after { display: none; }

  body.menu-open .nav-links {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  body.menu-open .site-header { color: var(--ink); background: var(--paper); border-color: var(--line); }

  .header-actions { justify-self: end; }
  .header-cta { display: none; }

  .menu-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    min-height: 42px;
    padding: 0 0 0 16px;
    border: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle::before,
  .menu-toggle::after {
    content: "";
    position: absolute;
    right: 0;
    width: 12px;
    height: 2px;
    background: currentColor;
    transition: transform 240ms var(--ease), top 240ms var(--ease);
  }

  .menu-toggle::before { top: 15px; }
  .menu-toggle::after { top: 24px; }
  .menu-toggle span { margin-right: 21px; font-size: 11px; font-weight: 670; }
  .menu-toggle[aria-expanded="true"]::before { top: 20px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"]::after { top: 20px; transform: rotate(-45deg); }

  .hero h1 { font-size: clamp(67px, 19vw, 102px); }
  .hero-route { right: -92px; opacity: .42; }
  .doctrine { padding-top: 88px; }
  .doctrine-heading { margin-bottom: 64px; }
  .doctrine-heading h2 { font-size: clamp(60px, 18vw, 88px); }
  .doctrine-grid { gap: 62px; margin-bottom: 92px; }
  .doctrine-flag { width: calc(100% - 22px); box-shadow: 8px 8px 0 var(--red), 16px 16px 0 var(--navy); }
  .doctrine-flag figcaption { font-size: 12px; }
  .doctrine-copy .doctrine-lead { font-size: 27px; }
  .doctrine-copy p { font-size: 17px; }
  .doctrine-test { border-top-width: 7px; }
  .doctrine-test-inner { min-height: 0; padding-block: 64px; }
  .doctrine-test p { font-size: clamp(37px, 12vw, 54px); }
  .doctrine-test strong { font-size: 22px; }
  .fight-folio { font-size: 17px; }
  .contact::before { left: 28%; opacity: .24; }
}

@media (max-width: 420px) {
  .hero-inner { padding-top: 116px; }
  .hero-kicker { max-width: 270px; }
  .hero h1 { font-size: clamp(64px, 19vw, 82px); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 8px; }
  .hero-actions .text-link { min-height: 36px; }
  .motion-toggle { order: -1; }
}
