/* ═══════════════════════════════════════════════════════════════
   FISHBACK 2026 — Enterprise Campaign Design System
   Color DNA: Navy sky, Sunset orange, Florida cream, Sunshine gold
   ═══════════════════════════════════════════════════════════════ */

/* ── RESET ─────────────────────────────────────────────────── */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #012f47;
  --navy-deep: #011e2f;
  --navy-light: #034b6f;
  --orange: #e76224;
  --orange-warm: #f07a3a;
  --orange-glow: #ff9a5c;
  --cream: #fef5dc;
  --cream-soft: #fdf0ce;
  --cream-white: #fffcf2;
  --gold: #d4a843;
  --gold-light: #e8c86a;

  --slate-900: #0f1a24;
  --slate-800: #1a2c3a;
  --slate-700: #2a4055;
  --slate-600: #3d5a72;
  --slate-500: #5a7a94;
  --slate-400: #8ba3b7;
  --slate-300: #b4c8d8;
  --slate-200: #d9e4ec;
  --slate-100: #edf2f6;
  --white: #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  --max-width: 1200px;

  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 200ms;
  --dur-base: 350ms;
  --dur-slow: 600ms;

  --shadow-sm: 0 1px 3px rgba(1, 47, 71, 0.08);
  --shadow-md: 0 4px 12px rgba(1, 47, 71, 0.1);
  --shadow-lg: 0 8px 30px rgba(1, 47, 71, 0.12);
  --shadow-xl: 0 20px 60px rgba(1, 47, 71, 0.15);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--slate-800);
  background-color: var(--cream-white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
strong { font-weight: 600; color: var(--navy); }

::selection {
  background-color: var(--orange);
  color: var(--white);
}

/* ── CONTAINER ─────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* ── TYPOGRAPHY UTILS ──────────────────────────────────────── */

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--space-md);
}

.section-eyebrow--center { text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: var(--space-lg);
}

.section-title--center { text-align: center; }

.section-subtitle {
  font-size: 1.1rem;
  color: var(--slate-600);
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-3xl);
  line-height: 1.7;
}

/* ── BUTTONS ───────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-warm) 100%);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 15px rgba(231, 98, 36, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 98, 36, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── NAVIGATION ────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-lg) 0;
  transition: all var(--dur-base) var(--ease-out);
}

.nav--scrolled {
  background: rgba(1, 47, 71, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-sm) 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  z-index: 1001;
}

.nav__logo-img {
  height: 70px;
  width: auto;
  transition: height var(--dur-base) var(--ease-out);
}

.nav--scrolled .nav__logo-img {
  height: 44px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--dur-fast) var(--ease-out);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--dur-base) var(--ease-out);
}

.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav__donate-btn {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.6rem !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  transition: all var(--dur-base) var(--ease-out) !important;
  box-shadow: 0 2px 10px rgba(231, 98, 36, 0.3);
}

.nav__donate-btn::after { display: none !important; }

.nav__donate-btn:hover {
  background: var(--orange-warm) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(231, 98, 36, 0.4);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--dur-base) var(--ease-out);
}

.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ──────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.35) saturate(1.1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(1, 30, 47, 0.6) 0%, rgba(1, 30, 47, 0.3) 30%, rgba(1, 30, 47, 0.2) 60%, rgba(1, 30, 47, 0.7) 100%),
    radial-gradient(ellipse at 20% 80%, rgba(231, 98, 36, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 7rem var(--space-xl) var(--space-4xl);
}

.hero__layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero__text { max-width: 640px; }

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--space-xl);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: var(--space-xl);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}

.hero__title-accent {
  display: block;
  font-style: italic;
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-light) 50%, var(--orange-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(254, 245, 220, 0.85);
  margin-bottom: var(--space-lg);
  line-height: 1.5;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}

.hero__intro {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.7s forwards;
}

.hero__intro strong {
  color: var(--white);
}

.hero__mission {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.9s forwards;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 1.1s forwards;
}

/* Desktop: full portrait in right column */
.hero__photo--desktop {
  position: relative;
  opacity: 0;
  transform: translateX(40px);
  animation: fadeLeft 1s var(--ease-out) 0.6s forwards;
}

.hero__photo--desktop .hero__photo-img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  margin-left: auto;
}

/* Mobile: circular headshot between text and buttons */
.hero__photo--mobile {
  display: none;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.4s forwards;
}

