/* ========== Jancie Vinson — Campaign Site ========== */
:root {
  /* Hybrid palette: navy primary + logo purple/green accents + patriotic red */
  --navy: #0a2756;
  --navy-deep: #061a3d;
  --navy-light: #1a3d75;
  --red: #c8102e;
  --red-deep: #9c0c25;
  --green: #00a838;        /* slightly toned from #00cc00 for accessibility */
  --green-bright: #00cc00;
  --purple: #5e3192;       /* slightly toned from #663399 */
  --purple-bright: #663399;
  --cream: #fbf8f1;
  --paper: #ffffff;
  --ink: #16171c;
  --ink-soft: #424551;
  --line: #e3e6ec;
  --gold: #f5b700;

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Source Sans 3", "Source Sans Pro", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-cond: "Oswald", "Source Sans 3", sans-serif;

  --radius: 6px;
  --shadow-sm: 0 2px 6px rgba(10, 39, 86, 0.08);
  --shadow-md: 0 8px 28px rgba(10, 39, 86, 0.12);
  --shadow-lg: 0 24px 60px rgba(10, 39, 86, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 4.8vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }
a { color: var(--navy); }

.eyebrow {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  max-width: 1280px; margin: 0 auto;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--navy);
}
.nav-brand-mark {
  width: 44px; height: 44px;
  background: var(--navy);
  color: white;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  border-radius: 4px;
  border: 2px solid var(--gold);
}
.nav-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1;
}
.nav-brand-sub {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 3px;
}
.nav-links {
  display: flex; gap: 28px; align-items: center;
}
.nav-links a {
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--red); }
.nav-cta {
  background: var(--red);
  color: white !important;
  padding: 10px 20px;
  border-radius: 4px;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--red-deep); color: white !important; }
.nav-mobile-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: white; padding: 20px; gap: 16px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    align-items: flex-start;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0; cursor: pointer;
  border-radius: 4px;
  transition: all 0.18s;
}
.btn-primary { background: var(--red); color: white; }
.btn-primary:hover { background: var(--red-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--navy); color: white; }
.btn-secondary:hover { background: var(--navy-deep); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: white;
  border: 2px solid white;
}
.btn-outline:hover { background: white; color: var(--navy); }
.btn-ghost {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: white; }

/* ===== HERO ===== */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(6,26,61,0.92) 0%, rgba(94,49,146,0.88) 100%),
    url('assets/jancie-speaking.jpeg') center/cover;
  color: white;
  overflow: hidden;
  padding: 80px 0 100px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent 0 80px,
      rgba(255,255,255,0.03) 80px 81px
    );
  pointer-events: none;
}
.hero-stripes {
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(to right,
    var(--red) 0%, var(--red) 33%,
    white 33%, white 66%,
    var(--navy) 66%, var(--navy) 100%);
}
.hero-content {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero h1 { color: white; font-size: clamp(2.4rem, 5.2vw, 4.2rem); margin-bottom: 0.3em; }
.hero h1 .accent-red { color: #ff6478; }
.hero h1 .accent-gold { color: var(--gold); }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-cond);
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding: 8px 14px;
  border: 1px solid rgba(245, 183, 0, 0.4);
  border-radius: 3px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; background: var(--gold); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  margin: 24px 0 32px;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  max-width: 560px;
}
.hero-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin: 28px 0 36px;
  font-family: var(--font-cond);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}
.hero-meta-item { display: flex; align-items: center; gap: 8px; }
.hero-meta-item svg { flex-shrink: 0; }
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero photo card */
.hero-portrait {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--cream);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-portrait::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0;
  height: 8px;
  background: linear-gradient(to right, var(--red) 33%, white 33% 66%, var(--navy) 66%);
}
.hero-badge {
  position: absolute;
  top: -18px; right: -18px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  padding: 12px 20px;
  border-radius: 3px;
  transform: rotate(4deg);
  box-shadow: var(--shadow-md);
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-portrait { max-width: 360px; margin: 0 auto; }
}

