/* ============================================================
   Rommy Kushner for Trustee, Area 3 — Sunnyvale School District
   Palette: Teal & Coral
   No build step. Vanilla CSS. Mobile-first with clamp() + a few
   media queries. Palette lives in :root custom properties, so a
   whole re-theme is a single block edit.
   ============================================================ */

:root {
  --primary: #0F5B52;
  --p2: #157A6E;
  --p3: #0A3D37;
  --hdr: #0F5B52;
  --deep: #0A3D37;
  --accent: #F2704E;
  --accent-rgb: 242, 112, 78;
  --accent-light: #FF9877;
  --accent-deep: #C9502F;
  --btn-ink: #3A140B;
  --on-primary: #E8F3F0;
  --on-primary-rgb: 232, 243, 240;
  --ink: #12332E;
  --body: #46534E;
  --paper: #F4F1E9;
  --line: #e3ddcf;
  --stripe-a: #17756A;
  --stripe-b: #0C4A43;
  --light-a: #e8ebe2;
  --light-b: #dfe4d8;

  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body: 'Montserrat', system-ui, sans-serif;

  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}
a { color: var(--accent-deep); text-decoration: none; }
a:hover { color: var(--primary); }
::selection { background: var(--accent); color: #fff; }
h1, h2, h3, h4 { margin: 0; }
p { margin: 0; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 760px; }
.wrap-mid { max-width: 900px; }

/* --------------------------------------------------- Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 16px 30px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn-primary {
  color: var(--btn-ink);
  background: linear-gradient(180deg, var(--accent-light), var(--accent));
  box-shadow: 0 12px 26px -14px rgba(0,0,0,0.55);
}
.btn-primary:hover { transform: translateY(-2px); color: var(--btn-ink); }
.btn-outline-light {
  color: var(--on-primary);
  border: 1.5px solid rgba(var(--accent-rgb), 0.7);
  background: transparent;
}
.btn-outline-light:hover { background: var(--accent); color: var(--btn-ink); border-color: var(--accent); }
.btn-outline {
  color: var(--primary);
  border: 1.5px solid var(--accent-deep);
  background: transparent;
}
.btn-outline:hover { background: var(--accent); color: var(--btn-ink); border-color: var(--accent); }
.btn-block { display: block; width: 100%; }
.btn-sm { padding: 11px 22px; font-size: 0.82rem; }

/* Header nav Donate pill uses btn-primary but tighter */
.nav-cta { padding: 11px 22px; }

/* --------------------------------------------------- Eyebrow / rules */
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-deep);
}
.eyebrow-light { color: var(--accent); }
.rule {
  width: 96px; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-light), var(--accent-deep));
}
.rule-sm { width: 64px; height: 3px; background: var(--accent); border-radius: 0; }

/* --------------------------------------------------- Header */
.site-header {
  position: relative;
  z-index: 40;
  background: var(--hdr);
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.45);
}
.site-header .wrap {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; flex-direction: column; line-height: 1.05; }
.brand strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.brand span {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-top: 3px;
}
.main-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; gap: 30px;
}
.main-nav a {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  color: #fff; text-transform: uppercase;
}
.main-nav a:hover { color: var(--accent-light); }
.main-nav a[aria-current="page"]:not(.btn) {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 3px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(var(--accent-rgb), 0.5);
  border-radius: 3px;
  width: 46px; height: 42px;
  flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--accent); transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--deep);
    border-top: 1px solid rgba(var(--accent-rgb), 0.3);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 24px 20px; }
  .main-nav li { width: 100%; }
  .main-nav a {
    display: block; padding: 13px 0;
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.18);
  }
  .main-nav a[aria-current="page"]:not(.btn) { border-bottom: 1px solid rgba(var(--accent-rgb), 0.18); }
  .main-nav .btn { display: inline-block; margin-top: 16px; width: auto; }
}

/* --------------------------------------------------- Grainy maroon/teal sections */
.deepbg {
  position: relative;
  overflow: hidden;
  color: var(--on-primary);
}
.deepbg::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--grain);
  opacity: 0.09;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.deepbg > .wrap, .deepbg > .hero-inner { position: relative; z-index: 1; }

