/* ============================================================
   STOP ICE PAC — SHARED STYLES
   Brand: Democrats.com red #AF2534, blue #002768
   Logotype font: Bebas Neue (Google Fonts)
   Body font: Public Sans (Google Fonts)
   ============================================================ */

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --red:       #AF2534;
  --red-stop:  #b81a23;
  --blue:      #002768;
  --white:     #ffffff;
  --off-white: #F5F3F0;
  --warm-gray: #E8E4DF;
  --text:      #1a1a1a;
  --text-light:#666666;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Public Sans', -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ============================================================
   LOGOTYPE
   ============================================================ */
.logotype {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
}
.logo-mark {
  position: relative;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
}
.logo-mark.sm { width: 28px; height: 28px; }
.logo-mark svg { width: 100%; height: 100%; }
.stop-word {
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  color: #fff;
  font-size: 17px;
  letter-spacing: 0.04em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  line-height: 1;
  pointer-events: none;
}
.stop-word.sm { font-size: 13px; }
.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}
.logo-text.sm { font-size: 18px; }
/* on-light */
.logo-text .ice  { color: var(--red); }
.logo-text .dot  { color: var(--red); }
.logo-text .vote { color: var(--blue); }
/* on-dark */
.on-dark .logo-text .ice  { color: #fff; }
.on-dark .logo-text .dot  { color: var(--red); }
.on-dark .logo-text .vote { color: var(--red); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: 'Public Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: opacity 0.15s;
}
.btn:hover { opacity: 0.85; }
.btn-red   { background: var(--red); color: #fff; }
.btn-blue  { background: var(--blue); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-ghost:hover { border-color: #fff; opacity: 1; }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; opacity: 1; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  background: var(--blue);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.15s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 3px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,39,104,0.15) 0%,
    rgba(0,39,104,0.35) 35%,
    rgba(0,39,104,0.82) 70%,
    rgba(0,39,104,0.95) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 48px 24px 52px;
  width: 100%;
  max-width: 780px;
}
.eyebrow {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: normal; color: #ffd0d0; }
.hero-body {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  margin-bottom: 28px;
  max-width: 600px;
}
.hero-counter {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}
.hero-counter strong { color: #ffd0d0; }

/* ============================================================
   MISSION STRIP
   ============================================================ */
.mission-strip {
  background: var(--red);
  padding: 18px 24px;
  text-align: center;
}
.mission-strip p {
  color: #fff;
  font-size: clamp(13px, 1.8vw, 15px);
  font-weight: 600;
  line-height: 1.5;
  max-width: 780px;
  margin: 0 auto;
}
.mission-strip strong { font-weight: 800; }

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section-header { text-align: center; margin-bottom: 44px; }
.kicker {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.section-header h2 {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* ============================================================
   STORY GRID / CARDS
   ============================================================ */
.story-section {
  padding: 72px 24px;
  background: var(--off-white);
}
.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.story-card {
  background: var(--white);
  border: 1px solid var(--warm-gray);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.story-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.09);
}
.card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
}
.card-tag.red { background: var(--red); }
.card-body { padding: 22px; }
.card-body h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 9px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.card-body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 14px;
}
.card-link {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
}
.card-link::after { content: ' →'; }

/* ============================================================
   PRESS BAR
   ============================================================ */
.press-bar {
  background: var(--blue);
  padding: 24px;
  text-align: center;
}
.press-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.press-names {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 36px;
}
.press-names span {
  color: rgba(255,255,255,0.32);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ============================================================
   PETITION SECTION
   ============================================================ */
.petition-section {
  padding: 72px 24px;
  background: var(--white);
}
.petition-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.petition-inner h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.petition-inner .sub {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.5;
}
.petition-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.petition-form input {
  padding: 15px 16px;
  border: 2px solid var(--warm-gray);
  font-family: 'Public Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--off-white);
  outline: none;
  border-radius: 3px;
  transition: border-color 0.15s;
  -webkit-appearance: none;
}
.petition-form input:focus { border-color: var(--blue); }
.span2 { grid-column: 1 / -1; }
.petition-submit {
  grid-column: 1 / -1;
  background: var(--red);
  color: #fff;
  padding: 17px;
  font-family: 'Public Sans', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 3px;
  transition: opacity 0.15s;
}
.petition-submit:hover { opacity: 0.88; }
.petition-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
}
.petition-count {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-light);
  font-weight: 600;
}
.petition-count strong { color: var(--red); font-weight: 800; }

/* ============================================================
   ACTION NETWORK EMBED WRAPPER
   ============================================================ */
.an-wrap {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

/* ============================================================
   MAP SECTION (Warehouses page)
   ============================================================ */
.map-section { padding: 56px 24px; background: var(--white); }
.map-section h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.map-section .map-intro {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 28px;
  max-width: 640px;
  line-height: 1.6;
}
.map-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: 2px solid var(--warm-gray);
  border-radius: 4px;
}
.map-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ============================================================
   CONTENT PAGES (About, etc.)
   ============================================================ */
.page-hero {
  background: var(--blue);
  padding: 56px 24px 48px;
  color: #fff;
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  line-height: 1.55;
}

.content-section {
  padding: 64px 24px;
  max-width: 760px;
  margin: 0 auto;
}
.content-section h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.content-section p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 18px;
}
.content-section ul {
  padding-left: 20px;
  margin-bottom: 18px;
}
.content-section li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--blue);
  padding: 44px 24px 28px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  list-style: none;
  align-items: center;
}
.footer-nav a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.15s;
}
.footer-nav a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal {
  font-size: 11px;
  line-height: 1.6;
  max-width: 520px;
  color: rgba(255,255,255,0.35);
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 0.15s;
}
.footer-social a:hover { color: #fff; }

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: rgba(255,255,255,0.85);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 9999;
  font-size: 13px;
  line-height: 1.5;
}
.cookie-banner a { color: rgba(255,255,255,0.65); text-decoration: underline; }
.cookie-accept {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 9px 20px;
  font-family: 'Public Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--blue);
    padding: 20px 24px;
    gap: 18px;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .hero { min-height: 480px; }
  .hero-content { padding: 36px 20px 44px; }
  .petition-form { grid-template-columns: 1fr; }
  .petition-form .span2,
  .petition-submit { grid-column: 1; }
  .footer-top { flex-direction: column; }
  .story-grid { grid-template-columns: 1fr; }
  .btn-row { flex-direction: column; }
  .btn-row .btn { text-align: center; }
}

