:root {
  --navy: #1F355E;
  --gold: #F2B705;
  --white: #FFFFFF;
  --text: #0f172a;
  --muted: #475569;
  --border: #e2e8f0;
  --soft: #f8fafc;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  --radius-xl: 28px;
  --radius-lg: 18px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 80px 0; }
.section-muted { background: var(--soft); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.three-up { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.four-up { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.rounded-image { border-radius: var(--radius-xl); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
h1, h2, h3 { line-height: 1.1; margin: 0; }
h1 { font-size: clamp(2.6rem, 5vw, 4.3rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.2rem; }
p { margin: 0; }
.lead { font-size: 1.1rem; color: var(--muted); line-height: 1.8; }
.narrow { max-width: 780px; }
.small-note { margin-top: 12px; font-size: 0.9rem; color: #64748b; line-height: 1.6; }
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow.blue { color: var(--navy); }
.eyebrow.light { color: rgba(255,255,255,0.92); }
.eyebrow.muted { color: #64748b; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 0; }
.desktop-nav { display: flex; gap: 24px; font-size: 0.95rem; font-weight: 700; color: #334155; }
.desktop-nav a:hover { color: var(--navy); }
.header-cta { display: flex; gap: 12px; }
.logo {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 12px 16px;
  border-radius: 22px;
  box-shadow: 0 6px 14px rgba(31,53,94,.18);
}
.logo-line-group { display: flex; align-items: center; gap: 10px; justify-content: center; }
.logo .line { height: 4px; border-radius: 999px; display: inline-block; }
.logo .line.gold { background: var(--gold); width: 56px; }
.logo .line.white { background: white; width: 88px; }
.logo .line.long { width: 96px; }
.logo .greg { font-size: 0.95rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.28em; }
.logo .bankos { margin-top: 4px; font-size: 2rem; font-weight: 800; text-transform: uppercase; line-height: 1; letter-spacing: 0.02em; text-align: center; }
.logo .keystone {
  width: 40px; height: 28px; background: var(--gold);
  clip-path: polygon(14% 0, 86% 0, 100% 18%, 86% 100%, 14% 100%, 0 18%);
}
.logo .senate { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.34em; text-transform: uppercase; }
.hero { background: var(--navy); color: white; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 42px; align-items: center; padding: 84px 0; }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,0.9); max-width: 720px; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 22px; border-radius: 14px; font-weight: 800; border: 1px solid transparent;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-blue { background: var(--navy); color: white; }
.btn-outline-light { border-color: rgba(255,255,255,0.75); color: white; }
.btn-outline-blue { border-color: var(--navy); color: var(--navy); }
.btn-youtube { background: #dc2626; color: white; }
.centered { text-align: center; }
.centered-actions { justify-content: center; }
.cards .card,
.form-card,
.card,
.footer-card,
.donate-box { background: white; border: 1px solid var(--border); border-radius: var(--radius-xl); box-shadow: var(--shadow); }
.cards .card { padding: 28px; }
.cards .card p { margin-top: 14px; color: var(--muted); line-height: 1.8; }
.stats-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); margin-top: 28px; }
.stat-card { padding: 16px; border: 1px solid var(--border); border-radius: 18px; background: var(--soft); font-weight: 700; color: #1e293b; }
figure { margin: 0; }
figcaption { margin-top: 12px; font-size: 0.95rem; font-weight: 600; color: #475569; }
.voting-section { background: var(--gold); }
.voting-copy { color: var(--navy); }
.donate-grid { align-items: stretch; }
.donate-copy-box {
  background: var(--navy); color: white; padding: 32px; border-radius: var(--radius-xl); box-shadow: var(--shadow);
}
.donate-copy-box p { color: rgba(255,255,255,0.9); line-height: 1.8; }
.donate-note { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 14px 16px; margin-top: 16px; font-size: 0.95rem; }
.donate-box { padding: 28px; }
.suggested-row, .mini-suggested { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 14px 0 18px; }
.suggested-btn, .mini-btn {
  border: 1px solid #cbd5e1; background: white; color: var(--navy);
  padding: 10px 8px; border-radius: 12px; font-weight: 800; cursor: pointer;
}
.suggested-btn:hover, .mini-btn:hover { background: #fff7d1; }
.iframe-wrap { border-radius: 24px; overflow: hidden; border: 2px dashed #cbd5e1; }
.field-grid { display: grid; gap: 14px; }
.field-grid.two-up { grid-template-columns: repeat(2, 1fr); }
.field-grid.one-up { grid-template-columns: 1fr; }
input, textarea {
  width: 100%; border: 1px solid var(--border); border-radius: 16px; padding: 14px 16px;
  font: inherit; color: var(--text); background: white;
}
textarea { min-height: 140px; resize: vertical; }
.span-2 { grid-column: span 2; }
.form-card { padding: 28px; }
.form-group { margin-top: 20px; }
.form-label { font-weight: 800; font-size: 0.95rem; margin-bottom: 10px; }
.checkbox-grid { display: grid; gap: 12px; }
.checkbox-grid label, .consent-block label {
  display: flex; gap: 10px; align-items: flex-start; padding: 14px 16px; border: 1px solid var(--border);
  border-radius: 16px; background: white; color: #334155; font-size: 0.95rem;
}
.checkbox-grid label input, .consent-block label input { width: auto; margin-top: 4px; }
.consent-block { display: grid; gap: 12px; margin: 18px 0; }
.full-width { width: 100%; }
.media-card { padding: 28px; }
.media-panel { margin-top: 22px; background: var(--soft); border-radius: 24px; padding: 24px; }
.muted-panel { background: var(--soft); }
.footer-card { margin-top: 24px; padding: 22px; }
.municipality-list { list-style: disc; padding-left: 22px; color: #475569; line-height: 1.8; columns: 2; }
.mobile-sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 55; display: none; gap: 12px;
  padding: 12px 16px; background: rgba(255,255,255,0.96); border-top: 1px solid var(--border);
  box-shadow: 0 -8px 30px rgba(15,23,42,0.08);
}
.mobile-sticky-bar .btn { flex: 1; }
.floating-donate { position: fixed; right: 24px; bottom: 24px; z-index: 45; }
.floating-card { width: 320px; background: white; border: 1px solid var(--border); border-radius: 20px; box-shadow: 0 18px 38px rgba(15,23,42,.18); padding: 18px; }
.floating-title { font-size: 1.1rem; font-weight: 800; margin-top: 8px; }
.desktop-only { display: block; }
@media (max-width: 1080px) {
  .desktop-nav { display: none; }
}
@media (max-width: 900px) {
  .two-col, .hero-grid, .three-up, .four-up { grid-template-columns: 1fr; }
  .stats-grid, .field-grid.two-up, .checkbox-grid.two-up { grid-template-columns: 1fr; }
  .municipality-list { columns: 1; }
  .desktop-only { display: none !important; }
  .mobile-sticky-bar { display: flex; }
  body { padding-bottom: 84px; }
  .header-cta { display: none; }
}
