/* ================================================================
   Sarah Opuwa Foundation — style.css
   Brand: white/bright, deep plum headings, pink/magenta gradient accents
   Fonts: Poppins (headings) + Nunito (body)
   ================================================================ */

/* ── Tokens ──────────────────────────────────────────────────── */
:root {
  --white:       #ffffff;
  --off-white:   #fdf5fa;
  --bg:          #ffffff;
  --pink:        #c9388a;
  --pink-lt:     #e055a8;
  --magenta:     #b5179e;
  --plum:        #2d1b3d;
  --plum-dark:   #1e1029;
  --plum-mid:    #4a2a60;
  --text:        #2d1b3d;
  --muted:       #7a6a8a;
  --border:      #edd6ea;
  --off:         #fdf5fa;
  --grad:        linear-gradient(135deg, #e055a8 0%, #c9388a 50%, #b5179e 100%);
  --grad-soft:   linear-gradient(135deg, rgba(224,85,168,.08) 0%, rgba(181,23,158,.05) 100%);
  --shadow-sm:   0 2px 12px rgba(45,27,61,.07);
  --shadow-md:   0 6px 28px rgba(45,27,61,.11);
  --radius:      12px;
  --radius-lg:   18px;
  --font:        'Nunito', 'Segoe UI', sans-serif;
  --font-head:   'Poppins', 'Segoe UI', sans-serif;
  --nav-h:       70px;
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.7; overflow-x: hidden; }
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
input, textarea, select, button { font-family: var(--font); }

/* ── Container ───────────────────────────────────────────────── */
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Section spacing ─────────────────────────────────────────── */
.section       { padding: 80px 0; }
.section-sm    { padding: 56px 0; }
.section-alt   { background: var(--off-white); }

/* ── Section label / eyebrow ─────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: .6rem; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 12px;
}
.eyebrow::before, .eyebrow::after {
  content: ''; display: block;
  width: 28px; height: 1.5px; background: var(--pink);
}

/* ── Headings ────────────────────────────────────────────────── */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800; color: var(--plum);
  line-height: 1.18; margin-bottom: 14px;
}
.section-sub {
  font-size: 1rem; color: var(--muted);
  max-width: 560px; line-height: 1.75;
  margin-bottom: 40px;
}

