/* ================================================================
   DESIGN TOKENS — AniGrace Foundation
================================================================ */
:root {
  --purple:       #6B21C8;
  --purple-dark:  #4C1799;
  --purple-mid:   #7C3AED;
  --purple-light: #F3EEFF;

  --pink:         #D91A6B;
  --pink-dark:    #A8135A;
  --pink-mid:     #EC4899;
  --pink-light:   #FEE2F0;

  --gold:         #F5A020;
  --gold-dark:    #C47D10;
  --gold-light:   #FFF3DC;

  --white:    #ffffff;
  --gray-50:  #fafafa;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-300: #d4d4d8;
  --gray-400: #a1a1aa;
  --gray-500: #71717a;
  --gray-600: #52525b;
  --gray-700: #3f3f46;
  --gray-800: #27272a;
  --gray-900: #18181b;

  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  --section-py: clamp(4.5rem, 9vw, 7.5rem);
  --container:  1200px;

  --radius-sm: 0.375rem;
  --radius:    0.75rem;
  --radius-lg: 1.25rem;
  --radius-xl: 2rem;

  --shadow-sm:     0 1px 3px rgba(107,33,200,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:        0 4px 16px rgba(107,33,200,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:     0 16px 40px rgba(107,33,200,.16), 0 6px 16px rgba(0,0,0,.08);
  --shadow-pink:   0 8px 28px rgba(217,26,107,.35);
  --shadow-purple: 0 8px 28px rgba(107,33,200,.38);

  --grad-brand: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
  --grad-hero:  linear-gradient(135deg, rgba(76,23,153,.93) 0%, rgba(45,15,80,.86) 45%, rgba(169,13,90,.68) 100%);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur:  0.3s;
}

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

.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--purple); color: var(--white);
  padding: .5rem 1rem; border-radius: var(--radius-sm);
  font-weight: 600; z-index: 9999; transition: top .2s;
}
.skip-link:focus { top: 1rem; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ================================================================
   PRELOADER
================================================================ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity .6s var(--ease), visibility .6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-inner { text-align: center; }
.preloader-logo  { height: 160px; width: auto; margin: 0 auto 2rem; animation: preloader-pulse 1.6s ease-in-out infinite; }
@keyframes preloader-pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.04);opacity:.85} }

.preloader-bar  { width: 200px; height: 4px; background: var(--gray-100); border-radius: 999px; overflow: hidden; margin: 0 auto 1rem; }
.preloader-fill { height: 100%; background: var(--grad-brand); border-radius: 999px; animation: preloader-load 1.8s var(--ease) forwards; }
@keyframes preloader-load { from{width:0} to{width:100%} }

.preloader-motto { font-family: var(--font-display); font-style: italic; color: var(--gray-400); font-size: .95rem; }

/* ================================================================
   SCROLL PROGRESS BAR
================================================================ */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 1001;
  height: 3px; width: 0%;
  background: var(--grad-brand);
  transition: width .1s linear;
}

/* ================================================================
   TYPE HELPERS
================================================================ */
.section-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--purple); margin-bottom: .75rem;
}
.section-label--gold { color: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 700; line-height: 1.15;
  color: var(--gray-900); margin-bottom: 1rem;
}
.section-title--white { color: var(--white); }

.section-subtitle      { font-size: 1.05rem; color: var(--gray-500); max-width: 620px; margin: 0 auto; line-height: 1.7; }
.section-subtitle--light { color: rgba(255,255,255,.72); }
.section-body          { font-size: 1.015rem; color: var(--gray-600); margin-bottom: 1rem; line-height: 1.78; }
.section-header        { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }

.inline-link { color: var(--purple); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; transition: color var(--dur); }
.inline-link:hover { color: var(--pink); }

/* ================================================================
   LAYOUT
================================================================ */
.container   { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); }
.section     { padding: var(--section-py) 0; }
.section-alt { background: var(--gray-50); }

/* ================================================================
   BUTTONS
================================================================ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.5rem; border-radius: var(--radius);
  font-family: var(--font-sans); font-size: .9375rem; font-weight: 600;
  cursor: pointer; border: 2px solid transparent;
  transition: all var(--dur) var(--ease);
  text-decoration: none; white-space: nowrap; position: relative; overflow: hidden;
}
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.btn svg, .btn i { width: 1.1em; height: 1.1em; flex-shrink: 0; }

.btn-primary { background: var(--grad-brand); color: var(--white); border-color: transparent; }
.btn-primary:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: var(--shadow-pink); }

.btn-gold { background: var(--gold); color: var(--gray-900); font-weight: 700; border-color: transparent; }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,160,32,.4); }

.btn-outline { background: transparent; border-color: var(--purple); color: var(--purple); }
.btn-outline:hover { background: var(--purple-light); transform: translateY(-2px); }

.btn-outline-white { background: transparent; border-color: rgba(255,255,255,.65); color: var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,.13); border-color: var(--white); }

.btn-lg    { padding: 1rem 2.25rem; font-size: 1.025rem; border-radius: var(--radius-lg); }
.btn-sm    { padding: .5rem 1rem; font-size: .875rem; }
.btn-block { width: 100%; justify-content: center; }

/* Ripple */
.ripple .ripple-wave {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.35); transform: scale(0);
  animation: ripple-anim .55s linear;
  pointer-events: none;
}
@keyframes ripple-anim { to { transform: scale(4); opacity: 0; } }

