/* ═══════════════════════════════════════════════════════════════
   MIKE ZELLER FOR SCOTTS VALLEY CITY COUNCIL 2026
   Full SPA Stylesheet
   ═══════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --blue:        #1A4FA8;
  --blue-dark:   #122F6B;
  --blue-mid:    #1E5BBF;
  --blue-light:  #2B6AD4;
  --gold:        #E8A830;
  --gold-light:  #F5C355;
  --gold-dark:   #C8901A;
  --white:       #FFFFFF;
  --off-white:   #F4F7FC;
  --gray-light:  #E8EDF5;
  --gray:        #94A3B8;
  --text:        #1A1A2E;
  --text-muted:  #4A5568;
  --radius:      6px;
  --radius-lg:   12px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.14);
  --trans:       0.28s ease;
  --nav-h:       64px;
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ─── ACCESSIBILITY ──────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Skip link */
.skip-link {
  position: absolute; top: -200%; left: 1rem;
  background: var(--gold); color: var(--text);
  padding: 0.6rem 1.25rem; font-weight: 700;
  border-radius: var(--radius); z-index: 9999;
  font-size: 0.875rem; letter-spacing: 0.04em;
}
.skip-link:focus { top: 1rem; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
.display-xl {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.015em;
}
.display-lg {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.display-md {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.75;
  color: var(--text-muted);
}
.body-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.body-text + .body-text { margin-top: 1rem; }

/* ─── LAYOUT UTILITIES ───────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3.5rem 0; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 700; font-size: 0.875rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer; transition: all var(--trans);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold); color: var(--blue-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light); border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,168,48,0.4);
}
.btn-secondary {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-secondary:hover {
  border-color: var(--white); background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: var(--blue-dark);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue); color: var(--white);
  transform: translateY(-2px);
}
.btn-gold-dark {
  background: var(--blue-dark); color: var(--white);
  border-color: var(--blue-dark);
}
.btn-gold-dark:hover {
  background: var(--blue); border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(18,47,107,0.35);
}
.btn-lg { padding: 1rem 2.25rem; font-size: 0.95rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── NAV ────────────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 2rem;
  background: transparent;
  transition: background var(--trans), box-shadow var(--trans), height var(--trans);
}
.site-nav.solid {
  background: var(--blue-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  height: 56px;
}
.site-nav.page-nav { background: var(--blue-dark); }
.nav-inner {
  max-width: 1100px; width: 100%; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 1.3rem;
  color: var(--white); text-transform: uppercase;
  letter-spacing: 0.03em;
}
.brand-sub {
  font-size: 0.6rem; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.14em;
  font-weight: 700;
}
.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-link {
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.4rem 0.75rem; border-radius: 4px;
  transition: color var(--trans), background var(--trans);
}
.nav-link:hover,
.nav-link.active { color: var(--gold); }
.nav-donate {
  background: var(--gold); color: var(--blue-dark) !important;
  padding: 0.45rem 1.1rem; border-radius: var(--radius);
  font-weight: 700; margin-left: 0.5rem;
  transition: background var(--trans), transform var(--trans);
}
.nav-donate:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--trans);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 199;
  background: var(--blue-dark);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 1.75rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.75rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--white); transition: color var(--trans);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-donate {
  background: var(--gold); color: var(--blue-dark) !important;
  padding: 0.75rem 2.5rem; border-radius: var(--radius);
}

/* ─── PAGE VIEWS (SPA) ───────────────────────────────────────── */
.page-view { display: none; }
.page-view.active { display: block; }

/* ─── WAVE SVG DIVIDER ───────────────────────────────────────── */
.wave-divider { width: 100%; overflow: hidden; line-height: 0; }
.wave-divider svg { display: block; width: 100%; }

/* ─── FADE-IN ON SCROLL ──────────────────────────────────────── */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: none; }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* ════════════════════════════════════════════════════════════════
   HOME PAGE
   ════════════════════════════════════════════════════════════════ */

/* Hero */
.hero {
  min-height: 100vh;
  background: linear-gradient(155deg, var(--blue-dark) 0%, var(--blue) 55%, var(--blue-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 3rem) 2rem 5rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 35% 55%, rgba(232,168,48,0.09) 0%, transparent 58%);
  pointer-events: none;
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-particles span {
  position: absolute; width: 2px; height: 2px;
  background: rgba(255,255,255,0.22);
  border-radius: 50%;
  animation: particle-drift linear infinite;
}
@keyframes particle-drift {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-110vh) translateX(20px); opacity: 0; }
}
.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero-eyebrow {
  opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
  margin-bottom: 1.1rem;
}
.hero-name {
  color: var(--white); margin-bottom: 0.15em;
  opacity: 0; animation: fadeUp 0.8s 0.35s forwards;
}
.hero-name .gold { color: var(--gold); }
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.82); line-height: 1.65;
  max-width: 620px; margin: 1.25rem auto 0;
  opacity: 0; animation: fadeUp 0.8s 0.5s forwards;
}
.hero-actions {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap; margin-top: 2.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.65s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* Intro split */
.intro-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}

