/* ==========================================================================
   Rebecca Arnold for Ada County Assessor — Campaign Stylesheet
   Brand: Purple #673A97  |  Cyan #33BBED
   Author: BuildPlatform
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --purple:        #673A97;
  --purple-900:    #24143A;
  --purple-800:    #331D51;
  --purple-700:    #46266E;
  --purple-600:    #57318A;
  --purple-500:    #673A97;
  --purple-400:    #8B5FBF;
  --purple-200:    #D8C8EC;
  --purple-050:    #F4EFFA;

  --cyan:          #33BBED;
  --cyan-700:      #0B7FB4;
  --cyan-600:      #1097D2;
  --cyan-300:      #7FD5F5;
  --cyan-050:      #E8F7FE;

  /* Neutrals */
  --ink:           #17111F;
  --ink-2:         #3B3448;
  --slate:         #5E5772;
  --line:          #E4E0EC;
  --paper:         #FFFFFF;
  --paper-2:       #F7F5FB;
  --paper-3:       #EFEBF6;

  /* Type */
  --font-display: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body:    "Source Sans 3", "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  /* Metrics */
  --wrap:      1200px;
  --wrap-slim: 860px;
  --radius:    4px;
  --radius-lg: 10px;

  --shadow-sm: 0 1px 2px rgba(23,17,31,.06), 0 2px 8px rgba(23,17,31,.05);
  --shadow-md: 0 4px 14px rgba(36,20,58,.10), 0 12px 34px rgba(36,20,58,.08);
  --shadow-lg: 0 10px 30px rgba(36,20,58,.14), 0 30px 70px rgba(36,20,58,.12);

  --ease: cubic-bezier(.2,.7,.3,1);
}