/* ── Pink rule divider ───────────────────────────────────────── */
.rule {
  width: 60px; height: 3px; border-radius: 3px;
  background: var(--grad); margin-bottom: 32px;
}
.rule-center { margin-left: auto; margin-right: auto; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  font-family: var(--font-head); font-size: .88rem;
  font-weight: 700; letter-spacing: .03em;
  cursor: pointer; border: none;
  transition: opacity .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover  { opacity: .88; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--grad); color: #fff;
  box-shadow: 0 4px 18px rgba(201,56,138,.28);
}
.btn-primary:hover { box-shadow: 0 8px 28px rgba(201,56,138,.38); }
.btn-outline {
  background: transparent; color: var(--pink);
  border: 2px solid var(--pink);
}
.btn-outline:hover { background: var(--pink); color: #fff; }
.btn-white {
  background: #fff; color: var(--pink);
  box-shadow: 0 4px 18px rgba(0,0,0,.12);
}
.btn-white:hover { box-shadow: 0 8px 28px rgba(0,0,0,.18); }
.btn-sm { padding: 9px 20px; font-size: .8rem; }

/* ── ══════════════════════════════════════════════════════════ ── */
/* ── NAVIGATION ─────────────────────────────────────────────── */
/* ── ══════════════════════════════════════════════════════════ ── */
.sof-nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 900;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.sof-nav.scrolled { box-shadow: 0 4px 24px rgba(45,27,61,.10); }

.sof-nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

/* Brand */
.sof-brand { display: flex; align-items: center; flex-shrink: 0; }
.sof-brand-logo { height: 52px; width: auto; max-width: 180px; object-fit: contain; }

/* Desktop links */
.sof-nav-links {
  display: flex; align-items: center; gap: 4px;
}
.sof-nav-link {
  font-family: var(--font-head); font-size: .82rem;
  font-weight: 600; color: var(--plum);
  padding: 7px 14px; border-radius: 8px;
  transition: color .2s, background .2s;
  position: relative;
}
.sof-nav-link:hover  { color: var(--pink); background: rgba(201,56,138,.06); }
.sof-nav-link.active { color: var(--pink); }
.sof-nav-link.active::after {
  content: ''; position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px; border-radius: 2px;
  background: var(--grad);
}

.sof-nav-cta { margin-left: 12px; }

/* Burger */
.sof-burger {
  display: none; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  border-radius: 8px; padding: 6px;
}
.sof-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--plum); border-radius: 2px;
  transition: all .28s cubic-bezier(.4,0,.2,1);
}
.sof-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sof-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.sof-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.sof-mobile-menu {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: #fff; z-index: 899;
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  box-shadow: 0 8px 32px rgba(45,27,61,.12);
  transform: translateY(-10px); opacity: 0;
  transition: opacity .25s, transform .25s;
  pointer-events: none;
}
.sof-mobile-menu.open {
  display: block;
  transform: translateY(0); opacity: 1;
  pointer-events: all;
}
.sof-mobile-link {
  display: block; padding: 12px 4px;
  font-family: var(--font-head); font-weight: 600;
  font-size: .95rem; color: var(--plum);
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.sof-mobile-link:last-of-type { border-bottom: none; }
.sof-mobile-link:hover, .sof-mobile-link.active { color: var(--pink); }
.sof-mobile-cta { margin-top: 16px; width: 100%; justify-content: center; }

/* Page offset for fixed nav */
.page-body { padding-top: var(--nav-h); }

/* ── ══════════════════════════════════════════════════════════ ── */
/* ── HERO ────────────────────────────────────────────────────── */
/* ── ══════════════════════════════════════════════════════════ ── */
.hero {
  min-height: calc(92vh - var(--nav-h));
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--white);
}
/* Soft pink bloom top-right — like flyer's image placement */
.hero::before {
  content: '';
  position: absolute; top: -80px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse at center,
    rgba(224,85,168,.10) 0%, rgba(201,56,138,.05) 45%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding: 60px 0;
}
.hero-content { position: relative; z-index: 1; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,56,138,.08);
  border: 1px solid rgba(201,56,138,.2);
  border-radius: 50px; padding: 6px 16px;
  font-family: var(--font-head); font-size: .65rem;
  font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--pink);
  margin-bottom: 22px;
}
.hero-tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--pink); flex-shrink: 0;
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; } 50% { opacity: .3; }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; color: var(--plum);
  line-height: 1.12; margin-bottom: 8px;
}
.hero-title .grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-tagline {
  font-family: var(--font-head);
  font-size: clamp(.95rem, 2vw, 1.15rem);
  font-weight: 600; font-style: italic;
  color: var(--pink); margin-bottom: 18px;
}
.hero-desc {
  font-size: 1rem; color: var(--muted);
  line-height: 1.78; margin-bottom: 32px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero image side */
.hero-visual { position: relative; }
.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
  background: var(--off-white);
  position: relative;
}
.hero-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: var(--grad-soft);
  min-height: 420px;
}
/* Floating card on hero image */
.hero-float-card {
  position: absolute; bottom: -20px; left: -28px;
  background: #fff; border-radius: var(--radius);
  padding: 16px 20px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  min-width: 200px;
}
.hero-float-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--grad); display: flex;
  align-items: center; justify-content: center;
  color: #fff; font-size: 20px; flex-shrink: 0;
}
.hero-float-num {
  font-family: var(--font-head); font-size: 1.4rem;
  font-weight: 800; color: var(--plum); line-height: 1;
}
.hero-float-label {
  font-size: .72rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: .06em;
}

/* ── ══════════════════════════════════════════════════════════ ── */
/* ── STATS BAND ──────────────────────────────────────────────── */
/* ── ══════════════════════════════════════════════════════════ ── */
.stats-band {
  background: var(--plum-dark);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center; padding: 16px 20px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem; font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: .7rem; color: rgba(255,255,255,.55);
  text-transform: uppercase; letter-spacing: .12em;
  font-family: var(--font-head);
}

/* ── ══════════════════════════════════════════════════════════ ── */
/* ── ABOUT (used on home + about page) ───────────────────────── */
/* ── ══════════════════════════════════════════════════════════ ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-img-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); aspect-ratio: 1;
  background: var(--off-white); position: relative;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-placeholder {
  width: 100%; height: 100%; min-height: 360px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-soft);
}
/* Pink accent corner on about image */
.about-img-wrap::before {
  content: '';
  position: absolute; bottom: -12px; right: -12px;
  width: 80px; height: 80px;
  background: var(--grad); border-radius: 14px;
  z-index: -1; opacity: .6;
}