.intro-photo {
  aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  position: relative;
}
.intro-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.intro-photo:hover img { transform: scale(1.03); }
.photo-placeholder {
  width: 100%; height: 100%; min-height: 280px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 0.75rem;
  color: rgba(255,255,255,0.35); font-size: 0.8rem; text-align: center; padding: 2rem;
}
.photo-placeholder svg { opacity: 0.4; }
.intro-text .eyebrow { display: block; margin-bottom: 0.6rem; }
.intro-text h2 { color: var(--blue-dark); margin-bottom: 1.25rem; }
.intro-text .body-text { margin-bottom: 1rem; }
.intro-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 2rem; }

/* Stats strip */
.stats-strip {
  background: var(--off-white);
  padding: 2.5rem 0;
}
.stats-row {
  display: flex; gap: 0; justify-content: center;
  flex-wrap: wrap; max-width: 900px; margin: 0 auto;
}
.stat-item {
  flex: 1; min-width: 180px;
  text-align: center; padding: 1.5rem 2rem;
  border-right: 1px solid rgba(0,0,0,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 2.5rem;
  color: var(--blue-dark); line-height: 1;
}
.stat-label {
  font-size: 0.8rem; color: var(--text-muted);
  margin-top: 0.3rem; line-height: 1.4;
}
.stat-number .unit { font-size: 1.4rem; }

/* Priorities preview */
.priorities-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.priority-preview-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.75rem; border: 1px solid var(--gray-light);
  border-top: 3px solid var(--blue);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  cursor: pointer;
}
.priority-preview-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--gold);
}
.ppc-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; color: var(--blue);
  transition: background var(--trans), color var(--trans);
}
.priority-preview-card:hover .ppc-icon { background: var(--gold); color: var(--blue-dark); }
.ppc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.15rem;
  color: var(--blue-dark); text-transform: uppercase;
  letter-spacing: 0.04em; margin-bottom: 0.5rem;
}
.ppc-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* Message from Mike */
.mike-message {
  background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 5rem 0; position: relative; overflow: hidden;
}
.mike-message::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(232,168,48,0.07) 0%, transparent 55%);
  pointer-events: none;
}
.mike-message-inner {
  max-width: 760px; margin: 0 auto; padding: 0 2rem;
  position: relative; z-index: 1;
  text-align: center;
}
.quote-mark {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 8rem; color: var(--gold); opacity: 0.25;
  line-height: 0.6; margin-bottom: 1rem;
  user-select: none;
}
.mike-quote {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.8; font-style: italic;
  margin-bottom: 2.5rem;
}
.mike-sig {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.1rem;
  color: var(--gold); letter-spacing: 0.08em;
}
.mike-sig-title { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 0.2rem; }
.message-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; }

/* ─── PHOTO CREDIT ───────────────────────────────────────────── */
.photo-credit {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  margin: 0;
  padding: 0.5rem 0.75rem;
  background: rgba(18, 47, 107, 0.72);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}
.photo-credit svg {
  flex-shrink: 0;
  opacity: 0.7;
  stroke: rgba(255,255,255,0.8);
}
.photo-credit a {
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,168,48,0.4);
  transition: color var(--trans), border-color var(--trans);
}
.photo-credit a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ════════════════════════════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(155deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: calc(var(--nav-h) + 3rem) 2rem 4rem;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,168,48,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; }
.page-hero-inner .eyebrow { display: block; margin-bottom: 0.6rem; }
.page-title { color: var(--white); }
.page-subtitle {
  margin-top: 1rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8); max-width: 560px; line-height: 1.65;
}

