/* ==========================================================================
   PAUSE SWANBANK — STYLES
   Brand: Josh Addison "Fighting for Ipswich"
   ========================================================================== */

@import url('../fonts/fonts.css');

/* ---------- Design tokens ---------- */
:root {
  --coral:    #E17953;
  --coral-dk: #C25E3B;   /* darker coral for text-on-cream links (AA) */
  --charcoal: #17130F;
  --cream:    #F4ECDD;
  --navy:     #0E2A47;
  --white:    #FFFFFF;

  --ink:      #17130F;               /* default body text on light */
  --ink-soft: #4a423a;               /* muted body text on light (AA on cream) */
  --line:     rgba(23, 19, 15, 0.14);

  --font-head: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Lato', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-quote:'Lora', Georgia, 'Times New Roman', serif;

  --wrap: 1120px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --radius: 14px;
  --shadow: 0 10px 30px rgba(14, 42, 71, 0.10);
  --shadow-lg: 0 24px 60px rgba(14, 42, 71, 0.18);
  --header-h: 68px;
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.97rem + 0.25vw, 1.125rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--coral-dk); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--charcoal); }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--charcoal);
}
p { margin: 0 0 1rem; }
ul { margin: 0 0 1rem; padding-left: 1.2rem; }

/* ---------- Accessibility helpers ---------- */
:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 2px;
  border-radius: 4px;
}
.skip-link {
  position: absolute;
  left: 0; top: -100%;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  z-index: 200;
  border-radius: 0 0 8px 0;
  font-weight: 700;
}
.skip-link:focus { top: 0; color: var(--white); }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--coral-dk);
  margin: 0 0 0.9rem;
}
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head h2 { font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3rem); font-weight: 700; }
.lead { font-size: 1.15em; color: var(--ink-soft); }

