/* =========================================================
   Bilirakis for Congress — 2026  (v2)
   Palette pulled from the campaign logo.
   ========================================================= */

:root {
  --blue:        #1B3FB8;
  --blue-dark:   #0F2A86;
  --blue-deep:   #0A1F66;
  --red:         #E51E25;
  --red-dark:    #B7141A;
  --gold:        #F5C547;
  --cream:       #F7F4ED;
  --bone:        #FBF9F3;
  --ink:         #14213D;
  --slate:       #4A5468;
  --rule:        #D9D2C2;
  --shadow:      0 8px 24px rgba(15,42,134,.10);
  --shadow-lg:   0 20px 50px rgba(15,42,134,.20);
  --max:         1200px;
  --gutter:      clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }

/* ---------- Typography ---------- */

h1, h2, h3, h4, .display {
  font-family: 'Source Serif 4', 'Source Serif Pro', Georgia, 'Times New Roman', serif;
  color: var(--blue);
  letter-spacing: -0.01em;
}

h1, .display {
  font-weight: 800;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.05;
  margin: 0 0 0.4em;
}

h2 {
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h3 {
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

.lede {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--slate);
}

/* ---------- Layout primitives ---------- */

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section { padding: clamp(60px, 8vw, 110px) 0; }

.section-blue   { background: var(--blue);    color: #fff; }
.section-blue h1, .section-blue h2, .section-blue h3 { color: #fff; }
.section-blue .lede { color: rgba(255,255,255,.85); }

.section-cream  { background: var(--cream); }
.section-bone   { background: var(--bone); }
.section-white  { background: #fff; }

.divider-rule { border: 0; border-top: 1px solid var(--rule); margin: 0; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand-logo {
  display: block;
  height: 64px;
  width: auto;
}

@media (max-width: 720px) { .brand-logo { height: 52px; } }

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nav a:hover { color: var(--red); }
.nav a.is-active { color: var(--red); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border .2s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; }

.btn-blue {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-blue:hover { background: var(--blue-dark); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-ghost:hover { background: var(--blue); color: #fff; }

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.7);
}
.btn-ghost-light:hover { background: #fff; color: var(--blue); }

/* ---------- Trump Endorsement Bar ---------- */

.endorsement-bar {
  background: var(--red);
  color: #fff;
  padding: 14px 0;
  border-top: 2px solid #fff;
  border-bottom: 4px solid var(--blue);
}

.endorsement-bar .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
}

.endorsement-bar .stars {
  font-size: 18px;
  letter-spacing: 6px;
  color: #fff;
}

.endorsement-bar .endorsement-text {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 26px);
  letter-spacing: .03em;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

/* ---------- Hero (split layout — Gus fully visible, no overlay) ---------- */

.hero-split {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  position: relative;
  padding: clamp(40px, 6vw, 80px) 0;
}

.hero-split .wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.hero-copy {
  padding: 0;
}

.hero-flag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 14px;
  padding: 6px 12px;
  background: #fff;
  border: 2px solid var(--red);
}

.hero-copy h1 {
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 0.98;
  margin-bottom: 18px;
}

.hero-copy h1 .accent { color: var(--red); }

.hero-copy .lede {
  max-width: 540px;
  margin-bottom: 28px;
  color: var(--ink);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-portrait-frame {
  position: relative;
}

.hero-portrait-frame::before {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  background: var(--blue);
  z-index: 0;
}

.hero-portrait-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center 25%;
  aspect-ratio: 4 / 3;
  border: 4px solid #fff;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 860px) {
  .hero-split { padding: clamp(40px, 6vw, 80px) 0 0; }
  .hero-split .wrap { grid-template-columns: 1fr; align-items: end; }
  .hero-copy { padding-bottom: 24px; }
  .hero-portrait-frame { margin-bottom: 24px; }
  .hero-portrait-frame img { aspect-ratio: 3 / 2; object-position: center 25%; }
}

/* ---------- Email Signup Strip (post-hero) ---------- */

.signup-strip {
  background: var(--blue);
  color: #fff;
  padding: 28px 0;
  border-bottom: 4px solid var(--red);
}

.signup-strip .wrap {
  display: block;
  text-align: center;
}

.signup-strip h3 {
  color: #fff;
  font-size: clamp(22px, 2.4vw, 30px);
  margin: 0;
  line-height: 1.15;
}

.signup-strip p { color: rgba(255,255,255,.85); margin: 4px 0 0; font-size: 14px; }

.signup-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 760px;
  margin: 20px auto 0;
}

.signup-strip .consent-block { text-align: left; }

.signup-form input[type=text],
.signup-form input[type=email],
.signup-form input[type=tel] {
  flex: 1 1 160px;
  padding: 14px 16px;
  border: 0;
  border-radius: 2px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  color: var(--ink);
}

.signup-form input:focus { outline: 3px solid var(--gold); }

.signup-form button {
  flex: 0 0 auto;
  background: var(--red);
  color: #fff;
  border: 0;
  padding: 14px 24px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
}

.signup-form button:hover { background: var(--red-dark); }

@media (max-width: 760px) {
  .signup-strip .wrap { grid-template-columns: 1fr; }
}

/* ---------- SMS Consent block (under any form) ---------- */

.consent-block {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.22);
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255,255,255,.95);
  cursor: pointer;
  margin-bottom: 10px;
}

.consent-checkbox input[type="checkbox"] {
  margin: 3px 0 0;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--red);
  cursor: pointer;
}

.consent-checkbox span { flex: 1; line-height: 1.45; }

.consent-fineprint {
  font-size: 11px;
  line-height: 1.55;
  color: rgba(255,255,255,.70);
  margin: 0;
}

.consent-fineprint a {
  color: #F5C547;
  text-decoration: underline;
}

/* Light variant — for white form cards */
.consent-block.on-light {
  border-top-color: var(--rule);
}
.consent-block.on-light .consent-checkbox {
  color: var(--ink);
  font-weight: 500;
}
.consent-block.on-light .consent-fineprint {
  color: var(--slate);
}
.consent-block.on-light .consent-fineprint a {
  color: var(--red);
}

/* Legal pages (privacy + terms) */

.legal-body {
  background: #fff;
  padding: clamp(48px, 6vw, 90px) 0 clamp(48px, 6vw, 90px);
}

.legal-body .wrap {
  max-width: 820px;
}

.legal-body h2 {
  font-size: clamp(22px, 2.2vw, 28px);
  margin: 36px 0 12px;
}

.legal-body h3 {
  font-size: 18px;
  margin: 24px 0 10px;
  color: var(--blue);
}

.legal-body p, .legal-body li {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
}

.legal-body ul, .legal-body ol {
  padding-left: 22px;
  margin: 0 0 18px;
}

.legal-body li { margin-bottom: 6px; }

.legal-body .updated {
  font-size: 13px;
  color: var(--slate);
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}

/* ---------- VBM Alert Callout ---------- */

.vbm-alert {
  background: var(--red);
  color: #fff;
  padding: 0;
  border-top: 4px solid var(--blue);
  border-bottom: 4px solid var(--blue);
}

.vbm-alert .wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  padding: 0;
  align-items: stretch;
  max-width: 100%;
}