/* ================================================================
   NAVBAR
================================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 0 var(--gray-200);
  transition: box-shadow var(--dur) var(--ease);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(107,33,200,.12); }

.nav-container {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  height: 100px; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
}

.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }

.logo-img {
  height: 90px;
  width: auto; display: block; object-fit: contain;
  transition: transform var(--dur) var(--ease), opacity var(--dur);
}
.logo-img:hover { transform: scale(1.03); opacity: .92; }
.logo-img--footer { height: 130px; }

.footer-logo-link { display: inline-flex; margin-bottom: 1.25rem; }

.nav-links  { display: flex; align-items: center; gap: .2rem; }
.nav-link   { padding: .5rem .85rem; border-radius: var(--radius-sm); font-size: .9rem; font-weight: 500; color: var(--gray-600); transition: all var(--dur); }
.nav-link:hover, .nav-link.active { color: var(--purple); background: var(--purple-light); }

.nav-cta {
  background: var(--grad-brand) !important;
  color: var(--white) !important; font-weight: 700; margin-left: .5rem; border-radius: var(--radius);
}
.nav-cta:hover { filter: brightness(1.1); transform: translateY(-1px); box-shadow: var(--shadow-pink); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .5rem; border-radius: var(--radius-sm); }
.bar { display: block; width: 24px; height: 2px; background: var(--gray-800); border-radius: 2px; transition: all var(--dur) var(--ease); }
.hamburger[aria-expanded="true"] .bar:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] .bar:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ================================================================
   WAVE DIVIDERS
================================================================ */
.wave-divider { line-height: 0; display: block; }
.wave-divider svg { width: 100%; height: 80px; display: block; }
.wave-divider--hero   { margin-top: -4px; }
.wave-divider--up     { transform: rotate(180deg); margin-bottom: -4px; }
.wave-divider--white  { margin-bottom: -4px; }

/* ================================================================
   HERO
================================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 11rem 1rem 6rem; overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?w=1600&auto=format&fit=crop&q=80') center/cover no-repeat;
}
.hero-overlay { position: absolute; inset: 0; background: var(--grad-hero); }
.hero-orbs {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 75%, rgba(245,160,32,.16) 0%, transparent 45%),
    radial-gradient(circle at 85% 25%, rgba(217,26,107,.2) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(107,33,200,.12) 0%, transparent 60%);
}

.hero-shape {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  animation: float-shape 8s ease-in-out infinite;
}
.hero-shape--1 { width: 300px; height: 300px; top: 10%; left: -80px; animation-delay: 0s; }
.hero-shape--2 { width: 200px; height: 200px; bottom: 15%; right: -60px; animation-delay: 2.5s; }
.hero-shape--3 { width: 150px; height: 150px; top: 55%; left: 5%; animation-delay: 5s; }
@keyframes float-shape { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-20px) rotate(8deg)} }

.hero-content { position: relative; z-index: 1; max-width: 840px; margin: 0 auto; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(245,160,32,.15); border: 1px solid rgba(245,160,32,.45);
  color: var(--gold); font-size: .78rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .45rem 1.1rem; border-radius: 999px; margin-bottom: 1.5rem;
  backdrop-filter: blur(6px);
}
.badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.45;transform:scale(1.5)} }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 800; line-height: 1.08;
  color: var(--white); margin-bottom: 1.25rem;
}
.hero-title-accent { display: block; color: var(--gold); }

.hero-subtitle { font-size: clamp(1rem, 2.5vw, 1.2rem); color: rgba(255,255,255,.82); max-width: 600px; margin: 0 auto .75rem; line-height: 1.75; }

.hero-motto { font-family: var(--font-display); font-style: italic; font-size: clamp(.9rem, 2vw, 1.1rem); color: var(--gold); font-weight: 600; letter-spacing: .08em; margin-bottom: 2.25rem; }

.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

.hero-stats {
  display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 0;
  background: rgba(255,255,255,.08); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-xl);
  padding: 1.75rem 2.5rem; max-width: 560px; margin: 0 auto;
}
.hero-stat  { text-align: center; padding: 0 2rem; flex: 1; min-width: 100px; }
.hero-stat strong { display: block; font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 800; color: var(--gold); line-height: 1; font-feature-settings: "tnum"; }
.hero-stat span   { font-size: .72rem; color: rgba(255,255,255,.72); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }
.hero-stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,.2); flex-shrink: 0; }

.scroll-down { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 1; }
.scroll-down-icon { display: block; width: 28px; height: 44px; border: 2px solid rgba(255,255,255,.4); border-radius: 14px; position: relative; }
.scroll-down-icon::after {
  content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: rgba(255,255,255,.65); border-radius: 2px; animation: scroll-bounce 2s infinite;
}
@keyframes scroll-bounce { 0%,100%{top:6px;opacity:1} 80%{top:22px;opacity:0} }

/* ================================================================
   FOUNDER STRIP
================================================================ */
.founder-strip {
  background: linear-gradient(90deg, var(--purple-light) 0%, var(--pink-light) 100%);
  border-top: 1px solid rgba(107,33,200,.1); border-bottom: 1px solid rgba(217,26,107,.1); padding: 2.75rem 0;
}
.founder-inner { display: flex; align-items: flex-start; gap: 1rem; max-width: 800px; margin: 0 auto; }
.founder-quote-mark { font-size: 5rem; font-family: Georgia, serif; color: var(--purple); opacity: .22; line-height: .7; flex-shrink: 0; margin-top: .5rem; }
.founder-inner p { font-size: 1.08rem; color: var(--gray-700); line-height: 1.8; font-style: italic; flex: 1; }
.founder-sig { display: block; margin-top: .75rem; font-size: .875rem; font-weight: 700; color: var(--purple); font-style: normal; }

