/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:      #2a4080;   /* medium navy blue    */
  --navy-dark: #1b2d5a;   /* dark navy blue      */
  --gold:      #c9a227;
  --gold-light:#e8c44a;
  --red:       #b0242a;
  --red-light: #d03038;
  --white:     #ffffff;
  --off-white: #f0f2f8;   /* soft blue-tinted white */
  --gray-100:  #edf0f7;   /* light blue-gray     */
  --gray-200:  #d8dfe9;
  --gray-500:  #8a93a6;
  --gray-600:  #5a6478;
  --gray-700:  #3a4260;
  --text:      #192438;

  --radius:    10px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.11);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.14);

  --font-serif: 'Merriweather', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

/* ===========================
   UTILITIES
   =========================== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label.center { text-align: center; }
.section-label.light  { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title.center { text-align: center; }
.section-title.light  { color: var(--white); }

.section-intro {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
  color: var(--gray-700);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-light);
  border-color: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(176,36,42,0.35);
}

/* ── Gold shimmer donate button ── */
.btn-gold-shimmer {
  position: relative;
  overflow: hidden;
  animation: goldHalo 2.6s ease-in-out 1s infinite;
}
.btn-gold-shimmer::after {
  content: '';
  position: absolute;
  top: 0; left: -110%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(232,196,74,0.45) 50%,
    transparent 100%
  );
  transform: skewX(-18deg);
  animation: shimmerSweep 2.6s ease-in-out 1s infinite;
  pointer-events: none;
}
@keyframes goldHalo {
  0%, 100% {
    box-shadow: 0 6px 20px rgba(176,36,42,0.35),
                0 0 0 0   rgba(201,162,39,0.55),
                0 0 0 0   rgba(201,162,39,0.20);
  }
  45% {
    box-shadow: 0 6px 24px rgba(176,36,42,0.40),
                0 0 0 4px  rgba(201,162,39,0.30),
                0 0 0 10px rgba(201,162,39,0.10);
  }
}
@keyframes shimmerSweep {
  0%       { left: -110%; opacity: 1; }
  55%, 100% { left: 130%; opacity: 1; }
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn.full-width {
  width: 100%;
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 72px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--white);
  text-shadow: 0 1px 8px rgba(0,0,0,0.7), 0 2px 20px rgba(0,0,0,0.5);
}
.logo-office {
  font-size: 0.68rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1px;
  list-style: none;
  flex-wrap: nowrap;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.83rem;
  font-weight: 500;
  padding: 5px 9px;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-links .nav-cta {
  background: var(--red);
  color: var(--white);
  padding: 7px 14px;
  border-radius: 6px;
  margin-left: 4px;
}
.nav-links .nav-cta:hover {
  background: var(--red-light);
}

/* Auth chip injected by auth.js */
.nav-user-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 5px 12px 5px 8px;
  margin-left: 4px;
}
.nav-role-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 2px 7px;
  border-radius: 10px;
}
.nav-user-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}
.nav-logout-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-sans);
  transition: color var(--transition);
}
.nav-logout-btn:hover { color: var(--gold-light); }
.nav-login-link {
  color: rgba(255,255,255,0.75) !important;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px !important;
  border-radius: 6px;
  margin-left: 4px;
  transition: all var(--transition) !important;
}
.nav-login-link:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.4) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Nav Vote dropdown ── */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-dropdown-btn:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-dropdown-btn::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s;
  margin-top: 1px;
}
.nav-dropdown.open .nav-dropdown-btn::after { transform: rotate(-135deg) translateY(1px); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-dark);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  min-width: 210px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  padding: 6px 0;
  z-index: 300;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 9px 18px;
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.87rem;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  background: none !important;
}
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.09) !important; color: var(--white) !important; }
.nav-dropdown-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 5px 0; }
.nav-dropdown-label {
  padding: 5px 18px 3px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  font-family: var(--font-sans);
}
@media (max-width: 960px) {
  .nav-dropdown-btn { padding: 10px 16px; width: 100%; justify-content: space-between; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: rgba(255,255,255,0.05);
    min-width: auto;
    padding: 0;
  }
  .nav-dropdown-menu a { padding: 9px 16px 9px 30px; }
  .nav-dropdown-label { padding: 7px 16px 3px 30px; }
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #2a4080 50%, #1b2d5a 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,162,39,0.14) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(64,145,108,0.15) 0%, transparent 50%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(42,64,128,0.4));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 140px 0 100px;
  max-width: 530px;
  margin-right: max(24px, calc((100vw - 1160px) / 2));
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.hero-name {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 480px;
  margin: 0 0 40px;
  line-height: 1.7;
}

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

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 1.5s both;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: bounce 1.8s infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ===========================
   ABOUT
   =========================== */
.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy) 0%, #2a4080 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.initials {
  font-family: var(--font-serif);
  font-size: 6rem;
  font-weight: 900;
  color: rgba(255,255,255,0.15);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 16px 22px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
  line-height: 1.4;
}
.about-badge span  { display: block; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.about-badge strong { display: block; font-size: 1.1rem; font-weight: 900; font-family: var(--font-serif); }

.about-text p {
  color: var(--gray-700);
  margin-bottom: 18px;
  line-height: 1.75;
  font-size: 1.02rem;
}

.about-pillars {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  justify-content: center;
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.pillar-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.pillar strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
}

/* ===========================
   PLATFORM
   =========================== */
.platform-section {
  background: var(--gray-100);
}

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

.issue-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0 28px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.issue-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.issue-card-img {
  width: calc(100% + 56px);
  margin: 0 -28px 24px;
  height: 155px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.issue-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(27,45,90,0.08) 0%,
    rgba(27,45,90,0.42) 100%);
  border-radius: inherit;
}

