:root {
  --navy: #1a2a52;
  --navy-deep: #0f1c3d;
  --red: #b62330;
  --red-deep: #8a1a25;
  --bg: #f4f2ec;
  --bg-warm: #ece8de;
  --surface: #ffffff;
  --text: #1a1a1a;
  --muted: #5a5a5a;
  --border: #d9d6cc;
  --serif: "Playfair Display", "Times New Roman", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

/* Decorative background */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(26, 42, 82, 0.08), transparent 60%),
    radial-gradient(900px 500px at 110% 110%, rgba(182, 35, 48, 0.07), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}

/* Container */
.container {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 242, 236, 0.88);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0.55rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.nav-brand img {
  height: 32px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-links a:hover {
  background: var(--navy);
  color: #fff;
}
@media (max-width: 480px) {
  .nav-inner { padding: 0.5rem 1rem; gap: 0.5rem; }
  .nav-brand img { height: 26px; }
  .nav-links a {
    padding: 0.4rem 0.6rem;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }
}

/* Anchor scroll offset for sticky nav */
section[id] { scroll-margin-top: 70px; }

/* ---------- HERO ---------- */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0 2.5rem;
  text-align: center;
}
.hero .container { max-width: 720px; }

/* Logo */
.logo {
  max-width: min(380px, 82%);
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
}

/* Kicker pill */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(182, 35, 48, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}
.kicker .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(182, 35, 48, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(182, 35, 48, 0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(182, 35, 48, 0.05); }
}

/* Display headline */
.display {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 900;
  color: var(--navy);
  font-size: clamp(1.9rem, 5vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 1.1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2em 0.4em;
}
.display .word { display: inline-block; }

/* Hero "Enough … Enough … Enough …" */
.hero .display .word:nth-child(1),
.hero .display .word:nth-child(3),
.hero .display .word:nth-child(5) {
  color: var(--red);
}
.hero .display .strike { position: relative; }
.hero .display .strike::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%;
  top: 55%;
  height: 0.12em;
  background: var(--red);
  transform: rotate(-2deg);
  border-radius: 2px;
}

/* Section accent words */
.deputies .display .accent,
.story .display .accent,
.plan .display .accent,
.problem .display .accent,
.stand .display .accent,
.stakes .display .accent { color: var(--red); }

/* Lede */
.lede {
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 1.25rem;
}

/* Rule */
.rule {
  width: 56px;
  height: 3px;
  background: var(--red);
  margin: 0 auto 1.1rem;
  border-radius: 2px;
}

/* CTA */
.cta-down {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 0.6rem 1rem;
  border: 2px solid var(--navy);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.cta-down:hover {
  background: var(--navy);
  color: #fff;
}
.cta-down .arrow {
  display: inline-block;
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(3px); }
}

/* ---------- PROBLEM ---------- */
.problem {
  padding: 3.5rem 0 4rem;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.problem .lede { margin-bottom: 1.25rem; }

.caveat {
  max-width: 660px;
  margin: 0 auto 2rem;
  padding: 0.85rem 1.1rem;
  font-size: 0.95rem;
  color: var(--muted);
  border-left: 3px solid var(--navy);
  background: rgba(255, 255, 255, 0.55);
  text-align: left;
  border-radius: 0 6px 6px 0;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.85rem;
  max-width: 880px;
  margin: 0 auto 1.75rem;
  text-align: left;
}
.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  border-radius: 10px;
  padding: 1.1rem 1.2rem 1.2rem;
}
.pillar h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 800;
  color: var(--red);
  font-size: 1.25rem;
  margin: 0 0 0.4rem;
}
.pillar p {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
}

/* ---------- STORY ---------- */
.story {
  padding: 3.5rem 0 4rem;
  text-align: center;
  border-top: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.15)),
    var(--bg-warm);
}
.story .lede { margin-bottom: 1.5rem; }
.story .lede strong { color: var(--navy); }

.prose {
  max-width: 640px;
  margin: 0 auto 1.5rem;
  text-align: left;
  font-size: 1rem;
  color: #25272e;
}
.prose p { margin: 0 0 0.85rem; }
.prose p:last-child { margin-bottom: 0; }

.pullquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--red);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 0 8px 8px 0;
}
.pullquote p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.3;
  margin: 0 0 0.4rem;
}
.pullquote cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.pullquote cite a {
  color: var(--red);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.pullquote cite a:hover { color: var(--red-deep); }

.stats {
  list-style: none;
  margin: 0 auto 1.75rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
  max-width: 720px;
}
.stats li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  border-radius: 10px;
  padding: 1rem 0.6rem;
  text-align: center;
}
.stats .num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(1.9rem, 4.5vw, 2.5rem);
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stats .label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}

.timeline {
  list-style: none;
  margin: 0 auto 1.75rem;
  padding: 0;
  max-width: 640px;
  text-align: left;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 7px; top: 6px; bottom: 6px;
  width: 2px;
  background: rgba(182, 35, 48, 0.25);
}
.timeline li {
  position: relative;
  padding: 0 0 0.85rem 1.75rem;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(182, 35, 48, 0.15);
}
.timeline time {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.25rem;
}
.timeline p { margin: 0; color: var(--text); }

