/* ============================================================
   CSS CUSTOM PROPERTIES
============================================================ */
:root {
  --blue-dark:    #0d2a4e;
  --blue-mid:     #1a4480;
  --blue-light:   #2563a8;
  --orange:       #f07c1e;
  --orange-dark:  #d96712;
  --orange-light: #ffb347;
  --white:        #ffffff;
  --gray-50:      #f8f9fb;
  --gray-100:     #eef1f6;
  --gray-200:     #dde3ed;
  --gray-400:     #94a3b8;
  --gray-600:     #475569;
  --gray-800:     #1e293b;
  --text:         #1e293b;
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.18);
  --transition:   .3s cubic-bezier(.4,0,.2,1);
  --max-w:        1200px;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   UTILITY
============================================================ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-title.white { color: var(--white); }
.body-text { font-size: 1.05rem; color: var(--gray-600); line-height: 1.8; }
.body-text.white { color: rgba(255,255,255,.85); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(240,124,30,.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240,124,30,.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-blue {
  background: var(--blue-dark);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(13,42,78,.25);
}
.btn-blue:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }

#watchMissionBtn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
#watchMissionBtn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(0,0,0,.15));
  opacity: 0;
  transition: opacity .3s ease;
}
#watchMissionBtn:hover::before {
  opacity: 1;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* parallax hero */
#hero { overflow: hidden; position: relative; }
.hero-bg { transition: transform 0.2s ease-out; }

/* sticky donate button */
#stickyDonate {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  padding: 14px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  letter-spacing: .05em;
  transform: translateY(0);
  animation: pulseButton 2.4s ease-in-out infinite;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  transition: transform .25s ease, box-shadow .25s ease;
}
#stickyDonate:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}

@keyframes pulseButton {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

/* impact counters */
.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 20px;
  text-align: center;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.counter-item {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 22px 16px;
  transition: transform .3s ease, background .3s ease;
  backdrop-filter: blur(8px);
}
.counter-item:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.15);
}
.counter-value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  color: var(--orange-light);
  font-weight: 800;
}

/* cards and clickable enhancements */
.help-card {
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  cursor: pointer;
}
.help-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 22px 40px rgba(0,0,0,.25);
  border-color: var(--orange);
}
.help-card:hover .help-card-icon, .help-card:hover .help-card-link {
  transform: translateX(2px);
}

.testimonial-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 18px;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
}
.testimonial-card {
  min-width: 270px;
  max-width: 350px;
  scroll-snap-align: center;
  flex: 0 0 auto;
}

.video-fallback a { text-decoration: underline; }

/* donation highlight section */
#donation-highlight {
  background: linear-gradient(135deg, rgba(255,121,0,.92), rgba(13,42,78,.93));
  color: #fff;
  padding: 48px 18px;
  text-align: center;
  border-radius: var(--radius-lg);
  max-width: 1100px;
  margin: 40px auto 24px;
}
#donation-highlight .highlight-text { font-size: clamp(1.1rem, 2vw, 1.5rem); }
#donation-highlight .highlight-amount { font-family: 'Playfair Display', serif; font-size: clamp(2.1rem, 4vw, 3rem); font-weight: 900; margin: 12px 0; }

@media (max-width: 768px) {
  #stickyDonate { right: 10px; bottom: 12px; }
  .counter-grid { grid-template-columns: repeat(2, minmax(120px, 1fr)); }
}
@media (max-width: 480px) {
  #stickyDonate { right: 8px; bottom: 10px; padding: 12px 14px; font-size: 0.82rem; }
  .counter-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   NAVIGATION
============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,42,78,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.3); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav-links a.active { color: var(--white); font-weight: 600; background: rgba(255,255,255,.13); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(240,124,30,.85); }
.nav-links .btn-nav-donate {
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 50px;
  margin-left: 8px;
  box-shadow: 0 2px 12px rgba(240,124,30,.4);
}
.nav-links .btn-nav-donate:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(240,124,30,.55);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
  z-index: 1100;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--blue-dark);
  padding: 12px 24px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color var(--transition);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--orange); }
.nav-mobile a.active { color: var(--orange); font-weight: 600; }
.nav-mobile .btn-nav-donate {
  margin-top: 16px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50px;
  padding: 14px 24px;
  font-weight: 700;
  text-align: center;
  border-bottom: none;
}

/* ============================================================
   HERO
============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/landingpage/landing.png');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,42,78,.88) 0%,
    rgba(13,42,78,.72) 50%,
    rgba(13,42,78,.35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,124,30,.2);
  border: 1px solid rgba(240,124,30,.4);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.4); }
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 12px;
}
.hero-headline .accent {
  font-style: italic;
  color: var(--orange-light);
  display: block;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange-light);
  line-height: 1;
}
.hero-stat span {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: 4px;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollBob 2s ease-in-out infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(.7); opacity: .5; }
}

/* ============================================================
   VIDEO MODAL
============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.modal-box iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}
.video-fallback {
  background: rgba(0,0,0,.85);
  color: #fff;
  padding: 18px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.15);
}
.video-fallback p {
  margin: 0 0 8px;
  font-size: 0.95rem;
}
.video-fallback a {
  color: var(--orange);
  font-weight: 700;
}
.modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  opacity: .8;
  transition: opacity var(--transition);
}
.modal-close:hover { opacity: 1; }

/* ============================================================
   MISSION SECTION
============================================================ */
#mission {
  padding: 100px 0;
  background: var(--white);
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mission-image-wrap {
  position: relative;
}
.mission-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.mission-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.mission-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}
.mission-badge span {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .9;
}
.mission-text { padding-left: 20px; }
.mission-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.pillar-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue-dark);
}
.pillar-tag svg { color: var(--orange); flex-shrink: 0; }

/* ============================================================
   URGENCY SECTION
============================================================ */
#urgency {
  position: relative;
  padding: 0;
  overflow: hidden;
}

