*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ---- SKIP LINK (accessibility) ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--orange);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.15s;
}
.skip-link:focus { top: 0; }

/* ---- FOCUS STYLES (accessibility) ---- */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Remove default outline only when focus-visible is supported */
:focus:not(:focus-visible) { outline: none; }

:root {
  --orange: #F7931E;
  --orange-dark: #d97c10;
  --blue: #1A5EA8;
  --blue-dark: #124580;
  --dark: #0f172a;
  --gray: #f1f5f9;
  --text: #1e293b;
  --text-muted: #64748b;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.15), 0 8px 10px -6px rgba(0,0,0,0.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
}

img { max-width: 100%; }

/* ---- NAVIGATION ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img { height: 54px; width: auto; }

.nav-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.15;
}

.nav-logo-text span {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--orange); }

.btn-donate-nav {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s !important;
}

.btn-donate-nav:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-1px);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247, 147, 30, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
}

.btn-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 94, 168, 0.4);
}

/* ---- SECTION LABEL ---- */
.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.85rem;
}

/* ---- HERO VIDEO / PLACEHOLDER ---- */
.hero-video {
  position: relative;
  background: var(--dark);
  overflow: hidden;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.video-placeholder {
  width: 100%;
  min-height: 78vh;
  background: linear-gradient(160deg, #0f172a 0%, #1e3a5f 60%, #0f172a 100%);
  /* Reduced on mobile — see responsive section */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}


/* Centered stacked hero layout */
.hero-centered {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 3.5rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--white);
}

.hero-centered h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-centered h1 span { color: var(--orange); }

.hero-centered p {
  font-size: 1.15rem;
  opacity: 0.88;
  margin-bottom: 2.25rem;
  line-height: 1.7;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
  max-width: 580px;
}

.hero-character-centered {
  width: 320px;
  margin: 0.5rem auto 0.75rem;
}

.hero-character-centered img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

/* Legacy centered layout (kept for any non-split uses) */
.video-placeholder-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 3rem 2rem;
  max-width: 720px;
}

.video-placeholder-content h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
  letter-spacing: -0.02em;
}

.video-placeholder-content h1 span { color: var(--orange); }

.video-placeholder-content p {
  font-size: 1.2rem;
  opacity: 0.88;
  margin-bottom: 2.25rem;
  line-height: 1.7;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}

.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.45rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- STATS STRIP ---- */
.stats-strip {
  background: var(--blue);
  color: var(--white);
  padding: 1.75rem 2rem;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-number {
  font-family: 'Bebas Neue', 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 2.8rem;
  color: var(--orange);
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
  letter-spacing: 0.03em;
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.82;
}

/* ---- FUNDRAISING TRACKER ---- */
.tracker-section {
  padding: 5.5rem 2rem;
  background: var(--white);
}

.tracker-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.tracker-section h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.tracker-section h2 span { color: var(--orange); }

.tracker-lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.tracker-card {
  background: var(--gray);
  border-radius: 24px;
  padding: 2.75rem;
  margin-bottom: 2.25rem;
  border: 1px solid var(--border);
}

.tracker-amounts {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.25rem;
}

.tracker-raised {
  font-family: 'Bebas Neue', 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 3.8rem;
  color: var(--orange);
  line-height: 1;
  letter-spacing: 0.03em;
}

.tracker-raised-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tracker-goal {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-muted);
  text-align: right;
}

.progress-bar {
  background: var(--border);
  border-radius: 50px;
  height: 22px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress-fill {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--orange), #ffb347);
  width: 0%;
  transition: width 1.8s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.tracker-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.tracker-donors { font-weight: 600; color: var(--text); }

.tracker-note {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* ---- ABOUT BRIEF ---- */
.about-brief {
  padding: 5.5rem 2rem;
  background: var(--gray);
}

.about-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.about-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.about-content h2 span { color: var(--orange); }

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  font-size: 1.02rem;
  line-height: 1.8;
}

.about-content .btn { margin-top: 0.75rem; }

/* ---- IMPACT NUMBERS ---- */
.impact-section {
  padding: 5rem 2rem;
  background: var(--dark);
  color: var(--white);
}

.impact-inner {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}

.impact-section h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.impact-section h2 span { color: var(--orange); }

.impact-lead {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.impact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2rem 1.5rem;
}

.impact-card-number {
  font-family: 'Bebas Neue', 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: var(--orange);
  display: block;
  line-height: 1;
  margin-bottom: 0.6rem;
  letter-spacing: 0.03em;
}

.impact-card-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

.impact-cta-text {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* ---- CTA SECTION ---- */
.cta-section {
  padding: 6.5rem 2rem;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  text-align: center;
  color: var(--white);
}

.cta-inner { max-width: 700px; margin: 0 auto; }

.cta-section h2 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.15rem;
  opacity: 0.88;
  margin-bottom: 2.75rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- FOOTER ---- */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 3.5rem 2rem;
  text-align: center;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-logo { margin-bottom: 1.75rem; }
.footer-logo img { height: 62px; opacity: 0.88; }

footer p {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

footer a { color: var(--orange); text-decoration: none; }
footer a:hover { text-decoration: underline; }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--orange); }

/* ---- STORY PAGE HERO ---- */
.story-hero {
  background: linear-gradient(160deg, var(--dark) 0%, #1e3a5f 100%);
  padding: 7rem 2rem 5rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}


.story-hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.story-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.story-hero h1 span { color: var(--orange); }
.story-hero p { font-size: 1.2rem; opacity: 0.82; line-height: 1.7; }

/* ---- STORY SECTIONS ---- */
.story-section { padding: 5.5rem 2rem; }
.story-section:nth-child(even) { background: var(--gray); }

.story-section-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.story-section-inner.centered {
  max-width: 760px;
  text-align: center;
}

.story-section h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.story-section h2 span { color: var(--orange); }

.story-section p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.82;
  margin-bottom: 1.3rem;
}

.story-section p:last-child { margin-bottom: 0; }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-grid.reversed { direction: rtl; }
.story-grid.reversed > * { direction: ltr; }

.story-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* ---- QUOTE BLOCK ---- */
.quote-block {
  border-left: 4px solid var(--orange);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: rgba(247, 147, 30, 0.06);
  border-radius: 0 12px 12px 0;
}

.quote-block blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.55;
}