/* ===== COUNTDOWN ===== */
.countdown-bar {
  background: var(--navy-deep);
  color: white;
  padding: 20px 0;
  border-bottom: 4px solid var(--red);
}
.countdown-inner {
  display: flex; align-items: center; justify-content: center; gap: 32px;
  flex-wrap: wrap;
}
.countdown-label {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
  color: var(--gold);
}
.countdown-units { display: flex; gap: 18px; }
.countdown-unit { text-align: center; min-width: 64px; }
.countdown-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: white;
  display: block;
}
.countdown-text {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* ===== BRAND BAND ===== */
.brand-band {
  background: white;
  padding: 0;
}
.brand-band-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.brand-band-inner img {
  max-width: 560px;
  width: 100%;
  height: auto;
  display: block;
  /* Pop the white-bg logo cleanly onto a white page */
  mix-blend-mode: multiply;
}
.brand-band-rule {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line), transparent);
}
.brand-band-tagline {
  text-align: center;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: -12px 0 24px;
}
@media (max-width: 700px) {
  .brand-band-inner { grid-template-columns: 1fr; gap: 0; }
  .brand-band-rule { display: none; }
  .brand-band-inner img { max-width: 380px; margin: 0 auto; }
  .brand-band-tagline { font-size: 0.72rem; letter-spacing: 0.22em; margin-top: -4px; }
}

/* ===== VALUES STRIP ===== */
.values-strip {
  background: var(--cream);
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.values-row {
  display: flex; justify-content: space-around; align-items: center;
  flex-wrap: wrap; gap: 24px;
}
.value-pill {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy);
}
.value-pill .star {
  color: var(--red);
  font-size: 1.2rem;
}

/* ===== SECTION COMMON ===== */
.section { padding: 96px 0; }
.section-title {
  text-align: center;
  margin-bottom: 56px;
}
.section-title h2 { margin-bottom: 12px; }
.section-title p {
  color: var(--ink-soft);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto;
}
.section-divider {
  width: 60px; height: 4px;
  background: var(--red);
  margin: 16px auto 24px;
}

/* ===== ABOUT ===== */
.about { background: white; padding-top: 10px; }
.about-tagline {
  text-align: center;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.95rem;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 72px;
}
@media (max-width: 700px) {
  .about-tagline { font-size: 0.78rem; letter-spacing: 0.22em; margin-bottom: 56px; }
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 60px; align-items: center;
}
.about-photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-frame {
  position: absolute; inset: -20px; z-index: -1;
  border: 3px solid var(--gold);
  transform: translate(20px, 20px);
}
.about-text .eyebrow { margin-bottom: 12px; }
.about-bio { font-size: 1.05rem; color: var(--ink-soft); }
.about-bio strong { color: var(--navy); }

.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.about-stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--red);
}
.about-stat-label {
  font-family: var(--font-cond);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 380px; margin: 0 auto; }
}

/* ===== PRIORITIES ===== */
.priorities {
  background: linear-gradient(180deg, var(--cream) 0%, white 100%);
}
.priorities-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.priority-card {
  background: white;
  border-radius: 8px;
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--red);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.priority-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.priority-card:nth-child(2) { border-top-color: var(--navy); }
.priority-card:nth-child(3) { border-top-color: var(--purple); }
.priority-card:nth-child(4) { border-top-color: var(--green); }
.priority-icon {
  width: 56px; height: 56px;
  border-radius: 8px;
  background: var(--cream);
  color: var(--red);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.priority-card:nth-child(2) .priority-icon { color: var(--navy); }
.priority-card:nth-child(3) .priority-icon { color: var(--purple); }
.priority-card:nth-child(4) .priority-icon { color: var(--green); }
.priority-card h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.priority-card ul {
  list-style: none; padding: 0; margin: 16px 0 0;
}
.priority-card li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--ink-soft);
}
.priority-card li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--green);
  font-weight: 700;
}
@media (max-width: 700px) {
  .priorities-grid { grid-template-columns: 1fr; }
}