/* Background photo */
.urgency-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/landingpage/hunger_can't_wait_this_is_the_moment.webp");
  background-size: cover;
  background-position: center;
}

/* Multi-layer overlay: deep gradient left → semi-transparent right
   keeps photo visible on the right while guaranteeing WCAG AAA on text */
.urgency-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(8,24,56,.97)  0%,
      rgba(13,42,78,.92) 45%,
      rgba(13,42,78,.78) 70%,
      rgba(13,42,78,.60) 100%
    );
}

/* Two-column grid: narrative left, action card right */
.urgency-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
  padding: 112px 0 100px;
}

/* ── Kicker badge ── */
.urgency-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(240,124,30,.18);
  border: 1px solid rgba(240,124,30,.35);
  border-radius: 50px;
  padding: 6px 16px 6px 12px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 20px;
}
.urgency-pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

/* ── Heading ── */
.urgency-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
}
/* Italic accent line in the heading */
.urgency-heading-em {
  font-style: italic;
  color: var(--orange-light);
  display: block;
}

/* ── Body copy ── */
.urgency-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 520px;
}

/* ── Feature list — custom SVG check icons ── */
.urgency-gift-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.urgency-gift-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .97rem;
  color: rgba(255,255,255,.90);
  line-height: 1.5;
}
/* Icon wrapper: filled orange circle */
.urgency-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(240,124,30,.4);
  flex-shrink: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}
.urgency-gift-list li:hover .urgency-check {
  transform: scale(1.15);
  box-shadow: 0 4px 14px rgba(240,124,30,.55);
}

/* ── Blockquote card ── */
.urgency-quote-card {
  position: relative;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.10);
  /* gradient top border accent */
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--orange), var(--orange-light)) 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 28px 28px 28px 32px;
  margin-bottom: 0;
}
.urgency-quote-mark {
  color: var(--orange);
  opacity: .55;
  margin-bottom: 14px;
}
.urgency-quote-lines {
  font-size: .98rem;
  color: rgba(255,255,255,.78);
  line-height: 2;
  font-style: italic;
  margin-bottom: 14px;
}
.urgency-quote-close {
  font-size: 1rem;
  font-weight: 600;
  color: var(--orange-light);
  line-height: 1.5;
}
.urgency-quote-close strong {
  font-weight: 800;
}

/* ── RIGHT: Glassmorphism action card ── */
.urgency-action-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius-lg);
  padding: 44px 36px 36px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  /* sticky within the grid row so it tracks scroll */
  position: sticky;
  top: 100px;
  /* subtle glow around the card */
  box-shadow: 0 0 0 1px rgba(240,124,30,.12), 0 24px 60px rgba(0,0,0,.35);
}

/* Price hero */
.urgency-price-hero {
  text-align: center;
  margin-bottom: 10px;
  line-height: 1;
}
.urgency-price-amount {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 5vw, 4.4rem);
  font-weight: 900;
  color: var(--orange-light);
  letter-spacing: -.02em;
}
.urgency-price-period {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  vertical-align: super;
  margin-left: 4px;
}
.urgency-card-tagline {
  font-size: .9rem;
  color: rgba(255,255,255,.68);
  line-height: 1.7;
  text-align: center;
  margin-bottom: 28px;
}

/* Thin divider */
.urgency-card-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  margin-bottom: 28px;
}

/* Buttons inside the card */
.urgency-btn-main {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 18px 28px;
  margin-bottom: 14px;
  /* stronger glow on the primary CTA */
  box-shadow: 0 6px 24px rgba(240,124,30,.45);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.urgency-btn-main:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 36px rgba(240,124,30,.6);
}
.urgency-btn-main:active {
  transform: translateY(0) scale(.99);
}
.urgency-btn-main:focus-visible {
  outline: 3px solid var(--orange-light);
  outline-offset: 4px;
}

.urgency-btn-secondary {
  width: 100%;
  justify-content: center;
  font-size: .9rem;
  padding: 14px 24px;
  margin-bottom: 24px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.urgency-btn-secondary:hover {
  background: rgba(255,255,255,.14);
  border-color: var(--white);
  transform: translateY(-2px);
}
.urgency-btn-secondary:focus-visible {
  outline: 3px solid rgba(255,255,255,.6);
  outline-offset: 4px;
}

/* Trust signals row */
.urgency-trust-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
}
.urgency-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.urgency-trust-item svg {
  color: var(--orange-light);
  opacity: .8;
  flex-shrink: 0;
}

/* ============================================================
   DISASTER RELIEF
============================================================ */
#disaster {
  padding: 100px 0;
  background: var(--gray-50);
}
.disaster-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.disaster-image-wrap { position: relative; }
.disaster-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.disaster-ribbon {
  position: absolute;
  top: 24px;
  left: -12px;
  background: #c0392b;
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 8px 20px 8px 16px;
  border-radius: 0 50px 50px 0;
  box-shadow: var(--shadow-sm);
}
.disaster-text { }
.needs-list {
  margin: 24px 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.need-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  color: var(--blue-dark);
  font-size: .88rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.need-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
  border-color: var(--orange);
}
.need-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