.hero__scroll-hint span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ── QUICK LINKS BAR ───────────────────────────────────────── */

.quicklinks {
  background: var(--navy);
  padding: var(--space-lg) 0;
  position: relative;
  z-index: 5;
}

.quicklinks__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-sm);
}

.quicklinks__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-sm);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all var(--dur-fast) var(--ease-out);
  text-align: center;
}

.quicklinks__item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.quicklinks__item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transform: translateY(-2px);
}

.quicklinks__item--donate {
  color: var(--orange);
}

.quicklinks__item--donate:hover {
  background: var(--orange);
  color: var(--white);
}

@media (max-width: 768px) {
  .quicklinks__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xs);
  }

  .quicklinks__item {
    padding: var(--space-sm);
    font-size: 0.72rem;
  }

  .quicklinks__item svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 400px) {
  .quicklinks__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── VIDEO SECTION ─────────────────────────────────────────── */

.video-section {
  padding: var(--space-5xl) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(231, 98, 36, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(212, 168, 67, 0.04) 0%, transparent 50%);
}

.video-section__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.video-section .section-eyebrow { color: var(--orange-glow); }

.video-section .section-title { color: var(--cream); }

.video-section__desc {
  font-size: 1.05rem;
  color: var(--slate-400);
  line-height: 1.8;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  background: var(--navy-deep);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-wrapper__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: opacity var(--dur-base) var(--ease-out);
}

.video-wrapper__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1;
  opacity: 0.85;
  transition: all var(--dur-base) var(--ease-out);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.video-wrapper:hover .video-wrapper__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-wrapper__play svg {
  width: 100%;
  height: 100%;
}

.video-wrapper--active .video-wrapper__thumb,
.video-wrapper--active .video-wrapper__play {
  display: none;
}

/* ── ABOUT ─────────────────────────────────────────────────── */

.about {
  padding: var(--space-5xl) 0;
  background: var(--cream-white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about__image-col { position: relative; }

.about__image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about__image-frame::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--orange);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.25;
}

.about__gen-badge {
  position: absolute;
  bottom: var(--space-xl);
  right: -1rem;
  background: var(--orange);
  color: var(--white);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.about__gen-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.about__gen-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
  opacity: 0.9;
}

.about__text-col { padding: var(--space-xl) 0; }

.about__story p {
  margin-bottom: var(--space-lg);
  font-size: 1.05rem;
  color: var(--slate-700);
}

.about__story p:last-child { margin-bottom: 0; }

.about__quote {
  margin-top: var(--space-2xl);
  padding: var(--space-xl) var(--space-2xl);
  border-left: 3px solid var(--orange);
  background: linear-gradient(135deg, rgba(254, 245, 220, 0.5) 0%, rgba(254, 240, 206, 0.3) 100%);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.about__quote blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
}

/* ── VALUES STRIP ──────────────────────────────────────────── */

.values {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-soft) 100%);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.values__item {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(1, 47, 71, 0.06);
  box-shadow: var(--shadow-sm);
  transition: all var(--dur-base) var(--ease-out);
}

.values__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.values__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto var(--space-lg);
  color: var(--orange);
}

.values__icon svg { width: 100%; height: 100%; }

.values__item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.values__item p {
  font-size: 0.88rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* ── PLATFORM ──────────────────────────────────────────────── */

.platform {
  padding: var(--space-5xl) 0;
  background: var(--cream-white);
}

.platform__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.policy-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  position: relative;
  overflow: hidden;
  transition: all var(--dur-base) var(--ease-out);
  border: 1px solid rgba(1, 47, 71, 0.06);
  box-shadow: var(--shadow-sm);
}

.policy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(231, 98, 36, 0.15);
}

.policy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
}

.policy-card:hover::before { opacity: 1; }

.policy-card__number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.policy-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.policy-card__text {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.policy-card__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-light);
  background: var(--slate-100);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
}

/* ── CAMPAIGN TRAIL ────────────────────────────────────────── */

.trail {
  padding: var(--space-5xl) 0;
  background: linear-gradient(180deg, var(--cream-white) 0%, var(--cream) 100%);
  overflow: hidden;
}

.trail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.trail__description {
  font-size: 1.05rem;
  color: var(--slate-700);
  margin-bottom: var(--space-2xl);
  line-height: 1.8;
}