/* Bio grid */
.bio-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem; align-items: start;
}
.bio-photo-col { position: sticky; top: 80px; }
.bio-photo {
  aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
}
.bio-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.bio-photo:hover img { transform: scale(1.03); }
.bio-nameplate {
  margin-top: 1.25rem; padding-top: 1.1rem;
  border-top: 3px solid var(--gold);
}
.bio-nameplate .name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 1.35rem;
  color: var(--blue-dark); text-transform: uppercase;
}
.bio-nameplate .role { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.2rem; }

.bio-content h2 { color: var(--blue-dark); margin-bottom: 1.25rem; }
.bio-content .lead { margin-bottom: 1.5rem; }
.bio-content .body-text { margin-bottom: 1rem; }
.bio-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 2rem; }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.value-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.75rem; border: 1px solid var(--gray-light);
  transition: transform var(--trans), box-shadow var(--trans);
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 44px; height: 44px;
  background: var(--off-white); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); margin-bottom: 1rem;
}
.value-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.1rem;
  color: var(--blue-dark); text-transform: uppercase;
  letter-spacing: 0.04em; margin-bottom: 0.4rem;
}
.value-body { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* Credentials */
.credentials-bg {
  background: var(--blue-dark);
}
.creds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem; margin-top: 2.5rem;
}
.cred-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 1.5rem;
  transition: background var(--trans), transform var(--trans);
}
.cred-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.cred-icon {
  width: 40px; height: 40px;
  background: rgba(232,168,48,0.15); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 0.75rem;
}
.cred-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem;
  color: var(--white); text-transform: uppercase;
  letter-spacing: 0.04em; margin-bottom: 0.3rem;
}
.cred-body { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* ════════════════════════════════════════════════════════════════
   PRIORITIES PAGE
   ════════════════════════════════════════════════════════════════ */
.priorities-quicknav {
  background: var(--blue-dark);
  padding: 0.75rem 0;
  position: sticky; top: 56px; z-index: 100;
}
.qnav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
  display: flex; gap: 0.4rem; overflow-x: auto; scrollbar-width: none;
}
.qnav-inner::-webkit-scrollbar { display: none; }
.qnav-btn {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  padding: 0.35rem 0.9rem; border-radius: 100px;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  white-space: nowrap; cursor: pointer;
  transition: all var(--trans); display: flex; align-items: center; gap: 0.4rem;
}
.qnav-btn:hover, .qnav-btn.active {
  background: var(--gold); border-color: var(--gold); color: var(--blue-dark);
}
.qnav-btn svg { flex-shrink: 0; }

.priority-section {
  padding: 5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.priority-section:last-of-type { border-bottom: none; }
.priority-section:nth-child(odd)  { background: var(--white); }
.priority-section:nth-child(even) { background: var(--off-white); }

.priority-layout {
  display: grid; grid-template-columns: 260px 1fr; gap: 4rem; align-items: start;
}
.priority-label { position: sticky; top: 110px; }
.p-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 4.5rem;
  color: var(--gold); line-height: 1; opacity: 0.3; margin-bottom: 0.25rem;
}
.p-icon {
  width: 52px; height: 52px;
  background: var(--off-white); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); margin-bottom: 0.75rem;
}
.priority-section:nth-child(even) .p-icon { background: var(--white); }
.p-name { color: var(--blue-dark); margin-bottom: 0.5rem; }
.p-tagline { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; font-style: italic; }

.priority-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.2rem;
  color: var(--blue); text-transform: uppercase;
  letter-spacing: 0.05em; margin: 2rem 0 0.6rem;
}
.priority-content h3:first-child { margin-top: 0; }
.priority-content p { font-size: 1rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 0.9rem; }
.priority-content ul { padding: 0; margin-bottom: 1rem; display: flex; flex-direction: column; gap: 0.55rem; }
.priority-content ul li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.975rem; color: var(--text-muted); line-height: 1.7;
}
.priority-content ul li .bullet-dot {
  flex-shrink: 0; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); margin-top: 0.55rem;
}