/* ── Mission / Vision / Objectives ───────────────────────────── */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mvv-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px 24px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
}
.mvv-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.mvv-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--grad); display: flex;
  align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px; color: #fff;
}
.mvv-title {
  font-family: var(--font-head); font-weight: 700;
  font-size: 1rem; color: var(--plum); margin-bottom: 10px;
}
.mvv-body { font-size: .88rem; color: var(--muted); line-height: 1.75; }

/* Objectives list */
.obj-list { list-style: none; }
.obj-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: .9rem; color: var(--muted); line-height: 1.65;
}
.obj-list li:last-child { border-bottom: none; }
.obj-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--grad); display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px; color: #fff; font-size: 11px;
}

/* ── ══════════════════════════════════════════════════════════ ── */
/* ── TEAM ────────────────────────────────────────────────────── */
/* ── ══════════════════════════════════════════════════════════ ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: #fff; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
  text-align: center;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-photo {
  width: 100%; aspect-ratio: 1;
  background: var(--grad-soft);
  overflow: hidden; position: relative;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-placeholder {
  width: 100%; height: 100%; min-height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; background: var(--grad-soft);
}
/* Pink bar at bottom of photo */
.team-photo::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 4px;
  background: var(--grad);
}
.team-info { padding: 20px 18px 22px; }
.team-name {
  font-family: var(--font-head); font-weight: 700;
  font-size: 1rem; color: var(--plum); margin-bottom: 4px;
}
.team-role {
  font-size: .78rem; color: var(--pink); font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 10px;
}
.team-bio { font-size: .82rem; color: var(--muted); line-height: 1.7; }

/* ── ══════════════════════════════════════════════════════════ ── */
/* ── PROGRAMS ────────────────────────────────────────────────── */
/* ── ══════════════════════════════════════════════════════════ ── */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 22px;
}
.program-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px 22px; text-align: center;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.program-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: rgba(201,56,138,.25);
}
.program-icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: var(--grad); display: flex;
  align-items: center; justify-content: center;
  font-size: 26px; margin: 0 auto 16px; color: #fff;
  box-shadow: 0 6px 20px rgba(201,56,138,.28);
}
.program-title {
  font-family: var(--font-head); font-weight: 700;
  font-size: .95rem; color: var(--plum); margin-bottom: 8px;
}
.program-desc { font-size: .82rem; color: var(--muted); line-height: 1.7; }

/* ── ══════════════════════════════════════════════════════════ ── */
/* ── GALLERY ─────────────────────────────────────────────────── */
/* ── ══════════════════════════════════════════════════════════ ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; background: var(--off-white);
  position: relative; cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(45,27,61,.7) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: flex-end; padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { color: #fff; font-size: .82rem; font-weight: 600; }

/* Lightbox */
.sof-lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92); z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.sof-lightbox.open { opacity: 1; pointer-events: all; }
.sof-lightbox-img {
  max-width: 90vw; max-height: 85vh;
  border-radius: var(--radius); object-fit: contain;
}
.sof-lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: rgba(255,255,255,.12); border: none;
  color: #fff; font-size: 1.5rem; width: 42px; height: 42px;
  border-radius: 50%; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: background .2s;
}
.sof-lightbox-close:hover { background: var(--pink); }

/* ── ══════════════════════════════════════════════════════════ ── */
/* ── DONATE / GET INVOLVED ───────────────────────────────────── */
/* ── ══════════════════════════════════════════════════════════ ── */
.donate-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 28px; align-items: start;
}
.donate-card {
  background: var(--plum-dark); border-radius: var(--radius-lg);
  padding: 36px 28px; color: #fff;
}
.donate-card-title {
  font-family: var(--font-head); font-size: 1.3rem;
  font-weight: 800; margin-bottom: 12px; color: #fff;
  display: flex; align-items: center; gap: 10px;
}
.donate-card-title i { color: var(--pink-lt); }
.donate-desc { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 20px; }
.donate-ways { list-style: none; margin-bottom: 24px; }
.donate-ways li {
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem; color: rgba(255,255,255,.75);
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.07);
}
.donate-ways li:last-child { border-bottom: none; }
.donate-ways li::before {
  content: '✓'; width: 20px; height: 20px;
  background: var(--grad); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: #fff; flex-shrink: 0;
}
.donate-cta-text {
  font-size: .85rem; font-style: italic;
  color: rgba(255,255,255,.55); margin-top: 16px; line-height: 1.6;
}

