@font-face {
  font-family: "Anton";
  src: url("/assets/fonts/anton-400.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
}

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

@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/space-grotesk-600.woff2") format("woff2");
  font-display: swap;
  font-weight: 600;
}

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

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/ibm-plex-mono-500.woff2") format("woff2");
  font-display: swap;
  font-weight: 500;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/ibm-plex-mono-700.woff2") format("woff2");
  font-display: swap;
  font-weight: 700;
}

:root {
  --paper: #efe4cf;
  --paper-light: #f7efdf;
  --ink: #171512;
  --red: #d94b3d;
  --machine: #77736d;
  --yellow: #ddb23d;
  --line: rgba(23, 21, 18, 0.28);
  --display: "Anton", "Arial Narrow", sans-serif;
  --body: "Space Grotesk", Arial, sans-serif;
  --mono: "IBM Plex Mono", Consolas, monospace;
  color-scheme: light;
  font-synthesis: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(23, 21, 18, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 21, 18, 0.02) 1px, transparent 1px),
    var(--paper);
  background-size: 28px 28px;
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 30;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.15;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
}

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

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

main section {
  scroll-margin-top: 68px;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 68px;
  align-items: center;
  border-bottom: 2px solid var(--ink);
  background: rgba(239, 228, 207, 0.96);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 9px;
  padding: 0 24px;
  border-right: 2px solid var(--ink);
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.brand small {
  font-family: var(--mono);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.brand-flower {
  color: var(--red);
  font-family: sans-serif;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 46px);
  padding: 0 20px;
}

.site-nav a,
.ca-status,
.menu-toggle {
  font-family: var(--mono);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 22px 0;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--red);
  content: "";
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.ca-status {
  display: grid;
  min-height: 68px;
  place-items: center;
  padding: 0 22px;
  border-left: 2px solid var(--ink);
  background: var(--red);
  color: #fff7ec;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 68px);
  grid-template-columns: minmax(400px, 0.86fr) minmax(540px, 1.14fr);
  border-bottom: 2px solid var(--ink);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 6vw, 100px) clamp(28px, 5vw, 84px) 110px;
  border-right: 2px solid var(--ink);
}

.eyebrow {
  margin: 0 0 18px;
  font-family: var(--mono);
  font-size: clamp(0.64rem, 1vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero h1,
.section-lead h2,
.personnel h2,
.incidents h2,
.press-test h2,
.protocol h2,
.receipt h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: none;
  font-size: clamp(4.2rem, 7.1vw, 8.8rem);
  line-height: 0.96;
}

.hero h1 .headline-line {
  display: block;
  white-space: nowrap;
}

.hero h1 .headline-ink {
  color: var(--ink);
}

.hero h1 span,
.section-lead h2 span,
.incidents h2 span,
.protocol h2 span,
.receipt h2 span {
  color: var(--red);
}

.hero-deck {
  max-width: 440px;
  margin: clamp(26px, 4vw, 44px) 0 0;
  font-size: clamp(1.08rem, 1.6vw, 1.42rem);
  font-weight: 600;
  line-height: 1.35;
}

.hero-actions,
.receipt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.button:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--ink);
}

.button-dark {
  background: var(--ink);
  color: var(--paper-light);
}

.button-paper {
  background: var(--paper-light);
  color: var(--ink);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  background: #b7a78e;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% center;
}

.hero-visual figcaption,
.personnel-photo figcaption,
.protocol-visual figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 9px;
  background: var(--ink);
  color: var(--paper-light);
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.status-strip {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 12px clamp(22px, 4vw, 64px);
  border-top: 2px solid var(--ink);
  background: var(--yellow);
  font-family: var(--mono);
  font-size: clamp(0.62rem, 1vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--red);
  animation: status-pulse 1.8s steps(2, end) infinite;
}

@keyframes status-pulse {
  50% { opacity: 0.35; }
}

