/* ================================================================
   Kemeza Child Support Initiative — style.css
   Brand: white/bright canvas, deep purple headings, purple/gold accents
   Fonts: Fraunces (headings, serif) + Manrope (body, sans)
   Distinct from sister-site: squared geometry, diamond motifs,
   bordered cards, underline nav (vs. pill/soft-blob styling)
   ================================================================ */

/* ── Tokens ──────────────────────────────────────────────────── */
:root {
  --white:       #ffffff;
  --off-white:   #faf9f4;    /* warm off-white, not lavender-tinted */
  --bg:          #ffffff;
  --pink:        #532e8d;    /* primary brand purple (flat — sampled from live site) */
  --pink-lt:     #603b9a;    /* lighter flat purple for hover/tab states */
  --magenta:     #532e8d;
  --plum:        #2c1a4d;    /* heading ink */
  --plum-dark:   #532e8d;    /* footer/nav — same flat purple as live site, not darker */
  --plum-mid:    #603b9a;
  --text:        #2c1a4d;
  --muted:       #6b6070;
  --border:      #e7e2d8;
  --cream:       #f5f5dc;    /* the live site's key-areas / active-tab cream */
  --cream-dp:    #e8e6c4;
  --gold:        #b5a642;    /* muted olive-gold, used sparingly for dividers only */
  --gold-lt:     #cbbf6e;
  --green:       #78b02e;    /* the live site's Donate-button green — primary CTA */
  --green-dk:    #5e8a22;
  --off:         #faf9f4;
  --grad:        var(--pink);        /* flat, no gradient — kept as var for template compat */
  --grad-soft:   #f2eef9;            /* flat pale purple wash for image placeholders */
  --grad-gold:   var(--cream);
  --shadow-sm:   0 2px 10px rgba(44,26,77,.08);
  --shadow-md:   0 8px 30px rgba(44,26,77,.14);
  --radius:      6px;
  --radius-lg:   6px;
  --font:        'Manrope', 'Segoe UI', sans-serif;
  --font-head:   'Fraunces', 'Georgia', serif;
  --nav-h:       115px;
}

/* ── 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: 84px 0; }
.section-sm    { padding: 56px 0; }
.section-alt   { background: var(--off-white); }

/* ── Section label / eyebrow ─────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center;
  font-family: var(--font); font-size: .68rem; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--pink-lt); margin-bottom: 14px;
}

/* ── Headings ────────────────────────────────────────────────── */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 700; font-style: normal; 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;
}

/* ── Rule divider — plain flat line ─────────────────────────── */
.rule {
  width: 48px; height: 3px;
  background: var(--pink); margin-bottom: 32px;
}
.rule-center { margin-left: auto; margin-right: auto; }

/* ── Buttons (squared, not pill) ───────────────────────────────  */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 30px; border-radius: var(--radius);
  font-family: var(--font); font-size: .85rem;
  font-weight: 700; letter-spacing: .04em;
  cursor: pointer; border: none;
  transition: opacity .2s, transform .15s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn:hover  { opacity: .92; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--pink); color: #fff;
  box-shadow: 0 4px 18px rgba(83,46,141,.32);
}
.btn-primary:hover { background: var(--pink-lt); box-shadow: 0 8px 28px rgba(83,46,141,.42); }
.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: 10px 22px; font-size: .78rem; }

/* ── ══════════════════════════════════════════════════════════ ── */
/* ── NAVIGATION ─────────────────────────────────────────────── */
/* ── ══════════════════════════════════════════════════════════ ── */
.kcsi-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
}
.kcsi-nav.scrolled { box-shadow: 0 4px 20px rgba(44,26,77,.3); }