.trail__stats {
  display: flex;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.trail__stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  display: block;
}

.trail__stat-number .counter-suffix {
  font-size: 1.8rem;
}

.trail__stat-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-top: var(--space-xs);
  display: block;
}

.trail__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.trail__visual-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.trail__florida-outline {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.trail__florida-outline svg {
  width: 100%;
  height: auto;
}

/* State outline and fill no longer needed — counties form the map */

/* Individual county polygons */
.county-path {
  fill: transparent;
  stroke: var(--slate-500);
  stroke-width: 0.4;
  stroke-linejoin: round;
  opacity: 0;
  transition: opacity 1.8s var(--ease-out) 2s, fill 0.15s ease;
  cursor: pointer;
}

.county-path.animate {
  opacity: 1;
}

/* Hover on the <g> group highlights ALL paths in that county */
.county-group:hover .county-path {
  stroke-width: 0.8;
}

.county-group:hover .county-path[data-lean="R"] {
  fill: rgba(220, 50, 50, 0.2);
  stroke: rgba(220, 50, 50, 0.6);
}

.county-group:hover .county-path[data-lean="D"] {
  fill: rgba(50, 100, 220, 0.2);
  stroke: rgba(50, 100, 220, 0.6);
}

/* Mobile: active class applied via JS */
.county-group.active .county-path[data-lean="R"] {
  fill: rgba(220, 50, 50, 0.2);
  stroke: rgba(220, 50, 50, 0.6);
  stroke-width: 0.8;
}

.county-group.active .county-path[data-lean="D"] {
  fill: rgba(50, 100, 220, 0.2);
  stroke: rgba(50, 100, 220, 0.6);
  stroke-width: 0.8;
}

.trail-dot {
  fill: var(--orange);
  opacity: 0;
  cursor: pointer;
  transition: r 0.2s var(--ease-spring);
}

.trail-dot.animate {
  animation: dotAppear 0.5s var(--ease-spring) forwards;
}

.trail-dot:hover {
  r: 7;
  filter: drop-shadow(0 0 6px rgba(231, 98, 36, 0.5));
}

.trail-dot-pulse {
  fill: var(--orange);
  opacity: 0;
}

.trail-dot-pulse.animate {
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotAppear {
  0% { opacity: 0; r: 0; }
  60% { r: 6; }
  100% { opacity: 1; r: 4.5; }
}

@keyframes dotPulse {
  0% { opacity: 0.3; r: 4.5; }
  50% { opacity: 0; r: 12; }
  100% { opacity: 0; r: 12; }
}

.trail__florida-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--slate-500);
  margin-top: var(--space-lg);
}

/* Map tooltip */
.map-tooltip {
  --arrow-offset: 0px;
  position: absolute;
  background: var(--navy);
  color: var(--white);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.15s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.map-tooltip.visible {
  opacity: 1;
}

/* Arrow pointing DOWN (tooltip above click) */
.map-tooltip--above::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(calc(-50% + var(--arrow-offset)));
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--navy);
}

/* Arrow pointing UP (tooltip below click) */
.map-tooltip--below::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(calc(-50% + var(--arrow-offset)));
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--navy);
}

.map-tooltip__county {
  font-weight: 600;
}

.map-tooltip__county--R { color: #f87171; }
.map-tooltip__county--D { color: #60a5fa; }

.map-tooltip__meta {
  font-size: 0.68rem;
  color: var(--slate-400);
  margin-top: 2px;
}

.map-tooltip__video-hint {
  font-size: 0.62rem;
  color: var(--gold-light);
  margin-top: 3px;
}

.trail-dot[data-has-video="true"] {
  cursor: pointer;
}

.trail-dot[data-has-video="true"]:hover {
  fill: var(--gold);
}

/* ── QUOTE SECTION ─────────────────────────────────────────── */

.quote-section {
  padding: var(--space-5xl) 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(231, 98, 36, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(212, 168, 67, 0.06) 0%, transparent 60%);
}

.quote-section::after {
  content: '\201C';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  pointer-events: none;
}

.quote-section__quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 500;
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  position: relative;
  z-index: 1;
}

.quote-section__quote em {
  color: var(--orange);
  font-style: italic;
}

.quote-section__attr {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-500);
  position: relative;
  z-index: 1;
}

/* ── GET INVOLVED ──────────────────────────────────────────── */