.four-year-box {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  border-radius: var(--radius-lg); padding: 1.5rem 1.75rem; margin-top: 1.75rem;
}
.four-year-box h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gold); margin-bottom: 0.75rem;
}
.four-year-box ul li { color: rgba(255,255,255,0.82) !important; }
.four-year-box ul li .bullet-dot { background: var(--gold) !important; }

/* ════════════════════════════════════════════════════════════════
   ENDORSEMENTS PAGE
   ════════════════════════════════════════════════════════════════ */
.endorse-banner {
  background: var(--gold); padding: 2rem 0;
}
.endorse-stats-row {
  display: flex; gap: 0; justify-content: center; flex-wrap: wrap;
  max-width: 800px; margin: 0 auto;
}
.endorse-stat {
  flex: 1; min-width: 160px; text-align: center; padding: 0 2rem;
  border-right: 1px solid rgba(18,47,107,0.15);
}
.endorse-stat:last-child { border-right: none; }
.es-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 3rem;
  color: var(--blue-dark); line-height: 1;
}
.es-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-dark); opacity: 0.7; }

/* Ticker */
.ticker-wrap {
  overflow: hidden; position: relative; padding: 1.25rem 0;
}
.ticker-wrap::before, .ticker-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; z-index: 2;
  width: 100px; pointer-events: none;
}
.ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(to left, var(--white), transparent); }
.ticker-track {
  display: flex; gap: 1.25rem;
  animation: ticker 35s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-chip {
  background: var(--off-white); border-radius: 100px;
  padding: 0.55rem 1.1rem;
  display: flex; align-items: center; gap: 0.5rem;
  white-space: nowrap; flex-shrink: 0;
}
.ticker-chip .chip-star { color: var(--gold); }
.ticker-chip .chip-name { font-weight: 600; font-size: 0.88rem; color: var(--blue-dark); }
.ticker-chip .chip-role { font-size: 0.78rem; color: var(--text-muted); }

/* Quote cards */
.quotes-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.q-card {
  background: var(--off-white); border-radius: var(--radius-lg);
  padding: 2rem; border-left: 4px solid var(--gold);
  transition: transform var(--trans), box-shadow var(--trans);
}
.q-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.q-card.featured-q {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  border-left-color: var(--gold);
}
.q-text {
  font-size: 0.975rem; line-height: 1.75; color: var(--text);
  font-style: italic; margin-bottom: 1.25rem;
  position: relative; padding-top: 1.75rem;
}
.q-text::before {
  content: '"';
  font-family: 'Barlow Condensed', sans-serif;
  font-style: normal;
  font-size: 4rem; color: var(--gold); opacity: 0.5;
  position: absolute; top: -0.5rem; left: 0; line-height: 1;
}
.q-card.featured-q .q-text { color: rgba(255,255,255,0.88); }
.q-author { font-weight: 700; font-size: 0.875rem; color: var(--blue-dark); }
.q-card.featured-q .q-author { color: var(--white); }
.q-role   { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.15rem; }
.q-card.featured-q .q-role { color: rgba(255,255,255,0.55); }

/* Endorsement list */
.endorse-controls {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; margin-bottom: 1.75rem;
}
.filter-group { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.filter-btn {
  background: var(--white); border: 1px solid rgba(0,0,0,0.12);
  color: var(--text-muted); padding: 0.35rem 0.9rem;
  border-radius: 100px; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; transition: all var(--trans);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--blue-dark); color: var(--white); border-color: var(--blue-dark);
}
.search-box {
  position: relative;
}
.search-box svg {
  position: absolute; left: 0.7rem; top: 50%;
  transform: translateY(-50%); color: var(--gray); pointer-events: none;
}
.search-input {
  padding: 0.45rem 0.9rem 0.45rem 2.2rem;
  border: 1px solid rgba(0,0,0,0.14); border-radius: 100px;
  font-size: 0.875rem; color: var(--text); width: 220px;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.search-input:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,79,168,0.12);
}
.endorse-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 0.75rem;
}
.e-card {
  background: var(--white); border-radius: 8px;
  padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
  border: 1px solid var(--gray-light);
  transition: box-shadow var(--trans), transform var(--trans);
}
.e-card:hover { box-shadow: 0 4px 14px rgba(26,79,168,0.1); transform: translateY(-2px); }
.e-star { color: var(--gold); flex-shrink: 0; }
.e-name { font-weight: 700; font-size: 0.9rem; color: var(--blue-dark); }
.e-title { font-size: 0.78rem; color: var(--text-muted); }
.endorse-cta-box {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: var(--radius-lg); padding: 3rem; text-align: center; margin-top: 3rem;
}
.endorse-cta-box h3 { color: var(--white); margin-bottom: 0.75rem; }
.endorse-cta-box p { color: rgba(255,255,255,0.72); font-size: 0.975rem; line-height: 1.65; max-width: 480px; margin: 0 auto 2rem; }

