/* ============================================================
   GoGreen stylesheet
   Palette pulled from the logo: forest greens, terracotta and
   ochre, cream paper. Headings and display type are Archivo,
   long-form copy is Spectral.
   ============================================================ */

:root {
  --forest-deep: #101f16;
  --forest: #1c3826;
  --forest-mid: #2c4a34;
  --green: #4a7c40;
  --lime: #86b84a;
  --terracotta: #c2703d;
  --terracotta-dim: #a85f31;
  --ochre: #d9a441;
  --cream: #f6f2e6;
  --cream-dim: #ece5d2;
  --paper: #fbf9f2;
  --ink: #1b1a15;
  --ink-soft: #524d40;
  --ink-faint: #837c6a;
  --white: #fffdf7;
  --line: rgba(27, 26, 21, 0.12);
  --line-on-dark: rgba(255, 253, 247, 0.18);

  --font-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-head: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Spectral', Georgia, 'Times New Roman', serif;

  --container: 1180px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul[class], ol[class] { list-style: none; padding: 0; }
img, picture, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }

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

/* ---------- Base ---------- */
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.on-dark .eyebrow,
.hero .eyebrow,
.impact .eyebrow,
.final-cta .eyebrow,
.legal-hero .eyebrow {
  color: var(--ochre);
}

h1, h2, h3, h4 { font-family: var(--font-head); color: inherit; line-height: 1.12; letter-spacing: -0.01em; }

.display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.04;
  font-weight: 800;
}

p.lede {
  font-family: var(--font-body);
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.on-dark p.lede,
.hero p.lede,
.impact p.lede,
.final-cta p.lede,
.legal-hero p.lede {
  color: rgba(255, 253, 247, 0.82);
}

.serif { font-family: var(--font-body); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform 0.35s var(--ease), background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-solid {
  background: var(--lime);
  color: var(--forest-deep);
}
.btn-solid:hover { background: var(--ochre); }

.btn-outline {
  border-color: currentColor;
  color: var(--white);
}
.btn-outline:hover { background: rgba(255, 253, 247, 0.1); }

.btn-outline-dark {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline-dark:hover { background: var(--ink); color: var(--white); }

.btn-arrow { transition: transform 0.35s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav.is-scrolled {
  background: rgba(16, 31, 22, 0.92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--line-on-dark);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 40px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.nav-links a {
  color: rgba(255, 253, 247, 0.88);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--ochre);
  transition: right 0.3s var(--ease);
}
.nav-links a:hover::after { right: 0; }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 30px; height: 22px;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle span { top: 10px; }
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }
.nav-toggle span::before, .nav-toggle span::after { content: ''; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: hero-zoom 18s ease-out forwards;
}
@keyframes hero-zoom { to { transform: scale(1); } }
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,20,13,0.72) 0%, rgba(10,20,13,0.5) 30%, rgba(10,20,13,0.6) 62%, rgba(10,20,13,0.88) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 140px;
  padding-bottom: 80px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(2.7rem, 7vw, 5.4rem);
  max-width: 17ch;
  margin-inline: auto;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.4);
}
.hero h1 span { display: block; }
.hero h1 .l1 { color: var(--white); }
.hero h1 .l2 { color: var(--lime); }
.hero h1 .l3 { color: var(--white); }
.hero-sub {
  max-width: 50ch;
  margin: 26px auto 0;
  font-size: 1.15rem;
  color: rgba(255, 253, 247, 0.92);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.hero-foot {
  margin-top: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.03em;
  color: rgba(255, 253, 247, 0.72);
}

/* ---------- Section shells ---------- */
.section { padding: 128px 0; position: relative; }
.section-tight { padding: 88px 0; }
.on-dark { background: var(--forest-deep); color: var(--white); }
.on-cream { background: var(--cream); }
.on-paper { background: var(--paper); }

.section-head { max-width: 660px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin-top: 16px; }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1.is-visible { transition-delay: 0.1s; }
.reveal-delay-2.is-visible { transition-delay: 0.2s; }
.reveal-delay-3.is-visible { transition-delay: 0.3s; }

/* ---------- Problem section ---------- */
.problem {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.problem-media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; }
.problem-media img { width: 100%; height: 100%; object-fit: cover; }
.problem-media::after {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.problem-copy h2 { margin-bottom: 22px; }
.problem-copy p { margin-bottom: 18px; color: var(--ink-soft); font-size: 1.08rem; }
.problem-copy p:last-child { margin-bottom: 0; }
.pull-line {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--forest);
  border-left: 3px solid var(--terracotta);
  padding-left: 20px;
  margin: 26px 0;
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.step {
  background: var(--paper);
  padding: 44px 36px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--cream-dim);
  -webkit-text-stroke: 1.5px var(--terracotta);
  color: transparent;
  line-height: 1;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.3rem; margin-bottom: 12px; }
.step p { color: var(--ink-soft); font-size: 1rem; }

/* ---------- Marketplace preview ---------- */
.preview-shot {
  max-width: 980px;
  margin: 0 auto;
}
.preview-shot img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 40px 80px -30px rgba(16, 31, 22, 0.35);
  border: 1px solid var(--line);
}
.preview-shot figcaption {
  margin-top: 22px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--ink-soft);
}
.preview-shot figcaption strong {
  font-family: var(--font-head);
  color: var(--forest);
}