.involved {
  padding: var(--space-5xl) 0;
  background: linear-gradient(180deg, var(--cream-white) 0%, var(--cream) 100%);
}

.involved__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.involved__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(1, 47, 71, 0.06);
  box-shadow: var(--shadow-sm);
  transition: all var(--dur-base) var(--ease-out);
}

.involved__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(231, 98, 36, 0.2);
}

.involved__card-icon {
  width: 56px;
  height: 56px;
  color: var(--navy);
  margin-bottom: var(--space-xl);
  transition: color var(--dur-base) var(--ease-out);
}

.involved__card:hover .involved__card-icon { color: var(--orange); }
.involved__card-icon svg { width: 100%; height: 100%; }

.involved__card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-md);
}

.involved__card p {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.involved__card-link {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  transition: letter-spacing var(--dur-fast) var(--ease-out);
}

.involved__card:hover .involved__card-link { letter-spacing: 0.18em; }

/* ── ACTIVITY / X FEED ──────────────────────────────────────── */

.activity {
  padding: var(--space-5xl) 0;
  background: var(--cream-white);
}

/* X post cards — zero external dependencies */
.xcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.xcard {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--dur-base) var(--ease-out);
  text-decoration: none;
  color: var(--slate-800);
}

.xcard:hover {
  border-color: var(--slate-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.xcard__header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.xcard__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.xcard__name {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}

.xcard__handle {
  display: block;
  font-size: 0.78rem;
  color: var(--slate-500);
}

.xcard__xlogo {
  width: 18px;
  height: 18px;
  margin-left: auto;
  color: var(--slate-400);
}

.xcard__text {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--slate-700);
  flex-grow: 1;
  margin-bottom: var(--space-md);
}

.xcard__date {
  font-size: 0.75rem;
  color: var(--slate-400);
  font-family: var(--font-mono);
}

@media (max-width: 1024px) {
  .xcards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

.activity__cta {
  text-align: center;
}

/* ── SOCIAL STRIP ──────────────────────────────────────────── */

.social {
  padding: var(--space-3xl) 0;
  background: var(--cream-soft);
  text-align: center;
}

.social__heading {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: var(--space-xl);
}

.social__links {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.social__link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--navy);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--slate-200);
  background: var(--white);
  transition: all var(--dur-base) var(--ease-out);
  font-size: 0.85rem;
  font-weight: 500;
}

.social__link svg { width: 18px; height: 18px; flex-shrink: 0; }

.social__link span { color: var(--slate-600); }

.social__link:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.social__link:hover span { color: var(--white); }

/* ── FOOTER ────────────────────────────────────────────────── */

.footer {
  background: var(--navy-deep);
  padding: var(--space-4xl) 0 var(--space-2xl);
  color: var(--slate-400);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__logo-img {
  height: 70px;
  width: auto;
  margin-bottom: var(--space-md);
}

.footer__tagline {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--slate-500);
}

.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: var(--space-lg);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer__col a {
  font-size: 0.9rem;
  color: var(--slate-400);
  transition: color var(--dur-fast) var(--ease-out);
}

.footer__col a:hover { color: var(--cream); }

.footer__bottom {
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__disclaimer {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-600);
}

.footer__copyright {
  font-size: 0.78rem;
  color: var(--slate-600);
}

/* ── SCROLL ANIMATIONS ─────────────────────────────────────── */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}

.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ── RESPONSIVE ────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .hero__layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__text { max-width: 100%; }

  .hero__actions { justify-content: center; }

  /* Hide desktop portrait, show mobile circular headshot */
  .hero__photo--desktop { display: none; }

  .hero__photo--mobile {
    display: flex;
    justify-content: center;
    margin-top: var(--space-2xl);
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 1.2s forwards;
  }

  .hero__photo--mobile .hero__photo-img {
    width: 100%;
    max-width: 300px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    margin: 0 auto;
  }

  .video-section__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .about__image-col {
    max-width: 400px;
    margin: 0 auto;
  }

  .about__gen-badge { right: 0; }

  .platform__grid { grid-template-columns: 1fr; }

  .trail__grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .trail__visual-col { order: -1; }
  .trail__florida-outline { max-width: 320px; }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  :root {
    --space-4xl: 4rem;
    --space-5xl: 5rem;
  }

  .container { padding: 0 var(--space-lg); }

  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem var(--space-2xl) var(--space-2xl);
    gap: var(--space-lg);
    transition: right var(--dur-base) var(--ease-out);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .nav__links.active { right: 0; }
  .nav__links a { font-size: 1.1rem; color: var(--white); }

  .values__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .involved__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .trail__stats { gap: var(--space-xl); }
  .trail__stat-number { font-size: 2rem; }

  .trail__actions {
    justify-content: center;
  }

  .activity__cta {
    text-align: center;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .social__links { gap: var(--space-sm); }
  .social__link span { display: none; }
  .social__link { padding: 0.7rem; border-radius: var(--radius-full); }
  .social__link svg { width: 22px; height: 22px; }
}