/* ---- INFO BOX ---- */
.info-box {
  background: linear-gradient(135deg, var(--blue) 0%, #2563eb 100%);
  color: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  margin-top: 2.25rem;
}

.info-box h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.info-box p {
  opacity: 0.9;
  font-size: 0.97rem;
  margin-bottom: 0;
  color: var(--white);
  line-height: 1.7;
}

/* ---- PHOTO GALLERY ---- */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.photo-gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.photo-gallery img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* ---- RESEARCH STATS STRIP ---- */
.research-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.research-stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
}

.research-stat-number {
  font-family: 'Bebas Neue', 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  color: var(--orange);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.research-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ---- BELLA LOGO CALLOUT ---- */
.bella-logo-callout {
  background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
  border: 2px solid var(--orange);
  border-radius: 20px;
  padding: 2rem;
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.bella-logo-callout img {
  height: 100px;
  width: auto;
  flex-shrink: 0;
}

.bella-logo-callout-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.bella-logo-callout-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner,
  .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-grid.reversed { direction: ltr; }
  .story-image img { height: 360px; }
  .about-image img { height: 360px; }
}

@media (max-width: 900px) {
  .hero-character-centered { width: 260px; }
}

@media (max-width: 768px) {
  .hero-centered { padding: 2.5rem 1.5rem 2rem; }
  .hero-character-centered { width: 200px; }
  .nav-logo-text { display: none; }
  .stats-inner { gap: 1.5rem; }
  .stats-strip { padding: 1.25rem 1rem; }
  .stat-number { font-size: 1.6rem; }
  .stat-label { font-size: 0.72rem; }
  .photo-gallery { grid-template-columns: 1fr 1fr; }
  .research-stats { grid-template-columns: 1fr 1fr; }
  .tracker-raised { font-size: 2.25rem; }
  .tracker-amounts { flex-direction: column; gap: 0.5rem; }
  .tracker-goal { font-size: 1rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 320px; }
  .bella-logo-callout { flex-direction: column; text-align: center; }
  /* Shorter hero on mobile — content is what matters */
  .video-placeholder { min-height: auto; padding: 4rem 1.5rem; }
  .video-placeholder-content h1 { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  /* Ensure tap targets are at least 44px */
  .nav-links a { min-height: 44px; display: flex; align-items: center; }
  .btn { min-height: 48px; }
}

@media (max-width: 580px) {
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .nav-links li:not(:last-child) { display: none; }
  .tracker-card { padding: 1.5rem; }
}

@media (max-width: 420px) {
  .photo-gallery { grid-template-columns: 1fr; }
  .research-stats { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { gap: 1rem; }
}

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}
/* Stagger children inside a reveal container */
.reveal-children > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-children.revealed > *:nth-child(1) { transition-delay: 0.05s; opacity:1; transform:none; }
.reveal-children.revealed > *:nth-child(2) { transition-delay: 0.13s; opacity:1; transform:none; }
.reveal-children.revealed > *:nth-child(3) { transition-delay: 0.21s; opacity:1; transform:none; }
.reveal-children.revealed > *:nth-child(4) { transition-delay: 0.29s; opacity:1; transform:none; }

/* ── HERO ENTRANCE ────────────────────────────────────────── */
@keyframes heroFadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:none; }
}
.hero-badge     { animation: heroFadeUp 0.6s 0.1s both; }
.hero-centered h1 { animation: heroFadeUp 0.7s 0.22s both; }
.hero-character-centered { animation: heroFadeUp 0.75s 0.36s both; }
.hero-centered p  { animation: heroFadeUp 0.65s 0.48s both; }
.hero-buttons   { animation: heroFadeUp 0.6s 0.58s both; }

/* ── STATS STRIP HOVER ───────────────────────────────────── */
.stat {
  transition: transform 0.2s;
  padding: 0.5rem 1rem;
  border-radius: 12px;
}
.stat:hover { transform: translateY(-3px); }

/* ── PROGRESS BAR SHIMMER ────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.progress-fill {
  background: linear-gradient(90deg,
    var(--orange) 0%,
    #ffb347 40%,
    #fff3 55%,
    #ffb347 70%,
    var(--orange) 100%);
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}

/* ── IMPACT CARD HOVER ───────────────────────────────────── */
.impact-card {
  transition: transform 0.25s, background 0.25s, box-shadow 0.25s;
}
.impact-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* ── NAV DONATE PULSE ────────────────────────────────────── */
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(247,147,30,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(247,147,30,0); }
  100% { box-shadow: 0 0 0 0 rgba(247,147,30,0); }
}
.btn-donate-nav {
  animation: pulse-ring 2.5s ease-out infinite;
}
.btn-donate-nav:hover { animation: none; }

/* ── SECTION DIVIDER GRADIENT ────────────────────────────── */
.stats-strip {
  background: linear-gradient(90deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-dark) 100%);
}