/* ================================================================
   ABOUT
================================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }

.about-img-wrapper { position: relative; border-radius: var(--radius-xl); }
.about-img { width: 100%; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; }

.about-badge-card {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--grad-brand); color: var(--white);
  padding: 1.1rem 1.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-pink); text-align: center; font-weight: 800;
}
.badge-number { display: block; font-size: 2.1rem; line-height: 1; }
.badge-label  { font-size: .7rem; text-transform: uppercase; letter-spacing: .07em; opacity: .85; }

.about-flag-pills { display: flex; gap: .5rem; flex-wrap: wrap; position: absolute; top: 1rem; left: 1rem; }
.flag-pill { background: rgba(255,255,255,.96); border: 1px solid rgba(107,33,200,.2); color: var(--gray-700); font-size: .78rem; font-weight: 600; padding: .3rem .8rem; border-radius: 999px; box-shadow: var(--shadow-sm); backdrop-filter: blur(4px); }
.flag-pill--pink { border-color: rgba(217,26,107,.3); }
.flag-pill--gold { border-color: rgba(245,160,32,.4); }

.values-list { display: flex; flex-direction: column; gap: 1.1rem; margin: 1.75rem 0 2rem; }
.value-item  { display: flex; gap: 1rem; align-items: flex-start; }
.value-icon  { flex-shrink: 0; width: 2.6rem; height: 2.6rem; background: var(--purple-light); color: var(--purple); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }
.value-icon--pink { background: var(--pink-light); color: var(--pink); }
.value-icon--gold { background: var(--gold-light); color: var(--gold-dark); }
.value-icon i { width: 1.2rem; height: 1.2rem; }
.value-item strong { display: block; font-size: .95rem; color: var(--gray-900); margin-bottom: .2rem; }
.value-item p      { font-size: .875rem; color: var(--gray-500); margin: 0; }

/* ================================================================
   PROGRAMS
================================================================ */
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.program-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur);
  position: relative; overflow: hidden;
}
.program-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--grad-brand); opacity: 0;
  transition: opacity var(--dur); z-index: 0; border-radius: var(--radius-lg);
}
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.program-card:hover::before { opacity: .04; }
.program-card > * { position: relative; z-index: 1; }

.program-icon { width: 3.4rem; height: 3.4rem; background: var(--purple-light); color: var(--purple); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; transition: all var(--dur); }
.program-icon i { width: 1.5rem; height: 1.5rem; }
.program-card:hover .program-icon { background: var(--purple); color: var(--white); }
.program-icon--pink   { background: var(--pink-light); color: var(--pink); }
.program-icon--gold   { background: var(--gold-light); color: var(--gold-dark); }
.program-icon--purple { background: var(--purple-light); color: var(--purple-mid); }
.program-card:hover .program-icon--pink   { background: var(--pink); color: var(--white); }
.program-card:hover .program-icon--gold   { background: var(--gold-dark); color: var(--white); }
.program-card:hover .program-icon--purple { background: var(--purple); color: var(--white); }