/* --------------------------------------------------------------------------
   2. RESET / BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--purple-600); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--cyan-700); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--purple-900);
  margin: 0 0 .5em;
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-weight: 800;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1.2em; padding-left: 1.2em; }
li { margin-bottom: .5em; }

strong { color: var(--ink); font-weight: 700; }

hr { border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }

::selection { background: var(--cyan); color: #fff; }

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   3. LAYOUT HELPERS
   -------------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.wrap-slim { width: 100%; max-width: var(--wrap-slim); margin-inline: auto; padding-inline: 24px; }

.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }

.section--paper2 { background: var(--paper-2); }
.section--purple {
  background: var(--purple-900);
  background-image:
    radial-gradient(1100px 520px at 12% -10%, rgba(103,58,151,.75), transparent 60%),
    radial-gradient(900px 460px at 92% 108%, rgba(51,187,237,.20), transparent 62%);
  color: #E8E2F2;
}
.section--purple h2,
.section--purple h3,
.section--purple h4 { color: #fff; }
.section--purple a { color: var(--cyan-300); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--purple-900); color: #fff; padding: 12px 20px; font-weight: 700;
}
.skip-link:focus { left: 8px; top: 8px; }

/* Section heading block */
.sec-head { max-width: 760px; margin-bottom: clamp(32px, 4vw, 52px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head p { font-size: 1.125rem; color: var(--slate); margin-bottom: 0; }
.section--purple .sec-head p { color: #CFC5E0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan-700);
  margin-bottom: 14px;
}
.eyebrow::after {
  content: "";
  display: block;
  width: 44px; height: 3px;
  background: var(--cyan);
  margin-top: 10px;
}
.sec-head.center .eyebrow::after { margin-inline: auto; }
.section--purple .eyebrow { color: var(--cyan-300); }

.lede { font-size: clamp(1.12rem, 1.6vw, 1.3rem); line-height: 1.6; color: var(--ink-2); }
.section--purple .lede { color: #DED6EC; }

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s var(--ease), background-color .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--purple); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--purple-700); color: #fff; box-shadow: var(--shadow-md); }

.btn--cyan { background: var(--cyan); color: var(--purple-900); box-shadow: var(--shadow-sm); }
.btn--cyan:hover { background: var(--cyan-300); color: var(--purple-900); box-shadow: var(--shadow-md); }

.btn--ghost { background: transparent; color: var(--purple-700); border-color: var(--purple-200); }
.btn--ghost:hover { background: var(--purple-050); color: var(--purple-800); border-color: var(--purple-400); }

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

.btn--sm { padding: 11px 20px; font-size: .82rem; }
.btn--lg { padding: 18px 38px; font-size: 1rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.center { justify-content: center; }

/* --------------------------------------------------------------------------
   5. ELECTION BANNER (Ada County Elections link)
   -------------------------------------------------------------------------- */
.election-bar {
  background: var(--cyan);
  color: var(--purple-900);
  font-size: .92rem;
}
.election-bar__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 8px 18px;
  padding: 11px 24px;
  text-align: center;
}
.election-bar strong {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .84rem;
  color: var(--purple-900);
}
.election-bar__link {
  color: var(--purple-900);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.election-bar__link:hover { color: #fff; }

@media (max-width: 700px) {
  .election-bar__inner { padding: 9px 18px; gap: 4px 12px; }
  .election-bar__note { display: none; }
  .election-bar strong { font-size: .78rem; }
  .election-bar__link { font-size: .84rem; }
}

/* Divider used inside a dark section instead of stacking two purple sections
   (stacking restarts the gradient and leaves a visible seam) */
.rule-light {
  border: 0; border-top: 1px solid rgba(255,255,255,.14);
  margin: clamp(48px, 6vw, 80px) 0;
}

/* --------------------------------------------------------------------------
   6. HEADER + NAV
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  min-height: 82px;
  padding-block: 12px;
}

/* Brand lockup (derived from the campaign yard-sign artwork) */
.brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; }
.brand__mark {
  width: 42px; height: 42px; flex: none;
  background: var(--purple);
  border-radius: 3px;
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: -.02em;
  box-shadow: inset 0 -3px 0 var(--cyan);
}
.brand__text { display: block; }
.brand__first {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: .64rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--purple-600);
  margin-bottom: 1px;
}
.brand__last {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.42rem;
  line-height: .95;
  letter-spacing: -.02em;
  color: var(--purple-800);
  text-transform: uppercase;
}
.brand__office {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .6rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--cyan-700);
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--purple-900);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: var(--radius);
  position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 3px; background: var(--cyan);
  transform: scaleX(0); transform-origin: left;
  transition: transform .22s var(--ease);
}
.nav a:hover { color: var(--purple-600); }
.nav a:hover::after,
.nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--purple-600); }

.header-cta { margin-left: 10px; }

.nav-toggle {
  display: none;
  background: var(--purple-900); border: 0; color: #fff;
  padding: 11px 14px; border-radius: var(--radius);
  font-family: var(--font-display); font-weight: 700; font-size: .8rem;
  letter-spacing: .1em; text-transform: uppercase; cursor: pointer;
}

@media (max-width: 940px) {
  .nav-toggle { display: inline-block; }
  .site-header__nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 12px 24px 22px;
  }
  .site-header__nav.is-open { display: block; }
  .nav { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav a { padding: 14px 6px; border-bottom: 1px solid var(--paper-3); font-size: 1rem; }
  .nav a::after { display: none; }
  .header-cta { margin: 16px 0 0; display: block; }
  .header-cta .btn { width: 100%; }
}

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--purple-900);
  color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 62%;
  opacity: .30;
  filter: saturate(.75);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(36,20,58,.97) 0%, rgba(36,20,58,.90) 42%, rgba(36,20,58,.55) 72%, rgba(36,20,58,.35) 100%),
    radial-gradient(700px 420px at 88% 88%, rgba(51,187,237,.22), transparent 65%);
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  padding: clamp(56px, 7vw, 104px) 0 clamp(56px, 7vw, 96px);
}
.hero__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700; font-size: .78rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--cyan-300);
  border: 1px solid rgba(127,213,245,.4);
  border-radius: 100px;
  padding: 8px 18px;
  margin-bottom: 24px;
}
.hero__kicker::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 0 4px rgba(51,187,237,.25);
}
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero h1 em {
  font-style: normal;
  color: var(--cyan);
  display: block;
}
.hero__sub {
  font-size: clamp(1.1rem, 1.7vw, 1.32rem);
  color: #DCD3EA;
  max-width: 46ch;
  margin-bottom: 32px;
}
.hero__pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 0 0 30px; padding: 0; list-style: none;
}
.hero__pills li {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600; font-size: .8rem;
  letter-spacing: .08em; text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px;
  padding: 8px 16px;
}