/* Push icon + content down to clear image */
.issue-card .issue-icon { margin-top: 0; }

.issue-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.issue-icon svg { width: 26px; height: 26px; }

.housing-icon    { background: rgba(42,64,128,0.08);  color: var(--navy); }
.enforcement-icon{ background: rgba(176,36,42,0.08); color: var(--red); }
.courts-icon     { background: rgba(201,162,39,0.12);color: #8a6a00; }
.taxes-icon      { background: rgba(26,80,160,0.08); color: #1a4070; }
.education-icon  { background: rgba(42,64,128,0.1);  color: #1b2d5a; }
.healthcare-icon { background: rgba(176,36,42,0.08); color: var(--red); }

.issue-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.issue-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.issue-card li {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}
.issue-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ===========================
   WHY WANDA
   =========================== */
.why-section {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-text p {
  color: var(--gray-700);
  margin-bottom: 18px;
  line-height: 1.75;
  font-size: 1.02rem;
}
.why-text .btn { margin-top: 12px; }

.why-values {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.value-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.value-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gray-200);
  line-height: 1;
  min-width: 44px;
  padding-top: 2px;
}

.value-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.value-content p {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.6;
}


/* SB 406 status strip */
.sb406-status {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding: .75rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,162,39,0.35);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
}

.sb406-badge {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 3px 10px;
  border-radius: 12px;
  white-space: nowrap;
}

.sb406-note {
  font-size: .85rem;
  color: rgba(255,255,255,0.72);
  font-style: italic;
}


/* ===========================
   HOA REFORM
   =========================== */
.hoa-section {
  background: var(--off-white);
}

.section-banner {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
  display: block;
  box-shadow: 0 4px 24px rgba(27,45,90,0.12);
}

/* ── Data-center text-over-image banner ─────────────────────────── */
.dc-banner {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: 0 4px 24px rgba(27,45,90,0.14);
}

.dc-banner-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.dc-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(27,45,90,0.98) 0%,
    rgba(27,45,90,0.95) 55%,
    rgba(27,45,90,0.72) 100%
  );
}

.dc-banner-content {
  position: absolute;
  top: 50%;
  left: 48px;
  right: 48px;
  transform: translateY(-50%);
}

.dc-banner-content .section-label {
  color: var(--gold);
  margin-bottom: 10px;
  text-align: left;
}

.dc-banner-content .section-title {
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  text-align: center;
}

.dc-banner-text {
  color: rgba(255,255,255,0.95);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  text-align: center;
}

.dc-banner-text strong {
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

@media (max-width: 640px) {
  .dc-banner-img { height: 520px; }
  .dc-banner-content { left: 24px; right: 24px; }
}

.hoa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 48px 0 32px;
}

.hoa-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(27,45,90,0.08);
  border-top: 3px solid var(--gold);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hoa-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(27,45,90,0.13);
}

.hoa-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,162,39,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.hoa-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
}

.hoa-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 12px;
}

.hoa-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.hoa-note {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(27,45,90,0.05);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 8px;
  padding: 14px 20px;
  flex-wrap: wrap;
}

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

/* ===========================
   DONATE
   =========================== */
.donate-section {
  background: var(--off-white);
}

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

.donate-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.donate-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.donate-badge-top {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 20px;
}

.featured-donate {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.donate-icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold-light);
}
.donate-icon svg { width: 28px; height: 28px; }

.donate-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.donate-card p {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.donate-info {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  word-break: break-all;
}

.donate-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===========================
   CONTACT
   =========================== */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 8px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--gray-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}
.contact-icon svg { width: 20px; height: 20px; }