@media (max-width: 480px) {
  .hero__content { padding: 6rem var(--space-md) var(--space-3xl); }
  .hero__title { font-size: clamp(2.5rem, 10vw, 3.5rem); }

  .hero__scroll-hint { display: none; }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn { width: 100%; max-width: 280px; margin-left: auto; margin-right: auto; text-align: center; }

  .values__grid { grid-template-columns: 1fr; }

  .about__quote { padding: var(--space-lg); }

  .trail__stats {
    flex-direction: column;
    gap: var(--space-lg);
  }
}

/* Mobile: bigger tap targets + tappable tooltip */
@media (hover: none) and (pointer: coarse) {
  /* Expand county stroke for easier tapping */
  .county-path {
    stroke-width: 1.5;
  }

  /* Make dots bigger on mobile for easier tapping */
  .trail-dot {
    r: 6;
  }

  .hero__scroll-hint { bottom: 1rem; }

  .map-tooltip {
    pointer-events: auto;
  }

  .map-tooltip__video-hint {
    display: inline-block;
    padding: 6px 12px;
    margin-top: 6px;
    background: rgba(231, 98, 36, 0.2);
    border: 1px solid rgba(231, 98, 36, 0.4);
    border-radius: 6px;
    color: var(--orange-glow);
    font-weight: 600;
    font-size: 0.75rem;
    text-decoration: none;
    pointer-events: auto;
  }
}

/* ── WAFFLE / MICRO-DONATIONS ────────────────────────────── */

.waffle {
  padding: var(--space-4xl) 0;
  background: var(--cream);
}

.waffle__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  align-items: center;
}

.waffle__accent { color: var(--orange); }

.waffle__desc {
  color: var(--slate-600);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.waffle__fine-print {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.waffle__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.waffle__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-lg) var(--space-md);
  background: var(--white);
  border: 2px solid var(--slate-200);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--dur-base) var(--ease-out);
  cursor: pointer;
  position: relative;
}

.waffle__card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.waffle__card--featured {
  border-color: var(--orange);
  background: linear-gradient(135deg, #fff8f0 0%, var(--white) 100%);
}

.waffle__badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.waffle__amount {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
}

.waffle__label {
  font-size: 0.85rem;
  color: var(--slate-600);
  margin: var(--space-xs) 0;
}

.waffle__match {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--orange);
  font-weight: 500;
  margin-top: var(--space-xs);
}

.waffle__card--custom {
  border-style: dashed;
  background: transparent;
}

/* Thermometer */
.waffle__thermo {
  margin: var(--space-xl) 0;
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
}

.waffle__thermo-stats {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.waffle__thermo-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
}

.waffle__thermo-label {
  font-size: 0.9rem;
  color: var(--slate-500);
}

.waffle__thermo-bar {
  width: 100%;
  height: 12px;
  background: var(--slate-100);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: var(--space-xs);
}

.waffle__thermo-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-warm) 50%, var(--gold) 100%);
  border-radius: var(--radius-full);
  transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.waffle__thermo-goal {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--slate-400);
}

.waffle__card--custom .waffle__amount { color: var(--slate-400); }