.program-title { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); margin-bottom: .7rem; }
.program-desc  { font-size: .9rem; color: var(--gray-600); line-height: 1.72; margin-bottom: 1rem; }
.program-highlights { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.program-highlights li { font-size: .875rem; color: var(--gray-700); padding-left: 1.25rem; position: relative; }
.program-highlights li::before { content: ''; position: absolute; left: 0; top: .55em; width: .42rem; height: .42rem; background: var(--gold); border-radius: 50%; }

/* ================================================================
   IMPACT BAND
================================================================ */
.impact-band {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 50%, var(--pink-dark) 100%);
  padding: var(--section-py) 0; position: relative; overflow: hidden;
}
.impact-band::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(245,160,32,.12) 0%, transparent 40%),
    radial-gradient(circle at 90% 50%, rgba(255,255,255,.06) 0%, transparent 40%);
}

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

.impact-item {
  text-align: center; padding: 2.25rem 1rem; border-radius: var(--radius-lg);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(6px); transition: background var(--dur), transform var(--dur) var(--ease);
}
.impact-item:hover { background: rgba(255,255,255,.14); transform: translateY(-4px); }
.impact-num   { display: block; font-size: clamp(2.8rem, 5vw, 3.8rem); font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: .5rem; font-feature-settings: "tnum"; }
.impact-label { font-size: .82rem; color: rgba(255,255,255,.8); font-weight: 500; text-transform: uppercase; letter-spacing: .07em; }

/* Fundraise bar */
.fundraise-bar {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-xl); padding: 2rem 2.5rem;
  backdrop-filter: blur(6px); position: relative;
}
.fundraise-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; flex-wrap: wrap; gap: .5rem; }
.fundraise-label  { font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.9); text-transform: uppercase; letter-spacing: .07em; }
.fundraise-amount { font-size: .95rem; color: rgba(255,255,255,.75); }
.fundraise-amount strong { color: var(--gold); font-size: 1.1rem; }

.fundraise-track { height: 12px; background: rgba(255,255,255,.15); border-radius: 999px; overflow: hidden; margin-bottom: .75rem; }
.fundraise-fill  { height: 100%; background: linear-gradient(90deg, var(--gold) 0%, var(--pink) 100%); border-radius: 999px; width: 0%; transition: width 1.8s var(--ease); }

.fundraise-note { font-size: .85rem; color: rgba(255,255,255,.6); text-align: center; }

/* ================================================================
   STORIES
================================================================ */
.stories-carousel { overflow: hidden; }
.stories-track { display: flex; gap: 1.5rem; transition: transform .5s var(--ease); }

.story-card { flex: 0 0 calc(33.333% - 1rem); background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.story-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.story-img-wrapper { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.story-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.story-card:hover .story-img-wrapper img { transform: scale(1.06); }

.story-tag { position: absolute; top: 1rem; left: 1rem; background: var(--purple); color: var(--white); font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .3rem .75rem; border-radius: 999px; }
.story-tag--pink { background: var(--pink); }
.story-tag--gold { background: var(--gold-dark); }

.story-body { padding: 1.6rem; }
.story-name { font-size: 1.05rem; font-weight: 700; color: var(--gray-900); margin-bottom: .35rem; }
.story-location { display: flex; align-items: center; gap: .3rem; font-size: .8rem; color: var(--gray-400); margin-bottom: .75rem; }
.story-location i { width: .9rem; height: .9rem; }
.story-text { font-size: .9rem; color: var(--gray-600); line-height: 1.68; }

.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2.25rem; }
.carousel-btn { width: 2.75rem; height: 2.75rem; border-radius: 50%; border: 2px solid var(--gray-200); background: var(--white); color: var(--gray-700); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all var(--dur); }
.carousel-btn:hover { border-color: var(--purple); color: var(--purple); box-shadow: var(--shadow); }
.carousel-btn i { width: 1.2rem; height: 1.2rem; }
.carousel-dots { display: flex; gap: .5rem; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-300); border: none; cursor: pointer; transition: all var(--dur); padding: 0; }
.dot.active { background: var(--purple); width: 24px; border-radius: 4px; }

/* ================================================================
   PARTNERS
================================================================ */
.partners-section { padding-bottom: clamp(3rem, 6vw, 5rem); }
.partners-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 2rem; }

.partner-item {
  display: flex; align-items: center; gap: .75rem;
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm); font-weight: 600; font-size: .9rem; color: var(--gray-700);
  transition: all var(--dur) var(--ease);
}
.partner-item i { width: 1.25rem; height: 1.25rem; color: var(--purple); flex-shrink: 0; }
.partner-item:hover { border-color: var(--purple-light); box-shadow: var(--shadow); transform: translateY(-3px); color: var(--purple); }
.partner-item:last-child { border-color: var(--purple); border-style: dashed; color: var(--purple); }

