/* ============================================================
   CAMBRON CAN CLEAN UP — Campaign Website Stylesheet
   Frankie Cambron · Nelson County Magistrate, District 4
   Palette: deep forest green / ivory / amber-gold
   Typography: Frank Ruhl Libre (display) + Archivo (body)
   ============================================================ */

/* ── Design tokens ── */
:root {
  --forest: #123524;          /* deep forest green — primary */
  --forest-deep: #0a2317;     /* darkest green, hero/footer */
  --forest-mid: #1e4d33;      /* mid green, cards/hover */
  --forest-soft: #2e6b47;     /* brighter green, links */
  --forest-mist: #e8f0ea;     /* pale green wash */
  --ivory: #f7f4ec;           /* ivory — page background */
  --ivory-warm: #efe9dc;      /* warm ivory, alt sections */
  --ivory-deep: #e6dfd0;      /* deeper ivory, borders */
  --amber: #d9a441;           /* amber-gold accent */
  --amber-bright: #e8b85c;    /* bright amber, hovers */
  --amber-soft: #f3e2b8;      /* pale amber wash */
  --ink: #1c2620;             /* body text on ivory */
  --ink-soft: #41503f;        /* secondary text */
  --muted: #6d7a6d;           /* muted text */
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(10, 35, 23, 0.12);
  --shadow-lg: 0 20px 60px rgba(10, 35, 25, 0.22);
  --radius: 18px;
  --max-width: 1180px;
}

/* ── Reset & base ── */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Archivo', 'Segoe UI', Arial, sans-serif;
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--forest-soft); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--amber); }