/* ── Enhanced Critical Alert ── */
.disaster-alert {
  position: relative;
  background: linear-gradient(135deg, #1a0505 0%, #3b0c0c 50%, #1e0808 100%);
  border-radius: var(--radius-md);
  padding: 0;
  margin-bottom: 32px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(192,57,43,.35), 0 2px 8px rgba(0,0,0,.2);
}
/* animated top-edge glow bar */
.disaster-alert::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c0392b, #e74c3c, #ff6b6b, #e74c3c, #c0392b);
  background-size: 200% 100%;
  animation: alertGlow 2.5s linear infinite;
}
/* subtle noise texture overlay */
.disaster-alert::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='60' height='60' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .6;
}
@keyframes alertGlow {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}
.disaster-alert-inner {
  position: relative;
  z-index: 1;
  padding: 22px 24px 20px;
}
.disaster-alert-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.disaster-alert-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(231,76,60,.25);
  border: 1px solid rgba(231,76,60,.5);
  border-radius: 50px;
  padding: 4px 12px 4px 8px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ff8a7a;
}
.disaster-alert-dot {
  width: 7px;
  height: 7px;
  background: #ff4444;
  border-radius: 50%;
  flex-shrink: 0;
  animation: alertDotPulse 1.2s ease-in-out infinite;
  box-shadow: 0 0 6px #ff4444;
}
@keyframes alertDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 6px #ff4444; }
  50%       { opacity: .6; transform: scale(1.4); box-shadow: 0 0 12px #ff4444; }
}
.disaster-alert-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.disaster-stat-chip {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.disaster-stat-chip strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffb3a7;
  line-height: 1;
}
.disaster-stat-chip span {
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.45);
}
.disaster-alert-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(231,76,60,.4), transparent);
  margin-bottom: 14px;
}
.disaster-alert-body {
  font-size: .88rem;
  color: rgba(255,255,255,.78);
  line-height: 1.75;
}
.disaster-alert-body strong {
  color: #ff8a7a;
  font-weight: 700;
}

/* ============================================================
   HOW YOU CAN HELP
============================================================ */
#help {
  padding: 100px 0;
  background: var(--white);
}
.help-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.help-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.help-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.help-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.help-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.help-card-body { padding: 28px; }
.help-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.help-card-icon svg { color: var(--white); }
.help-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 12px;
}
.help-card p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 24px;
}
.help-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--orange);
  transition: gap var(--transition);
}
.help-card:hover .help-card-link { gap: 10px; }

/* ============================================================
   TESTIMONIALS
============================================================ */
#testimonials {
  padding: 100px 0;
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
}
#testimonials::before {
  content: '\201C';
  position: absolute;
  top: -40px;
  left: 40px;
  font-family: 'Playfair Display', serif;
  font-size: 20rem;
  color: rgba(255,255,255,.03);
  line-height: 1;
  pointer-events: none;
}
.testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.testimonials-header .section-title { color: var(--white); }
.testimonials-header .section-label { color: var(--orange-light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--orange);
  line-height: .6;
  margin-bottom: 20px;
  display: block;
  opacity: .7;
}
.testimonial-text {
  font-size: 1rem;
  color: rgba(255,255,255,.82);
  line-height: 1.85;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--orange-light);
  font-size: 1rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-mid);
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  color: var(--white);
  font-size: .95rem;
}
.author-location {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}

/* ============================================================
   DONATION CTA
============================================================ */
#donate-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.donate-cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/landingpage/giving_back_feels_good.webp');
  background-size: cover;
  background-position: center;
}
.donate-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,42,78,.92) 0%, rgba(26,68,128,.85) 100%);
}
.donate-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.donate-cta-content .section-label { color: var(--orange-light); }
.donate-cta-content .section-title { color: var(--white); margin-bottom: 16px; }
.donate-cta-content .body-text { color: rgba(255,255,255,.8); margin-bottom: 44px; }
.donate-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 36px;
}
.donate-amount {
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.25);
  color: var(--white);
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--transition);
}
.donate-amount:hover,
.donate-amount.selected {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.05);
}
.donate-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.impact-note {
  margin-top: 28px;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}

/* ============================================================
   FOOTER
============================================================ */
#footer {
  background: #060f1e;
  color: rgba(255,255,255,.75);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 20px;
  object-fit: contain;
}
.footer-brand p {
  font-size: .9rem;
  line-height: 1.8;
  color: rgba(255,255,255,.55);
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: var(--transition);
  cursor: pointer;
  color: rgba(255,255,255,.6);
}
.social-icon:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '›';
  color: var(--orange);
  font-size: 1rem;
}
.footer-links a:hover { color: var(--orange); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}
.contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(240,124,30,.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  font-size: .9rem;
}
.contact-row a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.contact-row a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
}
.footer-copy {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--orange); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .mission-grid { grid-template-columns: 1fr; gap: 48px; }
  .mission-text { padding-left: 0; }
  .mission-image-wrap img { height: 400px; }
  .mission-badge { right: 12px; bottom: -12px; }
  .urgency-content { grid-template-columns: 1fr; gap: 40px; padding: 80px 0 72px; }
  .urgency-action-card { position: static; }
  .urgency-btn-main, .urgency-btn-secondary { width: 100%; }
  .urgency-trust-row { justify-content: center; gap: 20px; }
  .disaster-grid { grid-template-columns: 1fr; gap: 48px; }
  .disaster-image-wrap img { height: 360px; }
  .help-cards { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .help-cards { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 20px; }
  .donate-options { gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn-lg { padding: 15px 28px; font-size: 1rem; }
  .mission-badge { position: static; margin-top: 16px; display: inline-block; }
  .disaster-ribbon { position: static; border-radius: var(--radius-sm); margin-bottom: 16px; display: inline-block; }
  .urgency-content { padding: 64px 0 56px; }
  .urgency-action-card { padding: 32px 24px 28px; }
  .urgency-trust-row { flex-direction: column; align-items: center; gap: 12px; }
}

/* ============================================================
   DONATE CTA — ENHANCED BUTTONS
============================================================ */

/* ── Primary: "Donate Now" ── */
.donate-hero-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .45s cubic-bezier(.34,1.56,.64,1),
              box-shadow .3s ease,
              filter .2s ease;
  will-change: transform, box-shadow;
}
/* Shimmer sweep layer */
.donate-hero-btn::before {
  content: '';
  position: absolute;
  top: -20%; left: -90%;
  width: 55%; height: 140%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,.5) 50%,
    transparent 100%
  );
  transform: skewX(-18deg);
  pointer-events: none;
  z-index: 1;
}
/* Idle shimmer fires every 3.5 s */
.donate-hero-btn::before {
  animation: donateShimmerIdle 3.5s ease-in-out infinite;
}
@keyframes donateShimmerIdle {
  0%, 35%  { left: -90%; opacity: 1; }
  55%      { left: 160%; opacity: 1; }
  56%, 100% { left: -90%; opacity: 0; }
}
/* On hover: instant shimmer + spring lift + triple-ring glow */
.donate-hero-btn:hover::before {
  animation: donateShimmerHover .65s ease forwards;
}
@keyframes donateShimmerHover {
  0%   { left: -90%; opacity: 1; }
  100% { left: 160%; opacity: 1; }
}
.donate-hero-btn:hover {
  transform: translateY(-7px) scale(1.07);
  box-shadow:
    0 28px 64px rgba(240,124,30,.75),
    0 0 0  8px rgba(240,124,30,.18),
    0 0 0 18px rgba(240,124,30,.07);
  filter: brightness(1.06);
}
.donate-hero-btn:active {
  transform: translateY(-1px) scale(.97);
  box-shadow: 0 10px 28px rgba(240,124,30,.5);
  transition: transform .1s ease, box-shadow .1s ease;
}