@media (min-width: 641px) and (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Support button (secondary nav CTA) ─────────────────────────── */
.nav-support {
  background: transparent !important;
  border: 2px solid rgba(255,255,255,0.45) !important;
  color: #fff !important;
  margin-left: 6px;
}
.nav-support:hover {
  background: rgba(255,255,255,0.12) !important;
  border-color: rgba(255,255,255,0.75) !important;
}

/* ── Toolkit section ─────────────────────────────────────────────── */
.toolkit-section {
  padding: 72px 24px;
  background: var(--off-white);
}
.toolkit-inner {
  max-width: 1040px;
  margin: 0 auto;
}
.toolkit-inner > .kicker {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.toolkit-inner > h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.toolkit-intro {
  font-size: 16px;
  color: #555;
  margin-bottom: 36px;
  max-width: 560px;
}
.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 640px) {
  .toolkit-grid { grid-template-columns: 1fr; }
}
.toolkit-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.toolkit-icon {
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.toolkit-card h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 6px;
}
.toolkit-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.55;
  margin-bottom: 12px;
}
.toolkit-link {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.toolkit-link:hover { text-decoration: underline; }

/* ── Bumper sticker section ──────────────────────────────────────── */
.bumper-section {
  background: var(--red);
  padding: 64px 24px;
}
.bumper-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 56px;
}
@media (max-width: 720px) {
  .bumper-inner { flex-direction: column; gap: 36px; }
}
.bumper-text { flex: 1; }
.bumper-kicker {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}
.bumper-headline {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.bumper-body {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  max-width: 460px;
}
.bumper-body em { color: #fff; font-style: italic; font-weight: 700; }
.btn-white-outline {
  display: inline-block;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.15s, color 0.15s;
}
.btn-white-outline:hover {
  background: #fff;
  color: var(--red);
}
.bumper-preview {
  flex-shrink: 0;
  text-align: center;
}
.bumper-sticker-mock {
  background: #fff;
  border: 3px solid rgba(255,255,255,0.25);
  padding: 28px 36px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.mock-logotype {
  display: flex;
  align-items: center;
  gap: 6px;
}
.mock-logo-mark {
  flex-shrink: 0;
}
.mock-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  letter-spacing: 2px;
  line-height: 1;
}
.mock-ice  { color: #b81a23; }
.mock-dot  { color: #b81a23; }
.mock-vote { color: #002768; }
.bumper-caption {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-top: 10px;
  font-weight: 600;
}

/* ── Movement page ───────────────────────────────────────────────── */

/* Wins strip */
.wins-strip {
  background: #1a3a1a;
  padding: 32px 24px;
}
.wins-strip-inner {
  max-width: 1040px;
  margin: 0 auto;
}
.wins-label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6fcf6f;
  margin-bottom: 16px;
}
.wins-ticker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 24px;
  margin-bottom: 20px;
}
@media (max-width: 720px) {
  .wins-ticker { grid-template-columns: 1fr; }
}
.win-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.45;
}
.win-check {
  color: #6fcf6f;
  font-size: 16px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}
.wins-note {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
  margin: 0;
}
.wins-note strong { color: rgba(255,255,255,0.85); }

/* Movement track sections */
.movement-track {
  padding: 72px 24px;
  background: #fff;
}
.movement-track.alt {
  background: var(--off-white);
}
.track-inner {
  max-width: 1040px;
  margin: 0 auto;
}
.track-header {
  margin-bottom: 40px;
}
.track-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-bottom: 14px;
  color: #fff;
}
.track-badge.legal   { background: var(--blue); }
.track-badge.defense { background: #2a7a3b; }
.track-badge.national { background: var(--red); }

.track-header h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.track-intro {
  font-size: 16px;
  color: #555;
  max-width: 620px;
  line-height: 1.6;
}

/* Org cards */
.org-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 640px) {
  .org-grid { grid-template-columns: 1fr; }
}
.org-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-top: 3px solid var(--red);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.movement-track.alt .org-card {
  background: #fff;
}
.org-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.01em;
}
.org-desc {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  flex: 1;
}
.org-link {
  display: inline-block;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 4px;
}
.org-link:hover { text-decoration: underline; }