.contact-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.contact-item a, .contact-item span {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
}
.contact-item a:hover { color: var(--red); }

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(42,64,128,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  background: #e8f0fd;
  color: #1a4070;
  border: 1px solid #b2c8e8;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}
.hidden { display: none; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.footer-sub {
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(255,255,255,0.45);
}

.footer-links h4 {
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-contact h4 {
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.footer-contact a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p   { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-disclaimer { font-style: italic; }

/* ===========================
   SCROLL PROGRESS BAR
   =========================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% 100%;
  z-index: 2000;
  width: 0%;
  pointer-events: none;
  transition: width 0.06s linear;
  animation: shimmerBar 2.5s linear infinite;
}
@keyframes shimmerBar {
  from { background-position: 0% 0; }
  to   { background-position: 200% 0; }
}

/* ===========================
   HERO PORTRAIT PANEL
   =========================== */
.hero-portrait-wrap {
  position: absolute;
  inset: 0;                /* span the full hero */
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

/* Gradient fades out before Wanda's arm — right side stays clear */
.hero-portrait-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  /* faint tone across the photo for text contrast — actual fade is the image mask */
  background: linear-gradient(to right,
    rgba(27,45,90,0.00)    0%,
    rgba(27,45,90,0.15)   40%,
    rgba(27,45,90,0.35)   60%
  );
}

/* Bottom fade */
.hero-portrait-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  z-index: 2;
  background: linear-gradient(to bottom, transparent, var(--navy-dark));
}

.hero-portrait {
  position: absolute;
  left: 0;
  bottom: 0;                /* anchor to bottom so her face rises into view */
  height: 115%;             /* slightly oversize so she fills the frame */
  width: auto;
  display: block;
  /* Fade the photo's own right edge into the navy — relative to the image,
     so the blend lands in the same spot at any viewport width */
  -webkit-mask-image: linear-gradient(to right,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 58%,
    rgba(0,0,0,0) 92%
  );
  mask-image: linear-gradient(to right,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 58%,
    rgba(0,0,0,0) 92%
  );
  animation: kenBurns 18s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  from { transform: scale(1.0) translateY(0); }
  to   { transform: scale(1.06) translateY(-2%); }
}

/* ===========================
   HERO ENHANCEMENTS
   =========================== */
.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-orb-1 {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(201,162,39,0.18) 0%, transparent 70%);
  top: -160px; left: -120px;
  filter: blur(48px);
  animation: orbDrift1 18s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(64,145,108,0.18) 0%, transparent 70%);
  bottom: -80px; right: -100px;
  filter: blur(56px);
  animation: orbDrift2 22s ease-in-out infinite alternate;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(42,64,128,0.22) 0%, transparent 70%);
  top: 40%; right: 20%;
  filter: blur(40px);
  animation: orbDrift1 14s ease-in-out 4s infinite alternate;
}

@keyframes orbDrift1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(70px, 45px) scale(1.12); }
}
@keyframes orbDrift2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-55px, -35px) scale(1.09); }
}

/* Staggered hero entrance (CSS animations, elements always in viewport) */
@keyframes heroRise {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: heroRise 0.75s cubic-bezier(0.22,1,0.36,1) 0.10s both; }
.hero-name    { animation: heroRise 0.90s cubic-bezier(0.22,1,0.36,1) 0.32s both; }
.hero-tagline { animation: heroRise 0.75s cubic-bezier(0.22,1,0.36,1) 0.58s both; }
.hero-sub     { animation: heroRise 0.75s cubic-bezier(0.22,1,0.36,1) 0.76s both; }
.hero-actions { animation: heroRise 0.75s cubic-bezier(0.22,1,0.36,1) 0.94s both; }

/* ===========================
   SCROLL REVEAL SYSTEM
   =========================== */
.reveal {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.from-left  { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }
.reveal.from-below { transform: translateY(30px); }
.reveal.pop        { transform: scale(0.85); transition-timing-function: cubic-bezier(0.34,1.56,0.64,1); }
.reveal.visible    { opacity: 1; transform: none; }


/* ===========================
   CARD HOVER ENHANCEMENTS
   =========================== */
.issue-icon {
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), background 0.25s ease;
}
.issue-card:hover .issue-icon {
  transform: scale(1.18) rotate(-8deg);
}