/* ─── ENDORSEMENT FORM SPLIT LAYOUT ─────────────────────────── */
.endorse-form-layout {
  display: grid; 
  grid-template-columns: 1fr 1.2fr; 
  gap: 4rem; 
  align-items: start;
}

.endorse-form-panel { 
  background: var(--white); 
  border-radius: var(--radius-lg); 
  padding: 2.25rem; 
  box-shadow: var(--shadow-md); 
  border-top: 4px solid var(--gold); 
}

/* Responsive breakpoint matching your grid layouts */
@media (max-width: 768px) {
  .endorse-form-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}


/* ════════════════════════════════════════════════════════════════
   GET INVOLVED PAGE
   ════════════════════════════════════════════════════════════════ */
.ways-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.75rem; margin-top: 2.5rem;
}
.way-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gray-light);
  display: flex; flex-direction: column;
  transition: box-shadow var(--trans), transform var(--trans);
}
.way-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.way-header {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 1.75rem;
  display: flex; align-items: center; gap: 1.1rem;
}
.way-icon-box {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(255,255,255,0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.way-num { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
.way-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.35rem;
  color: var(--white); text-transform: uppercase; letter-spacing: 0.03em;
}
.way-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.way-desc { font-size: 0.925rem; color: var(--text-muted); line-height: 1.75; flex: 1; margin-bottom: 1.5rem; }
.way-action {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--gold); color: var(--blue-dark);
  padding: 0.7rem 1.25rem; border-radius: var(--radius);
  font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: all var(--trans); text-align: center; justify-content: center;
}
.way-action:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 4px 14px rgba(232,168,48,0.4); }

/* Canvass steps */
.canvass-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.steps-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.75rem; }
.step { display: flex; gap: 1.25rem; }
.step-num {
  flex-shrink: 0; width: 34px; height: 34px;
  background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 1rem; color: var(--blue-dark);
}
.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.05rem;
  color: var(--blue-dark); text-transform: uppercase;
  letter-spacing: 0.05em; margin-bottom: 0.3rem;
}
.step-body { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.canvass-cta-panel {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: var(--radius-lg); padding: 2.5rem; text-align: center;
}
.canvass-cta-panel h3 { color: var(--white); margin-bottom: 0.75rem; }
.canvass-cta-panel p { color: rgba(255,255,255,0.72); font-size: 0.95rem; line-height: 1.65; margin-bottom: 1.5rem; }
.canvass-note { font-size: 0.75rem; color: var(--gold); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.75rem; }

/* Newsletter */
.nl-bg { background: var(--blue); padding: 4.5rem 0; }
.nl-inner { max-width: 620px; margin: 0 auto; padding: 0 2rem; text-align: center; }
.nl-form {
  display: flex; gap: 0.75rem; margin-top: 2rem; flex-wrap: wrap; justify-content: center;
}
.nl-input {
  flex: 1; min-width: 210px;
  padding: 0.8rem 1.1rem;
  border: 2px solid rgba(255,255,255,0.25); border-radius: var(--radius);
  background: rgba(255,255,255,0.1); color: var(--white);
  font-size: 0.9rem; transition: border-color var(--trans), background var(--trans);
}
.nl-input::placeholder { color: rgba(255,255,255,0.45); }
.nl-input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.15); }
.nl-note { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 0.75rem; }