.section-pad {
  padding: clamp(76px, 10vw, 150px) clamp(22px, 6vw, 96px);
}

.origin {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(420px, 1.05fr);
  gap: clamp(42px, 8vw, 130px);
  border-bottom: 2px solid var(--ink);
}

.section-lead h2 {
  font-size: clamp(3.8rem, 6vw, 7.4rem);
  line-height: 0.96;
}

.section-intro {
  max-width: 400px;
  margin: 28px 0 0;
  font-size: 1.15rem;
  font-weight: 600;
}

.source-receipt {
  position: relative;
  align-self: center;
  padding: clamp(24px, 4vw, 46px);
  border: 2px solid var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
  background: var(--paper-light);
  transform: rotate(0.8deg);
}

.source-receipt header {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
}

.source-receipt header div:nth-child(2) {
  display: grid;
}

.source-receipt header span,
.source-receipt blockquote span {
  color: #5c5750;
  font-family: var(--mono);
  font-size: 0.72rem;
}

.source-avatar {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper-light);
  font-family: var(--display);
  font-size: 1.3rem;
}

.source-mark {
  color: var(--ink) !important;
  font-size: 1.35rem !important;
}

.source-main {
  margin: 30px 0 22px;
  font-size: clamp(1.55rem, 2.8vw, 2.65rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.source-receipt blockquote {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding: 18px;
  border: 1px solid var(--line);
  font-size: 1rem;
  line-height: 1.45;
}

.source-receipt blockquote strong {
  display: flex;
  gap: 8px;
}

.source-receipt > a {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
}

.source-receipt > small {
  display: block;
  margin-top: 0;
  color: #5c5750;
  font-family: var(--mono);
  font-size: 0.58rem;
  line-height: 1.5;
}

.nice-answer {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  align-items: baseline;
  padding-top: clamp(38px, 5vw, 70px);
  border-top: 1px solid var(--line);
}

.nice-answer span {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
}

.nice-answer strong {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 5rem);
  font-weight: 400;
  line-height: 1;
}

.nice-answer strong:last-child {
  color: var(--red);
}

.personnel {
  display: grid;
  grid-template-columns: minmax(340px, 0.88fr) minmax(390px, 1.12fr);
  gap: clamp(46px, 8vw, 120px);
  border-bottom: 2px solid var(--ink);
  background: var(--paper-light);
}

.personnel-photo {
  position: relative;
  align-self: start;
  margin: 0;
  border: 2px solid var(--ink);
  background: #c9b99f;
  transform: rotate(-1.2deg);
}

.personnel-photo img {
  width: 100%;
}

.personnel-copy {
  position: relative;
  align-self: center;
}

.personnel h2 {
  width: max-content;
  max-width: 100%;
  font-size: clamp(4.5rem, 8vw, 10rem);
  line-height: 0.94;
  white-space: nowrap;
}

.file-grid {
  display: grid;
  margin: clamp(34px, 5vw, 58px) 0 0;
  border-top: 2px solid var(--ink);
}

.file-grid div {
  display: grid;
  grid-template-columns: minmax(105px, 0.34fr) 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.file-grid dt {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
}

.file-grid dd {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.personnel-note {
  margin: 30px 0 0;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.45;
}

.red-stamp,
.receipt-stamp {
  display: inline-block;
  border: 4px double var(--red);
  color: var(--red);
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: 0.08em;
  transform: rotate(-5deg);
}

.red-stamp {
  margin-top: 38px;
  padding: 10px 14px;
  font-size: clamp(0.86rem, 1.3vw, 1.1rem);
}

.incidents {
  border-bottom: 2px solid var(--ink);
}

.incidents-heading {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 30px;
  align-items: end;
  margin-bottom: clamp(44px, 7vw, 90px);
}

.incidents-heading .eyebrow {
  margin-bottom: 8px;
}

.incidents h2 {
  font-size: clamp(4rem, 7.5vw, 9.2rem);
  line-height: 0.96;
}

.incident-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(18px, 2vw, 30px);
  row-gap: clamp(38px, 4vw, 66px);
  align-items: start;
}

.incident-card {
  border: 2px solid var(--ink);
  background: var(--paper-light);
  box-shadow: 8px 8px 0 var(--ink);
}

.incident-card-a,
.incident-card-b {
  display: flex;
  flex-direction: column;
}

.incident-card-a { grid-column: span 7; }
.incident-card-b { grid-column: span 5; }
.incident-card-c {
  display: grid;
  grid-column: 2 / span 10;
  grid-template-columns: 1.35fr 0.65fr;
  margin-top: 0;
}

.incident-card figure {
  height: clamp(360px, 28vw, 520px);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background: #c0af96;
}

.incident-card-c figure {
  height: auto;
  min-height: 440px;
  border-right: 2px solid var(--ink);
  border-bottom: 0;
}

.incident-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.98);
}

