/* =========================================================
   Kathleen Peters for Pinellas County Commission, District 6 — 2026 (v1 DRAFT)
   Built from the firm site framework (Bilirakis CD12 -> Bostock SB D6 -> EDB HD38 lineage).
   KP locked direction (outline v3, 6/16): clean sans-serif display (was serif),
   red/white/blue palette (navy headers/footers, campaign red CTAs, gold accent),
   theme "Common Sense Leadership."
   ========================================================= */

:root {
  --navy:        #45545C;
  --navy-dark:   #38444B;
  --navy-deep:   #2C363B;
  --red:         #DC383F;
  --red-dark:    #B32E34;
  --gold:        #DBD737;
  --blue:        #37A0DB;
  --mauve:       #864E51;
  --offwhite:    #F8F7F3;
  --bone:        #FCFBF7;
  --ink:         #14213D;
  --slate:       #4A5468;
  --rule:        #DAD5C8;
  --shadow:      0 8px 24px rgba(69,84,92,.10);
  --shadow-lg:   0 20px 50px rgba(69,84,92,.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: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--navy);
  letter-spacing: -0.01em;
}

h1, .display {
  font-weight: 800;
  font-size: clamp(40px, 6vw, 72px);
  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-navy  { background: var(--navy); color: #fff; }
.section-navy h1, .section-navy h2, .section-navy h3 { color: #fff; }
.section-navy .lede { color: rgba(255,255,255,.85); }

.section-offwhite { background: var(--offwhite); }

.bg-pattern {
  background-color: #fff;
  background-image: radial-gradient(rgba(69,84,92,.05) 1px, transparent 1px);
  background-size: 22px 22px;
}
.section-bone     { background: var(--bone); }
.section-white    { background: #fff; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  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: 10px;
  padding-bottom: 10px;
}

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

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

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

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

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

.nav a.btn-navy,
.nav a.btn-navy:hover,
.nav a.btn-navy.is-active,
.nav a.btn-red,
.nav a.btn-red:hover,
.nav a.btn-red.is-active { color: #fff; }

/* ---------- 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: .02em;
  text-transform: uppercase;
  border-radius: 8px;
  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-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-dark); color: #fff; }

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

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

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

.btn-gold { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }
.btn-gold:hover { background: #C7C22F; border-color: #C7C22F; color: var(--navy-deep); }

/* ---------- Hero (photo background, centered logo) ---------- */

.hero-photo {
  position: relative;
  min-height: clamp(480px, 70vh, 720px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  background-size: cover;
  background-position: center 25%;
  background-color: var(--navy);
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(69,84,92,.10) 0%, rgba(69,84,92,.22) 55%, rgba(69,84,92,.48) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: clamp(48px, 8vw, 96px) var(--gutter);
  max-width: 620px;
  margin-right: clamp(0px, 4vw, 72px);
}

@media (max-width: 860px) {
  .hero-photo { justify-content: center; background-position: center 25%; }
  .hero-photo::before { background: linear-gradient(180deg, rgba(69,84,92,.28) 0%, rgba(69,84,92,.20) 45%, rgba(69,84,92,.50) 100%); }
  .hero-inner { margin-right: 0; }
}

.hero-logo-card {
  position: absolute;
  top: clamp(16px, 2.5vw, 32px);
  right: clamp(16px, 2.5vw, 32px);
  z-index: 2;
  background: rgba(255,255,255,.96);
  display: inline-block;
  padding: clamp(8px, 1vw, 14px);
  box-shadow: var(--shadow-lg);
}

.hero-logo-card img,
.hero-logo { width: clamp(150px, 19vw, 230px); height: auto; display: block; margin: 0 auto; }

@media (max-width: 860px) {
  .hero-logo-card { top: 12px; right: 12px; padding: 6px; }
  .hero-logo-card img,
  .hero-logo { width: clamp(104px, 26vw, 150px); }
}

.hero-subhead {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 800;
  font-style: italic;
  color: #fff;
  font-size: clamp(40px, 6.5vw, 84px);
  line-height: 1.02;
  margin: 20px 0 26px;
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
}

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

/* ---------- Email signup strip ---------- */

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

.signup-strip .wrap {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 16px;
}

.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-strip .consent-fineprint { font-size: 9px; }

.signup-form { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }

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

.signup-form input::placeholder { color: var(--slate); }
.signup-form input:focus { outline: 3px solid var(--blue); }

.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: .02em;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
}

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

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

/* ---------- Endorsement banner ---------- */

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

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

.endorsement-bar .endorser-headshot {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 15%;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  flex-shrink: 0;
}

.endorsement-bar .endorsement-copy { text-align: center; }

.endorsement-bar .see-all {
  display: inline-block;
  margin-top: 6px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.endorsement-bar .see-all:hover { color: var(--navy); }

.endorsement-bar .endorsement-text {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 800;
  font-size: clamp(16px, 2vw, 24px);
  letter-spacing: .03em;
  color: #fff;
  margin: 0;
  line-height: 1.25;
}

.endorsement-bar a { color: #fff; }
.endorsement-bar a:hover { color: var(--gold); }

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

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

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

/* Full-bleed background-image media cell (natively resizes with the container) */
.two-col--fillmedia { align-items: stretch; }
.two-col--fillmedia > div:not(.two-col-media) { align-self: center; }
.two-col-media {
  background-size: cover;
  background-position: center;
  min-height: 100%;
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 760px) { .two-col-media { min-height: 320px; } }

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

@media (max-width: 760px) { .two-col, .two-col.reverse { grid-template-columns: 1fr; } .two-col.reverse > :first-child { order: 0; } }

/* ---------- Stat band (clean navy) ---------- */

.stat-band {
  background: var(--navy);
  color: #fff;
  padding: clamp(40px, 5vw, 60px) 0;
}

.stat-band .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.stat-band .num {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 800;
  font-size: clamp(44px, 5.2vw, 66px);
  line-height: 1;
  color: #fff;
  display: block;
  margin-bottom: 10px;
}

.stat-band .label {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .02em;
  color: rgba(255,255,255,.88);
}

@media (max-width: 900px) { .stat-band .wrap { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 520px) { .stat-band .wrap { grid-template-columns: 1fr; gap: 20px; } }

/* ---------- Vision / issue-preview grid ---------- */

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

.vision-card {
  background: #fff;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow);
  padding: 30px 24px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .15s ease;
}

.vision-card:hover { transform: translateY(-3px); }
.vision-card.is-static { cursor: default; }
.vision-card.is-static:hover { transform: none; }

.vision-card h3 { font-size: 22px; line-height: 1.2; margin: 0 0 10px; color: var(--navy); }
.vision-card p { font-size: 15px; color: var(--slate); margin: 0; }
.vision-card a { color: inherit; }

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

.vision-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.vision-photos img, .vision-photos .img-placeholder { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; box-shadow: var(--shadow); }

@media (max-width: 640px) { .vision-photos { grid-template-columns: 1fr; } }

/* ---------- News / endorsement cards ---------- */

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

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

.news-card {
  background-color: var(--blue);
  border: none;
  padding: 26px 26px 28px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}

.news-card .date {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 14px;
}

.news-card h3 { font-size: 20px; margin-bottom: 6px; color: #fff; }
.news-card p { font-size: 15px; color: rgba(255,255,255,.88); flex: 1; }

.news-card .more {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 10px 18px;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .03em;
  text-transform: uppercase;
  border-radius: 8px;
  margin-top: 14px;
  transition: background .2s ease, transform .15s ease;
}

.news-card .more:hover { background: #C7C22F; color: var(--navy-deep); transform: translateY(-1px); }

/* ---------- Endorsement carousel (photo background) ---------- */

.quote-photo-section { position: relative; background-size: cover; background-position: center 35%; }

.quote-photo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(248,247,243,.88);
}

.quote-photo-section .wrap { position: relative; z-index: 1; }

.quote-carousel { position: relative; max-width: 880px; margin: 0 auto; text-align: center; min-height: 240px; }

.quote-slide { display: none; }
.quote-slide.is-active { display: block; animation: fadeIn .5s ease; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.quote-slide blockquote {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  line-height: 1.45;
  color: var(--navy);
  margin: 0 0 18px;
}

.quote-slide blockquote::before { content: "\201C"; color: var(--red); }
.quote-slide blockquote::after  { content: "\201D"; color: var(--red); }

.quote-slide cite {
  display: block;
  font-style: normal;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
}

.quote-slide cite span { display: block; color: var(--slate); font-weight: 600; text-transform: none; letter-spacing: 0; font-size: 14px; }

.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 26px; }

.carousel-dots button {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.carousel-dots button.is-active { background: var(--red); border-color: var(--red); }

/* ---------- Support cards (clean navy) ---------- */

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

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

.support-card {
  background-color: var(--navy);
  border: 1px solid var(--navy);
  box-shadow: var(--shadow);
  border-radius: 12px;
  padding: 32px 28px 34px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.support-card h3 { color: #fff; font-size: 26px; }
.support-card p { color: rgba(255,255,255,.88); font-size: 16px; line-height: 1.5; flex: 1; }

/* Alternating card colors: Volunteer / Donate / Endorse */
.support-card:nth-child(1) { background-color: var(--red);  border-color: var(--red); }
.support-card:nth-child(2) { background-color: var(--blue); border-color: var(--blue); }
.support-card:nth-child(3) { background-color: var(--gold); border-color: var(--gold); }
.support-card:nth-child(3) h3 { color: var(--navy-deep); }
.support-card:nth-child(3) p { color: rgba(44,54,59,.85); }
.support-card:nth-child(3) .btn-ghost-light { color: var(--navy-deep); border-color: var(--navy-deep); }
.support-card:nth-child(3) .btn-ghost-light:hover { background: var(--navy-deep); color: #fff; }

/* ---------- Socials strip ---------- */

.social-strip { text-align: center; }

.social-icons { display: flex; justify-content: center; gap: 16px; margin: 22px 0 34px; }

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  transition: background .2s ease;
}

.social-icons a:hover { background: var(--red); color: #fff; }

/* ---------- Page hero (interior pages) ---------- */

.page-hero { background: var(--navy); color: #fff; padding: clamp(56px, 7vw, 96px) 0; }

.page-hero--photo { background-size: cover; background-position: 50% 30%; background-repeat: no-repeat; }

.page-hero h1 { color: #fff; margin-bottom: 8px; }

.page-hero .sub {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: #fff;
  margin: 0;
}

/* ---------- Timeline ---------- */

.timeline { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }

.timeline li {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}

.timeline li:last-child { border-bottom: 0; }

.timeline .when {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 800;
  color: var(--red);
  font-size: 18px;
}

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

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

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

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

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

/* ---------- 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 h3 { font-size: clamp(26px, 2.8vw, 36px); margin-bottom: 12px; }

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

/* ---------- Endorsement grid ---------- */

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

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

.endorser-card {
  background: #fff;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  text-align: center;
}

.endorser-card .avatar {
  width: 86px; height: 86px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 800;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 3px solid var(--gold);
}

.endorser-card h3 { font-size: 19px; margin-bottom: 4px; }

.endorser-card .title { font-size: 13px; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; color: var(--slate); margin: 0; }

.endorser-quote { background: var(--offwhite); padding: 26px 30px; margin: 0 0 22px; }

.endorser-quote blockquote {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.5;
}

.endorser-quote cite { font-style: normal; font-weight: 800; font-size: 13px; letter-spacing: .02em; text-transform: uppercase; color: var(--slate); }

.endorser-quote.has-photo { display: flex; align-items: center; gap: 24px; }
.endorser-quote .quote-headshot {
  width: 92px; height: 92px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 28%;
  flex: none;
  box-shadow: 0 3px 10px rgba(69,84,92,.18);
}
.endorser-quote .quote-body { flex: 1; }
.endorser-quote .quote-body blockquote { margin-bottom: 8px; }
@media (max-width: 560px) { .endorser-quote.has-photo { flex-direction: column; text-align: center; gap: 14px; } }

/* ---------- VBM alert ---------- */

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

.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-size: cover; background-position: center; min-height: 320px; background-color: #1a1a1a; }

.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;
  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 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; }

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

/* ---------- Voter cards / key dates ---------- */

.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);
  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(--navy);
  color: #fff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 14px;
}

.voter-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  margin-bottom: 16px;
}

.voter-card .icon svg { width: 26px; height: 26px; display: block; }

.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(--offwhite);
  color: var(--navy);
  border: 1px solid var(--rule);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 8px;
}

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

.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 { background: var(--offwhite); 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: 220px 1fr;
  gap: 14px;
  font-size: 15px;
  align-items: baseline;
}

.key-dates li .date {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 800;
  color: var(--red);
  font-size: 16px;
}

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

/* ---------- 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; }

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

label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--navy);
  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: 8px;
  background: var(--bone);
  color: var(--ink);
}

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

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

.check-group { display: grid; gap: 10px; }

.check-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  cursor: pointer;
  margin: 0;
}

.check-group input[type=checkbox] { width: 18px; height: 18px; accent-color: var(--red); }

.consent-block { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--rule); }

.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: var(--ink);
  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: var(--slate); margin: 0; }
.consent-fineprint a { color: var(--red); text-decoration: underline; }

.thanks-panel {
  display: none;
  background: #fff;
  border: 1px solid var(--rule);
  padding: clamp(32px, 5vw, 56px);
  box-shadow: var(--shadow);
  text-align: center;
}

.thanks-panel.is-visible { display: block; }

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

.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(--navy);
  background: #fff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--navy);
  cursor: pointer;
  transition: all .15s ease;
}

.donate-amt:hover, .donate-amt.is-active { background: var(--navy); color: #fff; }

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

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

.cta-strip { background-color: 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:hover { background: #fff; color: var(--red); }

/* Yellow Voter Action Center band */
.cta-strip--yellow { background-color: var(--gold); }
.cta-strip--yellow h2 { color: var(--navy-deep); }
.cta-strip--yellow .lede { color: var(--navy-deep); opacity: .85; }

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

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

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

.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 { display: block; width: min(240px, 100%); height: auto; margin-bottom: 16px; }

.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; }

@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }

.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 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;
}

/* ---------- Legal pages ---------- */

.legal-body { background: #fff; padding: clamp(48px, 6vw, 90px) 0; }
.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(--navy); }
.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); }

/* ---------- Responsive nav (hamburger) ---------- */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 700px) {
  .nav-toggle { display: flex; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    box-shadow: 0 8px 16px rgba(0,0,0,.12);
    border-top: 1px solid rgba(0,0,0,.08);
    padding: 8px 20px 16px;
  }
  .site-header.nav-open .nav { display: flex; }
  .nav a {
    padding: 14px 4px;
    font-size: 15px;
    border-bottom: 1px solid rgba(0,0,0,.06);
  }
  .nav a.btn {
    margin-top: 12px;
    padding: 14px 28px;
    text-align: center;
    border-bottom: 0;
  }
}

/* ---------- Endorser headshots (grid) ---------- */

.endorser-card .headshot {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 28%;
  margin: 0 auto 14px;
  box-shadow: 0 3px 10px rgba(69,84,92,.18);
}

/* ---------- Meet Emily page additions ---------- */

.meet-intro {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.meet-portrait img, .meet-portrait .img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 720px) {
  .meet-intro { grid-template-columns: 1fr; }
  .meet-portrait { max-width: 260px; margin: 0 auto; }
}

/* Placeholder box for photos pending from the campaign photo set */
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  aspect-ratio: 4 / 3;
  width: 100%;
  background: repeating-linear-gradient(45deg, #EFEDE4, #EFEDE4 12px, #E7E4D8 12px, #E7E4D8 24px);
  border: 2px dashed var(--slate);
  border-radius: 6px;
  color: var(--slate);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 13px;
  padding: 12px;
}
.img-placeholder span {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
  margin-top: 6px;
  color: var(--ink);
}

.family-disclaimer {
  margin: 28px auto 0;
  max-width: 860px;
  text-align: center;
  font-size: 12px;
  color: var(--slate);
}

.involvement { margin-top: 36px; border-top: 1px solid var(--rule); padding-top: 12px; }
.involvement > summary {
  cursor: pointer;
  list-style: none;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--navy);
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.involvement > summary::-webkit-details-marker { display: none; }
.involvement > summary::before {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  flex: none;
}
.involvement[open] > summary::before { content: "\2212"; }
.involvement-list { columns: 2; column-gap: 40px; margin: 14px 0 4px; padding-left: 18px; }
.involvement-list li { margin: 0 0 10px; break-inside: avoid; }
@media (max-width: 640px) { .involvement-list { columns: 1; } }

/* District map block (Vote by Mail) */
.district-map { margin: 44px auto 0; max-width: 860px; text-align: center; }
.district-map h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(22px, 2.6vw, 28px);
  color: var(--navy);
  margin: 0 0 10px;
}
.district-map p { margin: 0 auto 20px; max-width: 680px; color: var(--slate); }
.img-placeholder.map { aspect-ratio: 16 / 9; }
.district-map-img { display: block; max-width: 420px; width: 100%; height: auto; margin: 0 auto; border-radius: 6px; box-shadow: var(--shadow); }
.district-map-embed { position: relative; width: 100%; max-width: 860px; margin: 0 auto; aspect-ratio: 4 / 3; border-radius: 6px; overflow: hidden; box-shadow: var(--shadow); }
.district-map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 600px) { .district-map-embed { aspect-ratio: 3 / 4; } }

/* ---------- Priority cards (home) ---------- */
.priority-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1000px) { .priority-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .priority-grid { grid-template-columns: 1fr; } }