/* ---------- Two doors ---------- */
.doors { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.door {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
}
.door-media { position: absolute; inset: 0; }
.door-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.door:hover .door-media img { transform: scale(1.06); }
.door-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,31,22,0.15) 0%, rgba(16,31,22,0.55) 55%, rgba(16,31,22,0.94) 100%);
}
.door-body { position: relative; z-index: 1; padding: 40px; }
.door-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-deep);
  background: var(--lime);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.door h3 { font-size: 1.9rem; margin-bottom: 14px; max-width: 15ch; }
.door-list { display: flex; flex-direction: column; gap: 10px; margin: 22px 0 26px; }
.door-list li {
  display: flex;
  gap: 10px;
  font-size: 0.98rem;
  color: rgba(255,253,247,0.85);
  font-family: var(--font-head);
  font-weight: 400;
}
.door-list li::before {
  content: '';
  flex: none;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ochre);
  margin-top: 8px;
}

/* ---------- Impact / promises band ---------- */
.impact { position: relative; color: var(--white); }
.impact-media { position: absolute; inset: 0; z-index: 0; }
.impact-media img { width: 100%; height: 100%; object-fit: cover; }
.impact-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,31,22,0.88) 0%, rgba(28,56,38,0.82) 100%);
}
.impact-inner { position: relative; z-index: 1; }
.promises {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 54px;
}
.promise { border-top: 1px solid var(--line-on-dark); padding-top: 22px; }
.promise-mark { font-family: var(--font-display); font-size: 1.7rem; color: var(--ochre); margin-bottom: 14px; display: block; }
.promise h3 { font-size: 1.15rem; margin-bottom: 10px; font-family: var(--font-head); }
.promise p { color: rgba(255,253,247,0.72); font-size: 0.98rem; }

/* ---------- Survey ---------- */
.survey { position: relative; }
.survey-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.survey-intro { position: sticky; top: 140px; }
.survey-intro h2 { margin: 16px 0 20px; }
.survey-intro p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 16px; }
.survey-points { margin-top: 30px; display: flex; flex-direction: column; gap: 16px; }
.survey-point { display: flex; gap: 14px; align-items: flex-start; }
.survey-point-ico {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--terracotta);
  color: var(--terracotta);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
}
.survey-point p { margin: 0; font-family: var(--font-head); font-size: 0.95rem; color: var(--ink-soft); }

.survey-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 30px 60px -30px rgba(16, 31, 22, 0.25);
}
.survey-step { display: none; }
.survey-step.is-active { display: block; animation: step-in 0.5s var(--ease); }
@keyframes step-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.progress {
  display: flex;
  gap: 6px;
  margin-bottom: 34px;
}
.progress i {
  flex: 1;
  height: 3px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.progress i::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.progress i.done::after, .progress i.active::after { transform: scaleX(1); }

.field-label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 6px;
}
.field-hint { color: var(--ink-faint); font-size: 0.9rem; margin-bottom: 18px; }
.field-group { margin-bottom: 26px; }

.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.choice-grid.two-col { grid-template-columns: repeat(2, 1fr); }
.choice {
  position: relative;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 14px;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
  text-align: center;
}
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span { font-family: var(--font-head); font-size: 0.92rem; font-weight: 600; color: var(--ink); }
.choice:hover { border-color: var(--terracotta); }
.choice:has(input:checked) { border-color: var(--terracotta); background: rgba(194, 112, 61, 0.08); }
.choice:has(input:checked) span { color: var(--terracotta-dim); }

.chip-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  position: relative;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span { font-family: var(--font-head); font-size: 0.88rem; font-weight: 600; }
.chip:hover { border-color: var(--green); }
.chip:has(input:checked) { border-color: var(--green); background: rgba(74, 124, 64, 0.1); }
.chip:has(input:checked) span { color: var(--green); }