.vbm-alert .image-side {
  background-image:
    url('../img/vbm-mailbox.png'),
    linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)),
    url('../img/election-mail-bg.jpg');
  background-size: contain, cover, cover;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: center, center, center;
  min-height: 360px;
  background-color: #fff;
}

.vbm-alert .copy-side {
  padding: clamp(40px, 5vw, 72px) clamp(28px, 4vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vbm-alert .alert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #fff;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 20px;
  align-self: flex-start;
}

.vbm-alert .alert-badge::before {
  content: "!";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 14px;
}

.vbm-alert h2 {
  color: #fff;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.1;
  margin-bottom: 14px;
}

.vbm-alert .vbm-lede {
  color: rgba(255,255,255,.97);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.5;
  margin-bottom: 24px;
  font-weight: 500;
}

.vbm-alert .btn-white {
  align-self: flex-start;
  background: #fff;
  color: var(--red);
  border-color: #fff;
}

.vbm-alert .btn-white:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

@media (max-width: 760px) {
  .vbm-alert .wrap { grid-template-columns: 1fr; }
  .vbm-alert .image-side { min-height: 240px; }
}

/* ---------- Yard Sign CTA ---------- */

.yardsign-cta {
  background: var(--cream);
  padding: clamp(48px, 6vw, 90px) 0;
}

.yardsign-cta .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.yardsign-cta .yard-image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  background-color: #6FA75B;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.yardsign-cta .yard-logo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-1deg);
  width: 62%;
  max-width: 360px;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.45));
  pointer-events: none;
}

