:root {
  --ink: #1b1b1a;
  --muted: #62615c;
  --faint: #8b8982;
  --line: #d8d3c9;
  --paper: #f4f1ea;
  --white: #fffdf8;
  --warm: #e8e1d6;
  --accent: #7a4d42;
  --accent-dark: #5d3931;
  --blue: #486675;
  --max: 1240px;
  --reading: 820px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-feature-settings: "liga" 1, "kern" 1;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.wrap { width: min(var(--max), calc(100% - 80px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(244, 241, 234, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.header-inner {
  width: min(var(--max), calc(100% - 80px));
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 0 auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  object-fit: cover;
  object-position: center;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--line);
  font: 600 11px/1 'Roboto Mono', monospace;
  letter-spacing: -.08em;
}
.brand-copy { display: grid; gap: 2px; }
.brand-copy strong { font-size: 14px; font-weight: 700; letter-spacing: -.025em; }
.brand-copy small {
  color: var(--faint);
  font: 500 9px/1.2 'Roboto Mono', monospace;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.site-header nav { display: flex; align-items: center; gap: 27px; }
.site-header nav a {
  color: var(--muted);
  font: 500 11px/1.2 'Roboto Mono', monospace;
  letter-spacing: .035em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-header nav a:hover { color: var(--accent); }
.site-header nav .join-link {
  padding: 10px 12px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
}
.site-header nav .join-link:hover { color: var(--white); background: var(--accent-dark); border-color: var(--accent-dark); }
.site-header nav a:focus-visible,
a:focus-visible,
.button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.text-button:focus-visible {
  outline: 3px solid rgba(183, 68, 55, .28);
  outline-offset: 3px;
}

.hero { padding: clamp(90px, 12vw, 158px) 0 clamp(88px, 10vw, 128px); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.hero-main { min-width: 0; }
.eyebrow,
.mono-label,
.brief-heading,
.form-topline,
.card-meta > span {
  font: 600 10px/1.35 'Roboto Mono', monospace;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
}
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
}
h1,
h2,
h3 {
  font-family: 'Newsreader', Georgia, 'Times New Roman', serif;
  font-optical-sizing: auto;
}
h1 {
  max-width: 980px;
  margin: 24px 0 29px;
  font-size: clamp(66px, 9.2vw, 132px);
  font-weight: 600;
  line-height: .86;
  letter-spacing: -.065em;
}
h1 span { position: relative; white-space: nowrap; z-index: 0; }
h1 span::after {
  content: '';
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: .015em;
  left: 0;
  height: .13em;
  background: var(--accent);
  opacity: .9;
}
.hero-copy {
  max-width: 770px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.52;
  letter-spacing: -.018em;
}
.hero-actions { display: flex; gap: 11px; margin-top: 35px; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 2px;
  font: 600 13px/1 'DM Sans', sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: background .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}
.button:hover { transform: translateY(-1px); }
.primary { color: var(--white); background: var(--accent); }
.primary:hover { background: var(--accent-dark); }
.secondary { color: var(--ink); background: transparent; border-color: var(--line); }
.secondary:hover { color: var(--accent); border-color: var(--accent); background: rgba(255, 253, 248, .55); }
.fine-print {
  max-width: 760px;
  margin: 27px 0 0;
  padding-top: 15px;
  color: var(--faint);
  border-top: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.55;
}
.hero-brief {
  align-self: end;
  padding: 20px 0 19px;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.brief-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--accent);
}
.brief-rule { height: 1px; margin: 16px 0 5px; background: var(--line); }
.hero-brief dl { margin: 0; }
.hero-brief dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.hero-brief dt { color: var(--faint); font-size: 12px; }
.hero-brief dd { margin: 0; font-size: 12px; font-weight: 600; text-align: right; }
.brief-status { display: inline-flex; align-items: center; gap: 7px; }
.brief-status .status-dot { width: 6px; height: 6px; }
.hero-brief > p { margin: 19px 0 0; color: var(--muted); font: 500 15px/1.38 'Newsreader', Georgia, serif; }
.hero-art {
  width: min(100%, 320px);
  margin: 0;
  background: var(--warm);
  border: 1px solid var(--line);
  box-shadow: 12px 12px 0 rgba(27, 27, 26, .08);
}
.hero-art img { width: 100%; aspect-ratio: 1; display: block; object-fit: cover; }
.hero-art figcaption { padding: 12px 14px 13px; border-top: 1px solid var(--line); }
.hero-art figcaption a {
  color: var(--ink);
  font: 600 10px/1.35 'Roboto Mono', monospace;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-art figcaption a:hover { color: var(--accent-dark); }

.signal-strip {
  width: min(var(--max), calc(100% - 80px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.signal-strip div {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 19px 22px;
  font-size: 13px;
  font-weight: 600;
}
.signal-strip div + div { border-left: 1px solid var(--line); }
.signal-strip span { color: var(--accent); font: 600 10px 'Roboto Mono', monospace; }

.section { padding: clamp(88px, 10vw, 132px) 0; }
.evidence-section { background: var(--white); border-bottom: 1px solid var(--line); }
.section-heading {
  display: grid;
  grid-template-columns: minmax(130px, .28fr) minmax(0, .72fr);
  gap: clamp(34px, 7vw, 100px);
  max-width: 1080px;
  margin-bottom: 62px;
}
.section-heading > .mono-label { padding-top: 10px; }
.mono-label { margin: 0 0 14px; color: var(--accent); }
.heading-copy { min-width: 0; }
h2 {
  margin: 0;
  font-size: clamp(44px, 5.8vw, 74px);
  font-weight: 600;
  line-height: .94;
  letter-spacing: -.058em;
}
.heading-copy > p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.section-heading.compact { margin-bottom: 43px; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}
.card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 28px 31px;
  background: var(--white);
}
.card + .card { border-left: 1px solid var(--line); }
.card-meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.card-meta > span { color: var(--faint); font-size: 9px; }
.card-number {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 50%;
  font: 600 12px 'Roboto Mono', monospace;
}
.card h3 { margin: 0 0 11px; font-size: 30px; font-weight: 600; line-height: .98; letter-spacing: -.035em; }
.card p { max-width: 310px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.report-section { background: var(--warm); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.report-layout {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 8vw, 112px);
  align-items: start;
}
.report-intro { position: sticky; top: 103px; }
.report-intro h2 { max-width: 450px; font-size: clamp(49px, 5.5vw, 73px); }
.report-intro > p:not(.mono-label) { max-width: 430px; margin: 25px 0 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.report-checklist { margin-top: 35px; border-top: 1px solid var(--line); }
.report-checklist > div {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.report-checklist span { color: var(--accent); font: 600 10px 'Roboto Mono', monospace; }
.report-checklist strong { font-size: 13px; font-weight: 700; }
.report-checklist small { grid-column: 2; margin-top: -7px; color: var(--muted); font-size: 12px; }
.privacy-note {
  max-width: 430px;
  margin-top: 31px;
  padding: 18px 18px 17px;
  background: var(--white);
  border-left: 3px solid var(--accent);
}
.privacy-note strong { font-size: 13px; }
.privacy-note p { margin: 8px 0 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.privacy-note a { text-underline-offset: 3px; }
.form-shell {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--ink);
  box-shadow: 12px 14px 0 rgba(27, 27, 26, .07);
}
.form-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 30px;
  color: var(--accent);
  border-bottom: 1px solid var(--line);
  font-size: 9px;
}
.form-topline span:last-child { color: var(--faint); }
.incident-form { padding: 29px 30px 31px; }
.incident-form label,
legend {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}
.incident-form > label,
.incident-form > .form-row,
.incident-form > fieldset { margin-bottom: 22px; }
.form-subsection {
  display: grid;
  gap: 16px;
  padding: 20px 0 0;
}
.form-subsection > label,
.form-subsection > .form-row { margin: 0; }
.field-note { margin: -3px 0 0; color: var(--faint); font-size: 11px; line-height: 1.55; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
input,
textarea,
select {
  width: 100%;
  padding: 13px 13px;
  color: var(--ink);
  background: #fcfaf5;
  border: 1px solid #bdb8ae;
  border-radius: 0;
  font: 400 14px/1.45 'DM Sans', sans-serif;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
input:hover,
textarea:hover,
select:hover { border-color: var(--ink); }
input:focus,
textarea:focus,
select:focus {
  background: var(--white);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(183, 68, 55, .12);
  outline: 0;
}
textarea { min-height: 84px; resize: vertical; }
fieldset { margin: 0; padding: 18px 0 0; border: 0; border-top: 1px solid var(--line); }
legend { margin-bottom: 12px; }
.check {
  grid-template-columns: 18px 1fr;
  gap: 9px !important;
  align-items: start;
  margin: 9px 0;
  color: var(--muted) !important;
  font-weight: 400 !important;
  line-height: 1.45;
}
.check input { width: 16px; height: 16px; margin: 2px 0 0; padding: 0; border: 0; accent-color: var(--accent); box-shadow: none; }
.submit { width: 100%; }
.form-status { min-height: 22px; margin: 13px 0 0; color: var(--accent); font-size: 12px; line-height: 1.4; text-align: center; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.security-line { margin: 4px 0 15px; color: var(--faint); font: 500 10px/1.55 'Roboto Mono', monospace; }
.submit:disabled { cursor: not-allowed; opacity: .5; transform: none; }
.text-button { display: block; margin: 14px auto 0; padding: 4px; border: 0; background: transparent; color: var(--muted); font: 500 13px 'DM Sans', sans-serif; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }

.records-section { padding-top: clamp(80px, 9vw, 112px); padding-bottom: clamp(80px, 9vw, 112px); }
.records-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, .75fr);
  gap: clamp(40px, 8vw, 100px);
  padding: 45px 48px 47px;
  color: var(--white);
  background: var(--ink);
  border-top: 4px solid var(--accent);
}
.records-panel .mono-label { color: #c9aaa1; }
.records-panel h2 { max-width: 680px; font-size: clamp(42px, 4.7vw, 65px); }
.records-panel p:last-child { max-width: 690px; margin: 24px 0 0; color: #c9c5bd; font-size: 15px; line-height: 1.7; }
.records-status {
  align-self: stretch;
  padding: 24px;
  background: #292927;
  border: 1px solid #4b4945;
}
.badge {
  display: inline-flex;
  padding: 7px 10px;
  color: #d9c2bc;
  background: rgba(122, 77, 66, .24);
  font: 600 9px 'Roboto Mono', monospace;
  letter-spacing: .06em;
  text-transform: uppercase;
}
dl { margin: 27px 0 0; }
dl div { display: flex; justify-content: space-between; gap: 20px; padding: 15px 0; border-bottom: 1px solid #4b4945; }
.records-status dt { color: #9d9991; font-size: 12px; }
.records-status dd { margin: 0; color: var(--white); font-size: 12px; text-align: right; }

.reforms-section { background: var(--white); border-top: 1px solid var(--line); }
.reforms { margin: 0; padding: 0; list-style: none; border-top: 2px solid var(--ink); }
.reforms li { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding: 27px 0; border-bottom: 1px solid var(--line); }
.reforms li > span { color: var(--accent); font: 600 11px 'Roboto Mono', monospace; }
.reforms strong { font: 600 24px/1 'Newsreader', Georgia, serif; letter-spacing: -.02em; }
.reforms p { max-width: 720px; margin: 7px 0 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

.source-section { background: var(--warm); border-top: 1px solid var(--line); }
.sources { min-height: 144px; display: flex; align-items: center; gap: 32px; }
.sources h2 { margin-right: auto; font-size: 25px; letter-spacing: -.035em; white-space: nowrap; }
.source-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 27px; }
.source-links a { color: var(--muted); font: 500 11px/1.45 'Roboto Mono', monospace; text-underline-offset: 4px; }
.source-links a:hover { color: var(--accent); }

footer { color: #c8c4bc; background: var(--ink); }
.footer-inner { min-height: 198px; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.footer-inner p { max-width: 500px; margin: 0; font-size: 12px; line-height: 1.65; }
.footer-inner strong { color: var(--white); font: 600 20px/1 'Newsreader', Georgia, serif; }
.footer-inner a { color: var(--white); text-underline-offset: 4px; }

.legal-page { max-width: 1060px; padding-top: clamp(88px, 11vw, 138px); padding-bottom: clamp(90px, 11vw, 140px); }
.legal-page h1 { max-width: 800px; margin: 25px 0 0; font-size: clamp(58px, 8vw, 100px); line-height: .88; }
.legal-lede { max-width: 720px; margin: 28px 0 78px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.legal-page section {
  display: grid;
  grid-template-columns: minmax(190px, .34fr) minmax(0, .66fr);
  gap: 42px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.legal-page section h2 { margin: 0; font-size: 31px; line-height: .98; }
.legal-page section p { max-width: 650px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.75; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-brief { width: min(100%, 430px); justify-self: end; }
  .hero-art { width: min(100%, 320px); justify-self: end; }
  .section-heading { grid-template-columns: 130px minmax(0, 1fr); }
  .report-layout { grid-template-columns: 1fr; gap: 52px; }
  .report-intro { position: static; }
  .report-intro > p:not(.mono-label),
  .privacy-note { max-width: 680px; }
  .report-checklist { max-width: 680px; display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
  .report-checklist > div { display: block; padding: 13px 16px 13px 0; border-bottom: 0; }
  .report-checklist > div + div { padding-left: 16px; border-left: 1px solid var(--line); }
  .report-checklist small { display: block; margin-top: 5px; }
  .form-shell { max-width: 820px; }
  .records-panel { grid-template-columns: 1fr; gap: 38px; }
  .records-status { max-width: 520px; }
  .sources { align-items: flex-start; flex-direction: column; justify-content: center; gap: 14px; padding-top: 30px; padding-bottom: 30px; }
  .sources h2 { margin-right: 0; }
  .source-links { justify-content: flex-start; }
}

@media (max-width: 700px) {
  .wrap,
  .header-inner,
  .signal-strip { width: min(calc(100% - 32px), var(--max)); }
  .site-header { position: static; }
  .header-inner { min-height: 0; align-items: flex-start; flex-wrap: wrap; gap: 14px 20px; padding: 15px 0 13px; }
  .brand-copy small { display: block; }
  .site-header nav { width: 100%; flex-wrap: wrap; gap: 8px 18px; overflow: visible; padding-bottom: 2px; }
  .site-header nav a { font-size: 9px; }
  .hero { padding: 72px 0 76px; }
  .hero-grid { gap: 48px; }
  .eyebrow { align-items: flex-start; font-size: 9px; line-height: 1.5; }
  .status-dot { margin-top: 3px; }
  h1 { margin-top: 22px; font-size: clamp(58px, 16vw, 92px); line-height: .87; overflow-wrap: anywhere; }
  h1 span { white-space: normal; }
  .hero-copy { font-size: 18px; }
  .hero-actions { flex-direction: column; margin-top: 29px; }
  .button { width: 100%; }
  .fine-print { font-size: 11px; }
  .hero-brief { width: 100%; }
  .hero-art { width: 100%; max-width: 290px; justify-self: center; box-shadow: 8px 8px 0 rgba(27, 27, 26, .08); }
  .signal-strip { grid-template-columns: 1fr 1fr; }
  .signal-strip div { padding: 16px 12px; font-size: 11px; }
  .signal-strip div:nth-child(3) { border-top: 1px solid var(--line); border-left: 0; }
  .signal-strip div:nth-child(4) { border-top: 1px solid var(--line); }
  .section { padding: 78px 0; }
  .section-heading { display: block; margin-bottom: 43px; }
  .section-heading > .mono-label { padding-top: 0; }
  h2 { font-size: clamp(43px, 12vw, 64px); }
  .heading-copy > p { margin-top: 18px; font-size: 15px; }
  .card-grid { display: block; }
  .card { min-height: 0; gap: 62px; padding: 24px 0 29px; }
  .card + .card { border-top: 1px solid var(--line); border-left: 0; }
  .card h3 { font-size: 28px; }
  .card p { max-width: none; }
  .report-layout { gap: 42px; }
  .report-intro h2 { font-size: clamp(48px, 13vw, 68px); }
  .report-checklist { display: block; }
  .report-checklist > div,
  .report-checklist > div + div { padding: 12px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .report-checklist > div:last-child { border-bottom: 0; }
  .privacy-note { margin-top: 25px; }
  .form-shell { box-shadow: 8px 9px 0 rgba(27, 27, 26, .07); }
  .form-topline { padding: 14px 18px; font-size: 8px; }
  .incident-form { padding: 23px 18px 25px; }
  .form-row { grid-template-columns: 1fr; gap: 22px; }
  .records-section { padding-top: 70px; padding-bottom: 70px; }
  .records-panel { padding: 30px 22px 32px; }
  .records-panel h2 { font-size: clamp(43px, 12vw, 62px); }
  .records-panel p:last-child { font-size: 14px; }
  .records-status { padding: 20px 17px; }
  .records-status dl div { align-items: flex-start; flex-direction: column; gap: 5px; }
  .records-status dd { text-align: left; }
  .reforms li { grid-template-columns: 41px 1fr; gap: 12px; padding: 23px 0; }
  .reforms strong { font-size: 22px; }
  .sources { padding-top: 28px; padding-bottom: 28px; }
  .sources h2 { font-size: 23px; }
  .source-links { display: grid; gap: 10px; }
  .source-links a { font-size: 10px; }
  .footer-inner { min-height: 0; align-items: flex-start; flex-direction: column; gap: 24px; padding: 38px 0 42px; }
  .legal-page { padding-top: 74px; padding-bottom: 80px; }
  .legal-page h1 { font-size: clamp(57px, 15vw, 83px); }
  .legal-lede { margin: 23px 0 57px; font-size: 15px; }
  .legal-page section { display: block; padding: 24px 0; }
  .legal-page section h2 { margin-bottom: 13px; font-size: 28px; }
}

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