h1, h2, h3, h4 {
  font-family: 'Frank Ruhl Libre', 'Georgia', serif;
  line-height: 1.2;
  color: var(--forest);
  font-weight: 700;
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section-sm { padding: 56px 0; }
.text-center { text-align: center; }

/* ── Utility eyebrow / kicker ── */
.eyebrow {
  display: inline-block;
  font-family: 'Archivo', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 26px; height: 2px;
  background: var(--amber);
  vertical-align: middle;
  margin-right: 10px;
}

.section-header { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-header h2 { font-size: clamp(30px, 4.4vw, 44px); margin-bottom: 16px; }
.section-header p { font-size: 18px; color: var(--ink-soft); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: .02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s ease;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--amber), var(--amber-bright));
  color: var(--forest-deep);
  box-shadow: 0 6px 18px rgba(217, 164, 65, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(18, 53, 36, 0.28);
  color: var(--forest-deep);
}
.btn-secondary {
  background: transparent;
  border-color: var(--forest);
  color: var(--forest);
}
.btn-secondary:hover { background: var(--forest); color: var(--ivory); }
.btn-light {
  background: var(--ivory);
  color: var(--forest);
  border-color: var(--ivory-deep);
}
.btn-light:hover { background: var(--amber-soft); color: var(--forest-deep); }
.btn-dark {
  background: var(--forest);
  color: var(--ivory);
  border-color: var(--forest);
}
.btn-dark:hover { background: var(--forest-mid); color: var(--ivory); }
.btn-lg { padding: 18px 40px; font-size: 17.5px; }

/* ── Navigation ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(10, 35, 23, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(217, 164, 65, 0.25);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; color: var(--ivory); }
.nav-logo .logo-mark {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--amber), #c48f2a);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 800;
  color: var(--forest-deep);
  flex-shrink: 0;
}
.nav-logo .logo-text { line-height: 1.15; font-family: 'Frank Ruhl Libre', serif; }
.nav-logo .logo-text strong { display: block; font-size: 19px; letter-spacing: .01em; color: var(--ivory); }
.nav-logo .logo-text small { display: block; font-size: 11.5px; color: var(--amber); letter-spacing: .12em; text-transform: uppercase; font-family: 'Archivo', sans-serif; font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  color: rgba(247, 244, 236, 0.85);
  font-size: 14.5px;
  font-weight: 600;
  padding: 8px 13px;
  border-radius: 8px;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--amber); }
.nav-cta {
  background: linear-gradient(135deg, var(--amber), var(--amber-bright)) !important;
  color: var(--forest-deep) !important;
  border-radius: 999px !important;
  padding: 9px 20px !important;
  font-weight: 800 !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,0,0,.25); }

.nav-toggle { display: none; background: none; border: none; color: var(--ivory); font-size: 24px; cursor: pointer; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--forest-deep);
    
    flex-direction: column;
    padding: 12px 24px 20px;
    gap: 4px;
    border-bottom: 1px solid rgba(217, 164, 65, 0.25);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 6px; font-size: 16px; }
}

/* ── Hero ── */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 85% -10%, rgba(217,164,65,.16), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(46,107,71,.35), transparent 65%),
    var(--forest-deep);
  color: var(--ivory);
  overflow: hidden;
  padding: 72px 0 88px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(247,244,236,.05) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .5;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--ivory));
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
}
.hero-text .kicker {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(217,164,65,.14);
  border: 1px solid rgba(217,164,65,.4);
  color: var(--amber-bright);
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 22px;
}
.hero-text h1 {
  color: var(--ivory);
  font-size: clamp(38px, 5.6vw, 62px);
  margin-bottom: 10px;
}
.hero-text h1 .highlight { color: var(--amber-bright); font-style: italic; }
.hero-text .hero-sub {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(19px, 2.6vw, 26px);
  color: rgba(247,244,236,.9);
  margin-bottom: 20px;
}
.hero-tagline {
  font-size: 17.5px;
  color: rgba(247,244,236,.85);
  max-width: 560px;
  margin-bottom: 30px;
}
.hero-tagline strong { color: var(--amber-bright); font-weight: 600; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(247,244,236,.08);
  border: 1px solid rgba(247,244,236,.18);
  color: rgba(247,244,236,.92);
  font-size: 13px; font-weight: 600;
  padding: 7px 14px; border-radius: 999px;
}
.hero-badge .badge-icon { font-size: 15px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero card (right visual) */
.hero-visual { position: relative; }
.hero-card {
  background: var(--ivory);
  border-radius: 22px;
  padding: 30px 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(217,164,65,.35);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--forest), var(--amber));
}
.hero-card .candidate-photo, .hero-card .candidate-avatar {
  width: 108px; height: 108px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--amber);
  margin-bottom: 18px;
}
.hero-card .candidate-avatar {
  background: linear-gradient(135deg, var(--forest), var(--forest-mid));
  display: flex; align-items: center; justify-content: center;
  color: var(--amber-soft);
  font-size: 44px;
}
.hero-card h3 { font-size: 26px; margin-bottom: 4px; }
.hero-card .card-role { color: var(--amber); font-weight: 700; font-size: 13.5px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.hero-card .card-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 1px solid var(--ivory-deep);
  padding-top: 16px;
}
.hero-card .stat { text-align: center; }
.hero-card .stat-num {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 24px; font-weight: 800; color: var(--forest);
}
.hero-card .stat-label { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; }

/* Countdown bar under hero on index */
.countdown-bar {
  background: var(--amber);
  color: var(--forest-deep);
  padding: 14px 24px;
}
.countdown-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.countdown-label { font-weight: 800; font-size: 15px; letter-spacing: .02em; }
.countdown-timer { display: flex; gap: 14px; }
.countdown-unit { text-align: center; min-width: 54px; }
.countdown-unit .num {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 26px; font-weight: 800; line-height: 1;
}
.countdown-unit .lbl { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; opacity: .8; }

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; }
}

/* ── Section background variants ── */
.section-forest { background: var(--forest); color: var(--ivory); }
.section-forest h2, .section-forest h3, .section-forest h4 { color: var(--ivory); }
.section-forest .section-header p { color: rgba(247,244,236,.8); }
.section-wash { background: var(--forest-mist); }
.section-ivory-warm { background: var(--ivory-warm); }