/* Brand bar */
.kcsi-brand-bar { background: var(--pink); }
.kcsi-brand-bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px;
  gap: 16px;
}
.kcsi-brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; min-width: 0; }
.kcsi-brand-logo { height: 40px; width: auto; max-width: 130px; object-fit: contain; flex-shrink: 0; }
.kcsi-brand-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.kcsi-brand-name {
  font-family: var(--font); font-size: .82rem;
  font-weight: 800; letter-spacing: .02em;
  text-transform: uppercase; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.kcsi-brand-tagline {
  font-family: var(--font); font-size: .68rem;
  font-weight: 700; font-style: italic;
  color: rgba(255,255,255,.75);
}
.kcsi-social-block { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.kcsi-social-label {
  font-family: var(--font); font-size: .68rem;
  font-weight: 700; color: rgba(255,255,255,.7);
  white-space: nowrap;
}
.kcsi-social-icon {
  width: 26px; height: 26px; border-radius: 3px;
  background: rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .72rem;
  transition: background .2s;
}
.kcsi-social-icon:hover { background: rgba(255,255,255,.26); }

/* Tab bar */
.kcsi-tab-bar { background: var(--pink-lt); }
.kcsi-tabs {
  display: flex; align-items: stretch;
  list-style: none;
}
.kcsi-tab {
  display: block;
  font-family: var(--font); font-size: .8rem;
  font-weight: 700; color: #fff;
  padding: 13px 20px;
  border-right: 1px solid rgba(0,0,0,.12);
  transition: background .2s, color .2s;
}
.kcsi-tab:hover { background: rgba(0,0,0,.08); text-decoration: none; }
.kcsi-tab.active { background: var(--cream); color: var(--pink); }
.kcsi-tab-donate { background: var(--green); }
.kcsi-tab-donate:hover { background: var(--green-dk); }

.kcsi-nav-cta { display: none; } /* donate lives in the tab bar now */

/* Burger */
.kcsi-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: 4px; padding: 6px; flex-shrink: 0;
}
.kcsi-burger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 1px;
  transition: all .28s cubic-bezier(.4,0,.2,1);
}
.kcsi-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.kcsi-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.kcsi-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.kcsi-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(34,16,64,.14);
  transform: translateY(-10px); opacity: 0;
  transition: opacity .25s, transform .25s;
  pointer-events: none;
}
.kcsi-mobile-menu.open {
  display: block;
  transform: translateY(0); opacity: 1;
  pointer-events: all;
}
.kcsi-mobile-link {
  display: block; padding: 12px 4px;
  font-family: var(--font); font-weight: 700;
  font-size: .95rem; color: var(--plum);
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.kcsi-mobile-link:last-of-type { border-bottom: none; }
.kcsi-mobile-link:hover, .kcsi-mobile-link.active { color: var(--pink); }
.kcsi-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(88vh - var(--nav-h));
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--white);
}
.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: 9px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 3px; padding: 7px 16px;
  font-family: var(--font); font-size: .64rem;
  font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; color: var(--pink);
  margin-bottom: 22px;
}
.hero-tag-dot {
  width: 7px; height: 7px; 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.1rem);
  font-weight: 700; color: var(--plum);
  line-height: 1.14; margin-bottom: 10px;
}
.hero-title .grad-text {
  color: var(--pink);
}
.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;
  border: 1px solid var(--border);
}
.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;
}
.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: 4px;
  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.3rem;
  font-weight: 700; 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: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: .7rem; color: rgba(255,255,255,.6);
  text-transform: uppercase; letter-spacing: .12em;
  font-family: var(--font);
  font-weight: 700;
}

/* ── ══════════════════════════════════════════════════════════ ── */
/* ── 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;
  border: 1px solid var(--border);
}
.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);
}

/* ── Key Areas callout — bold cream/gold box, matches the org profile doc ── */
.key-areas-box {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.key-areas-title {
  font-family: var(--font-head); font-weight: 700;
  font-size: 1.05rem; color: var(--plum); margin-bottom: 16px;
}
.key-areas-list { list-style: none; }
.key-areas-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 7px 0; font-size: .88rem; color: var(--text); line-height: 1.5;
}
.key-areas-list li::before {
  content: ''; width: 9px; height: 9px; border-radius: 50%;
  background: var(--pink); flex-shrink: 0; margin-top: 6px;
}