.partners-cta-note { text-align: center; font-size: .9rem; color: var(--gray-500); }

/* ================================================================
   SUPPORT / HELP
================================================================ */
.help-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; align-items: start; }

.help-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.help-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.help-card--featured { border-color: var(--purple); box-shadow: 0 0 0 1px var(--purple), var(--shadow); }

.help-card-icon { width: 3rem; height: 3rem; background: var(--purple-light); color: var(--purple); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.help-card-icon i { width: 1.4rem; height: 1.4rem; }
.help-card-icon--pink   { background: var(--pink-light);   color: var(--pink); }
.help-card-icon--gold   { background: var(--gold-light);   color: var(--gold-dark); }
.help-card-icon--purple { background: var(--purple-light); color: var(--purple-mid); }

.help-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); margin-bottom: .6rem; }
.help-card p  { font-size: .925rem; color: var(--gray-600); margin-bottom: 1.25rem; line-height: 1.65; }

.donation-amounts { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.amount-btn { flex: 1 0 calc(50% - .25rem); padding: .65rem .5rem; border: 2px solid var(--gray-200); border-radius: var(--radius); background: var(--white); color: var(--gray-700); font-weight: 600; font-size: .9rem; cursor: pointer; transition: all var(--dur); font-family: var(--font-sans); }
.amount-btn:hover, .amount-btn.active { border-color: var(--purple); background: var(--purple-light); color: var(--purple); }

.custom-amount-wrapper { margin-bottom: 1rem; }
.custom-amount-wrapper input { width: 100%; padding: .65rem .9rem; border: 2px solid var(--gray-200); border-radius: var(--radius); font-size: .9rem; font-family: var(--font-sans); transition: border-color var(--dur); }
.custom-amount-wrapper input:focus { outline: none; border-color: var(--purple); }

.help-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; }
.help-list li { font-size: .9rem; color: var(--gray-600); padding-left: 1.4rem; position: relative; }
.help-list li::before { content: '✓'; position: absolute; left: 0; color: var(--purple); font-weight: 700; }

.social-share { display: flex; flex-direction: column; gap: .5rem; }
.share-btn { display: flex; align-items: center; gap: .75rem; padding: .65rem 1rem; border-radius: var(--radius); font-size: .875rem; font-weight: 600; transition: all var(--dur); }
.share-btn svg { width: 1.1rem; height: 1.1rem; flex-shrink: 0; }
.share-btn--whatsapp { background: #e8f8ed; color: #25d366; }
.share-btn--whatsapp:hover { background: #25d366; color: var(--white); }
.share-btn--twitter  { background: var(--gray-100); color: var(--gray-800); }
.share-btn--twitter:hover  { background: var(--gray-800); color: var(--white); }

/* ================================================================
   EVENTS
================================================================ */
.events-list { display: flex; flex-direction: column; gap: 1.5rem; max-width: 820px; margin: 0 auto; }
.event-item { display: flex; gap: 1.5rem; align-items: flex-start; background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: 1.6rem; box-shadow: var(--shadow-sm); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur); }
.event-item:hover { transform: translateX(6px); box-shadow: var(--shadow); border-color: var(--purple-light); }
.event-date { flex-shrink: 0; width: 4.25rem; background: var(--purple-light); color: var(--purple); border-radius: var(--radius); text-align: center; padding: .7rem .5rem; }
.event-date--pink { background: var(--pink-light); color: var(--pink); }
.event-date--gold { background: var(--gold-light); color: var(--gold-dark); }
.event-day   { display: block; font-size: 1.9rem; font-weight: 800; line-height: 1; }
.event-month { display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.event-body  { flex: 1; }
.event-title { font-size: 1.025rem; font-weight: 700; color: var(--gray-900); margin-bottom: .35rem; }
.event-meta  { display: flex; align-items: center; flex-wrap: wrap; gap: .35rem; font-size: .8rem; color: var(--gray-400); margin-bottom: .5rem; }
.event-meta i { width: .85rem; height: .85rem; }
.event-body p { font-size: .9rem; color: var(--gray-600); margin: 0; }

/* ================================================================
   TESTIMONIALS
================================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); position: relative; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.testimonial-card::before { content: '\201C'; position: absolute; top: 1rem; left: 1.5rem; font-size: 5.5rem; font-family: Georgia, serif; color: var(--purple-light); line-height: 1; pointer-events: none; }
.testimonial-text  { font-size: .975rem; color: var(--gray-700); line-height: 1.78; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar { width: 2.6rem; height: 2.6rem; border-radius: 50%; background: var(--grad-brand); color: var(--white); font-weight: 700; font-size: 1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.author-avatar--pink { background: var(--pink); }
.author-avatar--gold { background: var(--gold-dark); }
.testimonial-author strong { display: block; font-size: .9rem; color: var(--gray-900); }
.testimonial-author span   { font-size: .8rem; color: var(--gray-400); }

/* ================================================================
   NEWSLETTER
================================================================ */
.newsletter-section {
  background: var(--grad-brand); padding: clamp(3.5rem, 7vw, 6rem) 0; position: relative; overflow: hidden;
}
.newsletter-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 0% 50%, rgba(255,255,255,.08) 0%, transparent 50%),
    radial-gradient(circle at 100% 50%, rgba(0,0,0,.06) 0%, transparent 50%);
}
.newsletter-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.newsletter-text .section-label--gold { margin-bottom: .5rem; }
.newsletter-text .section-title--white { margin-bottom: .75rem; }
.newsletter-text p { color: rgba(255,255,255,.8); font-size: 1rem; }