/* ── Promise / pillar cards ── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.pillar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  border: 1px solid var(--ivory-deep);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pillar-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--forest), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.pillar-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: var(--forest-mist);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.pillar-card h3 { font-size: 21px; margin-bottom: 10px; }
.pillar-card p { font-size: 15px; color: var(--ink-soft); }
.pillar-card .pillar-link {
  display: inline-block; margin-top: 14px;
  font-weight: 700; font-size: 13.5px; letter-spacing: .04em;
  color: var(--forest-soft); text-transform: uppercase;
}
.pillar-card:hover .pillar-link { color: var(--amber); }

/* ── About / bio blocks ── */
.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}
.about-photo-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--ivory-deep);
  overflow: hidden;
}
.about-photo-card img.avatar-img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  background: var(--forest);
}
.about-photo-card .about-avatar-block {
  width: 100%; aspect-ratio: 1;
  background: linear-gradient(135deg, var(--forest), var(--forest-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 120px; color: var(--amber-soft);
}
.about-photo-card .photo-caption {
  padding: 20px 22px;
  border-top: 4px solid var(--amber);
}
.about-photo-card .photo-caption h3 { font-size: 24px; }
.about-photo-card .photo-caption p { color: var(--amber); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }
.about-body h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 18px; }
.about-body p { margin-bottom: 16px; font-size: 16.5px; color: var(--ink-soft); }
.about-body .lede { font-size: 19px; color: var(--ink); }
.about-body blockquote {
  border-left: 4px solid var(--amber);
  padding: 18px 24px;
  background: var(--forest-mist);
  border-radius: 0 14px 14px 0;
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 19px;
  color: var(--forest);
  margin: 24px 0;
}
.fact-list { list-style: none; margin: 18px 0; }
.fact-list li {
  padding: 10px 0 10px 34px;
  border-bottom: 1px dashed var(--ivory-deep);
  position: relative;
  color: var(--ink-soft);
}
.fact-list li::before {
  content: '✓';
  position: absolute; left: 6px; top: 10px;
  color: var(--amber); font-weight: 800;
}
.fact-list li strong { color: var(--forest); }

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

/* ── Quote banner ── */
.quote-banner {
  background:
    radial-gradient(800px 300px at 50% 0%, rgba(217,164,65,.2), transparent 70%),
    var(--forest-deep);
  color: var(--ivory);
  padding: 70px 24px;
  text-align: center;
}
.quote-banner blockquote {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(24px, 3.6vw, 36px);
  font-style: italic;
  max-width: 900px;
  margin: 0 auto 18px;
  line-height: 1.4;
  color: var(--ivory);
}
.quote-banner cite { color: var(--amber-bright); font-style: normal; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: 14px; }

/* ── Stats band ── */
.stats-band {
  background: var(--forest);
  color: var(--ivory);
  padding: 56px 24px;
}
.stats-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  text-align: center;
}
.stat-big .num {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 46px; font-weight: 800; color: var(--amber-bright);
  line-height: 1.1;
}
.stat-big .lbl { font-size: 13.5px; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; color: rgba(247,244,236,.85); margin-top: 6px; }

/* ── FAQ page ── */
.faq-hero {
  background:
    radial-gradient(900px 420px at 80% -10%, rgba(217,164,65,.16), transparent 60%),
    var(--forest-deep);
  color: var(--ivory);
  padding: 64px 24px 72px;
  text-align: center;
}
.faq-hero h1 {  font-size: clamp(34px, 5vw, 52px); }
.faq-hero h1 { color: var(--ivory); }
.faq-hero p { max-width: 640px; margin: 14px auto 0; color: rgba(247,244,236,.85); font-size: 17px; }
.faq-nav {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-top: 26px;
}
.faq-nav a {
  background: rgba(247,244,236,.1);
  border: 1px solid rgba(247,244,236,.2);
  color: var(--ivory);
  font-size: 13px; font-weight: 700;
  padding: 8px 16px; border-radius: 999px;
}
.faq-nav a:hover { background: var(--amber); color: var(--forest-deep); border-color: var(--amber); }