/* ── Secondary: "Give Monthly" ── */
.donate-monthly-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .45s cubic-bezier(.34,1.56,.64,1),
              color .38s ease,
              border-color .3s ease,
              box-shadow .3s ease;
  will-change: transform;
}
/* Liquid fill — rises from bottom */
.donate-monthly-btn::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 0;
  background: var(--white);
  border-radius: inherit;
  transition: height .48s cubic-bezier(.4,0,.2,1);
  z-index: -1;
  pointer-events: none;
}
/* Subtle idle border pulse */
.donate-monthly-btn {
  animation: monthlyBorderPulse 3s ease-in-out infinite;
}
@keyframes monthlyBorderPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,.0); }
  50%       { box-shadow: 0 0 0 4px rgba(255,255,255,.12); }
}
.donate-monthly-btn:hover::before { height: 100%; }
.donate-monthly-btn:hover {
  color: var(--blue-dark);
  border-color: rgba(255,255,255,.95);
  transform: translateY(-7px) scale(1.06);
  box-shadow:
    0 24px 52px rgba(255,255,255,.22),
    0 8px 24px rgba(0,0,0,.18),
    0 0 0 2px rgba(255,255,255,.9);
  animation: none;
}
.donate-monthly-btn:active {
  transform: translateY(-1px) scale(.97);
  transition: transform .1s ease;
}

/* ── Ripple (injected by JS) ── */
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  margin-top: -5px;
  background: rgba(255,255,255,.5);
  transform: scale(0);
  animation: btnRipple .65s linear;
  pointer-events: none;
  z-index: 2;
}
@keyframes btnRipple {
  to { transform: scale(28); opacity: 0; }
}

/* ============================================================
   HERO SECTION — ENHANCED BUTTONS
============================================================ */

/* ── Hero Donate button ── */
.hero-donate-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .45s cubic-bezier(.34,1.56,.64,1),
              box-shadow .35s ease,
              filter .2s ease;
}

/* Idle shimmer sweep */
.hero-donate-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -90%; bottom: 0;
  width: 60%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.35) 50%, transparent 100%);
  transform: skewX(-18deg);
  animation: heroShimmerIdle 3.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes heroShimmerIdle {
  0%, 30%  { left: -90%; opacity: 1; }
  52%      { left: 160%; opacity: 1; }
  53%, 100%{ left: -90%; opacity: 0; }
}

/* Hover: gradient shift + spring scale + triple glow */
.hero-donate-btn:hover {
  transform: translateY(-8px) scale(1.08);
  background: linear-gradient(135deg, #f9923a 0%, #f06f1e 50%, #e55a00 100%);
  box-shadow:
    0 32px 72px rgba(240,124,30,.75),
    0 0 0 8px  rgba(240,124,30,.18),
    0 0 0 18px rgba(240,124,30,.07),
    0 0 0 32px rgba(240,124,30,.03);
  filter: brightness(1.07);
}
.hero-donate-btn:hover::before {
  animation: heroShimmerHover .65s ease forwards;
}
@keyframes heroShimmerHover {
  0%   { left: -90%; opacity: 1; }
  100% { left: 160%; opacity: 0; }
}
.hero-donate-btn:active {
  transform: translateY(-2px) scale(.97);
  transition: transform .1s ease;
}

/* ── Heartbeat on the ♥ icon ── */
.hero-heart {
  display: inline-block;
  animation: heroHeartbeat 2.2s ease-in-out infinite;
  transform-origin: center;
  color: #fff;
}
@keyframes heroHeartbeat {
  0%,  70%, 100% { transform: scale(1); }
  14%            { transform: scale(1.45); }
  28%            { transform: scale(1); }
  42%            { transform: scale(1.25); }
}

/* ── Hero Watch Mission button ── */
.hero-watch-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .45s cubic-bezier(.34,1.56,.64,1),
              color .3s ease,
              border-color .3s ease,
              box-shadow .3s ease;
  animation: watchBorderGlow 3s ease-in-out infinite;
}
@keyframes watchBorderGlow {
  0%, 100% { box-shadow: 0 0 0 0   rgba(255,255,255,0); }
  50%      { box-shadow: 0 0 0 4px rgba(255,255,255,.14); }
}

/* Cinematic radial fill — expands from the play icon position */
.hero-watch-btn::before {
  content: '';
  position: absolute;
  left: 22px; top: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #f9923a 0%, #f06f1e 50%, #e55a00 100%);
  transform: translate(-50%, -50%);
  transition: width .55s cubic-bezier(.4,0,.2,1),
              height .55s cubic-bezier(.4,0,.2,1),
              opacity .45s ease;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}
.hero-watch-btn:hover::before {
  width: 520px;
  height: 520px;
  opacity: 1;
}
.hero-watch-btn:hover {
  color: #fff;
  border-color: transparent;
  transform: translateY(-8px) scale(1.06);
  box-shadow:
    0 28px 64px rgba(240,124,30,.6),
    0 0 0 3px rgba(240,124,30,.5);
  animation: none;
}
.hero-watch-btn:active {
  transform: translateY(-2px) scale(.97);
  transition: transform .1s ease;
}