.newsletter-field { display: flex; gap: .75rem; }
.newsletter-field input {
  flex: 1; padding: .85rem 1.25rem; border-radius: var(--radius-lg);
  border: 2px solid rgba(255,255,255,.3); background: rgba(255,255,255,.12);
  color: var(--white); font-family: var(--font-sans); font-size: .95rem;
  backdrop-filter: blur(8px); transition: border-color var(--dur);
}
.newsletter-field input::placeholder { color: rgba(255,255,255,.55); }
.newsletter-field input:focus { outline: none; border-color: var(--gold); }

.newsletter-success {
  display: flex; align-items: center; gap: .5rem;
  color: var(--gold); font-weight: 600; font-size: .95rem; margin-top: .75rem;
}
.newsletter-success i { width: 1.1rem; height: 1.1rem; }

/* ================================================================
   CONTACT
================================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { width: 2.6rem; height: 2.6rem; background: var(--purple-light); color: var(--purple); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon--pink { background: var(--pink-light); color: var(--pink); }
.contact-icon--gold { background: var(--gold-light); color: var(--gold-dark); }
.contact-icon i { width: 1.1rem; height: 1.1rem; }
.contact-item strong { display: block; font-size: .78rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: .09em; margin-bottom: .2rem; }
.contact-item a, .contact-item address { font-size: .95rem; color: var(--gray-800); font-style: normal; line-height: 1.75; }
.contact-item a:hover { color: var(--purple); text-decoration: underline; }
.contact-flags { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1.5rem; }

.contact-form-wrapper { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--shadow-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-size: .875rem; font-weight: 600; color: var(--gray-700); }
.form-group label span { color: var(--pink); }
.form-group input, .form-group textarea, .form-group select {
  padding: .78rem 1rem; border: 2px solid var(--gray-200); border-radius: var(--radius);
  font-family: var(--font-sans); font-size: .9375rem; color: var(--gray-800); background: var(--white);
  transition: border-color var(--dur), box-shadow var(--dur); width: 100%;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(107,33,200,.1); }
.form-group input.error, .form-group textarea.error { border-color: var(--pink); }
.form-group textarea { resize: vertical; }
.form-group select { appearance: none; cursor: pointer; }
.field-error { font-size: .8rem; color: var(--pink); min-height: 1em; }
.form-success { display: flex; align-items: center; gap: .6rem; background: var(--purple-light); color: var(--purple-dark); font-weight: 600; padding: 1rem 1.25rem; border-radius: var(--radius); margin-top: 1rem; }
.form-success i { width: 1.2rem; height: 1.2rem; }

/* ================================================================
   FOOTER
================================================================ */
.footer { background: var(--gray-900); color: rgba(255,255,255,.7); padding: clamp(3.5rem, 7vw, 6rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08); }

.footer-brand p { font-size: .88rem; line-height: 1.75; color: rgba(255,255,255,.55); max-width: 320px; }
.footer-motto-text { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: var(--gold); margin-bottom: .85rem; }

.footer-social { display: flex; gap: .75rem; margin-top: 1.5rem; }
.footer-social a { width: 2.6rem; height: 2.6rem; background: rgba(255,255,255,.07); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.65); transition: all var(--dur); }
.footer-social a svg, .footer-social a i { width: 1.1rem; height: 1.1rem; }
.footer-social a:hover { background: var(--grad-brand); color: var(--white); transform: translateY(-2px); }

.footer-links h3, .footer-contact h3 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--white); margin-bottom: 1.25rem; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-links a  { font-size: .9rem; color: rgba(255,255,255,.55); transition: color var(--dur); }
.footer-links a:hover { color: var(--gold); }