.donate-card {
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.donate-card:hover { transform: translateY(-6px); }

/* About image: subtle float */
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.about-badge { animation: floatBadge 4s ease-in-out 1s infinite; }

/* Value number accent underline on reveal */
.value-item.visible .value-number {
  color: var(--gold);
  transition: color 0.5s ease 0.3s;
}

/* ===========================
   ANIMATIONS (legacy fade-in)
   =========================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 280px 1fr;
    gap: 48px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 960px) {
  .nav-toggle  { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 16px; width: 100%; }
  .nav-links .nav-cta { margin-left: 0; margin-top: 8px; text-align: center; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .hero {
    justify-content: center;
    padding-right: 0;
    padding-left: 0;
  }
  .hero-portrait-wrap { display: none; }
  .hero-content {
    text-align: center;
    padding: 110px 24px 80px;
    max-width: 600px;
  }
  .hero-sub { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .about-image-wrap { max-width: 300px; margin: 0 auto; }

  .platform-grid { grid-template-columns: 1fr; }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .stat-circle { margin: 0 auto; }

  .donate-grid { grid-template-columns: 1fr; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; }
  .about-pillars { gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===========================
   STATS BAR
   =========================== */
.stats-bar {
  background: var(--navy-dark);
  padding: 40px 0;
  border-bottom: 3px solid var(--gold);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-suffix {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
}
.stat-desc {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(2n) { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:last-child, .stat-item:nth-last-child(2) { border-bottom: none; }
}

/* ===========================
   BUTTON RIPPLE
   =========================== */
.btn { overflow: hidden; }
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.30);
  transform: scale(0);
  animation: rippleAnim 0.55s linear;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(2.8); opacity: 0; }
}

/* ===========================
   BACK TO TOP
   =========================== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.back-to-top svg { width: 20px; height: 20px; color: var(--navy-dark); }
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ===========================
   FLOATING DONATION CTA
   =========================== */
.floating-cta {
  position: fixed;
  bottom: -90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 800;
  background: var(--navy-dark);
  border: 1px solid var(--gold);
  border-radius: 50px;
  padding: 12px 20px 12px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  transition: bottom 0.5s cubic-bezier(0.22,1,0.36,1);
  white-space: nowrap;
}
.floating-cta.visible { bottom: 28px; }
.floating-cta span {
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  font-weight: 600;
}
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.floating-cta-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
  transition: color 0.2s;
}
.floating-cta-close:hover { color: #fff; }
@media (max-width: 600px) {
  .floating-cta { padding: 10px 14px 10px 20px; gap: 10px; }
  .floating-cta span { display: none; }
}

/* ===========================
   SB 406 PROGRESS STEPS
   =========================== */
.sb406-progress {
  margin: 20px 0 18px;
}
.sb406-progress-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-dark);
  margin-bottom: 14px;
  opacity: 0.6;
}
.sb406-progress-steps {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}
.sb406-step {
  flex: 1;
  text-align: center;
  position: relative;
}
.sb406-step::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #d0d5dd;
  border: 3px solid #d0d5dd;
  margin: 0 auto 8px;
  position: relative;
  z-index: 2;
  transition: background 0.4s, border-color 0.4s;
}
.sb406-step::after {
  content: '';
  position: absolute;
  top: 8px;
  left: calc(50% + 8px);
  right: calc(-50% + 8px);
  height: 3px;
  background: #d0d5dd;
  z-index: 1;
  transition: background 0.4s;
}
.sb406-step:last-child::after { display: none; }
.sb406-step.completed::before {
  background: var(--gold);
  border-color: var(--gold);
}
.sb406-step.completed::after { background: var(--gold); }
.sb406-step.active::before {
  background: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,162,39,0.25);
}
.sb406-step span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-600);
  display: block;
  line-height: 1.3;
}
.sb406-step.completed span { color: var(--navy-dark); }
.sb406-step.active span { color: var(--gold); font-weight: 700; }

/* ===========================
   TIMELINE
   =========================== */
.timeline-section {
  background: var(--navy-dark);
  padding: 96px 0;
}
.timeline {
  position: relative;
  margin-top: 56px;
  padding-left: 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,162,39,0.2));
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0 16px;
  margin-bottom: 56px;
  align-items: start;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-content {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  transition: background 0.3s, border-color 0.3s;
}
.timeline-content:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(201,162,39,0.4);
}
.timeline-item:nth-child(odd) .timeline-content { grid-column: 1; }
.timeline-item:nth-child(odd) .timeline-dot   { grid-column: 2; }
.timeline-item:nth-child(odd) .timeline-spacer { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-spacer { grid-column: 1; }
.timeline-item:nth-child(even) .timeline-dot   { grid-column: 2; }
.timeline-item:nth-child(even) .timeline-content { grid-column: 3; }
.timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--navy-dark);
  box-shadow: 0 0 0 3px var(--gold);
  margin: 4px auto 0;
  grid-column: 2;
}
.timeline-spacer { grid-column: 1; }
.timeline-year {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.timeline-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.timeline-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 700px) {
  .timeline::before { left: 20px; }
  .timeline-item { grid-template-columns: 40px 1fr; }
  .timeline-dot { margin: 4px auto 0; width: 16px; height: 16px; }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content { grid-column: 2; }
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot { grid-column: 1; }
  .timeline-spacer { display: none; }
}