/* ── Mission / Vision / Objectives ───────────────────────────── */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mvv-card {
  background: #fff; border-radius: var(--radius);
  padding: 30px 24px 26px; 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: 50px; height: 50px; border-radius: 4px;
  background: var(--grad); display: flex;
  align-items: center; justify-content: center;
  font-size: 21px; margin-bottom: 16px; color: #fff;
}
.mvv-title {
  font-family: var(--font-head); font-weight: 700;
  font-size: 1.05rem; 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: 20px; height: 20px; border-radius: 50%;
  background: var(--pink); display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px; color: #fff; font-size: 10px;
}

/* ── ══════════════════════════════════════════════════════════ ── */
/* ── 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);
}
/* Purple bar at bottom of photo */
.team-photo::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 4px;
  background: var(--pink);
}
.team-info { padding: 20px 18px 22px; }
.team-name {
  font-family: var(--font-head); font-weight: 700;
  font-size: 1.05rem; color: var(--plum); margin-bottom: 4px;
}
.team-role {
  font-size: .76rem; color: var(--pink); font-weight: 700;
  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;
}

/* Static informational card — used for Areas of Operation (not clickable) */
.program-card {
  background: #fff; border-radius: var(--radius);
  padding: 30px 22px; text-align: center;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.program-icon {
  width: 60px; height: 60px; border-radius: 4px;
  background: var(--grad); display: flex;
  align-items: center; justify-content: center;
  font-size: 24px; margin: 0 auto 16px; color: #fff;
  box-shadow: 0 6px 20px rgba(83,46,141,.3);
}
.program-title {
  font-family: var(--font-head); font-weight: 700;
  font-size: .98rem; color: var(--plum); margin-bottom: 8px;
}
.program-desc { font-size: .82rem; color: var(--muted); line-height: 1.7; }

/* Clickable card — used for Programmes, each links to its own page */
a.program-card-link {
  display: block;
  background: #fff; border-radius: var(--radius);
  padding: 30px 22px; text-align: center;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s, border-color .25s;
  cursor: pointer;
}
a.program-card-link:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: var(--pink-lt);
  text-decoration: none;
}
.program-card-link .program-more {
  font-family: var(--font); font-size: .72rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--pink); margin-top: 12px;
  display: inline-flex; align-items: center; gap: 5px;
}
a.program-card-link:hover .program-more { color: var(--pink-lt); }

/* ── ══════════════════════════════════════════════════════════ ── */
/* ── 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;
  border: 1px solid var(--border);
}
.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(24,11,46,.75) 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: 700; }

/* Lightbox */
.kcsi-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;
}
.kcsi-lightbox.open { opacity: 1; pointer-events: all; }
.kcsi-lightbox-img {
  max-width: 90vw; max-height: 85vh;
  border-radius: var(--radius); object-fit: contain;
}
.kcsi-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: 4px; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: background .2s;
}
.kcsi-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: 700; margin-bottom: 12px; color: #fff;
  display: flex; align-items: center; gap: 10px;
}
.donate-card-title i { color: var(--cream); }
.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,.78);
  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: 18px; height: 18px;
  background: var(--cream); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--plum-dark); 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); font-size: .62rem;
  letter-spacing: .2em; text-transform: uppercase;
  font-weight: 800;
  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: 42px; height: 42px; border-radius: 4px;
  background: var(--grad); display: flex;
  align-items: center; justify-content: center;
  color: #fff; font-size: 19px;
}
.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;
  font-weight: 700;
}
.bank-acc-num {
  font-family: var(--font-head); font-size: 1.4rem;
  font-weight: 700; color: var(--plum);
  letter-spacing: .06em;
}

