/* ==========================================================================
   Health Freedom Victory Fund — Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand palette derived from logo */
  --navy: #1a2f4f;
  --navy-deep: #0f1d33;
  --navy-soft: #2a4264;
  --slate: #6b8caa;
  --slate-light: #a7b9cc;
  --gold: #c9a961;
  --gold-light: #e0c889;
  --gold-deep: #a88840;
  --cream: #f6f1e7;
  --cream-soft: #faf6ee;
  --paper: #ffffff;
  --ink: #14171c;
  --ash: #5a6470;
  --rule: rgba(26, 47, 79, 0.12);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream-soft);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* Layout helpers */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(4rem, 9vw, 7rem) 0; position: relative; }

/* Typography utilities */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-deep);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.75rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.275rem); color: var(--ash); line-height: 1.6; max-width: 60ch; }

em { font-style: italic; color: var(--navy); }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  font-family: var(--font-display);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 1.5625rem;
  line-height: 1.1;
}
.nav-brand img { height: 72px; width: auto; }
.nav-brand-text { display: flex; flex-direction: column; }
.nav-brand-text small {
  font-family: var(--font-body);
  font-size: 1.01rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.nav-links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--navy-deep); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); transform-origin: left; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
.nav-toggle svg { width: 22px; height: 22px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.85rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--navy);
  color: var(--cream);
  border: 1px solid var(--navy);
}
.btn-primary:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -10px rgba(26, 47, 79, 0.5);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -10px rgba(168, 136, 64, 0.55);
}
.btn-donate-large {
  display: flex;
  width: 100%;
  margin: 1.5rem 0 0.5rem;
  padding: 1.25rem 2rem;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 32px -16px rgba(168, 136, 64, 0.5);
}
.btn-donate-large:hover {
  box-shadow: 0 18px 40px -16px rgba(168, 136, 64, 0.6);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--cream);
}
.btn-ghost {
  color: var(--navy);
  padding: 0.5rem 0;
  letter-spacing: 0.06em;
}
.btn-ghost::after {
  content: '→';
  transition: transform 0.25s ease;
}
.btn-ghost:hover::after { transform: translateX(4px); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(4rem, 8vw, 6.5rem);
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201, 169, 97, 0.08), transparent 55%),
    radial-gradient(ellipse at 10% 100%, rgba(26, 47, 79, 0.06), transparent 50%),
    var(--cream-soft);
  overflow: hidden;
}
.hero::before {
  /* subtle grid texture */
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--rule) 1px, transparent 1px),
    linear-gradient(90deg, var(--rule) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-eyebrow { margin-bottom: 1.5rem; }
.hero h1 {
  margin-bottom: 1.5rem;
}
.hero h1 .accent {
  font-style: italic;
  color: var(--navy);
  position: relative;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.05em;
  height: 0.18em;
  background: var(--gold);
  opacity: 0.55;
  z-index: -1;
}
.hero-lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--ash);
  margin-bottom: 2.25rem;
  max-width: 36ch;
  line-height: 1.6;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.hero-art {
  position: relative;
  aspect-ratio: 1 / 1.05;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art img {
  position: relative;
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 25px 40px rgba(26, 47, 79, 0.18));
  z-index: 2;
}
.hero-art::before {
  content: '';
  position: absolute;
  inset: 8% 8% 8% 8%;
  border: 1px solid var(--rule);
  border-radius: 50%;
  z-index: 0;
}
.hero-art::after {
  content: '';
  position: absolute;
  inset: 18% 18% 18% 18%;
  border: 1px dashed rgba(201, 169, 97, 0.4);
  border-radius: 50%;
  z-index: 0;
  animation: spin 60s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Marquee strip below hero */
.marquee {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 1.1rem 0;
  border-top: 3px solid var(--gold);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 4rem;
}
.marquee-track span::after {
  content: '✦';
  color: var(--gold);
  font-style: normal;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Mission / Pillars
   ========================================================================== */
.mission {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.mission-intro {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 5vw, 5rem);
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
  align-items: start;
}
.mission-intro h2 { margin-top: 1rem; }
.mission-intro p { color: var(--ash); margin-top: 1.25rem; font-size: 1.05rem; }
.mission-intro p + p { margin-top: 1rem; }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pillar {
  position: relative;
  padding: 2.25rem 1.85rem;
  background: var(--cream-soft);
  border: 1px solid var(--rule);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.pillar-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.pillar h3 {
  margin-bottom: 0.85rem;
  font-size: 1.5rem;
}
.pillar p {
  color: var(--ash);
  font-size: 0.97rem;
  line-height: 1.6;
}

/* ==========================================================================
   Advisory Board
   ========================================================================== */
.board {
  background: var(--cream);
  position: relative;
}
.board-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.board-header .eyebrow { justify-content: center; }
.board-header h2 { max-width: 22ch; }
.board-header p { max-width: 56ch; color: var(--ash); }

.affiliation-disclaimer {
  margin: clamp(2.5rem, 5vw, 3.75rem) auto 0;
  max-width: 78ch;
  font-size: 0.74rem;
  line-height: 1.65;
  color: var(--ash);
  opacity: 0.78;
  text-align: center;
  font-style: italic;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.advisor {
  background: var(--paper);
  padding: 2.5rem 2rem;
  border: 1px solid var(--rule);
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.advisor:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -25px rgba(26, 47, 79, 0.25);
}
.advisor-portrait-wrap {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 4px var(--paper), 0 0 0 5px var(--rule), 0 18px 36px -18px rgba(26, 47, 79, 0.35);
  overflow: hidden;
  background: var(--navy);
  position: relative;
}
.advisor-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Legacy fallback class (kept in case any monogram circles remain) */
.advisor-portrait {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  position: relative;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 4px var(--paper), 0 0 0 5px var(--rule);
}
.advisor h3 {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}
.advisor-title {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.25rem;
}
.advisor p {
  color: var(--ash);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ==========================================================================
   Quote / Manifesto block
   ========================================================================== */
.manifesto {
  background: var(--navy-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(201, 169, 97, 0.14), transparent 55%),
    radial-gradient(ellipse at 0% 0%, rgba(107, 140, 170, 0.18), transparent 50%);
  pointer-events: none;
}
.manifesto-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.manifesto h2 { color: var(--cream); }
.manifesto h2 em { color: var(--gold-light); }
.manifesto-text p {
  color: rgba(246, 241, 231, 0.82);
  font-size: 1.06rem;
  line-height: 1.75;
  margin-bottom: 1.15rem;
}
.manifesto-text p:last-child { margin-bottom: 0; }
.manifesto-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.35;
  color: var(--cream);
  position: relative;
  padding-left: 2rem;
}
.manifesto-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.3em;
  bottom: 0.3em;
  width: 3px;
  background: var(--gold);
}

/* ==========================================================================
   2026 Goals
   ========================================================================== */
.goals {
  background: var(--cream);
  position: relative;
}
.goals::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.06), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(26, 47, 79, 0.04), transparent 40%);
  pointer-events: none;
}
.goals > .container { position: relative; z-index: 1; }