@media (max-width: 1024px) {
  .waffle__inner { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 768px) {
  .waffle__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .waffle__grid { grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
  .waffle__card { padding: var(--space-md) var(--space-sm); }
  .waffle__amount { font-size: 1.4rem; }
}

/* ── VOTER REGISTRATION BANNER ──────────────────────────── */

.voter-banner {
  padding: var(--space-xl) 0;
  background: var(--orange);
  color: var(--white);
}

.voter-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.voter-banner__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.voter-banner__desc { font-size: 0.9rem; opacity: 0.9; }
.voter-banner__desc strong { color: var(--white); }

.voter-banner__actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.voter-banner .btn--primary {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.voter-banner .btn--primary:hover { background: var(--navy-deep); }

.voter-banner .btn--outline-dark {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.voter-banner .btn--outline-dark:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

@media (max-width: 768px) {
  .voter-banner__inner { flex-direction: column; text-align: center; }
  .voter-banner__actions { flex-direction: column; width: 100%; align-items: center; }
  .voter-banner__actions .btn { width: 100%; max-width: 320px; text-align: center; }
}

/* ── VOTE PAGE ──────────────────────────────────────────── */

.vote-hero {
  padding: var(--space-3xl) 0 var(--space-2xl);
  background: var(--cream-white);
}

.vote-hero__subtitle {
  font-size: 1.1rem;
  color: var(--slate-600);
  max-width: 600px;
  line-height: 1.8;
  margin-top: var(--space-md);
}

.vote-steps { padding: var(--space-3xl) 0; }

.vote-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.vote-steps__card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
}

.vote-steps__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: var(--space-lg);
}

.vote-steps__card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: var(--space-md);
}

.vote-steps__card p { color: var(--slate-600); margin-bottom: var(--space-lg); line-height: 1.7; }
.vote-steps__card .btn { display: block; margin-bottom: var(--space-sm); text-align: center; }
.vote-steps__note {
  font-size: 0.8rem;
  color: var(--slate-500);
  margin-top: var(--space-md);
  line-height: 1.5;
}
.vote-steps__note a { color: var(--orange); text-decoration: underline; }

@media (max-width: 768px) {
  .vote-steps__grid { grid-template-columns: 1fr; }
  .vote-steps__card { text-align: center; }
  .vote-steps__card .btn { margin-left: auto; margin-right: auto; max-width: 320px; }
  .vote-find__links { flex-direction: column; align-items: center; }
  .vote-find__links .btn { width: 100%; max-width: 320px; text-align: center; }
  .vote-cta__inner .btn { margin-left: auto; margin-right: auto; }
}

/* Timeline */
.vote-dates {
  padding: var(--space-3xl) 0;
  background: var(--cream);
}

.timeline {
  max-width: 640px;
  margin: var(--space-2xl) auto 0;
  position: relative;
}

/* Vertical line — stops before the last item (no trailing line) */
.timeline::before {
  content: '';
  position: absolute;
  left: 50px;
  top: 20px;
  bottom: var(--space-xl);
  width: 2px;
  background: linear-gradient(180deg, var(--slate-200) 0%, var(--slate-200) 85%, transparent 100%);
  z-index: 0;
}

.timeline__item {
  display: flex;
  gap: var(--space-xl);
  padding-bottom: var(--space-2xl);
  position: relative;
}

/* Last item has no bottom padding (and the line fades above it) */
.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__date {
  width: 100px;
  flex-shrink: 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  position: relative;
  z-index: 2;
  background: var(--white);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--slate-200);
  box-shadow: 0 1px 3px rgba(1, 47, 71, 0.06);
  line-height: 1.2;
}

/* Special styling for deadline and primary dates */
.timeline__item--deadline .timeline__date {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 2px 8px rgba(231, 98, 36, 0.25);
}

.timeline__item--primary .timeline__date {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 2px 8px rgba(1, 47, 71, 0.25);
}

/* Node dots on the timeline */
.timeline__item::after {
  content: '';
  position: absolute;
  left: 45px;
  top: 12px;
  width: 12px; height: 12px;
  background: var(--white);
  border: 2.5px solid var(--slate-300);
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 0 3px var(--cream);
}

.timeline__item--deadline::after {
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: 0 0 0 3px var(--cream), 0 0 0 5px rgba(231, 98, 36, 0.2);
}

.timeline__item--primary::after {
  border-color: var(--navy);
  background: var(--navy);
  box-shadow: 0 0 0 3px var(--cream), 0 0 0 5px rgba(1, 47, 71, 0.2);
}

.timeline__content {
  flex: 1;
  padding-top: 2px;
}

.timeline__content h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.timeline__content p { font-size: 0.9rem; color: var(--slate-600); line-height: 1.7; }
.timeline__content a { color: var(--orange); text-decoration: underline; }

/* Voting options */
.vote-options { padding: var(--space-3xl) 0; }