.closing {
  max-width: 680px;
  margin: 0 auto 1.5rem;
  font-size: 1rem;
  color: #25272e;
  text-align: left;
}
.closing em {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--red);
  font-style: italic;
}

/* ---------- DEPUTIES ---------- */
.deputies {
  padding: 3.5rem 0 4rem;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.deputies .lede { margin-bottom: 2rem; }

/* Expand/collapse for the deputies list */
.reveal {
  margin: 0 auto 1.5rem;
}
.reveal summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0.65rem 1.1rem;
  border: 2px solid var(--navy);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.2s ease, color 0.2s ease;
}
.reveal summary::-webkit-details-marker { display: none; }
.reveal summary::marker { content: ""; }
.reveal summary:hover {
  background: var(--navy);
  color: #fff;
}
.reveal summary .reveal-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.reveal[open] summary .reveal-arrow { transform: rotate(180deg); }
.reveal[open] .reveal-label-show { display: none; }
.reveal:not([open]) .reveal-label-hide { display: none; }
.reveal[open] { margin-bottom: 0; }

.orgs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.75rem;
  text-align: left;
  margin: 1.5rem 0;
}

.org {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 10px;
  padding: 0.9rem 1rem 1rem;
  box-shadow: 0 1px 0 rgba(15, 28, 61, 0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.org:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15, 28, 61, 0.08);
}
.org h3 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 0.5rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}
.org ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.org li {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  padding: 0.18rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(26, 42, 82, 0.08);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

.footnote {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 1.75rem;
  font-style: italic;
}
.footnote a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.footnote a:hover { color: var(--red); }

/* ---------- PLAN ---------- */
.plan {
  padding: 3.5rem 0 4rem;
  text-align: center;
  border-top: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(26, 42, 82, 0.04), rgba(182, 35, 48, 0.05)),
    var(--bg-warm);
}
.plan .lede strong { color: var(--navy); }
.plan .lede + .lede { margin-top: -0.5rem; }

.routes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.85rem;
  max-width: 760px;
  margin: 1.75rem auto 0;
  text-align: left;
}
.route {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  border-radius: 12px;
  padding: 1.1rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
}
.route h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 800;
  color: var(--navy);
  font-size: 1.25rem;
  margin: 0 0 0.4rem;
}
.route p {
  margin: 0;
  color: var(--text);
  flex: 1;
}

.plan .coming-soon,
.stand .coming-soon {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.75;
}

/* ---------- STAKES ---------- */
.stakes {
  padding: 3.5rem 0 4rem;
  text-align: center;
  border-top: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.15)),
    var(--bg-warm);
}
.stakes .lede { margin-bottom: 2rem; }

.stakes-list {
  max-width: 760px;
  margin: 0 auto 1.75rem;
  text-align: left;
}
.stake {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(182, 35, 48, 0.22);
}
.stake:first-child { padding-top: 0.5rem; }
.stake:last-child { border-bottom: none; padding-bottom: 0.5rem; }
.stake-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 900;
  color: var(--red);
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  line-height: 0.9;
  align-self: start;
  min-width: 2.4em;
}
.stake-body h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 800;
  color: var(--navy);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  line-height: 1.25;
  margin: 0 0 0.5rem;
}
.stake-body p {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
}
@media (max-width: 480px) {
  .stake { grid-template-columns: 1fr; gap: 0.4rem; }
  .stake-num { min-width: 0; }
}

/* ---------- STAND ---------- */
.stand {
  padding: 3.5rem 0 4rem;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.stand .lede { margin-bottom: 1.75rem; }

.qa {
  list-style: none;
  margin: 0 auto 1rem;
  padding: 0;
  max-width: 720px;
  text-align: left;
  counter-reset: qa;
}
.qa li {
  counter-increment: qa;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.qa li:last-child { border-bottom: none; }
.qa h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 800;
  color: var(--navy);
  font-size: 1.3rem;
  line-height: 1.25;
  margin: 0 0 0.4rem;
  padding-left: 3.25rem;
  position: relative;
  min-height: 1.6rem;
}
.qa h3::before {
  content: counter(qa, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.15em;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--red);
  background: rgba(182, 35, 48, 0.1);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}
.qa p {
  margin: 0;
  padding-left: 3.25rem;
  font-size: 0.98rem;
  color: var(--text);
}

.closing-line {
  max-width: 620px;
  margin: 1.5rem auto 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
}

.btn {
  align-self: flex-start;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-align: center;
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { background: var(--red-deep); border-color: var(--red-deep); color: #fff; }
.btn.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn.btn-ghost:hover { background: var(--navy); color: #fff; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--navy-deep);
  color: #d8def0;
  text-align: center;
  padding: 1.25rem 1rem;
  font-size: 0.85rem;
}
.site-footer p { margin: 0.15rem 0; }
.site-footer .small { font-size: 0.78rem; opacity: 0.7; }

/* ---------- MOTION ---------- */
.logo, .hero .kicker, .hero .display, .hero .lede, .rule, .cta-down {
  animation: rise 0.8s ease both;
}
.hero .kicker { animation-delay: 0.05s; }
.hero .display { animation-delay: 0.15s; }
.hero .lede   { animation-delay: 0.25s; }
.rule         { animation-delay: 0.35s; }
.cta-down     { animation-delay: 0.4s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; }
  html { scroll-behavior: auto; }
}