/* corner brackets */
.corners { position: relative; }
.cn { position: absolute; width: 46px; height: 46px; pointer-events: none; }
.cn.tl { top: 22px; left: 22px; border-top: 2px solid var(--accent); border-left: 2px solid var(--accent); }
.cn.tr { top: 22px; right: 22px; border-top: 2px solid var(--accent); border-right: 2px solid var(--accent); }
.cn.bl { bottom: 22px; left: 22px; border-bottom: 2px solid var(--accent); border-left: 2px solid var(--accent); }
.cn.br { bottom: 22px; right: 22px; border-bottom: 2px solid var(--accent); border-right: 2px solid var(--accent); }

/* --------------------------------------------------- Hero */
.hero {
  background: radial-gradient(120% 90% at 78% 8%, var(--p2) 0%, var(--primary) 42%, var(--p3) 100%);
}
.hero .glow {
  position: absolute; top: -160px; left: -160px;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.16), transparent 62%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  padding: clamp(40px, 7vw, 88px) 24px clamp(48px, 7vw, 96px);
  position: relative; z-index: 1;
}
.hero-grid {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: clamp(32px, 5vw, 64px);
  padding: clamp(8px, 3vw, 34px) clamp(4px, 2vw, 24px);
}
.hero-copy { flex: 1 1 380px; min-width: 300px; }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-eyebrow .dot { color: var(--accent); }
.hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(3rem, 8.5vw, 6.4rem); line-height: 0.9;
  letter-spacing: -0.025em; color: #fff;
}
.hero .rule { margin: 26px 0 24px; }
.tagline {
  font-family: var(--font-body); font-weight: 300;
  font-size: clamp(1.15rem, 2.4vw, 1.6rem); line-height: 1.4;
  color: var(--on-primary); max-width: 22ch; margin-bottom: 34px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* Portrait + seal */
.portrait-col { flex: 0 1 420px; min-width: 280px; display: flex; justify-content: center; position: relative; }
.portrait-wrap { position: relative; width: 100%; max-width: 380px; }
.portrait-wrap::before {
  content: ""; position: absolute; inset: -14px;
  border: 1px solid rgba(var(--accent-rgb), 0.55);
}
.portrait {
  position: relative; aspect-ratio: 4 / 5;
  border: 2px solid var(--accent);
  background: repeating-linear-gradient(135deg, var(--stripe-a), var(--stripe-a) 11px, var(--stripe-b) 11px, var(--stripe-b) 22px);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.portrait .ph {
  text-align: center;
  color: rgba(var(--on-primary-rgb), 0.72);
}
.portrait .ph svg { opacity: 0.7; margin: 0 auto; }
.portrait .ph .ph-label { font-family: monospace; font-size: 0.72rem; letter-spacing: 0.05em; margin-top: 12px; }

.seal {
  position: absolute; bottom: -30px; right: -22px;
  width: 148px; text-align: center;
  background: linear-gradient(160deg, var(--p2), var(--p3));
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 4px var(--hdr), 0 18px 30px -14px rgba(0,0,0,0.7);
  padding: 16px 10px 14px;
}
.seal .s-eyebrow { font-size: 0.5rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.seal .s-name { font-family: var(--font-display); font-weight: 800; color: #fff; font-size: 1.35rem; line-height: 1; margin-top: 5px; }
.seal .s-last { font-family: var(--font-display); font-weight: 700; color: var(--accent); font-size: 0.72rem; letter-spacing: 0.14em; margin-top: 1px; }
.seal .s-rule { width: 40px; height: 1px; background: rgba(var(--accent-rgb), 0.6); margin: 8px auto 6px; }
.seal .s-org { font-size: 0.44rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(var(--on-primary-rgb), 0.75); line-height: 1.4; }

/* --------------------------------------------------- Sections */
.section { padding: clamp(56px, 9vw, 104px) 24px; }
.section-white { background: #fff; border-top: 1px solid var(--line); }
.section-paper { background: var(--paper); }
.section-tight { padding: clamp(40px, 6vw, 72px) 24px; }

/* Statement / lede */
.statement {
  max-width: 900px; margin: 0 auto;
  padding-left: clamp(20px, 4vw, 48px);
  border-left: 3px solid var(--accent);
}
.statement .eyebrow { margin-bottom: 22px; }
.statement p {
  font-family: var(--font-body); font-weight: 300;
  font-size: clamp(1.4rem, 3.4vw, 2.35rem); line-height: 1.32;
  color: var(--ink); text-wrap: pretty;
}
.statement strong { font-weight: 600; color: var(--primary); }

/* --------------------------------------------------- Priorities preview list (home) */
.prio-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-bottom: 12px;
}
.prio-head .eyebrow { margin-bottom: 14px; }
.prio-head h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.02;
  letter-spacing: -0.02em; color: var(--primary); max-width: 16ch;
}
.prio-more { font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; font-size: 0.8rem; color: var(--accent-deep); white-space: nowrap; }
.prio-more:hover { color: var(--primary); }

.prio-list { margin-top: 20px; }
.prio-row {
  display: flex; align-items: baseline;
  gap: clamp(18px, 4vw, 44px);
  padding: clamp(22px, 3vw, 32px) 0;
  border-top: 1px solid var(--line);
  transition: background 0.25s ease;
}
.prio-list .prio-row:last-child { border-bottom: 1px solid var(--line); }
.prio-row:hover { background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.08), transparent); }
.prio-num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px var(--accent);
  flex: 0 0 auto; min-width: 1.6ch;
}
.prio-row p {
  font-family: var(--font-body); font-weight: 500;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem); color: var(--ink); line-height: 1.3;
}