.incident-card-b img { object-position: 46% center; }

.incident-copy {
  display: flex;
  min-height: 182px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(20px, 3vw, 34px);
}

.incident-copy > span {
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.incident-copy h3 {
  max-width: 15ch;
  margin: 24px 0 12px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 4.25rem);
  font-weight: 400;
  line-height: 0.98;
}

.incident-copy p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
}

.press-test {
  position: relative;
  display: grid;
  min-height: min(820px, 90svh);
  place-items: center;
  overflow: hidden;
  border-bottom: 2px solid var(--paper);
  background: var(--ink);
  color: var(--paper-light);
}

.press-copy {
  position: relative;
  z-index: 2;
  width: min(92%, 1440px);
  padding: clamp(76px, 9vw, 120px) 44% clamp(76px, 9vw, 120px) 0;
}

.press-test h2 {
  width: max-content;
  color: var(--paper-light);
  font-size: clamp(5.5rem, 12vw, 12.5rem);
  line-height: 0.94;
}

.press-line {
  display: block;
  white-space: nowrap;
}

.press-status {
  width: max-content;
  max-width: none;
  min-height: 1.5em;
  margin: 42px 0 24px;
  color: var(--yellow);
  font-family: var(--mono);
  font-size: clamp(0.78rem, 1.4vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.danger-button {
  position: relative;
  width: clamp(170px, 18vw, 235px);
  height: clamp(170px, 18vw, 235px);
  border: 12px solid #2a2722;
  border-radius: 50%;
  box-shadow: 0 16px 0 #721e17, 0 24px 0 #090807;
  cursor: pointer;
  background: var(--red);
  color: #fff8ee;
  font-family: var(--mono);
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: transform 80ms ease, box-shadow 80ms ease;
}

.danger-button:active,
.danger-button.is-pressed {
  transform: translateY(13px);
  box-shadow: 0 3px 0 #721e17, 0 8px 0 #090807;
}

.press-copy > small {
  display: block;
  max-width: 280px;
  margin-top: 32px;
  color: #a9a197;
  font-family: var(--mono);
  font-size: 0.62rem;
  line-height: 1.6;
}

.press-ape {
  position: absolute;
  z-index: 1;
  right: max(1vw, calc((100vw - 1400px) / 2));
  bottom: -12%;
  width: min(38vw, 490px);
  height: auto;
  object-fit: contain;
  object-position: bottom;
  transition: transform 240ms ease;
}

.press-ape-main {
  filter: drop-shadow(-18px 24px 0 rgba(0, 0, 0, 0.28));
}

.press-ape-outline {
  z-index: 0;
  pointer-events: none;
  filter:
    brightness(0) invert(1)
    drop-shadow(3px 0 0 var(--paper-light))
    drop-shadow(-3px 0 0 var(--paper-light))
    drop-shadow(0 3px 0 var(--paper-light))
    drop-shadow(0 -3px 0 var(--paper-light));
}

.press-test.has-incident .press-ape {
  transform: translateX(-2.5%) rotate(-1deg);
}

.protocol {
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(350px, 0.95fr);
  gap: clamp(46px, 8vw, 120px);
  border-bottom: 2px solid var(--ink);
}

.protocol-visual {
  position: relative;
  align-self: center;
  margin: 0;
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  transform: rotate(0.8deg);
}

.protocol-visual img {
  width: 100%;
}

.protocol-copy {
  align-self: center;
}

.protocol h2 {
  font-size: clamp(3.8rem, 5.8vw, 6.8rem);
  line-height: 0.96;
}

.protocol ol {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--ink);
}

.protocol li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.6vw, 2.55rem);
  line-height: 1.08;
}