/* Solidarity callout */
.solidarity-section {
  background: var(--blue);
  padding: 72px 24px;
}
.solidarity-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  gap: 64px;
  align-items: flex-start;
}
@media (max-width: 760px) {
  .solidarity-inner { flex-direction: column; gap: 40px; }
}
.solidarity-text { flex: 1; }
.solidarity-text .kicker {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.solidarity-text h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.solidarity-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin-bottom: 14px;
}
.solidarity-stat-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
  width: 260px;
}
@media (max-width: 760px) {
  .solidarity-stat-stack {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }
  .solidarity-stat { flex: 1; min-width: 140px; }
}
.solidarity-stat {
  border-left: 3px solid var(--red);
  padding-left: 18px;
}
.stat-num {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

/* ── Congress page ───────────────────────────────────────────────── */
.stakes-strip {
  background: var(--blue);
  padding: 36px 24px;
  border-top: 4px solid var(--red);
}
.stakes-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.stakes-stat {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 12px 20px;
}
.stakes-num {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.stakes-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
  font-weight: 600;
}
.stakes-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .stakes-divider { display: none; }
  .stakes-stat { min-width: 45%; }
}

/* Intro section */
.congress-intro {
  padding: 72px 24px;
  background: #fff;
}
.congress-intro-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  gap: 56px;
  align-items: flex-start;
}
@media (max-width: 760px) {
  .congress-intro-inner { flex-direction: column; gap: 32px; }
}
.congress-intro-text { flex: 1; }
.congress-intro-text h2 {
  font-size: clamp(20px, 2.8vw, 26px);
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 18px;
  font-style: italic;
}
.congress-intro-text p {
  font-size: 15px;
  color: #444;
  line-height: 1.65;
  margin-bottom: 14px;
}
.congress-intro-context {
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 760px) {
  .congress-intro-context { width: 100%; flex-direction: row; flex-wrap: wrap; }
  .context-card { flex: 1; min-width: 200px; }
}
.context-card {
  border-left: 3px solid var(--red);
  padding: 16px 18px;
  background: var(--off-white);
}
.context-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.context-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.55;
  margin: 0;
}