/* --------------------------------------------------- Priorities detail (priorities page) */
.prio-detail {
  display: flex; align-items: flex-start;
  gap: clamp(18px, 4vw, 48px);
  padding: clamp(28px, 4vw, 44px) 0;
  border-top: 1px solid var(--line);
}
.prio-detail:last-child { border-bottom: 1px solid var(--line); }
.prio-detail .prio-num { min-width: 1.8ch; }
.prio-detail h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.05;
  letter-spacing: -0.015em; color: var(--primary); margin-bottom: 12px;
}
.prio-detail p { font-size: 1.05rem; line-height: 1.7; color: var(--body); }

/* --------------------------------------------------- CTA band */
.cta-band {
  background: radial-gradient(110% 130% at 15% 20%, var(--p2) 0%, var(--primary) 46%, var(--p3) 100%);
  padding: clamp(56px, 9vw, 104px) 24px;
}
.cta-band .watermark {
  position: absolute; top: -80px; right: -80px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 22rem; color: rgba(var(--accent-rgb), 0.06);
  line-height: 0.8; pointer-events: none; user-select: none;
}
.cta-inner {
  max-width: 1000px; margin: 0 auto; position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 32px;
}
.cta-inner .cta-copy { flex: 1 1 340px; }
.cta-inner .rule-sm { margin-bottom: 22px; }
.cta-inner h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 4.6vw, 3.2rem); line-height: 1;
  letter-spacing: -0.02em; color: #fff; margin-bottom: 14px;
}
.cta-inner .cta-copy p { font-weight: 300; font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: var(--on-primary); max-width: 38ch; }
.cta-actions { display: flex; flex-direction: column; gap: 14px; flex: 0 0 auto; }
.cta-actions .btn { padding-left: 40px; padding-right: 40px; }

/* --------------------------------------------------- Interior page banner */
.page-banner {
  background: radial-gradient(120% 120% at 82% 12%, var(--p2) 0%, var(--primary) 48%, var(--p3) 100%);
  padding: clamp(48px, 7vw, 86px) 24px clamp(52px, 7vw, 88px);
}
.page-banner .banner-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.page-banner .cn-single { position: absolute; top: -6px; left: 0; width: 44px; height: 44px; border-top: 2px solid var(--accent); border-left: 2px solid var(--accent); }
.page-banner .banner-copy { padding-left: clamp(14px, 3vw, 40px); }
.page-banner .eyebrow { margin-bottom: 18px; }
.page-banner h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 0.95;
  letter-spacing: -0.025em; color: #fff;
}
.page-banner .banner-lede {
  font-weight: 300; font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: var(--on-primary); max-width: 54ch; margin-top: 22px;
}
.page-banner .rule { margin-top: 24px; }

/* --------------------------------------------------- Bio layout (about) */
.bio-layout {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: clamp(32px, 5vw, 64px); align-items: flex-start;
}
.bio-sticky { flex: 1 1 300px; min-width: 260px; position: sticky; top: 24px; }
.bio-portrait-wrap { position: relative; max-width: 340px; }
.bio-portrait-wrap::before { content: ""; position: absolute; inset: -12px; border: 1px solid rgba(201, 80, 47, 0.5); }
.bio-portrait {
  position: relative; aspect-ratio: 4 / 5; border: 2px solid var(--accent);
  background: repeating-linear-gradient(135deg, var(--light-a), var(--light-a) 11px, var(--light-b) 11px, var(--light-b) 22px);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.bio-portrait .ph { text-align: center; color: var(--accent-deep); }
.bio-portrait .ph svg { margin: 0 auto; }
.bio-portrait .ph .ph-label { font-family: monospace; font-size: 0.7rem; margin-top: 10px; }
.portrait img, .bio-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bio-facts { margin-top: 36px; }
.bio-facts dt { font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-deep); font-weight: 700; padding-top: 16px; border-top: 1px solid var(--line); }
.bio-facts dt + dt {}
.bio-facts dd { margin: 6px 0 18px; font-size: 0.95rem; color: var(--ink); line-height: 1.45; font-weight: 500; }
.bio-facts dd:last-child { margin-bottom: 0; }