/* Events */
.events-panel { background: var(--off-white); border-radius: var(--radius-lg); padding: 2rem; margin-top: 2.5rem; }
.events-panel h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.1rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--blue-dark); margin-bottom: 1.25rem;
}
.event-row {
  display: flex; gap: 1rem; align-items: center; padding: 0.85rem 0;
  border-bottom: 1px solid var(--gray-light);
}
.event-row:last-child { border-bottom: none; }
.event-date {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem; color: var(--blue); min-width: 100px;
}
.event-title { font-weight: 600; font-size: 0.9rem; flex: 1; }
.event-location { font-size: 0.82rem; color: var(--text-muted); }
.no-events { font-size: 0.9rem; color: var(--text-muted); padding: 1rem 0; }

/* ─── STACKED EVENTS LAYOUT ──────────────────────────────────── */
.events-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 750px;
  margin: 0 auto 2rem auto;
}

.event-card {
  background: var(--white);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

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

.event-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.event-date {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.3;
}

.event-location {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 500;
}

.event-description {
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--text);
  margin: 0.5rem 0 0.25rem 0;
}

.btn-event-link {
  align-self: flex-start;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-decoration: none;
  margin-top: 0.5rem;
  transition: color 0.2s ease;
}

.btn-event-link:hover {
  color: var(--blue);
  text-decoration: underline;
}

/* Past Events Styling */
.event-card.is-past {
  border-left-color: var(--gray);
  opacity: 0.75;
  background: #fafafa;
}

.event-card.is-past .event-date {
  color: var(--text-muted);
}

.past-badge {
  font-size: 0.75rem;
  background: var(--gray-light);
  color: var(--text-muted);
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 600;
}

/* Control Toggle Button */
.past-events-wrapper {
  text-align: center;
  margin-top: 2.5rem;
}

.btn-toggle-past {
  background: transparent;
  border: 1px solid var(--gray);
  color: var(--text-muted);
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-toggle-past:hover {
  background: var(--gray-light);
  color: var(--text);
  border-color: var(--text-muted);
}

.no-upcoming-events {
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  padding: 2rem 0;
}

/* ════════════════════════════════════════════════════════════════
   DONATE PAGE
   ════════════════════════════════════════════════════════════════ */
.donate-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.donate-widget {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.25rem; border-top: 5px solid var(--gold);
  box-shadow: var(--shadow-md);
}
.widget-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 1.5rem;
  color: var(--blue-dark); text-transform: uppercase;
  letter-spacing: 0.03em; margin-bottom: 0.3rem;
}
.widget-sub { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.75rem; line-height: 1.5; }
.amt-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.6rem; }
.amt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin-bottom: 0.75rem; }
.amt-btn {
  background: var(--off-white); border: 2px solid transparent;
  color: var(--blue-dark); padding: 0.7rem;
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.2rem;
  cursor: pointer; text-align: center; transition: all var(--trans);
}
.amt-btn:hover { border-color: var(--blue); background: var(--white); }
.amt-btn.active { background: var(--blue-dark); color: var(--white); border-color: var(--blue-dark); }
.custom-wrap { position: relative; margin-bottom: 1.5rem; display: none; }
.custom-prefix {
  position: absolute; left: 0.85rem; top: 50%;
  transform: translateY(-50%); font-weight: 700; color: var(--text-muted);
}
.custom-input {
  width: 100%; padding: 0.75rem 1rem 0.75rem 1.6rem;
  border: 2px solid rgba(0,0,0,0.12); border-radius: var(--radius);
  font-size: 1rem; transition: border-color var(--trans), box-shadow var(--trans);
}
.custom-input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,79,168,0.12); }
.donate-btn-link {
  display: block; width: 100%; text-align: center;
  background: var(--gold); color: var(--blue-dark);
  padding: 1rem; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: all var(--trans); margin-bottom: 0.75rem;
}
.donate-btn-link:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(232,168,48,0.4); }
.widget-secure {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; color: var(--text-muted); justify-content: center;
}
.widget-disclaimer {
  margin-top: 1.5rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(0,0,0,0.07);
  font-size: 0.72rem; color: var(--text-muted); line-height: 1.7;
}