/* ── Play icon bob + hover effects ── */
.hero-play-icon {
  flex-shrink: 0;
  animation: playIconBob 2.4s ease-in-out infinite;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1),
              filter .3s ease,
              color .3s ease;
}
@keyframes playIconBob {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(3px); }
}
.hero-watch-btn:hover .hero-play-icon {
  transform: translateX(4px) scale(1.2);
  filter: drop-shadow(0 0 8px rgba(255,255,255,.9));
  color: #fff;
  animation: none;
}

/* ── Watch text ── */
.hero-watch-text {
  transition: letter-spacing .3s ease;
}
.hero-watch-btn:hover .hero-watch-text {
  letter-spacing: .03em;
}

/* ============================================================
   SCROLL TO TOP
============================================================ */
#scrollToTop {
  position: fixed;
  left: 24px;
  bottom: 84px;
  z-index: 1199;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--orange-light) 0%, var(--orange-dark) 100%);
  border: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(240,124,30,.5), 0 2px 6px rgba(0,0,0,.12);
  opacity: 0;
  transform: scale(1) translateY(0);
  pointer-events: none;
  transition: opacity .35s ease, box-shadow .25s ease, filter .25s ease;
  will-change: transform, opacity;
}
#scrollToTop::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(240,124,30,.65);
  pointer-events: none;
}
#scrollToTop.visible {
  opacity: 1;
  pointer-events: auto;
  animation: sttBounceIn .55s cubic-bezier(.34,1.56,.64,1) forwards,
             sttBob 3s ease-in-out .6s infinite;
}
#scrollToTop.visible::before {
  animation: sttPulse 2.5s ease-out .8s infinite;
}
#scrollToTop:hover {
  animation-play-state: paused;
  filter: brightness(1.1);
  box-shadow: 0 16px 44px rgba(240,124,30,.7), 0 0 0 10px rgba(240,124,30,.12), 0 2px 8px rgba(0,0,0,.15);
}
#scrollToTop:hover::before { animation-duration: 1.1s; }
#scrollToTop:active {
  filter: brightness(.92);
  box-shadow: 0 4px 16px rgba(240,124,30,.45);
}
#scrollToTop svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  pointer-events: none;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.3));
  position: relative;
  z-index: 1;
}
@keyframes sttBounceIn {
  0%   { transform: scale(0.2) translateY(30px); }
  60%  { transform: scale(1.18) translateY(-5px); }
  80%  { transform: scale(.96) translateY(2px); }
  100% { transform: scale(1) translateY(0); }
}
@keyframes sttBob {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-7px) scale(1.03); }
}
@keyframes sttPulse {
  0%   { transform: scale(1);    opacity: .7; }
  70%  { transform: scale(1.75); opacity: 0; }
  100% { transform: scale(1.75); opacity: 0; }
}
@media (max-width: 480px) {
  #scrollToTop { left: 8px; right: auto; bottom: 72px; width: 44px; height: 44px; }
}

/* ============================================================
   WW A  DONATE BUTTON — STICKY
============================================================ */
.wwa-donate-btn {
  position: relative;
  overflow: hidden !important;
  isolation: isolate;
}
.wwa-donate-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    transparent 0%, transparent 28%,
    rgba(255,255,255,.40) 50%,
    transparent 72%, transparent 100%);
  transform: translateX(-150%) skewX(-20deg);
  pointer-events: none;
  z-index: 1;
  animation: wwaShimmerIdle 3.5s ease-in-out infinite;
}
.wwa-donate-btn:hover {
  transform: translateY(-8px) scale(1.08) !important;
  box-shadow: 0 18px 40px rgba(240,124,30,.55), 0 0 0 3px rgba(240,124,30,.18) !important;
}
.wwa-donate-btn:hover::before {
  animation: wwaShimmerHover .7s ease forwards;
}
.wwa-donate-btn:active {
  transform: translateY(-3px) scale(1.02) !important;
}
.wwa-heart {
  display: inline-block;
  color: #fff;
  animation: wwaHeartbeat 1.8s ease-in-out infinite;
  transform-origin: center;
  margin-right: 2px;
}
.wwa-donate-btn:hover .wwa-heart {
  animation: wwaHeartbeat .6s ease-in-out infinite;
}
.wwa-btn-ripple {
  position: absolute;
  border-radius: 50%;
  width: 8px; height: 8px;
  background: rgba(255,255,255,.45);
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  z-index: 10;
  animation: wwaRipple .68s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes wwaShimmerIdle {
  0%, 25%   { transform: translateX(-150%) skewX(-20deg); opacity: 0; }
  30%        { opacity: 1; }
  60%        { transform: translateX(150%) skewX(-20deg); opacity: 1; }
  65%, 100%  { transform: translateX(150%) skewX(-20deg); opacity: 0; }
}
@keyframes wwaShimmerHover {
  0%   { transform: translateX(-150%) skewX(-20deg); opacity: 1; }
  100% { transform: translateX(150%) skewX(-20deg); opacity: 0; }
}
@keyframes wwaHeartbeat {
  0%, 100% { transform: scale(1); }
  14%       { transform: scale(1.45); }
  28%       { transform: scale(1); }
  42%       { transform: scale(1.25); }
  56%       { transform: scale(1); }
}
@keyframes wwaRipple {
  to { transform: translate(-50%, -50%) scale(28); opacity: 0; }
}
#stickyDonate.wwa-donate-btn {
  animation: none !important;
  transition: transform .32s cubic-bezier(.34,1.56,.64,1), box-shadow .32s ease !important;
}
#stickyDonate.wwa-donate-btn:hover {
  transform: translateY(-8px) scale(1.08) !important;
  box-shadow: 0 18px 40px rgba(240,124,30,.55) !important;
}