/* ===== QUOTE ===== */
.quote-section {
  background: var(--navy);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: """;
  position: absolute;
  top: -40px; left: 5%;
  font-family: var(--font-display);
  font-size: 24rem;
  line-height: 1;
  color: rgba(255,255,255,0.05);
  font-weight: 700;
}
.quote-content {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.quote-content blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.4;
  color: white;
  margin: 0 0 28px;
}
.quote-attrib {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.92rem;
  color: var(--gold);
}

/* ===== INVOLVED ===== */
.involved { background: white; }
.involved-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.involved-card {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: all 0.2s;
}
.involved-card:hover { border-color: var(--red); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.involved-card-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  background: var(--navy);
  color: var(--gold);
  display: grid; place-items: center;
  border-radius: 50%;
}
.involved-card h3 { margin-bottom: 8px; }
.involved-card p { color: var(--ink-soft); font-size: 0.96rem; }
@media (max-width: 800px) {
  .involved-grid { grid-template-columns: 1fr; }
}

/* ===== DONATE ===== */
.donate {
  background: linear-gradient(135deg, var(--navy) 0%, var(--purple) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.donate::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0 60px,
    rgba(255,255,255,0.02) 60px 61px
  );
}
.donate .section-title h2 { color: white; }
.donate .section-title p { color: rgba(255,255,255,0.85); }
.donate-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  position: relative; z-index: 1;
  align-items: start;
}
.donate-form-card {
  background: white;
  color: var(--ink);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}
.donate-form-card h3 {
  margin-bottom: 8px;
  text-align: center;
}
.donate-form-card .form-sub {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.amount-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.amount-btn {
  padding: 14px;
  border: 2px solid var(--line);
  background: white;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.15s;
  color: var(--navy);
}
.amount-btn:hover { border-color: var(--red); }
.amount-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: white;
}
.donate-info {
  color: white;
}
.donate-info h3 { color: white; }
.donate-info-list {
  list-style: none; padding: 0; margin: 24px 0 0;
}
.donate-info-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  display: flex; gap: 14px; align-items: flex-start;
}
.donate-info-list li svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.donate-disclaimer {
  margin-top: 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .donate-grid { grid-template-columns: 1fr; }
  .donate-form-card { padding: 28px; }
}

/* ===== SUPPORT / MAIL CARD ===== */
.support-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  position: relative; z-index: 1;
  align-items: start;
}
.mail-card {
  background: white;
  color: var(--ink);
  padding: 44px 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  border-top: 6px solid var(--gold);
  position: relative;
}
.mail-card-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.9rem;
  color: var(--red);
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.mail-card-eyebrow svg { color: var(--red); }
.mail-card-block {
  margin-bottom: 22px;
}
.mail-card-block:last-child { margin-bottom: 0; }
.mail-label {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.mail-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  line-height: 1.35;
  color: var(--navy);
}
.mail-value a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
}
.mail-value a:hover { color: var(--red); }
.mail-value-sm {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .support-grid { grid-template-columns: 1fr; }
  .mail-card { padding: 32px 24px; }
  .mail-value { font-size: 1.2rem; }
}

/* ===== FORMS ===== */
.form-group { margin-bottom: 14px; }
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-label {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
  font-weight: 600;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  background: white;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: 0;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10, 39, 86, 0.1);
}
.form-textarea { min-height: 110px; resize: vertical; font-family: inherit; }
.form-submit { width: 100%; margin-top: 8px; }
.form-success {
  background: #e6f7eb;
  border: 1.5px solid var(--green);
  color: #0a5d20;
  padding: 14px;
  border-radius: 4px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

/* ===== VOTER INFO ===== */
.voter-info {
  background: var(--cream);
}
.voter-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.voter-card {
  background: white;
  padding: 28px;
  border-radius: 8px;
  border-left: 4px solid var(--navy);
  box-shadow: var(--shadow-sm);
}
.voter-card .eyebrow { color: var(--navy); font-size: 0.78rem; }
.voter-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 6px 0 12px;
}
.voter-card .date-big {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red);
  font-weight: 700;
  line-height: 1;
}
.voter-card .date-sub {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 4px;
}
.voter-card a {
  color: var(--red);
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  text-decoration: none;
}
.voter-card a:hover { text-decoration: underline; }
@media (max-width: 800px) {
  .voter-grid { grid-template-columns: 1fr; }
}

/* ===== CONTACT ===== */
.contact { background: white; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: var(--cream);
  padding: 36px;
  border-radius: 8px;
  border-top: 4px solid var(--red);
}
.contact-info-card h3 { margin-bottom: 20px; }
.contact-info-list { list-style: none; padding: 0; margin: 0; }
.contact-info-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex; gap: 14px; align-items: flex-start;
}
.contact-info-list li:last-child { border-bottom: 0; }
.contact-info-list li svg { color: var(--red); flex-shrink: 0; margin-top: 3px; }
.contact-info-list a { color: var(--navy); text-decoration: none; word-break: break-word; }
.contact-info-list a:hover { color: var(--red); }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-links a {
  width: 40px; height: 40px;
  background: var(--navy);
  color: white;
  display: grid; place-items: center;
  border-radius: 50%;
  transition: background 0.15s;
}
.social-links a:hover { background: var(--red); }

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

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.8);
  padding: 56px 0 32px;
}
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer h4 {
  color: white;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 8px; }
.footer ul a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.95rem;
}
.footer ul a:hover { color: var(--gold); }
.footer-brand-logo {
  display: block;
  background: white;
  padding: 14px 18px;
  border-radius: 6px;
  margin-bottom: 18px;
  max-width: 260px;
}
.footer-brand-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.footer-bottom {
  padding-top: 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
  line-height: 1.6;
}
.footer-disclaimer {
  font-style: italic;
  margin-top: 12px;
  font-size: 0.78rem;
}
@media (max-width: 800px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ===== TIMELINE (about extra) ===== */
.timeline {
  margin-top: 24px;
}
.timeline-item {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.timeline-year {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--red);
  font-size: 1.1rem;
}
.timeline-text { color: var(--ink-soft); font-size: 0.96rem; }

/* ===== CAMPAIGN SONG PLAYER ===== */
.song-section {
  padding: 64px 0;
  background:
    linear-gradient(135deg, var(--cream) 0%, #fff 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.song-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px 1fr;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  max-width: 900px;
  margin: 0 auto;
}
.song-art {
  position: relative;
  background: radial-gradient(circle at 30% 30%, var(--navy-light) 0%, var(--navy) 40%, var(--navy-deep) 100%);
  display: grid;
  place-items: center;
  padding: 28px;
}
.song-stripes {
  position: absolute; top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(to right,
    var(--red) 0%, var(--red) 33%,
    white 33%, white 66%,
    var(--gold) 66%, var(--gold) 100%);
}
.song-art-disc {
  width: 150px; height: 150px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(
      circle at center,
      #1a1a1a 0,
      #1a1a1a 2px,
      #2a2a2a 2px,
      #2a2a2a 3px
    );
  display: grid; place-items: center;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.08), 0 12px 30px rgba(0,0,0,0.4);
  position: relative;
}
.song-art-disc::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.06), transparent 60%);
  pointer-events: none;
}
.song-art-center {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--navy);
  box-shadow: inset 0 0 0 2px var(--navy);
  position: relative;
  z-index: 1;
}
.song-body {
  padding: 28px 32px;
  display: flex; flex-direction: column; justify-content: center;
}
.song-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.song-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--navy);
  margin: 0 0 6px;
  line-height: 1.05;
}
.song-sub {
  color: var(--ink-soft);
  font-size: 0.96rem;
  margin: 0 0 18px;
}
.song-controls {
  display: flex; align-items: center; gap: 16px;
}
.song-play {
  flex-shrink: 0;
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 0;
  background: var(--red);
  color: white;
  cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(200, 16, 46, 0.35);
  transition: transform 0.15s, background 0.15s;
}
.song-play:hover { background: var(--red-deep); transform: scale(1.05); }
.song-play:active { transform: scale(0.96); }
.song-track-wrap { flex: 1; min-width: 0; }
.song-track {
  position: relative;
  height: 8px;
  background: var(--line);
  border-radius: 999px;
  cursor: pointer;
  overflow: visible;
}
.song-track-fill {
  position: absolute; top: 0; left: 0; bottom: 0;
  background: linear-gradient(to right, var(--red) 0%, var(--gold) 100%);
  border-radius: 999px;
  transition: width 0.1s linear;
}
.song-track-knob {
  position: absolute; top: 50%;
  width: 14px; height: 14px;
  background: white;
  border: 2px solid var(--red);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  transition: left 0.1s linear;
}
.song-times {
  display: flex; justify-content: space-between;
  margin-top: 6px;
  font-family: var(--font-cond);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}
@media (max-width: 700px) {
  .song-card { grid-template-columns: 1fr; }
  .song-art { padding: 32px; }
  .song-art-disc { width: 130px; height: 130px; }
  .song-body { padding: 24px; }
  .song-title { font-size: 1.5rem; }
}

/* ===== SONG SHARE ===== */
.song-share {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.song-share-label {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
  font-weight: 600;
}
.song-share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  color: white;
  transition: transform 0.15s, opacity 0.15s, background 0.15s;
  font-family: var(--font-cond);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0;
}
.share-btn:hover { transform: translateY(-2px); opacity: 0.92; }
.share-fb { background: #1877f2; }
.share-x { background: #0a0a0a; }
.share-sms { background: #00a838; }
.share-email { background: var(--purple); }
.share-link {
  background: var(--navy);
  width: auto;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.share-btn-text {
  font-size: 0.78rem;
}
.song-disclaimer {
  max-width: 900px;
  margin: 18px auto 0;
  text-align: center;
  font-size: 0.68rem;
  line-height: 1.5;
  color: var(--ink-soft);
  font-style: italic;
  letter-spacing: 0.02em;
  padding: 0 20px;
}