.hero__portrait { position: relative; }
.hero__portrait img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.14);
}
.hero__badge {
  position: absolute;
  left: -18px; bottom: 26px;
  background: var(--cyan);
  color: var(--purple-900);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  max-width: 220px;
}
.hero__badge b {
  display: block;
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.55rem; line-height: 1;
}
.hero__badge span {
  display: block; font-size: .78rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; margin-top: 4px;
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__portrait { max-width: 420px; }
  .hero__badge { left: auto; right: 12px; }
}

/* Interior page hero */
.page-hero {
  position: relative;
  background: var(--purple-900);
  color: #fff;
  overflow: hidden;
  padding: clamp(52px, 6.5vw, 92px) 0;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 55%;
  opacity: .26;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(36,20,58,.96), rgba(36,20,58,.72));
}
.page-hero__inner { position: relative; z-index: 2; max-width: 780px; }
.page-hero h1 { color: #fff; margin-bottom: .3em; }
.page-hero p { color: #D9D0E8; font-size: clamp(1.05rem, 1.6vw, 1.25rem); margin-bottom: 0; }
.page-hero .eyebrow { color: var(--cyan-300); }

.crumbs {
  font-size: .82rem; color: #B9AECC; margin-bottom: 26px;
  font-family: var(--font-display); letter-spacing: .08em; text-transform: uppercase;
}
.page-hero .crumbs + .eyebrow { margin-top: 4px; }
.crumbs a { color: var(--cyan-300); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   8. STAT BAR
   -------------------------------------------------------------------------- */
.statbar { background: var(--purple); color: #fff; }
.statbar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.16);
}
.statbar__item {
  background: var(--purple);
  padding: 30px 22px;
  text-align: center;
}
.statbar__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1;
  color: #fff;
}
.statbar__num span { color: var(--cyan); }
.statbar__label {
  display: block;
  margin-top: 9px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #E0D5F0;
}
@media (max-width: 780px) { .statbar__grid { grid-template-columns: repeat(2, 1fr); } }

/* --------------------------------------------------------------------------
   9. SPLIT / MEDIA BLOCKS
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.split--media-right { grid-template-areas: "text media"; }
.split--media-left  { grid-template-areas: "media text"; }
.split__text  { grid-area: text; }
.split__media { grid-area: media; }

.split__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
/* Cover-cropped media (keeps wide source images from reading as letterboxed strips) */
.split__media--cover img { aspect-ratio: 5 / 4; object-fit: cover; }
.split__media--portrait img { aspect-ratio: 4 / 5; object-fit: cover; }

/* Offset accent rule — an L along the outside edge, not a duplicate box */
.framed { position: relative; }
.framed::before {
  content: ""; position: absolute;
  inset: 26px -20px -20px 26px;
  border-right: 5px solid var(--cyan);
  border-bottom: 5px solid var(--cyan);
  border-radius: 0 0 var(--radius-lg) 0;
  z-index: 0;
}
.framed img { position: relative; z-index: 1; }

@media (max-width: 860px) {
  .split, .split--media-right, .split--media-left {
    grid-template-columns: 1fr;
    grid-template-areas: "media" "text";
  }
  .framed::before { inset: 18px -12px -12px 18px; }
}

/* --------------------------------------------------------------------------
   10. CARDS
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--purple-200); }
.card:hover::before { transform: scaleX(1); }
.card h3 { margin-bottom: .5em; font-size: 1.28rem; }
.card p { color: var(--slate); font-size: 1rem; margin-bottom: 0; }
.card p + p { margin-top: .9em; }

.card__num {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 48px; height: 48px;
  padding: 0 16px;
  border-radius: 100px;
  background: var(--purple-050);
  color: var(--purple);
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.05rem;
  letter-spacing: -.01em;
  margin-bottom: 18px;
}
.card--dark { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.14); }
.card--dark h3 { color: #fff; }
.card--dark p { color: #CFC5E0; }
.card--dark .card__num { background: rgba(51,187,237,.16); color: var(--cyan-300); }

/* Icon */
.icon {
  width: 44px; height: 44px; margin-bottom: 18px;
  color: var(--purple);
  stroke: currentColor; fill: none; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.card--dark .icon { color: var(--cyan-300); }

/* --------------------------------------------------------------------------
   11. CHECK LIST / RECORD LIST
   -------------------------------------------------------------------------- */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 18px;
  font-size: 1.04rem;
}
.checklist li::before {
  content: "";
  position: absolute; left: 0; top: .28em;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--cyan);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2324143A' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 15px; background-repeat: no-repeat; background-position: center;
}
.checklist--purple li::before { background-color: var(--purple-200); }