.footer-contact address { font-style: normal; display: flex; flex-direction: column; gap: .8rem; }
.footer-contact p { display: flex; align-items: flex-start; gap: .5rem; font-size: .88rem; color: rgba(255,255,255,.55); }
.footer-contact i { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: .15rem; color: var(--gold); }
.footer-contact a { color: rgba(255,255,255,.55); transition: color var(--dur); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; font-size: .82rem; color: rgba(255,255,255,.35); }
.footer-tagline { font-style: italic; color: var(--gold); opacity: .7; }

/* ================================================================
   MODAL
================================================================ */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.65); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 1rem; animation: modal-fade-in .25s var(--ease); }
.modal-overlay[hidden] { display: none; }
@keyframes modal-fade-in { from{opacity:0} to{opacity:1} }

.modal { background: var(--white); border-radius: var(--radius-xl); padding: 2.5rem; max-width: 440px; width: 100%; position: relative; text-align: center; animation: modal-slide-up .3s var(--ease); }
@keyframes modal-slide-up { from{transform:translateY(24px);opacity:0} to{transform:none;opacity:1} }

.modal-close { position: absolute; top: 1rem; right: 1rem; background: var(--gray-100); border: none; border-radius: 50%; width: 2.25rem; height: 2.25rem; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--gray-600); transition: all var(--dur); }
.modal-close:hover { background: var(--gray-200); color: var(--gray-900); }
.modal-close i { width: 1rem; height: 1rem; }

.modal-icon { width: 4.5rem; height: 4.5rem; background: var(--pink-light); color: var(--pink); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.modal-icon i { width: 2rem; height: 2rem; }
.modal-title  { font-family: var(--font-display); font-size: 1.7rem; color: var(--gray-900); margin-bottom: .75rem; }
.modal p      { font-size: .95rem; color: var(--gray-600); margin-bottom: .75rem; }
.modal-amount { font-size: 1.35rem; font-weight: 800; color: var(--purple); }
.modal-note   { font-size: .8rem; color: var(--gray-400); margin-top: 1rem; margin-bottom: 0; }
.modal-payment-options { display: flex; flex-direction: column; gap: .75rem; margin-top: 1.5rem; }

/* ================================================================
   MOBILE STICKY DONATE BAR
================================================================ */
.sticky-donate {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--white); border-top: 1px solid var(--gray-200);
  padding: .75rem 1.25rem; align-items: center; justify-content: space-between;
  gap: 1rem; box-shadow: 0 -4px 20px rgba(107,33,200,.12);
}
.sticky-donate span { font-weight: 600; font-size: .9rem; color: var(--gray-700); }

/* ================================================================
   SCROLL TO TOP WITH PROGRESS RING
================================================================ */
.scroll-top-btn {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 3.25rem; height: 3.25rem;
  background: var(--white); border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--shadow-lg); transition: all var(--dur) var(--ease); z-index: 500;
}
.scroll-top-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-purple); }
.scroll-top-btn[hidden] { display: none; }
.scroll-top-btn i { width: 1.2rem; height: 1.2rem; color: var(--purple); position: absolute; }