.priority-card {
  background: #fff;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .15s ease;
}
.priority-card:hover { transform: translateY(-3px); }
.priority-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.priority-body { padding: 22px 22px 26px; flex: 1; }
.priority-body h3 { font-size: 21px; margin: 0 0 8px; color: var(--navy); }
.priority-body p { font-size: 15px; color: var(--slate); margin: 0; }

/* ---------- Governor DeSantis band ---------- */
.desantis-band { padding: clamp(40px, 5vw, 64px) 0; }
.desantis-grid { display: flex; align-items: center; gap: clamp(24px, 4vw, 48px); max-width: 960px; margin: 0 auto; }
.desantis-grid img { width: 190px; height: auto; border-radius: 6px; box-shadow: var(--shadow-lg); flex: none; }
.desantis-line {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  margin: 0;
}
@media (max-width: 640px) {
  .desantis-grid { flex-direction: column; text-align: center; }
  .desantis-grid img { width: 160px; }
}

/* ---------- Meet Emily: stacked story photos ---------- */
.story-photos { display: grid; gap: 18px; align-self: stretch; }
.story-photos img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; box-shadow: var(--shadow-lg); }

/* ---------- Organization logos in endorser cards ---------- */
.endorser-card .headshot.logo {
  width: auto;
  max-width: 88%;
  height: 66px;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}