.protocol li span {
  align-self: center;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
}

.receipt {
  display: grid;
  grid-template-columns: minmax(330px, 0.76fr) minmax(440px, 1.24fr);
  gap: clamp(50px, 9vw, 130px);
  border-bottom: 2px solid var(--ink);
  background: var(--yellow);
}

.receipt-copy {
  align-self: center;
}

.receipt h2 {
  font-size: clamp(4rem, 5.4vw, 6.8rem);
  line-height: 0.96;
}

.receipt-copy > p:not(.eyebrow) {
  max-width: 430px;
  margin: 26px 0 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.kit-link {
  display: inline-block;
  margin-top: 34px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.receipt-preview {
  position: relative;
  display: grid;
  min-height: clamp(420px, 48vw, 650px);
  align-content: space-between;
  padding: clamp(26px, 5vw, 58px);
  border: 2px solid var(--ink);
  box-shadow: 14px 14px 0 var(--ink);
  overflow: hidden;
  background:
    repeating-linear-gradient(0deg, transparent 0, transparent 35px, rgba(23, 21, 18, 0.08) 36px),
    var(--paper-light);
  transform: rotate(-0.8deg);
}

.receipt-preview::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 28px;
  width: 3px;
  background: var(--red);
  content: "";
}

.receipt-preview header,
.receipt-preview footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-left: 20px;
  font-family: var(--mono);
  font-size: clamp(0.62rem, 1vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.receipt-preview > p {
  max-width: 16ch;
  margin: 70px 0;
  padding-left: 20px;
  font-family: var(--display);
  font-size: clamp(3.1rem, 7vw, 7.4rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.receipt-stamp {
  position: absolute;
  right: 7%;
  bottom: 22%;
  padding: 9px 12px;
  font-size: clamp(0.7rem, 1.4vw, 1rem);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px 50px;
  padding: clamp(52px, 7vw, 90px) clamp(22px, 6vw, 96px);
  background: var(--ink);
  color: var(--paper-light);
}

.site-footer > div:first-child {
  display: grid;
  gap: 6px;
}

.site-footer strong {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 5.8rem);
  font-weight: 400;
  line-height: 1;
}

.site-footer > div:first-child span {
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 3.5rem);
}

.footer-meta {
  display: grid;
  align-content: start;
  gap: 14px;
  text-align: right;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
}

.site-footer > p {
  grid-column: 1 / -1;
  max-width: 850px;
  margin: 18px 0 0;
  color: #a9a197;
  font-family: var(--mono);
  font-size: 0.62rem;
  line-height: 1.6;
}

@media (max-width: 1080px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .brand small { display: none; }
  .site-nav { gap: 18px; }
  .ca-status { padding-inline: 14px; }
  .hero { grid-template-columns: minmax(340px, 0.85fr) 1.15fr; }
  .hero h1 { font-size: clamp(4.2rem, 8.5vw, 7rem); }
  .press-copy { width: 94%; }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .brand {
    padding-inline: 16px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
    min-height: 44px;
    padding: 0 15px;
    cursor: pointer;
  }

  .ca-status {
    min-height: 68px;
    padding-inline: 12px;
    font-size: 0.56rem;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-bottom: 2px solid var(--ink);
    background: var(--paper-light);
  }

  .site-nav.is-open { display: flex; }

  .site-nav a {
    padding: 15px 20px;
    border-top: 1px solid var(--line);
  }

  .site-nav a::after { display: none; }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 75svh;
    padding: 70px 22px 90px;
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(4.15rem, 16.5vw, 8rem);
  }

  .hero-visual {
    min-height: 64svh;
  }

  .hero-visual img { object-position: 100% center; }

  .status-strip {
    position: relative;
    grid-column: 1;
    font-size: 0.6rem;
  }

  .origin,
  .personnel,
  .protocol,
  .receipt {
    grid-template-columns: 1fr;
  }

  .section-lead h2,
  .personnel h2,
  .incidents h2,
  .protocol h2,
  .receipt h2 {
    font-size: clamp(3rem, 15vw, 5.8rem);
  }

  .source-receipt {
    transform: none;
  }

  .nice-answer {
    display: grid;
    gap: 6px;
  }

  .personnel-photo {
    order: 2;
    transform: none;
  }

  .personnel-copy { order: 1; }

  .incidents-heading {
    grid-template-columns: 1fr;
  }

  .incident-card-a,
  .incident-card-b,
  .incident-card-c {
    display: block;
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .incident-card-c figure {
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .incident-card figure {
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .press-test {
    min-height: 850px;
    align-items: start;
  }

  .press-copy {
    width: 100%;
    padding: 82px 22px 420px;
  }

  .press-test h2 {
    max-width: 100%;
    font-size: clamp(5.2rem, 22vw, 9.25rem);
    line-height: 0.96;
  }

  .press-status {
    width: auto;
    max-width: 100%;
    white-space: normal;
  }

  .press-ape {
    right: 50%;
    bottom: -19%;
    width: min(72vw, 430px);
    transform: translateX(50%);
  }

  .press-test.has-incident .press-ape {
    transform: translateX(47%) rotate(-1deg);
  }

  .protocol-visual { order: 2; }
  .protocol-copy { order: 1; }

  .receipt-preview {
    min-height: 520px;
    transform: none;
  }
}

@media (max-width: 520px) {
  .brand {
    min-width: 108px;
    gap: 5px;
    font-size: 1.3rem;
  }

  .ca-status {
    width: 74px;
    text-align: center;
  }

  .hero-copy {
    min-height: calc(100svh - 68px);
    justify-content: flex-start;
    padding-top: 52px;
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: clamp(4rem, 19vw, 6.4rem);
    line-height: 0.96;
  }

  .hero-deck { font-size: 1.05rem; }

  .hero-actions,
  .receipt-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button { width: 100%; }

  .hero-visual { min-height: 54svh; }

  .section-pad { padding-inline: 18px; }

  .source-receipt { box-shadow: 7px 7px 0 var(--ink); }

  .source-main { font-size: 1.7rem; }

  .file-grid div { grid-template-columns: 90px 1fr; }

  .incident-grid { display: grid; }

  .incidents h2 { font-size: clamp(2.65rem, 13.3vw, 4.3rem); }

  .incident-card { box-shadow: 6px 6px 0 var(--ink); }

  .incident-copy { min-height: 165px; }

  .incident-copy h3 { font-size: 2.65rem; }

  .danger-button {
    width: 170px;
    height: 170px;
  }

  .protocol-visual { box-shadow: 7px 7px 0 var(--ink); }

  .protocol li { grid-template-columns: 42px 1fr; }

  .receipt-preview {
    min-height: 460px;
    padding: 26px 20px 26px 34px;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .receipt-preview > p {
    margin-block: 52px;
    font-size: clamp(2.35rem, 12vw, 3.8rem);
  }

  .receipt-preview footer { display: grid; }

  .receipt-stamp { bottom: 20%; }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-meta { text-align: left; }
}

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