.vote-options__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.vote-options__card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.vote-options__card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.vote-options__range {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--orange);
  margin-bottom: var(--space-md);
}

.vote-options__list { padding-left: var(--space-lg); margin-bottom: var(--space-md); }
.vote-options__list li { list-style: disc; color: var(--slate-600); margin-bottom: var(--space-xs); line-height: 1.6; font-size: 0.9rem; }
.vote-options__list li::marker { color: var(--orange); }

.vote-options__rec {
  font-size: 0.8rem;
  color: var(--slate-500);
  font-style: italic;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--slate-100);
}

@media (max-width: 768px) {
  .vote-options__grid { grid-template-columns: 1fr; }
  .vote-options__card { text-align: center; }
}

/* Find polling + rights */
.vote-find {
  padding: var(--space-3xl) 0;
  background: var(--navy);
  color: var(--cream);
}

.vote-find__inner { max-width: 640px; margin: 0 auto; text-align: center; }
.vote-find .section-title { color: var(--cream); }
.vote-find p { color: var(--slate-300); line-height: 1.7; margin-bottom: var(--space-lg); }
.vote-find__links { display: flex; gap: var(--space-md); justify-content: center; margin-bottom: var(--space-lg); flex-wrap: wrap; }
.vote-find .btn--outline-dark { border-color: rgba(255,255,255,0.3); color: var(--cream); }
.vote-find .btn--outline-dark:hover { background: rgba(255,255,255,0.1); border-color: var(--cream); }
.vote-find__note { font-size: 0.85rem; color: var(--slate-400); }
.vote-find__note a { color: var(--orange-warm); }

.vote-rights { padding: var(--space-3xl) 0; }

.vote-rights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.vote-rights__item {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.vote-rights__item h4 {
  font-family: var(--font-display);
  color: var(--navy);
  margin-bottom: var(--space-md);
}

.vote-rights__item ul { padding-left: var(--space-lg); }
.vote-rights__item li { list-style: disc; color: var(--slate-600); margin-bottom: var(--space-xs); line-height: 1.6; font-size: 0.9rem; }
.vote-rights__item li::marker { color: var(--orange); }

@media (max-width: 768px) {
  .vote-rights__grid { grid-template-columns: 1fr; }
  .vote-rights__item { text-align: center; }
  .vote-rights__item ul { text-align: left; display: inline-block; }
}

.vote-cta {
  padding: var(--space-2xl) 0;
  background: var(--cream);
  text-align: center;
}

.vote-cta__inner {
  max-width: 480px;
  margin: 0 auto;
}

.vote-cta h2 { font-family: var(--font-display); color: var(--navy); margin-bottom: var(--space-sm); }
.vote-cta p { color: var(--slate-600); margin-bottom: var(--space-lg); }

/* ── STORIES PAGE ───────────────────────────────────────── */

.stories-hero {
  padding: var(--space-3xl) 0 var(--space-2xl);
  background: var(--cream-white);
}

.stories-hero__subtitle {
  font-size: 1.1rem;
  color: var(--slate-600);
  max-width: 600px;
  line-height: 1.8;
  margin-top: var(--space-md);
}

.stories-filter { padding: var(--space-lg) 0; background: var(--cream); }

.stories-filter__bar {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.stories-filter__select {
  padding: 0.5rem 1rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--white);
  cursor: pointer;
}

.stories-wall { padding: var(--space-3xl) 0; }

.stories-wall__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.stories-wall__loading, .stories-wall__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--space-3xl);
  color: var(--slate-500);
}

.stories-wall__empty h3 { font-family: var(--font-display); color: var(--navy); margin-bottom: var(--space-sm); }
.stories-wall__more { text-align: center; margin-top: var(--space-xl); }

.story-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}

.story-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.story-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--slate-700);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.story-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.story-card__author strong { font-size: 0.9rem; color: var(--navy); }
.story-card__author span { font-size: 0.8rem; color: var(--slate-500); }

/* Stories submit */
.stories-submit {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--cream);
}

.stories-submit__inner { max-width: 720px; margin: 0 auto; }
.stories-submit .section-title { color: var(--cream); }
.stories-submit__text { text-align: center; margin-bottom: var(--space-2xl); }
.stories-submit__text p { color: var(--slate-300); line-height: 1.7; }