/* ── Primary button icon wiggle ── */
.news-read-btn svg {
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.news-read-btn:hover svg {
  transform: rotate(-10deg) scale(1.22);
}

/* ── Outline button — liquid fill + border glow idle ── */
.news-email-btn {
  position: relative;
  overflow: hidden !important;
  isolation: isolate;
  transition: transform .45s cubic-bezier(.34,1.56,.64,1),
              color .3s ease, border-color .3s ease,
              box-shadow .3s ease !important;
  animation: newsEmailGlow 3s ease-in-out infinite;
}
.news-email-btn::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.97), rgba(255,220,160,.9));
  transition: height .45s cubic-bezier(.34,1.56,.64,1);
  z-index: -1;
}
.news-email-btn:hover {
  transform: translateY(-8px) scale(1.06) !important;
  color: var(--blue-dark) !important;
  border-color: rgba(255,255,255,.97) !important;
  box-shadow: 0 20px 44px rgba(255,255,255,.16), 0 0 0 3px rgba(255,255,255,.12) !important;
}
.news-email-btn:hover::before { height: 100%; }
.news-email-btn:active { transform: translateY(-2px) scale(.98) !important; }
.news-email-btn svg {
  animation: newsEmailIconBob 2.4s ease-in-out infinite;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.news-email-btn:hover svg {
  animation: none;
  transform: translateY(-2px) scale(1.18);
}
@keyframes newsEmailGlow {
  0%, 100% { box-shadow: 0 0 0 0   rgba(255,255,255,0); }
  50%       { box-shadow: 0 0 0 4px rgba(255,255,255,.14); }
}
@keyframes newsEmailIconBob {
  0%, 100% { transform: translateX(0); }
  40%       { transform: translateX(3px); }
  70%       { transform: translateX(-2px); }
}

/* ============================================================
   HERO FARMERS BUTTON
============================================================ */
.hero-farmers-btn {
  background: linear-gradient(135deg, #1b5e1b 0%, #2e8b2e 45%, #52b352 100%);
  color: var(--white);
  border: 2px solid rgba(82,179,82,.45);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 4px 22px rgba(46,139,46,.5);
  animation: farmersBtnGlow 2.6s ease-in-out infinite;
  transition: transform .45s cubic-bezier(.34,1.56,.64,1),
              box-shadow .3s ease,
              filter .2s ease;
}
@keyframes farmersBtnGlow {
  0%, 100% { box-shadow: 0 4px 22px rgba(46,139,46,.5), 0 0 0 0   rgba(82,179,82,0); }
  50%       { box-shadow: 0 4px 28px rgba(46,139,46,.7), 0 0 0 8px rgba(82,179,82,.16); }
}
.hero-farmers-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -90%; bottom: 0;
  width: 60%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.35) 50%, transparent 100%);
  transform: skewX(-18deg);
  animation: farmersShimmerIdle 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes farmersShimmerIdle {
  0%, 25%   { left: -90%; opacity: 1; }
  48%        { left: 160%; opacity: 1; }
  49%, 100% { left: -90%; opacity: 0; }
}
.hero-farmers-btn:hover {
  transform: translateY(-8px) scale(1.08);
  background: linear-gradient(135deg, #145214 0%, #237023 45%, #3ea03e 100%);
  box-shadow: 0 28px 64px rgba(46,139,46,.72),
              0 0 0 8px  rgba(82,179,82,.16),
              0 0 0 18px rgba(82,179,82,.07);
  filter: brightness(1.07);
  animation: none;
  border-color: rgba(130,210,130,.7);
}
.hero-farmers-btn:hover::before {
  animation: farmersShimmerHover .65s ease forwards;
}
@keyframes farmersShimmerHover {
  0%   { left: -90%; opacity: 1; }
  100% { left: 160%; opacity: 0; }
}
.hero-farmers-btn:active { transform: translateY(-2px) scale(.97); transition: transform .1s ease; }

.farmers-new-tag {
  display: inline-block;
  background: #fbbf24;
  color: #1a1a1a;
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 50px;
  vertical-align: middle;
  margin-left: 6px;
  animation: newTagPop 1.4s ease-in-out infinite;
}
@keyframes newTagPop {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.15); }
}

/* ============================================================
   FARMERS PARTNERSHIP MISSION SECTION
============================================================ */
#farmers-mission {
  position: relative;
  overflow: hidden;
}
.farmers-mission-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #071207 0%, #0f2010 35%, #152e15 70%, #091509 100%);
}
.farmers-mission-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 45%, rgba(82,179,82,.08) 0%, transparent 55%),
              radial-gradient(circle at 82% 55%, rgba(251,191,36,.06) 0%, transparent 50%);
  pointer-events: none;
}
.farmers-mission-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: center;
  padding: 100px 0;
}

/* ── Video card ── */
.farmers-video-col { display: flex; flex-direction: column; }
.farmers-video-card {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 40px rgba(0,0,0,.5), 0 0 0 1px rgba(82,179,82,.2);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease;
  text-align: left;
}
.farmers-video-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 24px 64px rgba(0,0,0,.6), 0 0 0 2px rgba(82,179,82,.55);
}
.farmers-video-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  background: #0a1f0a;
}
.farmers-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  transition: opacity .35s ease, transform .45s ease;
}
.farmers-video-card:hover .farmers-video-thumb img {
  opacity: .88;
  transform: scale(1.04);
}
.farmers-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(0,0,0,.22);
  transition: background .3s ease;
}
.farmers-video-card:hover .farmers-play-overlay { background: rgba(0,0,0,.1); }
.farmers-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d8a2d, #52b352);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(45,138,45,.6), 0 0 0 0 rgba(82,179,82,.4);
  animation: farmersPlayPulse 2.2s ease-in-out infinite;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