/* Definition rows */
.deflist { border-top: 1px solid var(--line); margin: 0; }
.deflist__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 8px 32px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.deflist__row dt {
  font-family: var(--font-display);
  font-weight: 700; font-size: .84rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--cyan-700);
  padding-top: 4px;
}
.deflist__row dd { margin: 0; color: var(--ink-2); }
.deflist__row dd strong { display: block; color: var(--purple-900); font-family: var(--font-display); font-size: 1.08rem; }
@media (max-width: 720px) { .deflist__row { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   12. TIMELINE
   -------------------------------------------------------------------------- */
.timeline { list-style: none; margin: 0; padding: 0 0 0 34px; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(180deg, var(--purple), var(--cyan));
}
.timeline li { position: relative; margin-bottom: 34px; }
.timeline li:last-child { margin-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: -34px; top: 7px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #fff; border: 3px solid var(--purple);
}
.timeline__when {
  display: block;
  font-family: var(--font-display);
  font-weight: 700; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--cyan-700);
  margin-bottom: 4px;
}
.timeline__what {
  display: block;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.12rem;
  color: var(--purple-900);
  margin-bottom: 4px;
}
.timeline p { color: var(--slate); font-size: 1rem; margin: 0; }

/* --------------------------------------------------------------------------
   13. QUOTE
   -------------------------------------------------------------------------- */
.quote {
  position: relative;
  max-width: 900px; margin-inline: auto;
  text-align: center;
  padding: 0 clamp(0px, 3vw, 40px);
}
.quote__mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 5rem; line-height: .6;
  color: var(--cyan);
  display: block;
  margin-bottom: 14px;
}
.quote blockquote {
  margin: 0 0 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.7vw, 2.1rem);
  line-height: 1.32;
  letter-spacing: -.015em;
  color: #fff;
}
.quote figcaption {
  font-size: .86rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--cyan-300);
}

/* --------------------------------------------------------------------------
   14. FAQ / ACCORDION
   -------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 56px 26px 0;
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--purple-900);
  line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute; right: 8px; top: 50%;
  width: 15px; height: 15px;
  margin-top: -7px;
  border-right: 3px solid var(--cyan-600);
  border-bottom: 3px solid var(--cyan-600);
  transform: rotate(45deg);
  transition: transform .22s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq summary:hover { color: var(--purple-600); }
.faq__body { padding: 0 40px 28px 0; color: var(--slate); }
.faq__body p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   15. GIVE / DONATE AMOUNTS
   -------------------------------------------------------------------------- */