.faq-group {
  max-width: 860px;
  margin: 0 auto 44px;
}
.faq-group-title {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 24px;
  color: var(--forest);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--amber);
  display: flex; align-items: center; gap: 10px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--ivory-deep);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none; border: none;
  text-align: left;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--forest);
  padding: 18px 22px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  transition: background .2s ease;
}
.faq-q:hover { background: var(--forest-mist); }
.faq-q .chev { color: var(--amber); font-size: 18px; transition: transform .25s ease; flex-shrink: 0; }
.faq-item.open .faq-q .chev { transform: rotate(90deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item.open .faq-a { max-height: 2000px; }
.faq-a-inner {
  padding: 0 22px 20px;
  color: var(--ink-soft);
  font-size: 15.5px;
}
.faq-a-inner p { margin-bottom: 10px; }
.faq-a-inner a { color: var(--forest-soft); font-weight: 600; }

/* ── Watch (video hub) ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}
.video-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--ivory-deep);
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.video-card .video-slot {
  aspect-ratio: 16 / 9;
  background: var(--forest-deep);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.video-slot .slot-inner {
  text-align: center; padding: 20px; color: rgba(247,244,236,.7);
}
.video-slot .slot-inner .play-ring {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid var(--amber);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 24px; color: var(--amber);
}
.slot-inner .slot-label { font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--amber); }
.slot-inner .slot-title { font-family: 'Frank Ruhl Libre', serif; font-size: 18px; color: var(--ivory); margin-top: 6px; }
.video-card .video-body { padding: 20px 22px 24px; }
.video-card h3 { font-size: 19px; margin-bottom: 8px; }
.video-card p { font-size: 14.5px;  }
.video-card p { color: var(--ink-soft); }
.video-card .video-tag {
  display: inline-block;
  margin-top: 12px;
  background: var(--amber-soft);
  color: var(--forest-deep);
  font-size: 11.5px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}

/* ── Timeline / steps ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px;
  border: 1px solid var(--ivory-de);
  box-shadow: var(--shadow);
  position: relative;
}
.step-card .step-num {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 42px; font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 10px;
}
.step-card h3 { font-size: 19px; margin-bottom: 8px; }
.step-card p { font-size: 14.5px; color: var(--ink-soft); }

/* ── Vote page ── */
.vote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.vote-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--ivory-deep);
  box-shadow: var(--shadow);
  padding: 30px 26px;
}
.vote-card h3 { font-size: 20px; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.vote-card p, .vote-card li { font-size: 15px;  }
.vote-card li { color: var(--ink-soft); }
.vote-card ul { padding-left: 20px; margin: 8px 0; }
.vote-card ul li { margin-bottom: 6px; }
.vote-card .vote-note {
  margin-top: 14px;
  background: var(--amber-soft);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13.5px; font-weight: 600;
  color: var(--forest-deep);
}

/* ── Get involved / donate ── */
.donate-section {
  background:
    radial-gradient(900px 400px at 15% 0%, rgba(217,164,65,.18), transparent 65%),
    var(--forest-deep);
  color: var(--ivory);
  padding: 84px 24px;
}
.donate-section h2 { color: var(--ivory); }
.donate-section .eyebrow { color: var(--amber-bright); }
.donate-section > .container > p { color: rgba(247,244,236,.85); max-width: 640px; margin: 0 auto 36px; text-align: center; }
.donate-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.donate-card {
  background: rgba(247,244,236,.07);
  border: 1px solid rgba(247,244,236,.18);
  border-radius: 16px;
  padding: 26px 22px;
  color: var(--ivory);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.donate-card:hover {
  transform: translateY(-4px);
  background: rgba(217,164,65,.15);
  border-color: var(--amber);
}
.donate-card .dc-icon { font-size: 30px; margin-bottom: 12px; }
.donate-card h4 { color: var(--ivory); font-size: 18px; margin-bottom: 8px; }
.donate-card p { font-size: 13.5px; color: rgba(247,244,236,.75); }

.spread-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.spread-card {
  background: var(--white);
  
  border-radius: 16px;
  padding: 26px 22px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.spread-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.spread-card .dc-icon { font-size: 30px; margin-bottom: 12px; }
.spread-card h4 { font-size: 18px; margin-bottom: 8px; }
.spread-card p { font-size: 14px; color: var(--ink-soft); margin-bottom: 14px; }
.spread-card .spread-link {
  font-weight: 800; font-size: 13.5px; letter-spacing: .04em; text-transform: uppercase;
  color: var(--forest-soft);
}
.spread-card .spread-link:hover { color: var(--amber); }

/* QR block (spread the word) */
.qr-box {
  max-width: 360px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--ivory-deep);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
}
.qr-box img { margin: 0 auto 14px; border-radius: 12px; border: 1px solid var(--ivory-deep); }
.qr-box h4 { margin-bottom: 8px; }
.qr-box p { font-size: 13.5px; color: var(--muted); }

/* ── Footer ── */
.footer {
  background: var(--forest-deep);
  color: rgba(247,244,236,.8);
  padding: 64px 24px 28px;
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(247,244,236,.12);
}
.footer h4 { color: var(--amber-bright); font-size: 15px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; font-family: 'Archivo', sans-serif; font-weight: 800; }
.footer a { color: rgba(247,244,236,.8); }
.footer a:hover { color: var(--amber); }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer .footer-brand {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.footer .footer-brand .logo-mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--amber), #c48f2a);
  color: var(--forest-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Frank Ruhl Libre', serif; font-weight: 800; font-size: 22px;
}
.footer .footer-brand .logo-text { font-family: 'Frank Ruhl Libre', serif; color: var(--ivory); font-size: 18px; }
.footer p.footer-desc { font-size: 14px; max-width: 340px; }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 12.5px;
}
.footer-bottom em { opacity: .7; }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ── Chatbot widget ── */
.chat-widget {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 1000;
}
.chat-toggle-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 8px 18px;
  border-radius: 32px;
  border: 2px solid var(--amber);
  background: linear-gradient(135deg, var(--forest), var(--forest-mid));
  color: var(--amber-soft);
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: transform .2s ease;
}
.chat-toggle-btn:hover { transform: scale(1.05); }
.chat-toggle-icon { font-size: 22px; line-height: 1; }
.chat-toggle-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .03em;
  line-height: 1.25;
  margin-top: 3px;
}
.chat-panel {
  position: absolute;
  bottom: 86px; right: 0;
  width: 340px;
  max-width: calc(100vw - 44px);
  height: 480px;
  max-height: calc(100vh - 120px);
  background: var(--ivory);
  border-radius: 20px;
  border: 1px solid var(--ivory-deep);
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.chat-panel.open { display: flex; animation: chatIn .25s ease; }
@keyframes chatIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-head {
  background: var(--forest);
  color: var(--ivory);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
}
.chat-head .chat-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block; }
.chat-head .chat-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--amber-bright));
  color: var(--forest-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.chat-head .chat-title { font-weight: 800; font-size: 15px; }
.chat-head .chat-sub { font-size: 11.5px; color: rgba(247,244,236,.75); }
.chat-head .chat-close {
  margin-left: auto;
  background: none; border: none;
  color: var(--ivory); font-size: 20px; cursor: pointer;
  opacity: .8;
}
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  background: var(--forest-mist);
  display: flex; flex-direction: column; gap: 10px;
}
.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13.8px;
  line-height: 1.55;
}
.chat-msg.bot {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--ivory-deep);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.chat-msg.user {
  background: var(--forest);
  color: var(--ivory);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.chat-suggestions {
  display: flex; gap: 8px; padding: 10px 14px 4px;
  flex-wrap: wrap;
  background: var(--ivory);
}
.chat-sugg {
  background: var(--white);
  border: 1px solid var(--ivory-deep);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--forest);
  padding: 6px 12px;
  cursor: pointer;
  transition: all .2s ease;
  font-family: 'Archivo', sans-serif;
}
.chat-sugg:hover { background: var(--amber-soft); border-color: var(--amber); }
.chat-input-row {
  display: flex; gap: 8px; padding: 10px 14px 14px;
  background: var(--ivory);
}
.chat-input {
  flex: 1;
  border: 1px solid var(--ivory-deep);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13.5px;
  font-family: 'Archivo', sans-serif;
  outline: none;
  background: var(--white);
  color: var(--ink);
}
.chat-input:focus { border-color: var(--amber); }
.chat-send {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--amber), var(--amber-bright));
  color: var(--forest-deep);
  font-size: 16px;
  cursor: pointer;
  font-weight: 800;
  flex-shrink: 0;
}