.goals-header {
  max-width: 60ch;
  margin: 0 auto 3rem;
  text-align: center;
}
.goals-header .eyebrow { justify-content: center; display: inline-flex; }
.goals-header h2 { margin-top: 0.75rem; }
.goals-header .lead { margin: 1rem auto 0; }

.goals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.goal-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 2.25rem 1.75rem;
  text-align: center;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.goal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -28px rgba(26, 47, 79, 0.3);
  border-color: var(--gold);
}
.goal-card.primary {
  background: linear-gradient(180deg, var(--paper) 0%, #fbf6ec 100%);
  border-top: 3px solid var(--gold);
}
.goal-card.secondary {
  background: var(--paper);
}
.goal-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 4.25rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.goal-card.secondary .goal-num { color: var(--navy-soft); }
.goal-plus {
  color: var(--gold-deep);
  font-size: 0.65em;
  vertical-align: super;
  margin-left: 0.05em;
  font-style: normal;
  font-weight: 600;
}
.goal-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.85rem;
}
.goal-card.secondary .goal-label { color: var(--ash); }
.goal-desc {
  color: var(--ash);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

.goals-footer {
  max-width: 64ch;
  margin: 3rem auto 0;
  text-align: center;
  font-size: 1.05rem;
  color: var(--ink);
  font-style: italic;
}

/* ==========================================================================
   CTA Strip
   ========================================================================== */
.cta {
  background: var(--cream-soft);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.cta h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); max-width: 22ch; }
.cta p { color: var(--ash); margin-top: 0.75rem; max-width: 50ch; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(246, 241, 231, 0.75);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  font-size: 0.92rem;
  line-height: 1.7;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(246, 241, 231, 0.12);
}
.footer-brand img {
  height: 90px;
  width: auto;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1) opacity(0.95);
}
.footer-brand p { max-width: 36ch; font-size: 0.93rem; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a:hover { color: var(--cream); }
.footer-col address {
  font-style: normal;
  color: rgba(246, 241, 231, 0.75);
}
.footer-treasurer {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: var(--gold-light);
  font-weight: 600;
}
.footer-media {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: rgba(246, 241, 231, 0.75);
}
.footer-media a {
  color: var(--gold-light);
  font-weight: 600;
}
.footer-media a:hover { color: var(--cream); }

.disclosure {
  padding-top: 2rem;
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(246, 241, 231, 0.55);
}
.affiliation-note {
  max-width: 100%;
  font-size: 0.74rem;
  line-height: 1.65;
  color: rgba(246, 241, 231, 0.45);
  margin-bottom: 0.5rem;
}
.disclosure-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.25rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(246, 241, 231, 0.08);
}
.disclosure-row p { font-size: 0.78rem; }

/* ==========================================================================
   Donate page
   ========================================================================== */