/* ---------- Kathleen's Record grid (home, 5 across) ---------- */
.record-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.record-grid .priority-card { text-decoration: none; }
.record-grid .priority-body h3 { font-size: 18px; }
.record-grid .priority-body .more { display:inline-block; margin-top:6px; font-size:12px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; color:var(--red); }
@media (max-width: 1000px) { .record-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .record-grid { grid-template-columns: 1fr; } }

/* Footer logo sits on a white chip (official KP logo is dark) */
.footer-logo { background:#fff; padding:12px 16px; border-radius:6px; width:auto; max-width:260px; }

/* ---------- Home hero: logo plate on the right + tightened text ---------- */
.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; }
.hero-logo-plate {
  display:inline-block;
  background:transparent;
  padding:0;
  box-shadow:none;
  margin-bottom:20px;
}
.hero-logo-plate img { width:clamp(240px, 30vw, 360px); height:auto; display:block; margin:0 auto; filter: drop-shadow(0 2px 14px rgba(0,0,0,.4)); }
.hero-tagsub {
  color:#fff; font-weight:600; letter-spacing:.02em;
  margin:2px 0 24px; font-size:clamp(14px, 1.5vw, 17px);
  text-shadow:0 2px 10px rgba(0,0,0,.55);
}
.hero-photo .hero-subhead { margin-top:0; }