/* ===========================
   CARD TILT (transition on leave)
   =========================== */
.issue-card, .hoa-card, .donate-card {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  will-change: transform;
}

/* ===========================
   DONATE REVEAL
   =========================== */
.donate-reveal-btn {
  color: var(--navy-dark) !important;
  border-color: var(--navy-dark) !important;
  font-size: 0.85rem;
  padding: 8px 20px;
}
.donate-reveal-btn:hover {
  background: var(--navy-dark) !important;
  color: #fff !important;
}

.donate-info-hidden {
  display: none;
  animation: fadeReveal 0.35s ease;
}
.donate-info-hidden.revealed {
  display: block;
}
@keyframes fadeReveal {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===========================
   PARALLAX CONTAINERS
   =========================== */
.dc-banner { overflow: hidden; }

/* ===========================
   LOADING SCREEN
   =========================== */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loading-leaf-svg {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  animation: leafBounce 1s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes leafBounce {
  from { transform: rotate(-30deg) scale(0.4); opacity: 0; }
  to   { transform: rotate(0deg) scale(1); opacity: 1; }
}
.loading-name {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
  animation: fadeUp 0.5s ease 0.2s both;
}
.loading-sub {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  animation: fadeUp 0.5s ease 0.35s both;
}
.loading-progress {
  width: 180px;
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  overflow: hidden;
  animation: fadeUp 0.5s ease 0.4s both;
}
.loading-progress-bar {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  animation: loadProgress 0.85s ease 0.35s both;
}
@keyframes loadProgress {
  from { width: 0; }
  to   { width: 100%; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===========================
   PAGE TRANSITION OVERLAY
   =========================== */
@keyframes pageFadeIn {
  from { opacity: 1; }
  to   { opacity: 0; }
}
@keyframes pageFadeOut {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.page-fade-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 8888;
  pointer-events: none;
  animation: pageFadeIn 0.5s ease forwards;
}
.page-fade-overlay.exit {
  animation: pageFadeOut 0.38s ease forwards;
  pointer-events: all;
}

/* ===========================
   CURSOR SPOTLIGHT
   =========================== */
.cursor-spotlight {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.07) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  left: -999px;
  top: -999px;
  transition: left 0.1s linear, top 0.1s linear;
  mix-blend-mode: screen;
}

/* ===========================
   COUNTDOWN STRIP
   =========================== */
.countdown-strip {
  background: var(--navy-dark);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 18px 0;
}
.countdown-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.countdown-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.countdown-units {
  display: flex;
  align-items: center;
  gap: 8px;
}
.countdown-unit { text-align: center; }
.countdown-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
  min-width: 54px;
}
.countdown-unit-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
  display: block;
}
.countdown-sep {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 14px;
}

/* ===========================
   ENDORSEMENTS STRIP
   =========================== */
.endorsements-section,
.testimonials-section,
.press-section {
  display: none;
  background: var(--off-white);
  padding: 36px 0;
  overflow: hidden;
  border-top: 3px solid var(--gold);
}
.endorsements-label {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.endorsements-track-wrap {
  overflow: hidden;
  position: relative;
}
.endorsements-track-wrap::before,
.endorsements-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.endorsements-track-wrap::before { left:  0; background: linear-gradient(to right, var(--off-white), transparent); }
.endorsements-track-wrap::after  { right: 0; background: linear-gradient(to left,  var(--off-white), transparent); }
.endorsements-track {
  display: flex;
  gap: 16px;
  align-items: center;
  animation: scrollEndorse 28s linear infinite;
  width: max-content;
}
.endorsements-track:hover { animation-play-state: paused; }
@keyframes scrollEndorse {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.endorse-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 40px;
  padding: 10px 22px;
  white-space: nowrap;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  transition: box-shadow 0.2s, transform 0.2s;
}
.endorse-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* ===========================
   SHARE BUTTONS
   =========================== */
.share-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.share-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.share-btn:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}
.share-btn svg { width: 13px; height: 13px; flex-shrink: 0; }
.hoa-section .share-row .share-label { color: var(--gray-500); }
.hoa-section .share-btn {
  border-color: var(--gray-200);
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.hoa-section .share-btn:hover { background: var(--gray-100); border-color: var(--navy); }


/* ===========================
   TESTIMONIALS CAROUSEL
   =========================== */
.testimonials-section {
  background: var(--navy-dark);
  padding: 90px 0;
}
.testimonials-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 48px;
}
.testimonials-inner {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.testimonial-card { flex: 0 0 100%; padding: 0 8px; }
.testimonial-content {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.4vw, 1.3rem);
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-quote::before {
  content: '\201C';
  color: var(--gold);
  font-size: 2em;
  line-height: 0;
  vertical-align: -0.45em;
  margin-right: 4px;
}
.testimonial-quote::after {
  content: '\201D';
  color: var(--gold);
  font-size: 2em;
  line-height: 0;
  vertical-align: -0.45em;
  margin-left: 4px;
}
.testimonial-author {
  font-weight: 800;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.testimonial-location {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}
.testimonials-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  border: none;
}
.testimonials-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}
.testimonials-prev,
.testimonials-next {
  background: none;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: border-color 0.2s, background 0.2s;
}
.testimonials-prev:hover,
.testimonials-next:hover {
  border-color: var(--gold);
  background: rgba(201,162,39,0.12);
}
.testimonials-prev svg,
.testimonials-next svg { width: 16px; height: 16px; }

/* ===========================
   FAQ ACCORDION
   =========================== */
.faq-section { background: var(--off-white); padding: 90px 0; }
.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: box-shadow 0.22s;
}
.faq-item.open { box-shadow: var(--shadow-md); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--navy);
  gap: 16px;
  user-select: none;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--gray-100); }