.stories-submit__form { text-align: left; }
.stories-submit__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); margin-bottom: var(--space-md); }

.form-field { margin-bottom: var(--space-md); }
.form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--slate-300);
  margin-bottom: 4px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.form-field__hint { font-weight: 400; color: var(--slate-500); text-transform: none; font-family: var(--font-body); }

.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.form-field input::placeholder, .form-field textarea::placeholder { color: var(--slate-500); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255,255,255,0.12);
}

.form-field select { cursor: pointer; }
.form-field select option { background: var(--navy-deep); color: var(--cream); }

.form-field textarea { resize: vertical; min-height: 120px; }

.stories-submit__consent {
  margin-bottom: var(--space-lg);
}

.stories-submit__consent label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--slate-300);
  line-height: 1.5;
  cursor: pointer;
}

.stories-submit__consent input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--orange);
}

.stories-submit__consent a { color: var(--orange-warm); text-decoration: underline; }

.stories-submit__btn { width: 100%; font-size: 1.05rem; padding: 0.9rem; }
.stories-submit__btn:disabled { opacity: 0.6; cursor: not-allowed; }

.stories-submit__note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--slate-500);
  margin-top: var(--space-md);
}

.stories-submit__success { text-align: center; padding: var(--space-2xl); }
.stories-submit__success h3 { font-family: var(--font-display); color: var(--cream); margin-bottom: var(--space-sm); font-size: 1.5rem; }
.stories-submit__success p { color: var(--slate-300); }

@media (max-width: 768px) {
  .stories-submit__row { grid-template-columns: 1fr; }
}

/* ── SIGNUP / STAY CONNECTED ─────────────────────────────── */

.signup {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-light) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.signup::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(231, 98, 36, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.signup__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.signup .section-eyebrow { color: var(--orange-warm); }
.signup .section-title { color: var(--cream); }
.signup__accent { color: var(--orange-warm); }

.signup__desc {
  color: var(--slate-300);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
}

.signup__form {
  text-align: left;
}

.signup__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.signup__field--county {
  grid-column: 1 / -1;
}

.signup__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate-300);
  margin-bottom: var(--space-xs);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.signup__optional {
  font-weight: 400;
  color: var(--slate-500);
  text-transform: none;
  font-family: var(--font-body);
}

.signup__input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}

.signup__input::placeholder { color: var(--slate-500); }
.signup__input:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.12);
}

.signup__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238ba3b7' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.signup__select option {
  background: var(--navy-deep);
  color: var(--cream);
}

.signup__error {
  display: block;
  font-size: 0.8rem;
  color: #ff6b6b;
  min-height: 1.2em;
  margin-top: 4px;
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease-out);
}

.signup__error--visible { opacity: 1; }

.signup__consent {
  margin-bottom: var(--space-lg);
}

.signup__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--slate-300);
  line-height: 1.5;
}

.signup__checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--orange);
  cursor: pointer;
}

.signup__checkbox-text a {
  color: var(--orange-warm);
  text-decoration: underline;
  text-decoration-color: rgba(231, 98, 36, 0.4);
  transition: text-decoration-color var(--dur-fast) var(--ease-out);
}

.signup__checkbox-text a:hover {
  text-decoration-color: var(--orange-warm);
}

.signup__submit {
  width: 100%;
  font-size: 1.05rem;
  padding: 0.9rem 2rem;
}

.signup__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.signup__privacy-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--slate-500);
  margin-top: var(--space-md);
  line-height: 1.5;
}

.signup__privacy-note strong { color: var(--slate-400); }

/* Success state */
.signup__success {
  text-align: center;
  padding: var(--space-2xl) 0;
}

.signup__success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  color: var(--orange-warm);
}

.signup__success-icon svg { width: 100%; height: 100%; }

.signup__success-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: var(--space-sm);
}

.signup__success-text {
  color: var(--slate-300);
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .signup__fields {
    grid-template-columns: 1fr;
  }
}

/* ── PRINT ─────────────────────────────────────────────────── */

@media print {
  .nav, .hero__scroll-hint, .social, .involved, .video-section { display: none; }
  .hero { min-height: auto; padding: 2rem; }
  .hero__bg, .hero__overlay { display: none; }
  .hero__title, .hero__subtitle, .hero__mission { color: black; -webkit-text-fill-color: black; }
  body { color: black; background: white; }
}