.yardsign-cta h2 { font-size: clamp(28px, 3.2vw, 40px); }
.yardsign-cta p { color: var(--ink); font-size: 17px; line-height: 1.55; margin-bottom: 22px; }

@media (max-width: 760px) {
  .yardsign-cta .wrap { grid-template-columns: 1fr; }
}

/* ---------- CD12 Map block ---------- */

.cd12-map-section { background: #fff; }

.cd12-map-section h2 { text-align: center; }
.cd12-map-section .lede { text-align: center; max-width: 720px; margin: 0 auto 36px; }

.cd12-map-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: start;
}

@media (max-width: 900px) { .cd12-map-wrap { grid-template-columns: 1fr; } }

.cd12-map-svg {
  width: 100%;
  height: auto;
  background: #DCE6F2; /* Gulf / water */
  border: 1px solid var(--rule);
}

/* Leaflet map — same column footprint as the iframe it replaced */
.cd12-leaflet {
  position: relative;
  width: 100%;
  height: 560px;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow);
  background: #DCE6F2;
  z-index: 1;
}

@media (max-width: 900px) {
  .cd12-leaflet { height: 460px; }
}

.cd12-pin-icon { background: transparent !important; border: none !important; }

.cd12-pin-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,.35);
}

.leaflet-popup-content {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink);
}

.leaflet-popup-content strong {
  display: block;
  color: var(--blue);
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 16px;
  margin-bottom: 2px;
}

/* Pin legend rows become clickable links */
.cd12-pin-row.is-link {
  text-decoration: none;
  color: inherit;
  transition: background .15s ease, border-color .15s ease;
}

.cd12-pin-row.is-link:hover {
  background: #fff;
  border-left-color: var(--blue);
}

.cd12-pin-row .what .open {
  display: inline-block;
  margin-top: 4px;
  color: var(--red);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cd12-map-svg .land-fill {
  fill: #F1ECDA;
  stroke: #C0B79D;
  stroke-width: 1.2;
  stroke-linejoin: round;
}

.cd12-map-svg .neighbor-label {
  fill: #8A8067;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-anchor: middle;
}

.cd12-map-svg .district-fill {
  fill: var(--blue);
  fill-opacity: .22;
  stroke: var(--blue);
  stroke-width: 3;
  stroke-linejoin: round;
}

.cd12-map-svg .cd12-label {
  fill: var(--blue);
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: 2px;
}

.cd12-map-svg .cd12-sublabel {
  fill: var(--blue-dark);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
}

.cd12-map-svg .city-dot { fill: #4A5468; }
.cd12-map-svg .city-label {
  fill: #2C3344;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
}

.cd12-map-svg .water-label {
  fill: #6E8BB5;
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 1.5px;
}

.cd12-map-svg .pin-shadow { fill: rgba(0,0,0,.18); }
.cd12-map-svg .pin-dot {
  fill: var(--red);
  stroke: #fff;
  stroke-width: 3;
}
.cd12-map-svg .pin-num {
  fill: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 13px;
  text-anchor: middle;
  dominant-baseline: central;
}

.cd12-pins {
  display: grid;
  gap: 12px;
}

.cd12-pin-row {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  background: var(--cream);
  border-left: 4px solid var(--red);
}

.cd12-pin-row .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
}

.cd12-pin-row .place {
  font-weight: 700;
  color: var(--blue);
  font-size: 15px;
  line-height: 1.2;
}

.cd12-pin-row .what {
  font-size: 13px;
  color: var(--slate);
  display: block;
  margin-top: 2px;
}

/* ---------- Pillars ---------- */

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pillar {
  background: #fff;
  border: 1px solid var(--rule);
  border-top: 6px solid var(--red);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pillar .pillar-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}

.pillar .pillar-body {
  padding: 28px 26px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pillar h3 { font-size: 24px; }

.pillar ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.pillar li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink);
}

.pillar li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--red);
  transform: rotate(45deg);
}

/* ---------- Two-column blocks ---------- */