.bio-copy { flex: 1 1 440px; min-width: 300px; }
.bio-copy .lede {
  font-family: var(--font-body); font-weight: 300;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem); line-height: 1.5; color: var(--ink); margin-bottom: 26px;
}
.bio-copy p { font-size: 1.05rem; line-height: 1.7; color: var(--body); margin-bottom: 22px; }
.bio-copy p.gap { margin-bottom: 32px; }

.pullquote {
  position: relative; margin: 0 0 32px;
  background: linear-gradient(155deg, var(--p2), var(--p3));
  color: var(--on-primary);
  padding: clamp(28px, 4vw, 42px) clamp(24px, 4vw, 44px);
  border-left: 4px solid var(--accent);
}
.pullquote .mark { font-family: var(--font-display); font-weight: 800; font-size: 4rem; line-height: 0.6; color: rgba(var(--accent-rgb), 0.6); margin-bottom: 8px; }
.pullquote p, .bio-copy .pullquote p { font-family: var(--font-body); font-weight: 400; font-size: clamp(1.15rem, 2.6vw, 1.5rem); line-height: 1.4; font-style: italic; color: var(--on-primary); }

/* --------------------------------------------------- Get Involved */
.cta-chip-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.cta-chip {
  font-family: var(--font-body); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.02em; color: var(--primary);
  background: #fff; border: 1.5px solid var(--line);
  padding: 13px 22px; border-radius: 40px; cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}
.cta-chip:hover { border-color: var(--accent); color: var(--accent-deep); transform: translateY(-1px); }

.help-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px 28px; margin-top: 8px;
}
.help-item { display: flex; align-items: flex-start; gap: 12px; font-size: 1rem; color: var(--ink); }
.help-item svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--accent); margin-top: 2px; }

.form-card {
  background: #fff; border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: 4px; padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 24px 50px -30px rgba(15, 91, 82, 0.3);
}
.field-row { display: flex; flex-wrap: wrap; gap: 20px; }
.field { flex: 1 1 200px; margin-bottom: 20px; }
.field label { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--body); margin-bottom: 8px; }
.field .hint { font-weight: 500; text-transform: none; letter-spacing: 0; color: #9a8f86; }
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--line); border-radius: 3px;
  padding: 12px 14px; transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.18); }
.field textarea { min-height: 110px; resize: vertical; }
fieldset { border: none; margin: 4px 0 20px; padding: 0; }
fieldset legend { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--body); padding: 0; margin-bottom: 14px; }
.check-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px 24px; }
.check-item { display: flex; align-items: center; gap: 10px; font-size: 0.98rem; color: var(--ink); cursor: pointer; }
.check-item input { width: 18px; height: 18px; accent-color: var(--accent); flex: 0 0 auto; }
.honeypot-field { position: absolute; left: -9999px; }

/* --------------------------------------------------- Donate */
.amount-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; }
.amount-btn {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.6rem;
  color: var(--primary); background: #fff; border: 2px solid var(--line);
  border-radius: 4px; padding: 26px 12px; text-align: center;
  transition: border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.amount-btn small { font-family: var(--font-body); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--body); }
.amount-btn:hover { border-color: var(--accent); color: var(--primary); transform: translateY(-3px); box-shadow: 0 18px 34px -22px rgba(15, 91, 82, 0.4); }

.placeholder-flag {
  display: inline-block; margin-top: 18px;
  font-family: monospace; font-size: 0.8rem;
  color: var(--accent-deep); background: rgba(var(--accent-rgb), 0.1);
  border: 1px dashed var(--accent); border-radius: 3px; padding: 8px 14px;
}
.compliance-box {
  margin-top: 32px; background: #fff; border: 1px solid var(--line);
  border-left: 4px solid var(--accent); border-radius: 4px; padding: clamp(22px, 3vw, 32px);
}
.compliance-box p { font-size: 0.95rem; line-height: 1.65; color: var(--body); margin-bottom: 12px; }
.compliance-box p:last-child { margin-bottom: 0; }
.compliance-box strong { color: var(--ink); }