.amounts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 22px; }
@media (max-width: 720px) { .amounts { grid-template-columns: repeat(2, 1fr); } }
.amount {
  display: block; text-align: center; text-decoration: none;
  padding: 26px 12px;
  border: 2px solid var(--purple-200);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: all .18s var(--ease);
}
.amount b {
  display: block;
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.85rem; color: var(--purple-800); line-height: 1;
}
.amount span {
  display: block; margin-top: 8px;
  font-size: .82rem; color: var(--slate); line-height: 1.35;
}
.amount:hover {
  border-color: var(--cyan);
  background: var(--cyan-050);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.amount--feature { border-color: var(--purple); background: var(--purple-050); }

.note {
  font-size: .92rem;
  color: var(--slate);
  background: var(--paper-2);
  border-left: 4px solid var(--cyan);
  padding: 18px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.note strong { color: var(--purple-900); }

/* Placeholder flag — remove once real values are supplied */
.ph {
  background: #FFF3C4;
  border-bottom: 2px dotted #C9A227;
  color: #6B5200;
  padding: 0 4px;
  font-weight: 600;
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   16. CTA BAND
   -------------------------------------------------------------------------- */
.cta-band {
  background: var(--purple-900);
  background-image:
    linear-gradient(115deg, var(--purple-800) 0%, var(--purple-900) 55%),
    radial-gradient(800px 400px at 85% 110%, rgba(51,187,237,.28), transparent 60%);
  color: #fff;
  text-align: center;
  padding: clamp(56px, 7vw, 92px) 0;
}
.cta-band h2 { color: #fff; max-width: 20ch; margin-inline: auto; }
.cta-band p { color: #D7CEE7; max-width: 58ch; margin-inline: auto; margin-bottom: 32px; font-size: 1.1rem; }

/* Vote / election info panel */
.vote-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 6px solid var(--cyan);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-md);
}
@media (max-width: 820px) { .vote-panel { grid-template-columns: 1fr; } }
.vote-panel h2 { margin-bottom: .35em; }
.vote-panel__dates { list-style: none; margin: 0; padding: 0; }
.vote-panel__dates li {
  display: flex; gap: 16px; align-items: baseline;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  margin: 0;
}
.vote-panel__dates li:last-child { border-bottom: 0; }
.vote-panel__dates b {
  font-family: var(--font-display); font-weight: 700;
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--cyan-700); min-width: 128px;
}

/* --------------------------------------------------------------------------
   17. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--purple-900);
  color: #BEB2D2;
  font-size: .95rem;
  padding: clamp(48px, 6vw, 72px) 0 0;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 46px;
}
@media (max-width: 900px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer__grid { grid-template-columns: 1fr; } }

.site-footer h4 {
  color: #fff;
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer a { color: #D6CBE6; text-decoration: none; }
.site-footer a:hover { color: var(--cyan-300); text-decoration: underline; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 11px; }

.footer-brand__last {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.55rem; color: #fff; text-transform: uppercase;
  line-height: 1; letter-spacing: -.02em;
}
.footer-brand__first {
  font-family: var(--font-display); font-weight: 400;
  font-size: .68rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--cyan-300); margin-bottom: 4px;
}
.footer-brand__office {
  font-family: var(--font-display); font-weight: 600;
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--cyan); margin-top: 6px;
}
.footer-brand p { margin-top: 18px; color: #A99CBF; font-size: .92rem; max-width: 34ch; }

.social { display: flex; gap: 10px; margin-top: 18px; }
.social a {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  transition: all .18s var(--ease);
}
.social a:hover { background: var(--cyan); color: var(--purple-900); border-color: var(--cyan); }
.social svg { width: 18px; height: 18px; fill: currentColor; }

.site-footer__legal {
  border-top: 1px solid rgba(255,255,255,.13);
  padding: 26px 0 34px;
  display: flex; flex-wrap: wrap; gap: 12px 26px;
  align-items: center; justify-content: space-between;
  font-size: .84rem;
  color: #9C8FB4;
}
.site-footer__legal nav { display: flex; flex-wrap: wrap; gap: 12px 22px; }
.disclaimer {
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: .84rem;
  color: #B7AACB;
  margin-bottom: 26px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   18. MOTION
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   19. PRINT
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .election-bar, .cta-band, .site-footer__legal { display: none; }
  body { font-size: 12pt; color: #000; }
  .hero, .page-hero, .section--purple { background: #fff !important; color: #000 !important; }
  .hero__bg, .page-hero__bg, .hero::after, .page-hero::after { display: none; }
  .hero h1, .page-hero h1, .section--purple h2 { color: #000 !important; }
}