.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--navy-dark);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s, background 0.22s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.22,1,0.36,1), padding 0.3s;
  padding: 0 24px;
  font-size: 0.93rem;
  color: var(--gray-700);
  line-height: 1.78;
}
.faq-item.open .faq-answer {
  max-height: 320px;
  padding: 4px 24px 20px;
}

/* ===========================
   COMMUNITY POLL
   =========================== */
.poll-section { background: var(--navy-dark); padding: 80px 0; }
.poll-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 44px;
  max-width: 620px;
  margin: 40px auto 0;
}
.poll-question {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  text-align: center;
}
.poll-options { display: flex; flex-direction: column; gap: 10px; }
.poll-option {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
  user-select: none;
}
.poll-option:hover {
  border-color: var(--gold);
  background: rgba(201,162,39,0.06);
}
.poll-option.voted { pointer-events: none; cursor: default; }
.poll-bar-bg {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: rgba(201,162,39,0.13);
  border-radius: var(--radius);
  width: 0;
  transition: width 1s cubic-bezier(0.22,1,0.36,1);
  z-index: 0;
}
.poll-option-text {
  position: relative; z-index: 1;
  flex: 1;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}
.poll-pct {
  position: relative; z-index: 1;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold);
  display: none;
  min-width: 36px;
  text-align: right;
}
.poll-option.voted .poll-pct { display: block; }
.poll-note {
  text-align: center;
  font-size: 0.73rem;
  color: rgba(255,255,255,0.28);
  margin-top: 18px;
  transition: color 0.3s;
}

/* ===========================
   FUNDRAISING BAR
   =========================== */
.fundraising-wrap {
  background: var(--navy-dark);
  border-radius: var(--radius-lg);
  padding: 30px 36px;
  margin-top: 40px;
  text-align: center;
  border: 1px solid rgba(201,162,39,0.25);
}
.fundraising-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.fundraising-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.fundraising-track {
  width: 100%;
  height: 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 10px;
}
.fundraising-fill {
  height: 100%;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  border-radius: 6px;
  width: 0;
  transition: width 1.8s cubic-bezier(0.22,1,0.36,1);
  position: relative;
}
.fundraising-fill::after {
  content: '';
  position: absolute;
  right: 0; top: -2px; bottom: -2px;
  width: 3px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255,255,255,0.6);
}
.fundraising-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.fundraising-stats strong { color: var(--gold-light); }

/* ===========================
   GALLERY
   =========================== */