.farmers-video-card:hover .farmers-play-btn {
  transform: scale(1.14);
  box-shadow: 0 14px 44px rgba(45,138,45,.75), 0 0 0 14px rgba(82,179,82,.14);
  animation: none;
}
@keyframes farmersPlayPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(45,138,45,.6), 0 0 0  0   rgba(82,179,82,.4); }
  50%       { box-shadow: 0 8px 32px rgba(45,138,45,.6), 0 0 0 18px rgba(82,179,82,0);  }
}
.farmers-play-btn svg { margin-left: 4px; }
.farmers-play-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.farmers-video-footer {
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(10,32,10,.9);
  border-top: 1px solid rgba(82,179,82,.18);
}
.farmers-video-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(82,179,82,.16);
  border: 1px solid rgba(82,179,82,.35);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #7dd87d;
  white-space: nowrap;
}
.farmers-video-title {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
}

/* ── Text column ── */
.farmers-text-col { display: flex; flex-direction: column; gap: 0; }
.farmers-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(82,179,82,.1);
  border: 1px solid rgba(82,179,82,.28);
  border-radius: 50px;
  padding: 5px 14px 5px 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #7dd87d;
  margin-bottom: 20px;
  align-self: flex-start;
}
.farmers-eyebrow-dot {
  width: 7px;
  height: 7px;
  background: #52b352;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
.farmers-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.14;
  margin-bottom: 0;
}
.farmers-heading-em {
  font-style: italic;
  color: #8de08d;
  display: block;
}
.farmers-desc-intro {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin: 22px 0 14px;
  padding-left: 16px;
  border-left: 3px solid #52b352;
}
.farmers-body {
  font-size: .97rem;
  color: rgba(255,255,255,.65);
  line-height: 1.9;
  margin-bottom: 14px;
}
.farmers-highlight {
  background: rgba(82,179,82,.07);
  border: 1px solid rgba(82,179,82,.2);
  border-left: 3px solid #52b352;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 16px 0 20px;
}
.farmers-highlight p {
  font-size: .97rem;
  color: rgba(255,255,255,.78);
  line-height: 1.85;
  margin: 0;
}
.farmers-highlight strong { color: #8de08d; font-weight: 700; }
.farmers-cta {
  background: linear-gradient(135deg, #2d8a2d, #52b352);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(45,138,45,.45);
  align-self: flex-start;
  margin-top: 8px;
  border: none;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease, filter .2s ease;
}
.farmers-cta:hover {
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 18px 44px rgba(45,138,45,.65);
  filter: brightness(1.06);
  background: linear-gradient(135deg, #237023, #3ea03e);
}

@media (max-width: 1024px) {
  .farmers-mission-inner { grid-template-columns: 1fr; gap: 44px; padding: 72px 0; }
}
@media (max-width: 768px) {
  .farmers-mission-inner { padding: 56px 0; }
}

/* ============================================================
   MOBILE ELITE EXPERIENCE
   Every rule below targets ≤ 768 px only.
   Desktop layout is completely untouched.
============================================================ */

/* Nav mobile styles now live in partials/nav.blade.php (global scope) */

/* ────────────────────────────────────────────────────────────
   HERO — full-bleed, bottom-anchored layout
──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  #hero {
    min-height: 100vh;      /* safe fallback */
    min-height: 100svh;     /* dynamic viewport on iOS */
    align-items: flex-end;
  }

  /* Deeper gradient toward bottom keeps text readable */
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(13,42,78,.40)  0%,
      rgba(13,42,78,.72) 48%,
      rgba(5,12,34,.97)  100%
    );
  }

  .hero-content {
    padding: 44px 0 0;
    max-width: 100%;
  }
  .hero-badge      { font-size: .7rem; padding: 5px 13px; margin-bottom: 16px; }
  .hero-headline   { font-size: clamp(2.1rem, 9.5vw, 3.2rem); line-height: 1.1; margin-bottom: 14px; }
  .hero-sub        { font-size: .96rem; line-height: 1.7; margin-bottom: 28px; }

  /* Full-width thumb-friendly stacked CTAs */
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 0;
  }
  .hero-donate-btn,
  .hero-watch-btn,
  .hero-farmers-btn {
    width: 100%;
    justify-content: center;
    padding: 17px 24px;
    font-size: 1rem;
    border-radius: 16px;
  }

  /* Stats: frosted-glass dock pinned to bottom edge */
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 28px -24px 0;
    padding: 18px 12px;
    background: rgba(0,0,0,.46);
    backdrop-filter: blur(18px) saturate(1.5);
    -webkit-backdrop-filter: blur(18px) saturate(1.5);
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .hero-stat {
    align-items: center;
    text-align: center;
    padding: 0 6px;
    border-right: 1px solid rgba(255,255,255,.09);
  }
  .hero-stat:last-child { border-right: none; }
  .hero-stat strong  { font-size: 1.42rem; }
  .hero-stat span    { font-size: .62rem; letter-spacing: .05em; }
  .hero-scroll { display: none; }

  /* Instant tactile press feedback on all buttons */
  .btn:active {
    transform: scale(.96) translateZ(0) !important;
    transition: transform .08s ease !important;
  }
}

/* ────────────────────────────────────────────────────────────
   FARMERS MISSION
──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .farmers-mission-inner { gap: 28px; }
  .farmers-heading       { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .farmers-cta           { width: 100%; justify-content: center; }
  .farmers-desc-intro    { font-size: .93rem; }
}

/* ────────────────────────────────────────────────────────────
   MISSION
──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  #mission { padding: 68px 0; }
  .mission-image-wrap img { height: 280px; }
  .pillar-tag { font-size: .78rem; padding: 6px 13px; }
}

/* ────────────────────────────────────────────────────────────
   DONATION HIGHLIGHT
──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  #donation-highlight { margin: 28px 20px; border-radius: 20px; padding: 36px 20px; }
}

/* ────────────────────────────────────────────────────────────
   IMPACT COUNTERS
──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  #impact { padding: 68px 0; }
  .counter-grid  { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .counter-item  { padding: 20px 12px; border-radius: 18px; }
  .counter-value { font-size: clamp(1.6rem, 6vw, 2.4rem); }
}

/* ────────────────────────────────────────────────────────────
   URGENCY
──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .urgency-content { padding: 68px 0 60px; gap: 32px; }
  .urgency-heading { font-size: clamp(1.8rem, 8.5vw, 2.6rem); }

  /* Enhanced glassmorphism on mobile */
  .urgency-action-card {
    border-radius: 20px;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.17);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
  }

  .urgency-trust-row      { justify-content: space-around; gap: 14px; flex-wrap: wrap; }
  .urgency-trust-item     { flex-direction: column; align-items: center; text-align: center; gap: 4px; }
}

