@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Bold.ttf") format("truetype");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Anton";
  src: url("../fonts/Anton-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #171512;
  --ink-2: #26231a;
  --paper: #f8f6f1;
  --paper-2: #efece4;
  --cream: #fff8ec;
  --red: #d5282f;
  --red-bright: #e8434a;
  --muted: #6b6453;
  --soft: #8a8474;
  --line: rgba(23, 21, 18, 0.18);
  --line-dark: rgba(255, 248, 236, 0.2);
  --max: 1160px;
  --body: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Anton", Impact, "Arial Narrow", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.wrap { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--cream);
  color: var(--ink);
  font-weight: 800;
}
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--red-bright); outline-offset: 3px; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-top: 4px solid var(--red);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(5, 5, 5, 0.94);
  color: var(--cream);
  backdrop-filter: blur(16px);
}
.nav { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand img { display: block; width: auto; height: 29px; }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.back-link { color: #cfcfcf; font-size: 13px; font-weight: 800; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
.back-link:hover { color: var(--cream); }
.lang-switch { display: flex; gap: 4px; padding: 3px; border: 1px solid var(--line-dark); border-radius: 8px; }
.lang-switch button {
  min-width: 36px;
  min-height: 34px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: #cfcfcf;
  font-size: 12px;
  font-weight: 800;
}
.lang-switch button[aria-pressed="true"] { background: var(--cream); color: var(--ink); }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 112px) 0 72px;
  border-bottom: 2px solid var(--ink);
  background: #050505;
  color: var(--cream);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: url("../images/tex-newsprint.webp");
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero::after {
  content: "FIELDWORK";
  position: absolute;
  right: -30px;
  bottom: -32px;
  color: rgba(255, 248, 236, .045);
  font: 400 clamp(90px, 19vw, 260px)/.8 var(--display);
  letter-spacing: .01em;
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: clamp(36px, 7vw, 90px); align-items: end; }
.eyebrow {
  display: inline-flex;
  padding: 6px 11px 5px;
  transform: rotate(-1deg);
  border: 2px solid var(--red-bright);
  color: var(--red-bright);
  font: 400 13px/1 var(--display);
  letter-spacing: .13em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 880px;
  margin: 22px 0 24px;
  font: 400 clamp(54px, 9vw, 116px)/.88 var(--display);
  letter-spacing: .005em;
  text-transform: uppercase;
}
h1 span { color: var(--red-bright); }
.lede { max-width: 720px; margin-bottom: 0; color: #efe4d1; font-size: clamp(18px, 2.3vw, 24px); line-height: 1.45; }
.status-card { border: 1px solid var(--line-dark); background: #101010; padding: 24px; }
.status-label { display: block; color: var(--red-bright); font: 400 15px/1 var(--display); letter-spacing: .12em; text-transform: uppercase; }
.status-card strong { display: block; margin: 12px 0 8px; font-size: 22px; }
.status-card p { margin-bottom: 20px; color: #cfcfcf; font-size: 14px; }
.status-card a { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 0 20px; border: 2px solid var(--cream); background: var(--red); color: white; font: 400 16px/1 var(--display); letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }

.method { padding: 72px 0; border-bottom: 2px solid var(--ink); }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-kicker { color: var(--red); font-size: 12px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.section-head h2 { margin: 10px 0 14px; font: 400 clamp(40px, 6.2vw, 72px)/.92 var(--display); text-transform: uppercase; }
.section-head p { margin-bottom: 0; color: var(--muted); font-size: 18px; }
.method-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 2px solid var(--ink); background: var(--ink); gap: 2px; }
.method-card { min-height: 220px; padding: 24px; background: var(--paper); }
.method-card b { display: block; margin-bottom: 40px; color: var(--red); font: 400 20px/1 var(--display); }
.method-card h3 { margin-bottom: 10px; font-size: 18px; }
.method-card p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.survey-section { padding: 72px 0 88px; background: var(--ink); color: var(--cream); }
.survey-layout { display: grid; grid-template-columns: minmax(230px, .38fr) minmax(0, .62fr); gap: clamp(40px, 7vw, 90px); align-items: start; }
.survey-intro { position: sticky; top: 106px; }
.survey-intro h2 { margin: 10px 0 18px; font: 400 clamp(40px, 5.5vw, 70px)/.92 var(--display); text-transform: uppercase; }
.survey-intro p { color: #cfcfcf; }
.survey-facts { margin: 26px 0 0; padding: 0; list-style: none; }
.survey-facts li { padding: 12px 0; border-top: 1px solid var(--line-dark); color: #efe4d1; font-size: 14px; }
.survey-facts strong { color: var(--red-bright); }

.survey-form { display: flex; flex-direction: column; gap: 22px; }
.form-block { margin: 0; padding: 26px; border: 1px solid var(--line-dark); background: #101010; }
.form-block legend { padding: 0 8px; color: var(--red-bright); font: 400 14px/1 var(--display); letter-spacing: .12em; text-transform: uppercase; }
.question { margin-top: 22px; }
.question:first-of-type { margin-top: 8px; }
.question > label, .question-title { display: block; margin-bottom: 9px; color: var(--cream); font-weight: 800; }
.required { color: var(--red-bright); }
.hint { display: block; margin: -3px 0 10px; color: #9f9f9f; font-size: 13px; }
.survey-form select, .survey-form textarea, .survey-form input[type="email"] {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 248, 236, .26);
  border-radius: 10px;
  background: #181818;
  color: var(--cream);
  padding: 13px 14px;
}
.survey-form textarea { min-height: 132px; resize: vertical; }
.survey-form option { background: #181818; color: var(--cream); }
.checks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 48px;
  padding: 12px;
  border: 1px solid rgba(255, 248, 236, .2);
  border-radius: 8px;
  background: #181818;
  color: #efe4d1;
  font-size: 14px;
}
.check input { width: 18px; height: 18px; flex: 0 0 auto; margin: 1px 0 0; accent-color: var(--red); }
.check-wide { grid-column: 1 / -1; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-actions { padding: 26px; border: 1px solid var(--line-dark); background: #101010; }
.submit-button { width: 100%; min-height: 56px; border: 2px solid var(--cream); border-radius: 5px; background: var(--red); color: white; font: 400 20px/1 var(--display); letter-spacing: .07em; text-transform: uppercase; }
.submit-button:hover { background: #be232a; }
.submit-button:disabled { cursor: wait; opacity: .65; }
.form-status { min-height: 24px; margin: 14px 0 0; color: #cfcfcf; font-size: 14px; }
.form-status.error { color: #ff8d9e; }
.form-status.success { color: var(--cream); font-weight: 800; }
.privacy-note { margin: 14px 0 0; color: #9f9f9f; font-size: 12px; }
.privacy-note a { color: var(--cream); }
.followup-fields[hidden], .success-panel[hidden] { display: none; }
.success-panel { padding: 34px; border: 2px solid var(--red-bright); background: var(--cream); color: var(--ink); }
.success-panel h3 { margin-bottom: 10px; color: var(--red); font: 400 38px/1 var(--display); text-transform: uppercase; }
.success-panel p { margin-bottom: 0; }
.success-cta { display: inline-flex; min-height: 52px; margin-top: 24px; padding: 0 24px; align-items: center; justify-content: center; border: 2px solid var(--ink); border-radius: 5px; background: var(--red); color: white; font: 400 19px/1 var(--display); letter-spacing: .07em; text-decoration: none; text-transform: uppercase; }
.success-cta:hover { background: #be232a; }

.report-shell { padding: 76px 0; background: var(--paper-2); }
.empty-report { display: grid; grid-template-columns: .72fr 1.28fr; border: 2px solid var(--ink); }
.empty-stamp { display: grid; min-height: 300px; place-items: center; background: var(--red); color: white; font: 400 clamp(54px, 8vw, 100px)/.82 var(--display); text-align: center; text-transform: uppercase; }
.empty-copy { padding: clamp(30px, 6vw, 64px); background: var(--paper); }
.empty-copy h2 { margin: 8px 0 16px; font: 400 clamp(38px, 5vw, 64px)/.93 var(--display); text-transform: uppercase; }
.empty-copy p { max-width: 620px; color: var(--muted); }
.publish-list { margin: 24px 0 0; padding-left: 20px; }
.publish-list li { margin: 8px 0; }

.site-footer { padding: 30px 0; border-top: 2px solid var(--ink); background: var(--paper); }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.site-footer img { width: auto; height: 26px; }
.site-footer p { margin: 0; color: var(--muted); font-size: 13px; }
.footer-links { display: flex; gap: 16px; }
.footer-links a { color: var(--muted); font-size: 13px; }

@media (max-width: 900px) {
  .hero-grid, .survey-layout, .empty-report { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .survey-intro { position: static; }
  .empty-stamp { min-height: 210px; }
}

@media (max-width: 620px) {
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .back-link { display: none; }
  .method-grid, .checks { grid-template-columns: 1fr; }
  .check-wide { grid-column: auto; }
  .method-card { min-height: auto; }
  .method-card b { margin-bottom: 20px; }
  .form-block, .form-actions { padding: 20px 16px; }
}

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