.gallery-section { background: var(--white); padding: 80px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  background: var(--gray-100);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(27,45,90,0);
  transition: background 0.3s;
  border-radius: var(--radius);
}
.gallery-item:hover::after { background: rgba(27,45,90,0.38); }
.gallery-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; z-index: 2;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg { width: 38px; height: 38px; color: #fff; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); }
@media (max-width: 680px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===========================
   LIGHTBOX
   =========================== */
.lightbox {
  position: fixed; inset: 0; z-index: 9900;
  background: rgba(0,0,0,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  animation: lbFade 0.22s ease;
}
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 88vw;
  max-height: 86vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute; top: 18px; right: 24px;
  font-size: 2.2rem; color: rgba(255,255,255,0.7);
  cursor: pointer; background: none; border: none; line-height: 1;
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #fff;
  transition: background 0.2s, border-color 0.2s;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.35);
}
.lightbox-prev svg, .lightbox-next svg { width: 20px; height: 20px; }

/* ===========================
   PRESS / IN THE NEWS
   =========================== */
.press-section { background: var(--off-white); padding: 80px 0; }
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.press-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.22s, box-shadow 0.22s;
  cursor: default;
}
.press-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.press-outlet {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.press-headline {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  flex: 1;
}
.press-date { font-size: 0.72rem; color: var(--gray-500); }
@media (max-width: 700px) {
  .press-grid { grid-template-columns: 1fr; }
}

/* ===========================
   NEWSLETTER POPUP
   =========================== */
.newsletter-popup {
  position: fixed;
  bottom: -340px;
  right: 24px;
  z-index: 8500;
  width: 330px;
  background: var(--navy-dark);
  border: 1px solid rgba(201,162,39,0.55);
  border-radius: var(--radius-lg);
  padding: 26px 26px 22px;
  box-shadow: 0 16px 56px rgba(0,0,0,0.45);
  transition: bottom 0.55s cubic-bezier(0.22,1,0.36,1);
}
.newsletter-popup.visible { bottom: 96px; }
.newsletter-popup-close {
  position: absolute; top: 12px; right: 14px;
  background: none; border: none;
  color: rgba(255,255,255,0.38);
  font-size: 1.4rem; cursor: pointer; line-height: 1;
  transition: color 0.2s;
}
.newsletter-popup-close:hover { color: #fff; }
.newsletter-popup h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.newsletter-popup p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
  line-height: 1.55;
}
.newsletter-form { display: flex; flex-direction: column; gap: 8px; }
.newsletter-input {
  padding: 9px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  color: #fff;
  font-size: 0.86rem;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.32); }
.newsletter-input:focus { border-color: var(--gold); }
.newsletter-success {
  display: none;
  text-align: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 8px 0;
}

/* ===========================
   WORD-REVEAL HERO ANIMATION
   =========================== */
.word-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  animation: wordAppear 0.45s ease forwards;
  animation-delay: calc(1.4s + var(--wi) * 0.07s);
}
@keyframes wordAppear {
  to { opacity: 1; transform: translateY(0); }
}

/* ===========================
   PULSING TIMELINE DOTS
   =========================== */
.timeline-dot {
  animation: dotPulse 2.8s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 3px var(--gold); }
  50%       { box-shadow: 0 0 0 9px rgba(201,162,39,0.12); }
}

/* ===========================
   CONFETTI
   =========================== */
@keyframes confettiBurst {
  0%   { opacity: 1; transform: translate(0,0) rotate(0deg); }
  100% { opacity: 0; transform: translate(var(--dx), calc(var(--dy) + 120px)) rotate(540deg); }
}

/* ===========================
   RESPONSIVE ADDITIONS
   =========================== */
@media (max-width: 820px) {
  .testimonial-content { padding: 28px 22px; }
  .poll-card { padding: 24px 20px; }
  .fundraising-wrap { padding: 24px 22px; }
  .countdown-inner { gap: 18px; }
  .countdown-num { font-size: 1.7rem; min-width: 44px; }
  .newsletter-popup { right: 12px; left: 12px; width: auto; }
  .press-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .press-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .countdown-strip .btn { display: none; }
}
.section-banner { transition: transform 0.1s linear; }

/* ===========================
   MOBILE LAYOUT FIXES
   =========================== */

/* ── Prevent any section from causing horizontal overflow ── */
section, .stats-bar, .countdown-strip, .endorsements-section,
.timeline-section, .testimonials-section, .poll-section,
.faq-section, .press-section, .gallery-section {
  overflow-x: hidden;
}

/* ── Testimonials: clip translateX so it never bleeds out ── */
.testimonials-wrap { overflow: hidden; }

/* ── Countdown strip: stack vertically on mobile ── */
@media (max-width: 600px) {
  .countdown-strip { padding: 18px 0; }
  .countdown-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .countdown-label { margin-right: 0; font-size: 0.72rem; }
  .countdown-units { gap: 12px; }
  .countdown-num  { font-size: 1.8rem; min-width: 48px; }
  .countdown-sep  { font-size: 1.6rem; }
  .countdown-unit-label { font-size: 0.62rem; }
  .countdown-strip .btn { display: inline-flex; margin-top: 4px; }
}