/* ────────────────────────────────────────────────────────────
   DISASTER
──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  #disaster { padding: 68px 0; }
  .disaster-image-wrap img { height: 240px; }
  .needs-list { grid-template-columns: 1fr 1fr; gap: 8px; }
  .need-item  { padding: 10px 12px; font-size: .82rem; }
}

/* ────────────────────────────────────────────────────────────
   HOW YOU CAN HELP — horizontal snap carousel
──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  #help { padding: 68px 0; }
  .help-header { margin-bottom: 36px; }

  /* Turn the CSS grid into a horizontal snap-scroll row */
  .help-cards {
    display: flex !important;
    flex-direction: row;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 20px;
    gap: 16px;
    padding: 8px 20px 14px;
    margin: 0 -24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    will-change: scroll-position;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
  }
  .help-cards:active { cursor: grabbing; }
  .help-cards::-webkit-scrollbar { display: none; }

  .help-card {
    flex: 0 0 82vw;
    max-width: 320px;
    scroll-snap-align: start;
    opacity: .78;
    transition: opacity .35s ease, box-shadow .35s ease !important;
  }
  .help-card.snapped {
    opacity: 1;
    box-shadow: var(--shadow-md) !important;
  }

  /* Pill dots injected by JS */
  .help-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
  }
  .help-carousel-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gray-200);
    border: none; padding: 0;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .3s ease, width .3s ease, border-radius .3s ease;
  }
  .help-carousel-dot.active {
    background: var(--orange);
    width: 22px;
    border-radius: 4px;
  }
}

/* ────────────────────────────────────────────────────────────
   TESTIMONIALS
──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  #testimonials { padding: 68px 0; }
  .testimonial-carousel {
    scroll-padding: 0 20px;
    padding: 8px 20px 20px;
    margin: 0 -24px;
  }
  .testimonial-card { min-width: 82vw; max-width: 320px; padding: 28px 22px; }
}

/* ────────────────────────────────────────────────────────────
   DONATE CTA
──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  #donate-cta { padding: 80px 0; }
  .donate-options { gap: 8px; }
  .donate-amount  { padding: 11px 18px; font-size: .88rem; }
  .donate-cta-btns { flex-direction: column; align-items: stretch; gap: 12px; }
  .donate-hero-btn,
  .donate-monthly-btn {
    width: 100%;
    justify-content: center;
    border-radius: 16px;
  }
}

/* ────────────────────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  #footer { padding: 56px 0 0; }
  .footer-brand img { height: 44px; }
}

/* ────────────────────────────────────────────────────────────
   STICKY DONATE — iOS safe-area aware
──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  #stickyDonate {
    right: 14px;
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    font-size: .86rem;
    padding: 12px 18px;
  }
}

/* ────────────────────────────────────────────────────────────
   SCROLL REVEALS — snappier & hardware-accelerated on mobile
──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .reveal        { transform: translateY(24px) translateZ(0); }
  .reveal-left   { transform: translateX(-20px) translateZ(0); }
  .reveal-right  { transform: translateX(20px) translateZ(0); }
}

/* ────────────────────────────────────────────────────────────
   REDUCED MOTION — honour user system preference
──────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-donate-btn::before,
  .wwa-donate-btn::before,
  .hero-farmers-btn::before,
  .hero-badge::before,
  .urgency-pulse-dot,
  .farmers-eyebrow-dot,
  .hero-heart,
  .wwa-heart,
  .farmers-play-btn,
  .disaster-alert::before { animation: none !important; }
}

/* ────────────────────────────────────────────────────────────
   MOBILE FOOTER OVERHAUL — accordion + widget-collision fix
──────────────────────────────────────────────────────────── */

/* Desktop: button renders as a plain non-interactive heading */
.footer-accordion-btn {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: default;
  padding: 0;
  display: block;
  width: 100%;
  text-align: left;
  pointer-events: none;
}
.footer-accordion-icon { display: none; }

@media (max-width: 768px) {
  /* — Interactive accordion trigger ——————————————————————— */
  .footer-accordion-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
  }

  .footer-accordion-icon {
    display: block;
    flex-shrink: 0;
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    will-change: transform;
  }

  .footer-nav-accordion.open .footer-accordion-icon {
    transform: rotate(180deg);
  }

  /* — Collapse/expand content —————————————————————————— */
  .footer-accordion-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .35s cubic-bezier(.4,0,.2,1),
                opacity .3s ease;
  }

  .footer-nav-accordion.open .footer-accordion-content {
    max-height: 400px;
    opacity: 1;
  }

  /* — Link spacing inside accordion ——————————————————— */
  .footer-accordion-content li,
  .footer-accordion-content > a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }

  .footer-accordion-content li:last-child,
  .footer-accordion-content > a:last-child {
    border-bottom: none;
  }

  /* — Social icon touch targets (44×44 min) ————————————— */
  .footer-social a,
  .social-links a {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* — Extra padding so sticky elements don't obscure links */
  #footer { padding-bottom: 140px; }

  /* — Push sticky donate above chat bubble (~60px tall) ——— */
  #stickyDonate {
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  /* — Scroll-to-top: lower-left, clear of chat/donate —— */
  #scrollToTop {
    left: 14px;
    right: auto;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  }
}