/* ---------- Kathleen's Plan grid (home, 4 across) ---------- */
.plan-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.plan-grid .priority-body h3 { font-size:19px; }
.plan-grid .priority-body .more { display:inline-block; margin-top:8px; font-size:12px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; color:var(--red); }
@media (max-width:1000px){ .plan-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:600px){ .plan-grid{ grid-template-columns:1fr; } }

/* ---------- Kathleen's Plan: full-width alternating rows ---------- */
.plan-rows { padding-bottom: 0; }
.plan-rows .plan-row {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
}
.plan-row-media {
  min-height: 380px;
  background-size: cover;
  background-position: center;
}
.plan-row-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 56px) clamp(28px, 5vw, 80px);
  background: var(--bone);
}
.plan-row-body h3 { color: var(--navy); font-size: clamp(24px, 2.6vw, 34px); line-height: 1.1; margin: 0 0 14px; }
.plan-row-body p { font-size: clamp(19px, 1.7vw, 24px); color: var(--slate); margin: 0; line-height: 1.6; }
.plan-row:hover .plan-row-body { background: #fff; }
/* alternate rows: image flush to the right */
.plan-rows .plan-row:nth-of-type(even) { grid-template-columns: 50% 50%; }
.plan-rows .plan-row:nth-of-type(even) .plan-row-media { order: 2; }
.plan-rows .plan-row:nth-of-type(even) .plan-row-body { order: 1; }
@media (max-width: 760px) {
  .plan-rows .plan-row,
  .plan-rows .plan-row:nth-of-type(even) { grid-template-columns: 1fr; }
  .plan-rows .plan-row:nth-of-type(even) .plan-row-media,
  .plan-rows .plan-row:nth-of-type(even) .plan-row-body { order: 0; }
  .plan-row-media { min-height: 240px; }
}

/* ---------- Message / quote band ---------- */
.message-band { text-align:center; }
.message-band blockquote { font-size:clamp(22px,2.8vw,34px); font-weight:700; line-height:1.3; color:#fff; margin:0 auto 16px; max-width:960px; }
.message-band cite { font-style:normal; font-weight:800; letter-spacing:.08em; text-transform:uppercase; color:var(--gold); font-size:14px; }

/* ---------- Key Dates card (Vote by Mail) ---------- */
.keydates { background:#fff; border:1px solid var(--rule); box-shadow:var(--shadow); margin-top:32px; overflow:hidden; border-radius:8px; }
.keydates-head { background:var(--navy); color:#fff; padding:18px 26px; display:flex; flex-wrap:wrap; align-items:baseline; gap:4px 14px; }
.keydates-head h3 { color:#fff; margin:0; font-size:22px; }
.keydates-sub { color:var(--gold); font-weight:800; font-size:12px; letter-spacing:.12em; text-transform:uppercase; }
.keydates-list { list-style:none; margin:0; padding:0; }
.keydates-list li { display:flex; gap:22px; align-items:center; padding:18px 26px; border-top:1px solid var(--rule); }
.keydates-list li:first-child { border-top:0; }
.kd-date { flex:0 0 132px; background:var(--red); color:#fff; text-align:center; font-weight:800; font-size:15px; letter-spacing:.01em; padding:12px 8px; border-radius:8px; line-height:1.15; }
.kd-body { display:flex; flex-direction:column; gap:3px; }
.kd-body strong { color:var(--navy); font-size:16px; }
.kd-body span { color:var(--slate); font-size:14px; line-height:1.45; }
.keydates-note { margin:0; padding:16px 26px; background:var(--offwhite); font-size:13px; color:var(--slate); border-top:1px solid var(--rule); }
@media (max-width:600px){ .keydates-list li{ flex-direction:column; align-items:flex-start; gap:10px; } .kd-date{ flex:none; align-self:flex-start; } }

/* ---------- Flatten boxes: single solid fill, no outlines (per request) ---------- */
.vision-card,
.priority-card,
.issue-card,
.endorser-card,
.voter-card,
.form-card,
.donate-card,
.thanks-panel,
.news-card,
.keydates { border: none; }

.disclaimer-box { border: none; background: rgba(255,255,255,.08); }

/* Form fields: filled, no outline (keep the focus ring for accessibility) */
input[type=text], input[type=email], input[type=tel], input[type=number], select, textarea { border: none; background: var(--offwhite); }

/* ---------- Endorsements: centered, white background, red cards ---------- */
.endorser-section .endorser-grid { display:flex; flex-wrap:wrap; justify-content:center; gap:22px; }
.endorser-section .endorser-card { flex:0 1 244px; background:var(--red); }
.endorser-section .endorser-card h3 { color:#fff; }
.endorser-section .endorser-card .title { color:rgba(255,255,255,.85); }
.endorser-section .endorser-card .headshot.logo { background:#fff; padding:8px 12px; border-radius:6px; }

/* ---------- Endorser cards: center all content (incl. IAFF logo) ---------- */
.endorser-section .endorser-card { display:flex; flex-direction:column; align-items:center; text-align:center; }
.endorser-section .endorser-card .headshot,
.endorser-section .endorser-card .headshot.logo { margin-left:auto; margin-right:auto; }

/* ---------- Home hero: subject on the right, logo + buttons on the LEFT ---------- */
.hero-photo.hero-left { justify-content: flex-start; background-position: center 20%; }
.hero-photo.hero-left::before { background: linear-gradient(90deg, rgba(69,84,92,.78) 0%, rgba(69,84,92,.42) 30%, rgba(69,84,92,0) 58%); }
.hero-photo.hero-left .hero-inner { margin-right: 0; margin-left: clamp(0px, 4vw, 72px); text-align: left; }
.hero-photo.hero-left .hero-logo-plate img { margin: 0; }
.hero-photo.hero-left .hero-actions { justify-content: flex-start; }
@media (max-width: 860px) {
  .hero-photo.hero-left { justify-content: center; background-position: center 14%; }
  .hero-photo.hero-left::before { background: linear-gradient(180deg, rgba(69,84,92,.55) 0%, rgba(69,84,92,.35) 45%, rgba(69,84,92,.60) 100%); }
  .hero-photo.hero-left .hero-inner { margin-left: 0; text-align: center; }
  .hero-photo.hero-left .hero-logo-plate img { margin: 0 auto; }
  .hero-photo.hero-left .hero-actions { justify-content: center; }
}

/* Slightly rounded corners on all boxes */
.news-card,
.voter-card,
.endorser-card,
.form-card,
.donate-card,
.priority-card,
.thanks-panel,
.vision-card,
.keydates,
.disclaimer-box { border-radius: 12px; overflow: hidden; }

/* Subtle wave texture on the Latest News + action boxes */
.news-card,
.support-card,
.cta-strip {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='30' viewBox='0 0 140 30'%3E%3Cpath d='M-10 22 C 12.5 8 32.5 8 55 22 C 77.5 36 97.5 36 120 22 C 142.5 8 162.5 8 185 22' fill='none' stroke='%23ffffff' stroke-opacity='0.0225' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-position: center top;
}
.cta-strip--yellow,
.support-card:nth-child(3) {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='30' viewBox='0 0 140 30'%3E%3Cpath d='M-10 22 C 12.5 8 32.5 8 55 22 C 77.5 36 97.5 36 120 22 C 142.5 8 162.5 8 185 22' fill='none' stroke='%232C363B' stroke-opacity='0.025' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-position: center top;
}