/* ── Endorsements: edge fade so overflow is invisible ── */
.endorsements-track-wrap {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* ── DC banner: smaller height + font on mobile ── */
@media (max-width: 640px) {
  .dc-banner-img { height: 560px; object-position: center center; }
  .dc-banner-content { left: 20px; right: 20px; top: 50%; }
  .dc-banner-content .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .dc-banner-text { font-size: 0.88rem; line-height: 1.7; }
}

/* ── Share row: wrap nicely ── */
@media (max-width: 480px) {
  .share-row { gap: 8px; flex-wrap: wrap; }
  .share-btn  { font-size: 0.74rem; padding: 6px 12px; }
}

/* ── About badge: keep it inside the image bounds ── */
@media (max-width: 768px) {
  .about-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    padding: 12px 16px;
    font-size: 0.8rem;
  }
  .about-badge strong { font-size: 1rem; }
}

/* ── Fundraising stats: prevent awkward text wrap ── */
@media (max-width: 480px) {
  .fundraising-stats {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
  }
  .fundraising-sub { font-size: 0.8rem; }
}

/* ── Section padding reductions on mobile ── */
@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .timeline-section,
  .testimonials-section,
  .faq-section,
  .poll-section,
  .press-section,
  .gallery-section { padding: 56px 0; }
  .section-intro { font-size: 0.93rem; }
  .container { padding: 0 18px; }
}

/* ── Poll card padding ── */
@media (max-width: 480px) {
  .poll-card { padding: 20px 16px; margin-top: 28px; }
  .poll-question { font-size: 1rem; }
  .poll-option { padding: 10px 12px; }
}

/* ── FAQ padding ── */
@media (max-width: 480px) {
  .faq-question { padding: 16px 18px; font-size: 0.92rem; }
  .faq-item.open .faq-answer { padding: 0 18px 16px; }
}


/* ── Testimonials controls spacing ── */
@media (max-width: 480px) {
  .testimonial-content { padding: 24px 18px; }
  .testimonial-quote { font-size: 0.97rem; }
  .testimonials-controls { gap: 10px; margin-top: 20px; }
}

/* ── Press cards ── */
@media (max-width: 480px) {
  .press-card { padding: 18px; }
  .press-headline { font-size: 0.93rem; }
}

/* ── Gallery section heading ── */
@media (max-width: 768px) {
  .gallery-section .section-title,
  .press-section .section-title,
  .gallery-section .section-label,
  .press-section .section-label { text-align: left; }
}

/* ── Timeline mobile already handled, just tighten padding ── */
@media (max-width: 480px) {
  .timeline-section { padding: 56px 0; }
  .timeline-content { padding: 16px; }
  .timeline-title   { font-size: 1rem; }
}

/* ── Footer tight spacing ── */
@media (max-width: 480px) {
  .footer { padding: 48px 0 24px; }
  .footer-grid { gap: 32px; }
}

/* ── Newsletter popup: full-width on very small screens ── */
@media (max-width: 440px) {
  .newsletter-popup { right: 8px; left: 8px; bottom: -320px; }
  .newsletter-popup.visible { bottom: 70px; }
}

/* ── Floating CTA: ensure it clears back-to-top button ── */
@media (max-width: 480px) {
  .floating-cta { right: 12px; left: 12px; bottom: -90px; }
  .floating-cta.visible { bottom: 20px; }
}

/* ── Hero: remove excess bottom space on short phones ── */
@media (max-width: 480px) {
  .hero-content { padding-top: 90px; padding-bottom: 60px; }
  .hero-name    { font-size: clamp(2.8rem, 14vw, 4rem); }
  .hero-sub     { font-size: 0.93rem; margin-bottom: 32px; }
}

/* ── Word-reveal: use inline (not inline-block) on mobile to
      prevent centered-text gaps at line breaks ── */
@media (max-width: 768px) {
  .word-reveal {
    display: inline;
    animation-name: wordAppearFade;
  }
}
@keyframes wordAppearFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Stats bar 2-column already set; ensure even dividers ── */
@media (max-width: 640px) {
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.1); border-bottom: none; }
}


/* ── Donate cards: equal sizing ── */
@media (max-width: 480px) {
  .donate-card { padding: 28px 20px; }
  .fundraising-wrap { padding: 22px 18px; margin-top: 32px; }
}

/* ── Why Wanda values list ── */
@media (max-width: 480px) {
  .value-item { gap: 14px; }
  .value-number { font-size: 1.8rem; min-width: 40px; }
}

/* ── Endorsements: smaller items on mobile ── */
@media (max-width: 480px) {
  .endorse-item { font-size: 0.78rem; padding: 10px 16px; }
}

/* ── Lightbox: smaller nav buttons on mobile ── */
@media (max-width: 480px) {
  .lightbox-prev { left: 8px; width: 36px; height: 36px; }
  .lightbox-next { right: 8px; width: 36px; height: 36px; }
  .lightbox img  { max-width: 95vw; }
}