/* Bank details card */
.bank-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 28px 24px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); text-align: center;
}
.bank-label {
  font-family: var(--font-head); font-size: .6rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.bank-logo-row {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-bottom: 14px;
}
.bank-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad); display: flex;
  align-items: center; justify-content: center;
  color: #fff; font-size: 20px;
}
.bank-name {
  font-family: var(--font-head); font-weight: 700;
  font-size: .95rem; color: var(--plum);
}
.bank-divider { height: 1px; background: var(--border); margin: 14px 0; }
.bank-acc-label {
  font-size: .65rem; text-transform: uppercase;
  letter-spacing: .16em; color: var(--muted); margin-bottom: 6px;
}
.bank-acc-num {
  font-family: var(--font-head); font-size: 1.5rem;
  font-weight: 800; color: var(--plum);
  letter-spacing: .1em;
}

/* Visit card */
.visit-card {
  background: var(--off-white); border-radius: var(--radius-lg);
  padding: 28px 24px; border: 1px solid var(--border);
}
.visit-card-title {
  font-family: var(--font-head); font-weight: 700;
  font-size: 1rem; color: var(--plum); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.visit-card-title i { color: var(--pink); }
.visit-desc { font-size: .88rem; color: var(--muted); line-height: 1.75; }

/* ── ══════════════════════════════════════════════════════════ ── */
/* ── CONTACT ─────────────────────────────────────────────────── */
/* ── ══════════════════════════════════════════════════════════ ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.contact-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--grad-soft); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0; color: var(--pink);
}
.contact-item-label {
  font-family: var(--font-head); font-size: .62rem;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 3px;
}
.contact-item-value {
  font-size: .92rem; color: var(--plum); font-weight: 600;
  line-height: 1.5;
}
.contact-item-value a { color: var(--pink); }
.contact-item-value a:hover { text-decoration: underline; }

/* Social row */
.social-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.social-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px; border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: .78rem; font-weight: 600;
  color: var(--plum); transition: all .2s;
  background: #fff;
}
.social-chip:hover {
  border-color: var(--pink); color: var(--pink);
  background: rgba(201,56,138,.04);
  transform: translateY(-2px);
}
.social-chip i { font-size: 15px; }