/* ── Page hero (interior pages) ── */
.page-hero {
  background:
    radial-gradient(900px 420px at 80% -10%, rgba(217,164,65,.16), transparent 60%),
    var(--forest-deep);
  color: var(--ivory);
  padding: 60px 24px 68px;
  text-align: center;
}
.page-hero h1 { color: var(--ivory); font-size: clamp(32px, 4.8vw, 50px); margin-bottom: 12px; }
.page-hero p { max-width: 660px; margin: 0 auto; color: rgba(247,244,236,.85); font-size: 17px; }

/* ── Breadcrumb ── */
.breadcrumb {
  background: var(--ivory-warm);
  border-bottom: 1px solid var(--ivory-deep);
  padding: 12px 24px;
  font-size: 13px;
}
.breadcrumb .container { padding: 0; }
.breadcrumb a { color: var(--forest-soft); font-weight: 600; }
.breadcrumb span.sep { margin: 0 8px; color: var(--muted); }

/* ── CTA band ── */
.cta-band {
  background:
    linear-gradient(120deg, var(--forest), var(--forest-mid));
  color: var(--ivory);
  padding: 64px 24px;
  text-align: center;
}
.cta-band h2 { color: var(--ivory); font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; }
.cta-band p { max-width: 620px; margin: 0 auto 28px; color: rgba(247,244,236,.85); font-size: 16.5px; }
.cta-band .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Reveal-on-scroll (from main.js IntersectionObserver) ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── Registration deadline countdown (Phase 14) ── */
.countdown-bar.reg {
  background: var(--forest);
  color: var(--ivory);
}
.countdown-bar.reg .countdown-label { color: var(--amber); }
.countdown-bar.reg .countdown-unit .lbl { color: rgba(247,244,236,.75); }
.countdown-bar.reg a { color: var(--amber-bright); font-weight: 700; }