.why-donate .eyebrow { display: block; margin-bottom: 0.6rem; }
.why-donate h2 { color: var(--blue-dark); margin-bottom: 1rem; }
.why-donate .lead { margin-bottom: 1.5rem; }
.budget-table { background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 1.5rem; }
.budget-table h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--blue); margin-bottom: 1rem;
}
.budget-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.6rem 0; border-bottom: 1px solid var(--gray-light);
  font-size: 0.875rem;
}
.budget-row:last-child { border-bottom: none; }
.budget-row-label { color: var(--text-muted); }
.budget-row-amt { font-weight: 700; color: var(--blue-dark); }
.impact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.impact-item {
  display: flex; gap: 0.85rem; align-items: flex-start;
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.65;
}
.impact-icon {
  flex-shrink: 0; width: 32px; height: 32px;
  background: var(--off-white); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; color: var(--blue);
}

/* ════════════════════════════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════════════════════════════ */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start;
}
.contact-methods { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-method {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--off-white); border-radius: 10px; padding: 1.25rem;
}
.cm-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--white); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; color: var(--blue);
  box-shadow: var(--shadow-sm);
}
.cm-label { font-weight: 700; font-size: 0.875rem; color: var(--blue-dark); margin-bottom: 0.2rem; }
.cm-body { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.cm-body a { color: var(--blue); text-decoration: underline; }

.contact-form-panel { background: var(--white); border-radius: var(--radius-lg); padding: 2.25rem; box-shadow: var(--shadow-md); border-top: 4px solid var(--gold); }
.form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.3rem;
  color: var(--blue-dark); text-transform: uppercase;
  letter-spacing: 0.04em; margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.4rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 0.75rem 0.9rem;
  border: 1.5px solid rgba(0,0,0,0.13); border-radius: var(--radius);
  font-size: 0.9rem; color: var(--text);
  transition: border-color var(--trans), box-shadow var(--trans);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,79,168,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-status { margin-top: 0.75rem; font-size: 0.875rem; padding: 0.6rem 0.9rem; border-radius: var(--radius); display: none; }
.form-status.success { background: #e6f9f0; color: #156134; display: block; }
.form-status.error   { background: #fde8e8; color: #9b1c1c; display: block; }

/* ════════════════════════════════════════════════════════════════
   CTA BAND (reusable)
   ════════════════════════════════════════════════════════════════ */
.cta-band { background: var(--gold); padding: 4.5rem 0; text-align: center; }
.cta-band .display-lg { color: var(--blue-dark); }
.cta-band .lead { color: rgba(18,47,107,0.7); max-width: 520px; margin: 0.75rem auto 2.25rem; }
.cta-band-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
.site-footer { background: var(--blue-dark); padding: 3rem 0; text-align: center; }
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 1.5rem;
  color: var(--white); text-transform: uppercase; letter-spacing: 0.05em;
}
.footer-logo .gold { color: var(--gold); }
.footer-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 0.2rem; }
.footer-links {
  display: flex; gap: 1.75rem; justify-content: center;
  flex-wrap: wrap; margin: 1.5rem 0;
}
.footer-links a {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  transition: color var(--trans);
}
.footer-links a:hover { color: var(--gold); }
.footer-legal { font-size: 0.72rem; color: rgba(255,255,255,0.3); line-height: 1.75; max-width: 480px; margin: 0 auto; }
.footer-email a { color: var(--gold); }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .intro-split,
  .bio-layout,
  .canvass-layout,
  .donate-layout,
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .bio-photo-col { position: static; }
  .intro-photo,
  .bio-photo { aspect-ratio: 3/2; }
  .priority-layout { grid-template-columns: 1fr; gap: 2rem; }
  .priority-label { position: static; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .site-nav { padding: 0 1.25rem; }
  .stats-row { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.07); padding: 1rem; }
  .stat-item:last-child { border-bottom: none; }
  .endorse-stats-row { flex-direction: column; gap: 1rem; }
  .endorse-stat { border-right: none; }
  .hero { text-align: left; }
  .hero-actions { justify-content: flex-start; }
  .hero-content { text-align: left; }
  .hero-tagline { margin: 1.25rem 0 0; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .section-pad { padding: 3.5rem 0; }
  .amt-grid { grid-template-columns: repeat(3, 1fr); }
}