/* Contact form */
.contact-form { background: #fff; border-radius: var(--radius-lg); padding: 36px 32px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.form-title {
  font-family: var(--font-head); font-weight: 700;
  font-size: 1.1rem; color: var(--plum); margin-bottom: 22px;
}
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-family: var(--font-head);
  font-size: .62rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.form-control {
  width: 100%; padding: 11px 16px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: var(--font); font-size: .92rem;
  color: var(--text); background: var(--off-white);
  outline: none; transition: border-color .2s, background .2s;
}
.form-control:focus { border-color: var(--pink); background: #fff; }
.form-control::placeholder { color: #c0a8d0; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-alert { padding: 12px 16px; border-radius: 10px; margin-bottom: 16px; font-size: .88rem; display: flex; gap: 8px; align-items: flex-start; }
.form-alert-success { background: #e8f8ee; color: #1a7a4a; border: 1px solid #b8e8cc; }
.form-alert-error   { background: #fde8f4; color: #9a1060; border: 1px solid #f5c0dc; }

/* ── ══════════════════════════════════════════════════════════ ── */
/* ── FOOTER ──────────────────────────────────────────────────── */
/* ── ══════════════════════════════════════════════════════════ ── */
.sof-footer { background: var(--plum-dark); color: rgba(255,255,255,.75); }
.footer-main { padding: 60px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand { }
.footer-logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo { width: 42px; height: 42px; }
.footer-brand-name {
  font-family: var(--font-head); font-weight: 800;
  font-size: .85rem; letter-spacing: .05em;
  color: #fff;
}
.footer-brand-sub {
  font-size: .5rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--pink-lt);
}
.footer-desc { font-size: .82rem; line-height: 1.75; color: rgba(255,255,255,.5); margin-bottom: 20px; }
.footer-socials { display: flex; gap: 8px; }
.footer-social {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: .85rem;
  transition: all .22s;
}
.footer-social:hover {
  border-color: var(--pink); color: var(--pink-lt);
  background: rgba(201,56,138,.12);
  transform: translateY(-3px);
}
.footer-col-title {
  font-family: var(--font-head); font-weight: 700;
  font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; color: #fff;
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-link {
  font-size: .82rem; color: rgba(255,255,255,.48);
  transition: color .2s; display: flex; align-items: center; gap: 6px;
}
.footer-link:hover { color: var(--pink-lt); }
.footer-link::before { content: '→'; font-size: .7rem; }
.footer-contact-item {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: .8rem; color: rgba(255,255,255,.48);
  margin-bottom: 10px; line-height: 1.5;
}
.footer-contact-item i { color: var(--pink); margin-top: 2px; flex-shrink: 0; }

/* Footer bottom band — matches flyer footer strip exactly */
.footer-band {
  background: rgba(0,0,0,.25);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 0;
}
.footer-band-inner {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-tagline {
  font-size: .8rem; font-style: italic;
  color: rgba(255,255,255,.45); flex: 1;
}
.footer-copy {
  font-size: .72rem; color: rgba(255,255,255,.28);
  text-align: right;
}
.footer-heart { color: var(--pink-lt); margin: 0 4px; }

/* ── ══════════════════════════════════════════════════════════ ── */
/* ── CALL TO ACTION BAND ─────────────────────────────────────── */
/* ── ══════════════════════════════════════════════════════════ ── */
.cta-band {
  background: var(--grad);
  padding: 60px 0; text-align: center; color: #fff;
}
.cta-band-title {
  font-family: var(--font-head); font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800; margin-bottom: 12px;
}
.cta-band-sub {
  font-size: 1rem; opacity: .85; margin-bottom: 28px;
  max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.65;
}

/* ── ══════════════════════════════════════════════════════════ ── */
/* ── UTILITIES ───────────────────────────────────────────────── */
/* ── ══════════════════════════════════════════════════════════ ── */
.text-center { text-align: center; }
.text-pink   { color: var(--pink); }
.text-plum   { color: var(--plum); }
.text-muted  { color: var(--muted); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Fade-in on scroll */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── ══════════════════════════════════════════════════════════ ── */
/* ── RESPONSIVE ──────────────────────────────────────────────── */
/* ── ══════════════════════════════════════════════════════════ ── */
@media (max-width: 1024px) {
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 32px; }
  .donate-grid      { grid-template-columns: 1fr; }
  .hero-inner       { gap: 40px; }
}

@media (max-width: 900px) {
  .hero-inner       { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual      { order: -1; max-width: 480px; margin: 0 auto; width: 100%; }
  .hero-float-card  { left: -10px; }
  .about-grid       { grid-template-columns: 1fr; gap: 36px; }
  .mvv-grid         { grid-template-columns: 1fr 1fr; }
  .team-grid        { grid-template-columns: 1fr 1fr; }
  .contact-grid     { grid-template-columns: 1fr; }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .stat-item        { border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat-item:nth-child(2n) { border-right: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 62px; }
  .section     { padding: 56px 0; }
  .section-sm  { padding: 40px 0; }
  .container   { padding: 0 18px; }
  .sof-nav-links, .sof-nav-cta { display: none; }
  .sof-burger  { display: flex; }
  .mvv-grid    { grid-template-columns: 1fr; }
  .team-grid   { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .programs-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid  { grid-template-columns: 1fr 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .footer-band-inner { flex-direction: column; text-align: center; }
  .footer-copy   { text-align: center; }
  .form-row      { grid-template-columns: 1fr; }
  .hero-actions  { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .donate-grid   { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .programs-grid  { grid-template-columns: 1fr; }
  .gallery-grid   { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stats-grid     { grid-template-columns: 1fr 1fr; }
  .hero-float-card { display: none; }
  .section-title  { font-size: 1.5rem; }
  .contact-form   { padding: 24px 18px; }
  .team-grid      { max-width: 100%; grid-template-columns: 1fr; }
}

/* ── Rich HTML content from Quill editor ─────────────────────── */
.hero-desc p, .mvv-body p, .program-desc p,
.donate-desc p, .visit-desc p {
  margin: 0 0 .6em 0;
}
.hero-desc p:last-child, .mvv-body p:last-child, .program-desc p:last-child,
.donate-desc p:last-child, .visit-desc p:last-child {
  margin-bottom: 0;
}
.hero-desc ul, .mvv-body ul, .program-desc ul, .donate-desc ul, .visit-desc ul,
.hero-desc ol, .mvv-body ol, .program-desc ol, .donate-desc ol, .visit-desc ol {
  margin: 0 0 .6em 1.2em;
}
.hero-desc a, .mvv-body a, .program-desc a, .donate-desc a, .visit-desc a {
  color: var(--pink); text-decoration: underline;
}