/* --------------------------------------------------- Footer */
.site-footer { background: var(--deep); padding: clamp(48px, 7vw, 72px) 24px 40px; border-top: 3px solid var(--accent); }
.footer-grid { max-width: 1100px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; }
.footer-brand { flex: 1 1 260px; display: flex; gap: 20px; align-items: flex-start; }
.footer-badge {
  flex: 0 0 auto; width: 92px; text-align: center;
  border: 1.5px solid var(--accent); padding: 12px 8px;
  background: linear-gradient(160deg, var(--hdr), var(--deep));
}
.footer-badge .fb-name { font-family: var(--font-display); font-weight: 800; color: #fff; font-size: 1rem; line-height: 1; }
.footer-badge .fb-last { font-family: var(--font-display); font-weight: 700; color: var(--accent); font-size: 0.58rem; letter-spacing: 0.14em; margin-top: 2px; }
.footer-badge .fb-area { font-size: 0.42rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(var(--on-primary-rgb), 0.7); margin-top: 7px; }
.footer-brand strong { font-family: var(--font-display); color: #fff; font-size: 1.05rem; display: block; margin-bottom: 6px; }
.footer-brand .fb-tag { font-size: 0.85rem; color: rgba(var(--on-primary-rgb), 0.72); line-height: 1.5; }
.site-footer h4 { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 0.9rem; color: rgba(var(--on-primary-rgb), 0.8); }
.footer-col a:hover { color: var(--accent-light); }
.footer-social { display: inline-flex; align-items: center; gap: 8px; }
.footer-social svg { width: 18px; height: 18px; }
.footer-legal {
  max-width: 1100px; margin: 40px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(var(--accent-rgb), 0.22);
  font-size: 0.78rem; color: rgba(var(--on-primary-rgb), 0.55);
}
.fill-in { color: rgba(var(--on-primary-rgb), 0.7); }

/* --------------------------------------------------- Endorsements */
.endorse-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
@media (max-width: 780px) { .endorse-grid { grid-template-columns: 1fr; } }
.endorse-card {
  background: var(--white); border: 1.5px dashed rgba(var(--accent-rgb), 0.55);
  border-radius: 10px; padding: 26px 24px;
}
.endorse-card .e-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-deep); margin-bottom: 14px;
}
.endorse-card .e-avatar svg { width: 20px; height: 20px; }
.endorse-card p.e-quote { font-style: italic; color: var(--body); font-size: 0.96rem; margin-bottom: 14px; }
.endorse-card .e-name { font-weight: 700; color: var(--primary); font-size: 0.94rem; }
.endorse-card .e-role { font-size: 0.8rem; color: var(--body); }
.endorse-note { margin-top: 22px; }

/* --------------------------------------------------- Election date banner */
.election-note {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600; color: var(--body);
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 999px; padding: 7px 16px; margin-top: 20px;
}
.election-note svg { width: 15px; height: 15px; color: var(--accent-deep); flex-shrink: 0; }
.election-note.on-dark { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); color: var(--on-primary); }
.election-note.on-dark svg { color: var(--accent); }

/* --------------------------------------------------- Footer newsletter strip */
.footer-newsletter {
  max-width: 1100px; margin: 0 auto 36px; padding-bottom: 30px;
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.22);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
}
.footer-newsletter .fn-copy strong { display: block; color: #fff; font-size: 1rem; margin-bottom: 3px; }
.footer-newsletter .fn-copy span { font-size: 0.85rem; color: rgba(var(--on-primary-rgb), 0.7); }
.footer-newsletter form { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-newsletter input[type="email"] {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.3);
  color: #fff; border-radius: 999px; padding: 10px 16px; font-size: 0.9rem;
  min-width: 220px; font-family: var(--font-body);
}
.footer-newsletter input[type="email"]::placeholder { color: rgba(255,255,255,0.5); }
.footer-newsletter input[type="email"]:focus { outline: none; border-color: var(--accent); }
.footer-newsletter button { flex-shrink: 0; }

/* --------------------------------------------------- Utilities */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* --------------------------------------------------- Scroll reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s cubic-bezier(.16,.7,.3,1), transform 0.7s cubic-bezier(.16,.7,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .btn, .amount-btn, .cta-chip { transition: none; }
}