/* Orgs section */
.congress-orgs {
  padding: 72px 24px;
  background: var(--off-white);
}
.congress-orgs-inner {
  max-width: 1040px;
  margin: 0 auto;
}
.orgs-header {
  margin-bottom: 40px;
}
.orgs-header h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.orgs-intro {
  font-size: 16px;
  color: #555;
  max-width: 620px;
  line-height: 1.6;
}
.org-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

/* Key races */
.key-races {
  padding: 72px 24px;
  background: var(--blue);
}
.key-races-inner {
  max-width: 1040px;
  margin: 0 auto;
}
.races-header { margin-bottom: 40px; }
.races-header .kicker {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.races-header h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.races-intro {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 620px;
  line-height: 1.6;
}
.race-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 640px) {
  .race-list { grid-template-columns: 1fr; }
}
.race-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 24px;
}
.race-district {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.race-status {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 12px;
}
.race-status.open        { background: #2a7a3b; color: #fff; }
.race-status.primary     { background: var(--red); color: #fff; }
.race-status.battleground{ background: var(--gold, #D4A843); color: #000; }
.race-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* White button variant */
.btn-white {
  display: inline-block;
  background: #fff;
  color: var(--red);
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.btn-white:hover { background: rgba(255,255,255,0.9); }

/* Photo credit */
.footer-photo-credit {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
  font-style: normal;
}
.footer-photo-credit em { font-style: italic; }


/* ── Map width constraint (desktop) ─────────────────────────────── */
.map-outer {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 640px) {
  .map-outer { padding: 0; max-width: 100%; }
}

/* ── Mobile-first global improvements ───────────────────────────── */
@media (max-width: 480px) {
  .hero { min-height: 420px !important; }
  .hero-content { padding: 24px 20px 32px; }
  .hero-content h1 { font-size: clamp(28px, 8vw, 40px); }
  .hero-body { font-size: 15px; }
  .btn-row { flex-direction: column; gap: 10px; }
  .btn-row .btn { text-align: center; width: 100%; }
  .story-grid { grid-template-columns: 1fr; }
  .section-header h2 { font-size: clamp(22px, 6vw, 28px); }
  .petition-inner { padding: 32px 16px; }
  .petition-form { grid-template-columns: 1fr; }
  .petition-form .span2 { grid-column: 1; }
  .toolkit-grid { grid-template-columns: 1fr; }
  .org-grid { grid-template-columns: 1fr; }
  .race-list { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-nav { flex-wrap: wrap; gap: 10px 16px; }
  .footer-bottom { flex-direction: column; gap: 16px; }
  .footer-social { flex-wrap: wrap; gap: 10px 14px; }
  .bumper-inner { flex-direction: column; }
  .congress-intro-inner { flex-direction: column; }
  .solidarity-inner { flex-direction: column; }
  .stakes-inner { flex-wrap: wrap; }
  .stakes-stat { min-width: 48%; }
  .stakes-divider { display: none; }
}

@media (max-width: 768px) {
  .wins-ticker { grid-template-columns: 1fr; }
  .track-inner { padding: 0 4px; }
  .race-list { grid-template-columns: 1fr; }
  .site-nav { padding: 0 16px; }
}

/* ── Card link arrows already in HTML, ensure no extra spacing ───── */
.card-link { display: inline-block; margin-top: auto; }