.two-col {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.two-col img { box-shadow: var(--shadow-lg); }

.two-col.reverse { grid-template-columns: 1fr 1.05fr; }
.two-col.reverse > :first-child { order: 2; }

/* ---------- Issue cards ---------- */

.issue-stack { display: grid; gap: 28px; }

.issue-card {
  background: #fff;
  border: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.issue-card .issue-img {
  width: 100%;
  min-height: 260px;
  background-size: cover;
  background-position: center;
  background-color: #E8E2D0;
}

.issue-card .issue-body {
  padding: 32px 36px 36px;
  position: relative;
}

.issue-card .issue-num {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  color: var(--red);
  margin-bottom: 8px;
  display: block;
}

.issue-card h3 { margin-bottom: 8px; }

.issue-card .problem {
  color: var(--slate);
  margin-bottom: 14px;
}

.issue-card .fix {
  border-left: 3px solid var(--red);
  padding-left: 18px;
  font-weight: 500;
  color: var(--ink);
}

@media (max-width: 760px) {
  .issue-card { grid-template-columns: 1fr; }
  .issue-card .issue-img { min-height: 200px; aspect-ratio: 16 / 9; }
}

/* ---------- CTA strip ---------- */

.cta-strip {
  background: var(--red);
  color: #fff;
  text-align: center;
}

.cta-strip h2 { color: #fff; margin-bottom: 12px; }
.cta-strip .lede { color: rgba(255,255,255,.92); margin-bottom: 28px; }
.cta-strip .actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-strip .btn-ghost-light { color: #fff; border-color: rgba(255,255,255,.7); }
.cta-strip .btn-ghost-light:hover { background: #fff; color: var(--red); }

/* ---------- Forms ---------- */

.form-card {
  background: #fff;
  border: 1px solid var(--rule);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-row.one { grid-template-columns: 1fr; }

label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}

input[type=text], input[type=email], input[type=tel], input[type=number], select, textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  font-family: inherit;
  border: 1px solid var(--rule);
  border-radius: 2px;
  background: var(--bone);
  color: var(--ink);
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}

textarea { min-height: 110px; resize: vertical; }

/* ---------- Donate placeholder ---------- */

.donate-card {
  background: #fff;
  border: 1px solid var(--rule);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow);
}

.donate-amts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.donate-amt {
  text-align: center;
  padding: 18px 12px;
  border: 2px solid var(--blue);
  background: #fff;
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--blue);
  cursor: pointer;
  transition: all .15s ease;
}
.donate-amt:hover, .donate-amt.is-active {
  background: var(--blue); color: #fff;
}

.embed-note {
  margin-top: 22px;
  font-size: 13px;
  color: var(--slate);
  padding: 14px 16px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
}

/* ---------- Voter Action Cards ---------- */

/* Big VBM feature (top of Vote page) */
.vbm-feature {
  background: var(--blue);
  color: #fff;
  border: 3px solid var(--red);
  padding: clamp(28px, 4vw, 52px);
  margin-bottom: 44px;
  box-shadow: var(--shadow-lg);
}

.vbm-feature .vbm-kicker {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 6px 12px;
  margin-bottom: 16px;
}

.vbm-feature h2 {
  color: #fff;
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.04;
  margin-bottom: 14px;
}

.vbm-feature .lede { color: rgba(255,255,255,.92); max-width: 680px; margin-bottom: 24px; }

.vbm-feature .actions { display: flex; flex-wrap: wrap; gap: 14px; }

.vbm-feature .btn { background: #fff; color: var(--red); border: 2px solid #fff; font-weight: 800; }
.vbm-feature .btn:hover { background: var(--red); color: #fff; border-color: #fff; }

.vbm-feature .vbm-deadline { margin-top: 18px; font-size: 14px; color: rgba(255,255,255,.9); }
.vbm-feature .vbm-deadline strong { color: #fff; }

.voter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

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

.voter-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-top: 6px solid var(--red);
  padding: 28px 28px 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.voter-card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--blue);
  color: #fff;
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 14px;
}

.voter-card h3 { font-size: 22px; margin-bottom: 8px; }
.voter-card p { color: var(--slate); font-size: 15px; margin-bottom: 14px; flex: 1; }

.voter-card .actions { display: flex; flex-wrap: wrap; gap: 8px; }

.voter-card .pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: var(--cream);
  color: var(--blue);
  border: 1px solid var(--rule);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 2px;
}

.voter-card .pill:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

.voter-card .primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.voter-card .primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; }

/* Key dates block */
.key-dates {
  background: var(--cream);
  border-left: 5px solid var(--red);
  padding: 24px 28px;
  margin-top: 28px;
}

.key-dates h3 { margin-bottom: 8px; }

.key-dates ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }

.key-dates li {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 14px;
  font-size: 15px;
  align-items: baseline;
}

.key-dates li .date {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 800;
  color: var(--red);
  font-size: 16px;
}

@media (max-width: 600px) { .key-dates li { grid-template-columns: 1fr; gap: 2px; } }

/* ---------- Gallery ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--blue-deep);
  color: rgba(255,255,255,.82);
  padding: 56px 0 32px;
  font-size: 14px;
}

.site-footer a { color: rgba(255,255,255,.95); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.footer-logo {
  height: 92px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}

.footer-grid h4 {
  color: #fff;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: 16px;
}

.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }

.footer-legal-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
  font-size: 13px;
}

.footer-legal-nav a {
  color: rgba(255,255,255,.95);
  font-weight: 600;
  letter-spacing: .04em;
}

.footer-legal-nav a:hover { color: #F5C547; }

.footer-legal-nav span { color: rgba(255,255,255,.45); }

.disclaimer-box {
  margin-top: 22px;
  padding: 18px 22px;
  border: 1px solid rgba(255,255,255,.30);
  background: rgba(255,255,255,.06);
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
  text-align: center;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.disclaimer-box .paid-for {
  display: block;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: 8px;
}

.disclaimer-box strong { color: #fff; }

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .pillar-grid { grid-template-columns: 1fr; }
  .two-col, .two-col.reverse { grid-template-columns: 1fr; }
  .two-col.reverse > :first-child { order: 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav { display: none; }
  .issue-card { grid-template-columns: 1fr; padding: 28px; }
  .issue-num { font-size: 36px; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
}

/* =========================================================
   EVENTS PAGE — added for events.bilirakisforcongress.com
   ========================================================= */

/* Page hero */
.events-hero {
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: #fff;
  text-align: center;
  padding: clamp(48px, 6vw, 84px) 0 clamp(40px, 5vw, 64px);
  border-bottom: 4px solid var(--red);
}
.events-hero h1 { color: #fff; margin-bottom: 14px; }
.events-hero .lede { color: rgba(255,255,255,.9); max-width: 680px; margin: 0 auto; }

/* Events list */
.events-list { display: grid; gap: clamp(28px, 4vw, 44px); }

.event-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-top: 6px solid var(--red);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  overflow: hidden;
}

/* Flyer image side (clickable to full PDF) */
.event-flyer {
  display: block;
  background: var(--cream);
  border-right: 1px solid var(--rule);
  padding: 22px;
}
.event-flyer img {
  width: 100%;
  height: auto;
  box-shadow: var(--shadow);
  border: 1px solid var(--rule);
  transition: transform .2s ease, box-shadow .2s ease;
}
.event-flyer:hover img { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.event-flyer .view-flyer {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
}
.event-flyer:hover .view-flyer { color: var(--red); }

/* Details side */
.event-body {
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
}

.event-date-badge {
  align-self: flex-start;
  background: var(--red);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 16px;
  margin-bottom: 16px;
}

.event-body h2 {
  font-size: clamp(24px, 2.6vw, 34px);
  margin-bottom: 6px;
}

.event-guest {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--red);
  margin: 0 0 18px;
}

.event-meta { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 12px; }
.event-meta li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.4;
}
.event-meta .ico {
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.event-meta .label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 1px;
}
.event-meta strong { color: var(--blue); font-weight: 700; }

.event-actions { margin-top: auto; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.event-actions .btn { padding: 16px 34px; font-size: 15px; }

.event-note {
  font-size: 12px;
  color: var(--slate);
  margin: 10px 0 0;
  font-style: italic;
}

@media (max-width: 820px) {
  .event-card { grid-template-columns: 1fr; }
  .event-flyer { border-right: 0; border-bottom: 1px solid var(--rule); }
}