/* ---------- Theming for dark sections ---------- */
.band--charcoal { background: var(--charcoal); color: #f3ede4; }
.band--navy     { background: var(--navy);     color: #e8eef5; }
.band--coral    { background: var(--coral);    color: #2a1409; }
.band--cream    { background: var(--cream); }
.band--white    { background: var(--white); }
.band--charcoal h1, .band--charcoal h2, .band--charcoal h3, .band--charcoal h4,
.band--navy h1, .band--navy h2, .band--navy h3, .band--navy h4 { color: #fff; }
.band--charcoal .eyebrow, .band--navy .eyebrow { color: #f0a683; }
.band--charcoal a, .band--navy a { color: #f0a683; }
.band--charcoal a:hover, .band--navy a:hover { color: #fff; }
.band--charcoal .lead, .band--navy .lead { color: rgba(255,255,255,0.85); }
.band--coral h1, .band--coral h2, .band--coral h3 { color: #2a1409; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--coral);
  --btn-fg: #2a1409;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 6px 18px rgba(225, 121, 83, 0.35);
}
.btn:hover { transform: translateY(-2px); color: #2a1409; background: #ee8a66; box-shadow: 0 10px 26px rgba(225,121,83,0.45); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 1.1rem 1.9rem; font-size: 1.1rem; }
.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: rgba(23,19,15,0.25);
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(23,19,15,0.06); color: var(--charcoal); transform: translateY(-2px); }
.band--charcoal .btn--ghost, .band--navy .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
.band--charcoal .btn--ghost:hover, .band--navy .btn--ghost:hover { background: rgba(255,255,255,0.1); color:#fff; }
/* Keep solid buttons dark-on-coral even inside dark bands (link-recolour rules
   must not bleed onto buttons). a.btn beats the .band--x a recolour. */
a.btn, a.btn:hover { color: var(--btn-fg); }
.band--charcoal a.btn:not(.btn--ghost), .band--navy a.btn:not(.btn--ghost) { color: var(--btn-fg); }
.band--charcoal a.btn--ghost, .band--navy a.btn--ghost { color: #fff; }
.band--charcoal a.btn--ghost:hover, .band--navy a.btn--ghost:hover { color: #fff; }
/* On the coral emphasis band a coral button would vanish: use charcoal. */
.band--coral .btn:not(.btn--ghost) { background: var(--charcoal); color: #fff; box-shadow: 0 8px 20px rgba(23,19,15,0.25); }
.band--coral a.btn:not(.btn--ghost), .band--coral a.btn:not(.btn--ghost):hover { color: #fff; }
.band--coral .btn:not(.btn--ghost):hover { background: #2a221b; }
.btn--block { width: 100%; justify-content: center; }
.btn__icon { width: 1.15em; height: 1.15em; flex: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 236, 221, 0.9);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
}
.brand { display: flex; align-items: center; }
.brand img { height: 40px; width: auto; }
.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav__links { display: flex; align-items: center; gap: 1.4rem; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  text-decoration: none;
}
.nav__links a:hover { color: var(--coral-dk); }
.nav .btn { padding: 0.7rem 1.15rem; box-shadow: 0 4px 12px rgba(225,121,83,0.3); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid rgba(23,19,15,0.2);
  border-radius: 10px;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { width: 24px; height: 24px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--charcoal); color: #f3ede4; }
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
}
.hero__campaign {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: clamp(0.85rem, 0.8rem + 0.3vw, 1rem);
  color: var(--coral);
  margin: 0 0 1.1rem;
}
.hero__campaign::before {
  content: "";
  width: 2rem;
  height: 3px;
  background: var(--coral);
  border-radius: 2px;
}
.hero h1 {
  font-size: clamp(2.6rem, 1.6rem + 4.6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1rem;
}
.hero h1 .accent { color: var(--coral); }
.hero__sub { font-size: clamp(1.1rem, 1rem + 0.6vw, 1.4rem); color: rgba(255,255,255,0.86); max-width: 34rem; margin-bottom: 1.75rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero__link { color: #f0a683; font-family: var(--font-head); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; }
.hero__link:hover { color: #fff; }
.hero__note { margin-top: 1.5rem; font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.hero__media {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(150deg, var(--navy), #16456f);
  aspect-ratio: 16 / 9;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.08);
}
.hero__media .placeholder { color: rgba(255,255,255,0.6); font-family: var(--font-head); font-weight: 600; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 60%; height: 80%;
  background: radial-gradient(circle, rgba(225,121,83,0.25), transparent 70%);
  pointer-events: none;
}

/* ---------- Hero email tool card ---------- */
.hero__tool { min-width: 0; }
.tool-card {
  background: var(--white);
  color: var(--ink);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: clamp(1.4rem, 2.5vw, 2.1rem);
}
.tool-card__eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: #B0431A; /* darker coral: AA on white */
  margin: 0 0 0.5rem;
}
/* The card is white but sits inside a dark band; force dark heading colour so
   the .band--charcoal h2 rule can't turn it white-on-white. */
.tool-card .tool-card__title { color: var(--charcoal); font-size: clamp(1.35rem, 1.1rem + 1vw, 1.7rem); font-weight: 700; margin-bottom: 0.6rem; }
.tool-card__intro { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 1.25rem; }
.tool-card .field { margin-bottom: 0.9rem; }
.tool-card .field-row { margin-bottom: 0; }
.tool-card .field-row .field { margin-bottom: 0.9rem; }
.tool-card .textarea-msg { min-height: 220px; }

/* CC options fieldset */
.cc-fieldset { border: none; margin: 0.25rem 0 1rem; padding: 0; min-width: 0; }
.cc-fieldset legend {
  font-family: var(--font-head); font-weight: 600; font-size: 0.92rem;
  color: var(--charcoal); padding: 0; margin-bottom: 0.5rem;
}
.tool-card .reps { gap: 0.5rem; }
.tool-card .rep { padding: 0.6rem 0.75rem; }

/* To / Cc live preview */
.recipients-preview {
  background: #f7f2e9;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  margin-bottom: 1.1rem;
}
.rp-row { display: flex; align-items: baseline; gap: 0.6rem; margin: 0.15rem 0; font-size: 0.9rem; }
.rp-label {
  flex: none; width: 1.8rem;
  font-family: var(--font-head); font-weight: 700; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft);
}
.rp-chips { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.rp-chip {
  display: inline-block;
  background: rgba(14,42,71,0.08);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
}
.rp-chip--to { background: var(--coral); color: #2a1409; }
.rp-none { color: var(--ink-soft); font-style: italic; font-size: 0.85rem; }

.tool-card .tool__actions { display: grid; grid-template-columns: 1fr auto; gap: 0.7rem; margin-top: 0.25rem; }
.tool-card .counter { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }

/* Hide the redundant hero jump button on wide screens (form is already visible) */
@media (min-width: 901px) { .hero__cta-jump { display: none; } }

/* ---------- Problem / prose ---------- */
.prose { max-width: 44rem; }
.prose p { font-size: 1.08em; }
.pullquote {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: clamp(1.4rem, 1.1rem + 1.5vw, 2rem);
  line-height: 1.3;
  color: var(--navy);
  border-left: 4px solid var(--coral);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2.5rem 0;
}
.band--charcoal .pullquote, .band--navy .pullquote { color: #fff; }

/* ---------- Email tool ---------- */
.tool {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: clamp(1.5rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.75rem);
}
.tool__col h3 { font-size: 1.25rem; font-weight: 700; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; margin-bottom: 0.35rem; color: var(--charcoal); }
.field .hint { font-weight: 400; color: var(--ink-soft); font-family: var(--font-body); font-size: 0.85rem; }
.field input, .field textarea, .field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: #fcf9f3;
  border: 1.5px solid rgba(23,19,15,0.2);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
}
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2317130F' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.25rem;
  cursor: pointer;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 3px solid var(--navy); outline-offset: 1px; border-color: var(--navy); }

/* Electorate lookup helper text + local-MP Cc row */
.electorate-hint { font-size: 0.85rem; color: var(--ink-soft); margin: -0.3rem 0 1rem; }
.rep--mp { margin-bottom: 0.6rem; }
.rep--mp input:disabled { opacity: 0.5; }
.rep--mp input:disabled ~ .rep__text { color: var(--ink-soft); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.textarea-msg { min-height: 340px; resize: vertical; line-height: 1.55; }
.field textarea#emailSubject { min-height: 0; }

.reps { list-style: none; margin: 0 0 0.5rem; padding: 0; display: grid; gap: 0.6rem; }
.rep {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid rgba(23,19,15,0.15);
  border-radius: 10px;
  background: #fcf9f3;
  cursor: pointer;
}
.rep:hover { border-color: var(--coral); }
.rep input { margin-top: 0.25rem; width: 1.15rem; height: 1.15rem; accent-color: var(--coral-dk); flex: none; }
.rep__text { font-size: 0.95rem; }
.rep__group { font-family: var(--font-head); font-weight: 600; display: block; color: var(--charcoal); }
.rep__name { color: var(--ink-soft); font-size: 0.88rem; }

.tool__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 0.5rem; }
.tool__note { font-size: 0.85rem; color: var(--ink-soft); margin-top: 1rem; }
.personalise {
  background: rgba(225,121,83,0.1);
  border: 1px solid rgba(225,121,83,0.35);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  margin-bottom: 1.1rem;
  color: #6e3a22;
}
.copy-status { font-size: 0.9rem; font-weight: 600; color: var(--navy); min-height: 1.2em; margin-top: 0.6rem; }

/* Counter */
.counter { margin-top: 1.75rem; }
.counter__row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.5rem; font-family: var(--font-head); }
.counter__num { font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.2rem); font-weight: 800; color: var(--coral-dk); }
.counter__goal { color: var(--ink-soft); font-weight: 600; }
.counter__track { height: 12px; border-radius: 999px; background: rgba(23,19,15,0.1); overflow: hidden; }
.counter__bar { height: 100%; width: 0; background: linear-gradient(90deg, var(--coral), #ef9068); border-radius: 999px; transition: width 0.8s cubic-bezier(.2,.7,.3,1); }
.counter__cap { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.5rem; }

/* ---------- Stat cards ---------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.25rem;
}
.stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.band--cream .stat, .band--white .stat { background: var(--white); border-color: var(--line); box-shadow: var(--shadow); }
.stat__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.8rem, 1.3rem + 1.6vw, 2.4rem);
  color: var(--coral);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.band--cream .stat__num, .band--white .stat__num { color: var(--coral-dk); }
.stat__label { font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; margin-bottom: 0.5rem; display: block; }
.stat__src { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.45; }
.band--cream .stat__src, .band--white .stat__src { color: var(--ink-soft); }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 52rem; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
  color: var(--charcoal);
  padding: 1.3rem 3rem 1.3rem 0;
  position: relative;
  display: flex;
  gap: 0.75rem;
}
.faq__q .faq__icon {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px; transition: transform 0.3s ease; color: var(--coral-dk); flex: none;
}
.faq__q[aria-expanded="true"] .faq__icon { transform: translateY(-50%) rotate(45deg); }
.faq__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.faq__panel-inner { padding: 0 3rem 1.4rem 0; color: var(--ink-soft); }
.faq__panel-inner p { margin-bottom: 0.5rem; }

/* ---------- Comparison ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.compare__card { border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.25rem); }
.compare__card--ask { background: var(--white); border: 2px solid var(--coral); box-shadow: var(--shadow); }
.compare__card--now { background: rgba(14,42,71,0.05); border: 1px solid var(--line); }
.compare__card h3 { display: flex; align-items: center; gap: 0.6rem; font-size: 1.3rem; }
.compare__tag { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.25rem 0.6rem; border-radius: 999px; }
.compare__card--ask .compare__tag { background: var(--coral); color: #2a1409; }
.compare__card--now .compare__tag { background: rgba(14,42,71,0.12); color: var(--navy); }
.compare__list { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: 0.85rem; }
.compare__list li { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.98rem; }
.compare__list svg { width: 22px; height: 22px; flex: none; margin-top: 1px; }
.compare__card--ask svg { color: #1f8a54; }
.compare__card--now svg { color: var(--coral-dk); }
.compare__ref { margin-top: 2rem; font-size: 0.9rem; color: var(--ink-soft); }
.compare__ref code { background: rgba(14,42,71,0.08); padding: 0.15rem 0.45rem; border-radius: 6px; font-size: 0.95em; }

/* ---------- Share ---------- */
.share-grid { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.share-btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-head); font-weight: 600; font-size: 0.98rem;
  padding: 0.8rem 1.3rem; border-radius: 999px;
  background: rgba(255,255,255,0.1); color: #fff;
  border: 1.5px solid rgba(255,255,255,0.28);
  text-decoration: none; cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.share-btn:hover { background: rgba(255,255,255,0.2); color: #fff; transform: translateY(-2px); }
.share-btn svg { width: 20px; height: 20px; }

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; }
.final-cta h2 { font-size: clamp(2rem, 1.4rem + 3vw, 3.4rem); font-weight: 800; }
.final-cta .lead { margin-inline: auto; max-width: 40rem; }
.final-cta .btn { margin-top: 1.5rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.72); padding-block: clamp(2.5rem, 5vw, 4rem); }
.site-footer a { color: #f0a683; }
.site-footer a:hover { color: #fff; }
.footer__grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; align-items: flex-start; }
.footer__brand img { height: 46px; margin-bottom: 1rem; }
.footer__socials { display: flex; gap: 1rem; margin-top: 0.5rem; }
.footer__socials a { display: inline-flex; }
.footer__socials svg { width: 24px; height: 24px; }
.footer__meta { font-size: 0.88rem; max-width: 30rem; }
.footer__auth { font-weight: 700; color: rgba(255,255,255,0.9); margin-top: 1rem; font-family: var(--font-head); font-size: 0.88rem; }
.footer__legal { margin-top: 1.5rem; font-size: 0.8rem; color: rgba(255,255,255,0.5); border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.5rem; }

/* ---------- "In their own words" quote cards ---------- */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.quote-card {
  position: relative;
  margin: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 4px solid var(--coral);
  border-radius: var(--radius);
  padding: 2.75rem 1.6rem 1.6rem;
}
.quote-card__mark {
  position: absolute;
  top: 0.35rem; left: 1.2rem;
  font-family: var(--font-quote);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--coral);
  opacity: 0.55;
}
.quote-card blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-quote);
  font-style: italic;
  font-size: clamp(1.15rem, 1rem + 0.7vw, 1.45rem);
  line-height: 1.35;
  color: #fff;
}
.quote-card__src {
  display: block;
  font-family: var(--font-head);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f0a683;
  margin-bottom: 1rem;
}
.quote-card__gloss {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.98rem;
  color: rgba(255,255,255,0.85);
}
.quote-card__gloss strong { color: #fff; }

/* Smaller variant for phrase-style stat "numbers" */
.stat__num--sm { font-size: clamp(1.25rem, 1rem + 1vw, 1.6rem); line-height: 1.15; }

/* ---------- Comparison linchpin callout ---------- */
.compare__linchpin {
  margin-top: 1.75rem;
  background: rgba(225,121,83,0.12);
  border: 1px solid rgba(225,121,83,0.4);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  font-size: 1.02rem;
  color: var(--charcoal);
}
.compare__linchpin strong { color: var(--coral-dk); }

/* ---------- "This is just the start" precinct ---------- */
.precinct-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.precinct-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.9rem; counter-reset: none; }
.precinct-steps li { display: flex; align-items: center; gap: 1rem; font-size: 1.05rem; color: rgba(255,255,255,0.9); }
.precinct-steps__n {
  flex: none;
  width: 2.4rem; height: 2.4rem;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--coral); color: #2a1409;
  font-family: var(--font-head); font-weight: 700;
  border-radius: 50%;
}
.precinct-copy p { font-size: 1.08rem; color: rgba(255,255,255,0.85); }
.precinct-line {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: clamp(1.25rem, 1.05rem + 1vw, 1.6rem);
  color: #fff !important;
  border-left: 4px solid var(--coral);
  padding-left: 1.2rem;
  margin-top: 1.25rem;
}

/* ---------- International precedents ---------- */
.precedents { border-top: 1px solid rgba(255,255,255,0.14); padding-top: clamp(2rem, 4vw, 3rem); }
.precedents__title { font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2rem); margin-bottom: 0.5rem; }
.precedents__intro { max-width: 44rem; color: rgba(255,255,255,0.82); margin-bottom: 1.75rem; }
.precedents__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1rem; }
.precedent {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.precedent__place { font-family: var(--font-head); font-weight: 700; color: var(--coral); font-size: 1.05rem; }
.precedent__claim { font-size: 0.95rem; color: rgba(255,255,255,0.85); flex: 1; }
.precedent__src {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-family: var(--font-head); font-weight: 600;
  color: #f0a683; text-decoration: none;
  margin-top: 0.25rem;
}
.precedent__src:hover { color: #fff; }
.todo-flag {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em;
  background: #ffd34d; color: #3a2c00;
  padding: 0.1rem 0.4rem; border-radius: 4px;
}
.precedents__note { margin-top: 1.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.55); font-style: italic; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .precinct-grid { grid-template-columns: 1fr; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 420px; }
  .tool { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav__links, .nav > .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  /* Mobile menu open state */
  .nav--open .nav__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 1rem var(--gutter) 1.5rem;
    box-shadow: var(--shadow);
  }
  .nav--open .nav__links a { padding: 0.6rem 0; font-size: 1.1rem; width: 100%; }
  .nav--open .nav__links li:last-child { width: 100%; margin-top: 0.5rem; }
  .nav--open .nav__links .btn { display: inline-flex; width: 100%; }
  .field-row { grid-template-columns: 1fr; }
  .tool-card .tool__actions { grid-template-columns: 1fr; }
}

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

/* Reveal-on-scroll (progressive enhancement; safe if JS/motion off) */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
.no-js .reveal { opacity: 1; transform: none; }

/* Print */
@media print {
  .site-header, .nav-toggle, .hero::after, .share-grid, .btn { box-shadow: none; }
}