.progress-ring { width: 100%; height: 100%; transform: rotate(-90deg); }
.progress-ring-track { fill: none; stroke: var(--gray-100); stroke-width: 3; }
.progress-ring-fill  { fill: none; stroke: url(#ringGrad); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 113; stroke-dashoffset: 113; transition: stroke-dashoffset .2s linear; }

/* ================================================================
   SCROLL ANIMATIONS
================================================================ */
.reveal-up, .reveal-left, .reveal-right { opacity: 0; transition: opacity .75s var(--ease), transform .75s var(--ease); transition-delay: var(--delay, 0s); }
.reveal-up    { transform: translateY(36px); }
.reveal-left  { transform: translateX(-44px); }
.reveal-right { transform: translateX(44px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

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

/* Gradient defs for progress ring */
svg defs { position: absolute; }

/* ================================================================
   SCROLL ANCHOR OFFSET — prevents fixed navbar hiding headings
================================================================ */
section[id], div[id] {
  scroll-margin-top: 110px;
}

/* ================================================================
   FAQ ACCORDION
================================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
  margin-bottom: 2.5rem;
}
.faq-col { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item:first-child { border-top: 1px solid var(--gray-200); }

.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: 100%; padding: 1.2rem 0;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-sans); font-size: .975rem; font-weight: 600;
  color: var(--gray-800); text-align: left;
  transition: color var(--dur);
}
.faq-question:hover { color: var(--purple); }
.faq-question[aria-expanded="true"] { color: var(--purple); }
.faq-question i {
  width: 1.1rem; height: 1.1rem; flex-shrink: 0; color: var(--gray-400);
  transition: transform var(--dur) var(--ease), color var(--dur);
}
.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg); color: var(--purple);
}

.faq-answer {
  padding-bottom: 1.25rem;
  animation: faq-open .25s var(--ease);
}
.faq-answer[hidden] { display: none; }
.faq-answer p { font-size: .925rem; color: var(--gray-600); line-height: 1.75; }
@keyframes faq-open { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

.faq-more { text-align: center; font-size: .95rem; color: var(--gray-500); }

/* ================================================================
   WHATSAPP FLOATING BUTTON
================================================================ */
.whatsapp-float {
  position: fixed; bottom: 5.5rem; right: 2rem; z-index: 600;
  width: 3.4rem; height: 3.4rem;
  background: #25d366; color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.55);
}
.whatsapp-float svg { width: 1.6rem; height: 1.6rem; }

.whatsapp-tooltip {
  position: absolute; right: 110%; top: 50%; transform: translateY(-50%);
  background: var(--gray-900); color: var(--white);
  font-size: .78rem; font-weight: 600; white-space: nowrap;
  padding: .35rem .75rem; border-radius: var(--radius-sm);
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur);
}
.whatsapp-tooltip::after {
  content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 5px solid transparent; border-left-color: var(--gray-900);
}
.whatsapp-float:hover .whatsapp-tooltip,
.whatsapp-float:focus .whatsapp-tooltip { opacity: 1; }

/* On mobile push above sticky bar */
@media (max-width: 768px) {
  .whatsapp-float { bottom: 5rem; right: 1rem; }
}

/* ================================================================
   COOKIE CONSENT BANNER
================================================================ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1500;
  background: var(--gray-900); color: rgba(255,255,255,.88);
  padding: 1.1rem clamp(1rem, 4vw, 2rem);
  border-top: 2px solid var(--purple);
  animation: cookie-slide-up .4s var(--ease);
}
.cookie-banner[hidden] { display: none; }
@keyframes cookie-slide-up { from { transform: translateY(100%); } to { transform: none; } }

.cookie-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}

.cookie-text {
  display: flex; align-items: center; gap: .75rem; flex: 1; min-width: 200px;
}
.cookie-text i { width: 1.3rem; height: 1.3rem; color: var(--gold); flex-shrink: 0; }
.cookie-text p  { font-size: .875rem; margin: 0; }

.cookie-actions { display: flex; gap: .75rem; flex-shrink: 0; }
.cookie-actions .btn-outline {
  border-color: rgba(255,255,255,.3); color: rgba(255,255,255,.75);
}
.cookie-actions .btn-outline:hover {
  background: rgba(255,255,255,.08);
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .footer-brand     { grid-column: 1 / -1; }
  .about-grid       { grid-template-columns: 1fr; }
  .about-visual     { max-width: 540px; margin: 0 auto; }
  .about-badge-card { right: 1rem; }
  .programs-grid    { grid-template-columns: 1fr 1fr; }
  .impact-grid      { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 2rem; }
  .partners-strip   { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; gap: 0; }
  .faq-col:first-child .faq-item:first-child { border-top: 1px solid var(--gray-200); }
  .faq-col + .faq-col .faq-item:first-child { border-top: none; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 100px; left: 0; right: 0;
    flex-direction: column; background: var(--white);
    padding: 1rem 1.5rem 1.5rem; gap: .25rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%); opacity: 0; pointer-events: none;
    transition: all var(--dur) var(--ease);
    border-bottom: 1px solid var(--gray-100);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-link       { color: var(--gray-700); width: 100%; }
  .nav-link:hover, .nav-link.active { color: var(--purple); background: var(--purple-light); }
  .nav-cta { margin-left: 0; margin-top: .5rem; }

  .contact-grid      { grid-template-columns: 1fr; }
  .form-row          { grid-template-columns: 1fr; }
  .programs-grid     { grid-template-columns: 1fr; }
  .help-grid         { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .partners-strip    { grid-template-columns: 1fr 1fr; }

  .stories-track { flex-direction: column; }
  .story-card    { flex: none; width: 100%; }
  .event-item    { flex-direction: column; }
  .event-item .btn { align-self: flex-start; }

  .hero-stats         { flex-direction: column; gap: 1rem; padding: 1.5rem; }
  .hero-stat-divider  { width: 44px; height: 1px; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .founder-inner  { flex-direction: column; gap: 0; }
  .founder-quote-mark { font-size: 3.5rem; }

  .sticky-donate  { display: flex; }

  .newsletter-field { flex-direction: column; }
  .newsletter-field input { width: 100%; }

  .logo-img { height: 72px; }
  .logo-img--footer { height: 100px; }
  .nav-container { height: 84px; }
  .nav-links { top: 84px; }
}

@media (max-width: 480px) {
  .impact-grid    { grid-template-columns: 1fr; }
  .partners-strip { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 1.5rem; }
  .modal { padding: 1.75rem; }
  .fundraise-bar  { padding: 1.25rem; }
}