/* ── Card action rows + compact buttons (vote/tools) ── */
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.card-actions .btn { padding: 10px 20px; font-size: 13.5px; }

/* ── Tool grid: every state-portal tool on one wall ── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  text-align: left;
}
.tool-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--ivory-warm);
  border-left: 4px solid var(--amber);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tool-card .tool-ico { font-size: 26px; line-height: 1; }
.tool-card h3 { font-size: 16.5px; margin: 0; }
.tool-card p { font-size: 13.5px; color: var(--ink-soft); margin: 0; flex-grow: 1; }
.tool-card .btn { margin-top: 6px; padding: 9px 18px; font-size: 13px; }

/* ── Calendar wall: every date with add-to-calendar chips ── */
.cal-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.cal-row {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 18px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--ivory-deep);
  border-radius: 14px;
  padding: 16px 20px;
}
.cal-date {
  text-align: center;
  background: var(--forest);
  color: var(--ivory);
  border-radius: 10px;
  padding: 8px 10px;
  line-height: 1.25;
}
.cal-date .cal-mon { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--amber); }
.cal-date .cal-day { font-family: 'Frank Ruhl Libre', serif; font-size: 30px; font-weight: 800; line-height: 1.05; }
.cal-date .cal-wkd { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; opacity: .85; }
.cal-info h3 { font-size: 17px; margin-bottom: 4px; }
.cal-info p { font-size: 13.5px; color: var(--ink-soft); margin: 0; }
.cal-links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.cal-links .btn { padding: 9px 18px; font-size: 13px; }

@media (max-width: 700px) {
  .cal-row { grid-template-columns: 100px 1fr; }
  .cal-links { grid-column: 1 / -1; justify-content: flex-start; }
  .chat-toggle-btn { padding: 7px 14px; min-height: 56px; }
  .chat-toggle-icon { font-size: 19px; }
  .chat-toggle-label { font-size: 11.5px; }
  .chat-panel { bottom: 78px; }
}

/* ── Print-friendliness (AEO/PDF pulls) ── */
@media print {
  .navbar, .chat-widget, .nav-toggle, .countdown-bar, .cta-band, .footer { display: none !important; }
  .faq-item { page-break-inside: avoid; }
  .faq-a { max-height: none !important; overflow: visible; }
  body { background: #fff; }
}