.text-input, .textarea, select.text-input {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--font-head);
  font-size: 0.98rem;
  background: var(--paper);
  transition: border-color 0.25s ease;
}
.text-input:focus, .textarea:focus, select.text-input:focus {
  outline: none;
  border-color: var(--terracotta);
}
.textarea { resize: vertical; min-height: 90px; }
select.text-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23524d40' stroke-width='1.6' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.hp-field { position: absolute; left: -9999px; opacity: 0; }

.survey-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 34px; gap: 14px; }
.step-back {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-faint);
  background: none;
  border: none;
  visibility: hidden;
}
.step-back.show { visibility: visible; }
.step-back:hover { color: var(--ink); }

.form-msg { margin-top: 18px; font-family: var(--font-head); font-size: 0.9rem; display: none; }
.form-msg.show { display: block; }
.form-msg.error { color: var(--terracotta-dim); }
.form-msg.success { color: var(--green); }

.survey-success {
  display: none;
  text-align: center;
  padding: 40px 10px;
}
.survey-success.show { display: block; animation: step-in 0.6s var(--ease); }
.survey-success .mark {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--lime);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-family: var(--font-display);
  font-size: 1.6rem;
}
.survey-success h3 { font-size: 1.5rem; margin-bottom: 10px; }
.survey-success p { color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
}
.faq-q .plus { flex: none; width: 22px; height: 22px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ''; position: absolute; background: var(--terracotta);
  transition: transform 0.3s var(--ease);
}
.faq-q .plus::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.faq-q .plus::after { left: 50%; top: 0; height: 100%; width: 2px; transform: translateX(-50%); }
.faq-item.open .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { padding-bottom: 26px; color: var(--ink-soft); max-width: 62ch; font-size: 1.02rem; }
.faq-item.open .faq-a { max-height: 240px; }

/* ---------- Final CTA ---------- */
.final-cta { position: relative; text-align: center; color: var(--white); }
.final-cta-media { position: absolute; inset: 0; }
.final-cta-media img { width: 100%; height: 100%; object-fit: cover; }
.final-cta-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,31,22,0.85), rgba(16,31,22,0.92));
}
.final-cta-inner { position: relative; z-index: 1; max-width: 700px; margin-inline: auto; }
.final-cta h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 18px 0 24px; }
.final-cta .btn { margin-top: 8px; }

/* ---------- Footer ---------- */
.footer { background: var(--forest-deep); color: var(--white); padding: 80px 0 30px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-on-dark);
}
.footer-brand img { height: 46px; margin-bottom: 18px; }
.footer-brand p { color: rgba(255,253,247,0.65); max-width: 32ch; font-size: 0.96rem; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: rgba(255,253,247,0.8);
}
.footer-col a:hover { color: var(--lime); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: rgba(255,253,247,0.5);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Legal pages ---------- */
.legal-hero {
  position: relative;
  padding: 190px 0 70px;
  color: var(--white);
  overflow: hidden;
}
.legal-hero-media { position: absolute; inset: 0; z-index: 0; }
.legal-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.legal-hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,20,13,0.45) 0%, rgba(10,20,13,0.55) 60%, rgba(10,20,13,0.78) 100%);
}
.legal-hero .container { position: relative; z-index: 1; }
.legal-hero h1 { font-size: clamp(2.4rem, 6vw, 3.8rem); margin-top: 14px; color: var(--white); text-shadow: 0 3px 20px rgba(0,0,0,0.4); }
.legal-hero p { color: rgba(255,253,247,0.75); margin-top: 14px; font-family: var(--font-head); font-size: 0.92rem; }
.legal-body { padding: 72px 0 100px; max-width: 760px; margin-inline: auto; }
.legal-body h2 { font-size: 1.4rem; margin: 44px 0 16px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: var(--ink-soft); font-size: 1.02rem; margin-bottom: 14px; }
.legal-body ul { padding-left: 22px; list-style: disc; margin-bottom: 14px; }
.legal-body a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }
.legal-body strong { color: var(--ink); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .problem { grid-template-columns: 1fr; gap: 36px; }
  .problem-media { aspect-ratio: 16/10; order: -1; }
  .steps { grid-template-columns: 1fr; }
  .doors { grid-template-columns: 1fr; }
  .promises { grid-template-columns: 1fr; gap: 28px; }
  .survey-grid { grid-template-columns: 1fr; gap: 40px; }
  .survey-intro { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 84px 0; }
  .hero-inner { padding-top: 120px; padding-bottom: 60px; }
  .choice-grid { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .scroll-cue { display: none; }
  .hero-foot { flex-wrap: wrap; }
}