.page-hero {
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(3rem, 5vw, 4rem);
  background:
    radial-gradient(ellipse at 70% 0%, rgba(201, 169, 97, 0.1), transparent 55%),
    var(--cream-soft);
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
.page-hero .eyebrow { justify-content: center; margin-bottom: 1.25rem; }
.page-hero h1 { max-width: 18ch; margin: 0 auto 1.25rem; }
.page-hero p { max-width: 56ch; margin: 0 auto; color: var(--ash); font-size: 1.1rem; }

.donate-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.donate-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
}
.donate-card.coming-soon {
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream-soft) 100%);
  border: 1px solid var(--gold);
  border-top: 4px solid var(--gold);
}
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  background: rgba(201, 169, 97, 0.15);
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.coming-soon-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.donate-card h2 { margin-bottom: 1rem; font-size: clamp(1.75rem, 3vw, 2.25rem); }
.donate-card p { color: var(--ash); margin-bottom: 1.25rem; }
.donate-card ul { list-style: none; margin: 1.5rem 0; }
.donate-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  font-size: 0.97rem;
}
.donate-card li:last-child { border-bottom: none; }
.donate-card li::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.6rem;
}

.mail-card {
  background: var(--navy-deep);
  color: var(--cream);
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}
.mail-card::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.25), transparent 70%);
}
.mail-card h3 { color: var(--cream); margin-bottom: 1rem; font-size: 1.5rem; }
.mail-card address {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--gold-light);
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(246, 241, 231, 0.06);
  border-left: 3px solid var(--gold);
  position: relative;
  z-index: 1;
}
.mail-card p { color: rgba(246, 241, 231, 0.78); }

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.signup-form input {
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--rule);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  border-radius: 2px;
  transition: border-color 0.2s ease;
}
.signup-form input:focus {
  outline: none;
  border-color: var(--gold);
}
.signup-form button { align-self: flex-start; margin-top: 0.5rem; }

.fec-notice {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: rgba(26, 47, 79, 0.04);
  border-left: 3px solid var(--navy);
  font-size: 0.83rem;
  color: var(--ash);
  line-height: 1.6;
}

/* ==========================================================================
   Candidates page
   ========================================================================== */
.candidates-hero {
  padding: clamp(5rem, 9vw, 8rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.candidates-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(201, 169, 97, 0.12), transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(26, 47, 79, 0.08), transparent 50%);
}
.candidates-hero > * { position: relative; }
.candidates-hero .eyebrow { justify-content: center; margin-bottom: 1.5rem; }
.candidates-hero h1 { max-width: 18ch; margin: 0 auto 1.5rem; }
.candidates-hero .lead { margin: 0 auto 2.5rem; }

.us-map-illustration {
  margin: 3rem auto 4rem;
  max-width: 700px;
  opacity: 0.85;
}
.us-map-illustration svg { width: 100%; height: auto; }

/* Candidates page: Coming Soon block */
.coming-soon-block {
  margin: 3.5rem auto 0;
  max-width: 640px;
  padding: clamp(2.5rem, 5vw, 3.75rem) clamp(1.75rem, 4vw, 3rem);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--gold);
  position: relative;
  text-align: center;
  box-shadow: 0 24px 48px -28px rgba(26, 47, 79, 0.2);
}
.coming-soon-block::before,
.coming-soon-block::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--gold);
}
.coming-soon-block::before {
  top: 12px; left: 12px;
  border-right: none; border-bottom: none;
}
.coming-soon-block::after {
  bottom: 12px; right: 12px;
  border-left: none; border-top: none;
}
.coming-soon-stamp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.coming-soon-stamp .stamp-rule {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.coming-soon-stamp .stamp-text {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.coming-soon-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  line-height: 1.2;
  margin: 0 auto 1rem;
  max-width: 22ch;
  color: var(--navy-deep);
}
.coming-soon-body {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink);
  max-width: 52ch;
  margin: 0 auto 1.5rem;
}
.coming-soon-meta {
  font-size: 0.92rem;
  color: var(--ash);
  margin: 0 auto;
}
.coming-soon-meta a {
  color: var(--gold-deep);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(201, 169, 97, 0.4);
  text-underline-offset: 3px;
}
.coming-soon-meta a:hover {
  text-decoration-color: var(--gold);
}

.coming-stat {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 2rem;
  background: var(--cream);
  border: 1px solid var(--gold);
  margin-top: 2rem;
}
.coming-stat-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-style: italic;
  color: var(--navy-deep);
  line-height: 1;
}
.coming-stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream-soft);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    border-bottom: 1px solid var(--rule);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.85rem var(--gutter);
  }
  .nav-toggle { display: inline-flex; }

  .hero-grid,
  .mission-intro,
  .manifesto-inner,
  .donate-layout,
  .footer-top {
    grid-template-columns: 1fr;
  }
  .hero-art { order: -1; max-width: 320px; margin: 0 auto; }
  .pillars { grid-template-columns: 1fr; }
  .board-grid { grid-template-columns: 1fr; }
  .goals-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { gap: 2rem; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .nav-brand-text { display: none; }
  .nav-brand img { height: 62px; }
  .goals-grid { grid-template-columns: 1fr; }
}

/* (Removed scroll-reveal — content is always visible.) */

/* Print / Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track, .hero-art::after { animation: none !important; }
}

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