/* 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: 1.05rem; 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: 46px; height: 46px; border-radius: 4px;
  background: var(--grad-soft); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; flex-shrink: 0; color: var(--pink);
}
.contact-item-label {
  font-family: var(--font); font-size: .62rem;
  letter-spacing: .16em; text-transform: uppercase;
  font-weight: 800;
  color: var(--muted); margin-bottom: 3px;
}
.contact-item-value {
  font-size: .92rem; color: var(--plum); font-weight: 700;
  line-height: 1.5;
}
.contact-item-value a { color: var(--pink); }
.contact-item-value a:hover { text-decoration: underline; }

/* Social row — squared chip, not pill */
.social-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.social-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 15px; border-radius: 3px;
  border: 1.5px solid var(--border);
  font-size: .78rem; font-weight: 700;
  color: var(--plum); transition: all .2s;
  background: #fff;
}
.social-chip:hover {
  border-color: var(--pink); color: var(--pink);
  background: var(--off-white);
  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.15rem; color: var(--plum); margin-bottom: 22px;
}
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-family: var(--font);
  font-size: .64rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.form-control {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 4px;
  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: #b8a4d8; }
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: 4px; margin-bottom: 16px; font-size: .88rem; display: flex; gap: 8px; align-items: flex-start; }
.form-alert-success { background: #eef7ee; color: #1a6a3a; border: 1px solid #c0e0c4; }
.form-alert-error   { background: #f7eaf2; color: #7a1a5a; border: 1px solid #e0b8d4; }

/* ── ══════════════════════════════════════════════════════════ ── */
/* ── FOOTER ──────────────────────────────────────────────────── */
/* ── ══════════════════════════════════════════════════════════ ── */
.kcsi-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: 40px; height: 40px; }
.footer-brand-name {
  font-family: var(--font-head); font-weight: 700;
  font-size: .88rem; letter-spacing: .03em;
  color: #fff;
}
.footer-brand-sub {
  font-size: .5rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--cream);
  font-weight: 700;
}
.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: 4px;
  border: 1px solid rgba(255,255,255,.14);
  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(--cream); color: var(--cream);
  background: rgba(245,245,220,.1);
  transform: translateY(-3px);
}
.footer-col-title {
  font-family: var(--font); font-weight: 800;
  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,.1);
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-link {
  font-size: .82rem; color: rgba(255,255,255,.5);
  transition: color .2s; display: flex; align-items: center; gap: 6px;
}
.footer-link:hover { color: var(--cream); }
.footer-link::before { content: '›'; font-size: .75rem; color: var(--cream); }
.footer-contact-item {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: .8rem; color: rgba(255,255,255,.5);
  margin-bottom: 10px; line-height: 1.5;
}
.footer-contact-item i { color: var(--cream); margin-top: 2px; flex-shrink: 0; }

/* Footer bottom band */
.footer-band {
  background: rgba(0,0,0,.3);
  border-top: 1px solid rgba(255,255,255,.08);
  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,.3);
  text-align: right;
}
.footer-heart { color: var(--cream); margin: 0 4px; }

/* ── ══════════════════════════════════════════════════════════ ── */
/* ── CALL TO ACTION BAND ─────────────────────────────────────── */
/* ── ══════════════════════════════════════════════════════════ ── */
.cta-band {
  background: var(--grad);
  padding: 62px 0; text-align: center; color: #fff;
}
.cta-band-title {
  font-family: var(--font-head); font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700; margin-bottom: 12px;
}
.cta-band-sub {
  font-size: 1rem; opacity: .88; 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 {
  color: var(--pink);
}

/* 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: 64px; }
  .section     { padding: 56px 0; }
  .section-sm  { padding: 40px 0; }
  .container   { padding: 0 18px; }
  .kcsi-tab-bar, .kcsi-social-block { display: none; }
  .kcsi-burger  { display: flex; }
  .kcsi-brand-bar-inner { padding: 10px 18px; }
  .kcsi-brand-logo { height: 34px; }
  .kcsi-brand-name { font-size: .72rem; }
  .kcsi-brand-tagline { font-size: .6rem; }
  .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;
}
