/* ============================================================
   The Determination Center — design system v2
   Navy #0b1324 · Emerald #34d399→#16a34a · Fraunces + Inter
   ============================================================ */
:root {
  --navy-900: #070d1d;
  --navy-800: #0b1324;
  --navy-700: #0f1730;
  --navy-600: #1a2542;
  --green-300: #6ee7b7;
  --green-400: #34d399;
  --green-600: #16a34a;
  --green-700: #15803d;
  --mint: #a7f3d0;
  --gold: #f4c152;
  --ink: #13202f;
  --ink-soft: #4c5b6e;
  --paper: #f7f9fc;
  --card: #ffffff;
  --line: #e6ebf2;
  --radius: 20px;
  --shadow: 0 10px 30px rgba(11, 19, 36, 0.08);
  --shadow-lg: 0 28px 70px rgba(11, 19, 36, 0.18);
  --grad: linear-gradient(135deg, var(--green-400), var(--green-600));
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3.serif, .display { font-family: var(--serif); font-weight: 600; }

.wrap { width: min(1200px, 92%); margin-inline: auto; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--green-600); color: #fff; padding: .6rem 1rem; z-index: 400; }
.skip-link:focus { left: 0; }

::selection { background: var(--green-400); color: var(--navy-900); }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--navy-900); color: #cdd6e4;
  font-size: .82rem; padding: .45rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.announce .wrap { display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.announce a { color: var(--green-300); font-weight: 600; }
.announce .right { display: flex; gap: 1.2rem; }
@media (max-width: 720px) { .announce .right { display: none; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 19, 36, 0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled { background: rgba(7, 13, 29, 0.92); box-shadow: 0 10px 30px rgba(0,0,0,.25); }
.nav { display: flex; align-items: center; gap: 1.5rem; padding: .75rem 0; position: relative; }
.brand { display: flex; align-items: center; gap: .7rem; color: #fff; font-weight: 700; }
.brand img { width: 44px; height: 44px; border-radius: 11px; box-shadow: 0 4px 14px rgba(52,211,153,.35); }
.brand .brand-name { font-size: 1.02rem; line-height: 1.2; font-family: var(--serif); }
.brand .brand-sub { display: block; font-family: var(--sans); font-size: .64rem; font-weight: 600; color: var(--green-300); letter-spacing: .18em; text-transform: uppercase; }

.nav-links { display: flex; gap: .2rem; margin-left: auto; }
.nav-links a { color: #c7d1e0; font-weight: 500; font-size: .94rem; padding: .55rem 1rem; border-radius: 999px; transition: .2s; }
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-links a.active { color: var(--navy-900); background: var(--green-400); font-weight: 600; }

.nav-cta { display: flex; gap: .6rem; }
.nav-toggle { display: none; margin-left: auto; background: none; border: 0; cursor: pointer; padding: .4rem; z-index: 130; }
.nav-toggle span { display: block; width: 25px; height: 2px; background: #fff; margin: 6px 0; border-radius: 2px; transition: .3s; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 600; font-size: .95rem; line-height: 1; font-family: var(--sans);
  padding: .9rem 1.7rem; border-radius: 999px;
  border: 0; cursor: pointer; transition: transform .18s, box-shadow .25s, background .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 26px rgba(22, 163, 74, 0.4); }
.btn-primary:hover { box-shadow: 0 16px 34px rgba(22, 163, 74, 0.5); }
.btn-gold { background: linear-gradient(135deg, #fcd34d, #f59e0b); color: #422006; box-shadow: 0 10px 26px rgba(245, 158, 11, 0.35); }
.btn-ghost { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,0.2); }
.btn-dark { background: var(--navy-800); color: #fff; }
.btn-light { background: #fff; color: var(--navy-800); box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.btn-sm { padding: .6rem 1.15rem; font-size: .85rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff;
  min-height: 92vh; display: flex; align-items: center;
  isolation: isolate; overflow: hidden;
  padding: 5rem 0 8rem;
}
.hero .bg {
  position: absolute; inset: 0; z-index: -2;
  background: url('../img/program-children.jpg') center 30%/cover no-repeat;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(7,13,29,.94) 22%, rgba(7,13,29,.72) 52%, rgba(11,19,36,.38) 100%),
              radial-gradient(900px 480px at 88% 8%, rgba(52,211,153,.2), transparent 60%);
}
.hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 4rem; align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .76rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--green-300);
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.35);
  padding: .5rem 1.1rem; border-radius: 999px; margin-bottom: 1.6rem;
  backdrop-filter: blur(4px);
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green-400); box-shadow: 0 0 14px var(--green-400); animation: pulse 2s infinite; }
@keyframes pulse { 50% { opacity: .4; } }

.hero h1 {
  font-size: clamp(2.7rem, 5.6vw, 4.6rem);
  line-height: 1.04; letter-spacing: -0.01em; font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(90deg, var(--green-300), var(--mint));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { font-size: 1.2rem; color: #c4cedf; max-width: 33rem; margin-bottom: 2.4rem; font-weight: 400; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-phone { display: flex; align-items: center; gap: .8rem; margin-top: 2.6rem; color: #b6c2d4; font-size: .92rem; }
.hero-phone b { color: #fff; font-size: 1.05rem; }
.hero-phone .ring { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); font-size: 1.2rem; }

.hero-card {
  background: rgba(13, 22, 43, 0.55);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 26px; padding: 2rem;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
  transition: transform .4s;
}
.hero-card:hover { transform: rotate(0deg) scale(1.01); }
.hero-card h3 { font-family: var(--sans); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--green-300); margin-bottom: 1.2rem; font-weight: 700; }
.hero-card li { display: flex; gap: .8rem; align-items: flex-start; padding: .6rem 0; font-size: .95rem; color: #dbe3ef; border-bottom: 1px dashed rgba(255,255,255,0.1); }
.hero-card li:last-child { border-bottom: 0; }
.hero-card .ico { flex: 0 0 auto; width: 30px; height: 30px; display: grid; place-items: center; background: rgba(52,211,153,.14); border-radius: 9px; font-size: .95rem; }

.scroll-cue {
  position: absolute; bottom: 6.6rem; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.4); border-radius: 999px;
  z-index: 3;
}
.scroll-cue::after { content: ""; position: absolute; top: 7px; left: 50%; width: 4px; height: 9px; margin-left: -2px; border-radius: 2px; background: var(--green-400); animation: cue 1.8s infinite; }
@keyframes cue { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* wave divider */
.wave { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 2; pointer-events: none; }
.wave svg { display: block; width: 100%; height: 90px; }

/* ---------- Partner marquee ---------- */
.marquee-band { background: #fff; border-bottom: 1px solid var(--line); padding: 1.4rem 0; overflow: hidden; }
.marquee-band .label { text-align: center; font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .9rem; }
.marquee { display: flex; gap: 1rem; width: max-content; animation: scrollx 30s linear infinite; }
.marquee:hover { animation-play-state: paused; }
@keyframes scrollx { to { transform: translateX(-50%); } }
.marquee span {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; font-size: .92rem; color: var(--navy-600);
  background: var(--paper); border: 1px solid var(--line);
  padding: .55rem 1.3rem; border-radius: 999px; white-space: nowrap;
}

/* ---------- Stats ---------- */
.stat-strip { padding: 3.6rem 0 .6rem; }
.stat-strip .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.stat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 1.8rem 1.4rem; text-align: center;
  position: relative; overflow: hidden;
}
.stat::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad); }
.stat .num { font-family: var(--serif); font-size: 2.5rem; font-weight: 600; color: var(--navy-800); line-height: 1.1; }
.stat .lbl { font-size: .86rem; color: var(--ink-soft); margin-top: .3rem; }

/* ---------- Sections ---------- */
section.block { padding: 5.5rem 0; }
section.block.alt { background: #fff; }
.section-head { max-width: 46rem; margin: 0 auto 3.2rem; text-align: center; }
.section-head.left { text-align: left; margin-inline: 0; }
.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .74rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--green-700); margin-bottom: .8rem;
}
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--grad); border-radius: 2px; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); line-height: 1.15; color: var(--navy-800); margin-bottom: .8rem; }
.section-head h2 em { font-style: italic; color: var(--green-600); }
.section-head p { color: var(--ink-soft); font-size: 1.02rem; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }

/* ---------- Cards ---------- */
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem; box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  display: flex; flex-direction: column; position: relative;
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: #c9ecd9; }
.card h3 { font-size: 1.16rem; color: var(--navy-800); margin-bottom: .5rem; font-family: var(--serif); font-weight: 600; }
.card p { font-size: .95rem; color: var(--ink-soft); flex: 1; }
.card .card-actions { display: flex; gap: .7rem; margin-top: 1.3rem; align-items: center; }
.link { font-weight: 600; font-size: .9rem; color: var(--green-700); display: inline-flex; align-items: center; gap: .35rem; transition: gap .2s; }
.link:hover { gap: .6rem; }

.emoji {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center; font-size: 1.6rem;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1px solid #c9f0dd; margin-bottom: 1.1rem;
}

/* photo cards */
.pcard { padding: 0; overflow: hidden; }
.pcard .ph { position: relative; height: 215px; overflow: hidden; }
.pcard .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.pcard:hover .ph img { transform: scale(1.07); }
.pcard .ph::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(7,13,29,.55)); }
.pcard .ph .ptag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: rgba(255,255,255,.92); color: var(--navy-800);
  padding: .35rem .8rem; border-radius: 999px; backdrop-filter: blur(4px);
}
.pcard .ph .picon {
  position: absolute; bottom: -24px; right: 1.3rem; z-index: 2;
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  font-size: 1.4rem; background: var(--grad); color: #fff;
  box-shadow: 0 10px 24px rgba(22,163,74,.45);
}
.pcard .pbody { padding: 1.9rem; display: flex; flex-direction: column; flex: 1; }

/* ---------- Story carousel ---------- */
.carousel { position: relative; max-width: 880px; margin-inline: auto; }
.carousel-track { overflow: hidden; border-radius: 26px; box-shadow: var(--shadow-lg); }
.slides { display: flex; transition: transform .6s cubic-bezier(.25,.8,.3,1); }
.slide { flex: 0 0 100%; display: grid; grid-template-columns: 1fr 1.25fr; background: #fff; min-height: 360px; }
.slide .simg { position: relative; }
.slide .simg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.slide .scontent { padding: 2.6rem 2.8rem; display: flex; flex-direction: column; justify-content: center; }
.slide .stag { width: fit-content; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green-700); background: #e7f9ef; border: 1px solid #c9f0dd; padding: .32rem .8rem; border-radius: 999px; margin-bottom: 1.1rem; }
.slide blockquote { font-family: var(--serif); font-size: 1.28rem; font-style: italic; line-height: 1.5; color: var(--ink); }
.slide .swho { margin-top: 1.3rem; font-weight: 600; font-size: .92rem; color: var(--ink-soft); }
.slide .swho b { color: var(--navy-800); }
.carousel-nav { display: flex; justify-content: center; align-items: center; gap: .9rem; margin-top: 1.6rem; }
.cdot { width: 9px; height: 9px; border-radius: 999px; background: #cfd9e6; border: 0; cursor: pointer; padding: 0; transition: .3s; }
.cdot.on { width: 30px; background: var(--green-600); }
.cbtn { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: #fff; cursor: pointer; font-size: 1rem; color: var(--navy-800); box-shadow: var(--shadow); transition: .2s; }
.cbtn:hover { background: var(--green-400); color: #fff; border-color: transparent; }

/* ---------- Donate band ---------- */
.donate-band {
  position: relative; color: #fff; padding: 5.5rem 0; isolation: isolate; overflow: hidden;
  background: radial-gradient(1000px 500px at 12% -10%, #14532d40 0%, transparent 55%),
              radial-gradient(800px 480px at 100% 110%, #1d4ed830 0%, transparent 50%),
              linear-gradient(155deg, var(--navy-800), var(--navy-900));
}
.donate-band .section-head h2 { color: #fff; }
.donate-band .section-head h2 em { color: var(--green-300); }
.donate-band .section-head p { color: #aebacd; }
.donate-band .kicker { color: var(--green-300); }

.donate-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.13); box-shadow: none; }
.donate-card:hover { border-color: rgba(52,211,153,.5); }
.donate-card h3 { color: #fff; }
.donate-card p { color: #aebacd; }
.donate-card .ticks li { color: #cdd6e4; font-size: .92rem; padding: .28rem 0; }
.donate-card .ticks li::before { content: "✓ "; color: var(--green-400); font-weight: 700; }
.donate-card.popular { border-color: var(--green-400); box-shadow: 0 0 0 1px var(--green-400), 0 20px 50px rgba(52,211,153,.15); }
.popular-flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .35rem 1rem; border-radius: 999px; }

.amounts { display: flex; gap: .55rem; flex-wrap: wrap; margin-top: 1.1rem; }
.amounts button { background: rgba(255,255,255,0.07); color: #fff; border: 1px solid rgba(255,255,255,0.22); border-radius: 12px; padding: .65rem 1.1rem; font-weight: 600; cursor: pointer; transition: .2s; font-family: var(--sans); }
.amounts button:hover, .amounts button.sel { background: var(--grad); border-color: transparent; transform: translateY(-2px); }

.goal { max-width: 680px; margin: 3.4rem auto 0; text-align: center; }
.goal .bar { height: 16px; background: rgba(255,255,255,0.1); border-radius: 999px; overflow: hidden; border: 1px solid rgba(255,255,255,0.14); }
.goal .fill { height: 100%; width: 0; border-radius: 999px; background: var(--grad); transition: width 1.6s cubic-bezier(.22,.8,.3,1); position: relative; }
.goal .fill::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent); animation: shimmer 2.4s infinite; }
@keyframes shimmer { from { transform: translateX(-100%); } to { transform: translateX(100%); } }
.goal .meta { display: flex; justify-content: space-between; font-size: .9rem; color: #aebacd; margin-top: .7rem; }
.goal .meta strong { color: #fff; }

/* ---------- Volunteer ---------- */
.vol-meta { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .9rem; }
.chip { font-size: .76rem; font-weight: 600; color: var(--navy-600); background: var(--paper); border: 1px solid var(--line); padding: .32rem .8rem; border-radius: 999px; }

/* ---------- Events ---------- */
.event { display: flex; gap: 1.3rem; align-items: flex-start; }
.event .date { flex: 0 0 auto; width: 70px; text-align: center; background: var(--navy-800); color: #fff; border-radius: 16px; padding: .8rem 0; }
.event .date b { display: block; font-family: var(--serif); font-size: 1.55rem; line-height: 1.05; }
.event .date span { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--green-300); font-weight: 700; }
.event .emeta { display: flex; gap: .9rem; font-size: .8rem; color: var(--ink-soft); margin-top: .5rem; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin-inline: auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 16px; margin-bottom: .9rem; overflow: hidden; transition: box-shadow .25s; }
.faq-item.open { box-shadow: var(--shadow); border-color: #c9ecd9; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font: 600 1rem var(--sans); color: var(--navy-800);
  padding: 1.2rem 1.4rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q .pm { flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: #e7f9ef; color: var(--green-700); font-weight: 700; transition: transform .3s, background .3s; }
.faq-item.open .pm { transform: rotate(45deg); background: var(--green-600); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); font-size: .95rem; }

/* ---------- Transparency ---------- */
.meter { margin-top: 1rem; }
.meter .row { display: flex; justify-content: space-between; font-size: .89rem; margin-bottom: .3rem; }
.meter .row b { color: var(--navy-800); }
.meter .track { height: 10px; border-radius: 999px; background: #eef2f7; overflow: hidden; margin-bottom: 1rem; }
.meter .track i { display: block; height: 100%; border-radius: 999px; background: var(--grad); width: 0; transition: width 1.3s ease; }
.metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: .8rem; margin-top: 1.1rem; }
.metrics div { text-align: center; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 1.05rem .5rem; }
.metrics .v { font-family: var(--serif); font-weight: 600; font-size: 1.35rem; color: var(--green-700); }
.metrics .k { font-size: .76rem; color: var(--ink-soft); }

/* ---------- Split feature (about preview) ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 3.6rem; align-items: center; }
.split .imgstack { position: relative; }
.split .imgstack .main { border-radius: 26px; box-shadow: var(--shadow-lg); width: 100%; height: 460px; object-fit: cover; }
.split .imgstack .float {
  position: absolute; bottom: -2rem; right: -1.4rem; width: 240px; height: 170px;
  object-fit: cover; border-radius: 20px; border: 6px solid #fff; box-shadow: var(--shadow-lg);
}
.split .imgstack .badge {
  position: absolute; top: -1.3rem; left: -1.3rem;
  background: var(--grad); color: #fff; border-radius: 18px; padding: 1rem 1.3rem;
  box-shadow: 0 14px 34px rgba(22,163,74,.4); text-align: center;
}
.split .imgstack .badge b { font-family: var(--serif); display: block; font-size: 1.7rem; line-height: 1; }
.split .imgstack .badge span { font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; opacity: .92; }
.split h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--navy-800); line-height: 1.18; margin-bottom: 1.1rem; }
.split h2 em { font-style: italic; color: var(--green-600); }
.split p { color: var(--ink-soft); margin-bottom: 1rem; }
.split .quote-mini {
  border-left: 4px solid var(--green-400); background: #fff; border-radius: 0 16px 16px 0;
  padding: 1.1rem 1.4rem; margin: 1.4rem 0; box-shadow: var(--shadow);
}
.split .quote-mini i { font-family: var(--serif); color: var(--ink); }
.split .quote-mini .by { font-size: .85rem; font-weight: 600; color: var(--ink-soft); margin-top: .5rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; color: #fff; text-align: center; padding: 6rem 0; isolation: isolate; overflow: hidden; }
.cta-band .bg { position: absolute; inset: 0; z-index: -2; background: url('../img/community.jpg') center/cover no-repeat; }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(7,13,29,.92), rgba(21,128,61,.78)); }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .8rem; }
.cta-band h2 em { font-style: italic; color: var(--mint); }
.cta-band p { opacity: .92; margin-bottom: 2.2rem; max-width: 36rem; margin-inline: auto; }
.cta-band .actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Page hero ---------- */
.page-hero { position: relative; color: #fff; padding: 6rem 0 7.5rem; isolation: isolate; overflow: hidden; text-align: center; }
.page-hero .bg { position: absolute; inset: 0; z-index: -2; background: center 35%/cover no-repeat; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(7,13,29,.93) 30%, rgba(11,19,36,.66)); }
.page-hero h1 { font-size: clamp(2.3rem, 4.6vw, 3.6rem); margin-bottom: .8rem; }
.page-hero h1 em { font-style: italic; color: var(--green-300); }
.page-hero p { color: #c4cedf; max-width: 40rem; margin-inline: auto; font-size: 1.05rem; }
.crumbs { display: flex; gap: .5rem; justify-content: center; font-size: .82rem; color: #8d9bb1; margin-bottom: 1.2rem; }
.crumbs a { color: var(--green-300); font-weight: 600; }

/* ---------- About page ---------- */
.mission-quote {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: 24px; box-shadow: var(--shadow-lg);
  padding: 3rem 3.2rem 2.6rem; margin: 0 auto; max-width: 820px;
}
.mission-quote::before { content: "“"; position: absolute; top: -28px; left: 2.2rem; font-family: var(--serif); font-size: 7rem; line-height: 1; color: var(--green-400); }
.mission-quote blockquote { font-family: var(--serif); font-size: 1.45rem; font-style: italic; color: var(--ink); line-height: 1.5; }
.mission-quote .by { margin-top: 1.4rem; display: flex; align-items: center; gap: 1rem; }
.mission-quote .avatar { width: 54px; height: 54px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-family: var(--serif); font-size: 1.3rem; font-weight: 600; }
.mission-quote .by b { color: var(--navy-800); display: block; }
.mission-quote .by span { font-size: .85rem; color: var(--ink-soft); }

.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 2.2rem; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 3px; border-radius: 3px; background: linear-gradient(var(--green-400), var(--green-600)); }
.tl-item { position: relative; padding: 0 0 2.2rem 1.6rem; }
.tl-item::before { content: ""; position: absolute; left: -2.2rem; top: 4px; width: 19px; height: 19px; border-radius: 50%; background: #fff; border: 5px solid var(--green-500, var(--green-600)); box-shadow: 0 0 0 4px #e7f9ef; }
.tl-item .yr { font-family: var(--serif); font-weight: 600; color: var(--green-700); font-size: 1.05rem; }
.tl-item h3 { color: var(--navy-800); margin: .15rem 0 .3rem; font-size: 1.12rem; }
.tl-item p { color: var(--ink-soft); font-size: .95rem; }

/* ---------- Store ---------- */
.price { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; color: var(--navy-800); margin-top: 1rem; }
.price small { font-family: var(--sans); font-size: .78rem; color: var(--ink-soft); font-weight: 500; }
.lvl { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; padding: .3rem .75rem; border-radius: 999px; margin-bottom: .9rem; width: fit-content; }
.lvl.beginner { background: #e7f9ef; color: var(--green-700); border: 1px solid #c9f0dd; }
.lvl.intermediate { background: #fef6e0; color: #a16207; border: 1px solid #fde68a; }
.lvl.advanced { background: #fdecec; color: #b91c1c; border: 1px solid #fecaca; }
.store-note { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 2.4rem; max-width: 880px; margin: 3.4rem auto 0; }
.store-note h3 { font-family: var(--serif); color: var(--navy-800); margin-bottom: .8rem; font-size: 1.35rem; }
.store-note p { color: var(--ink-soft); font-size: .96rem; margin-bottom: .85rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 2rem; align-items: start; }
.contact-info .card { margin-bottom: 1.2rem; flex-direction: row; gap: 1.2rem; align-items: center; }
.contact-info .emoji { margin-bottom: 0; flex: 0 0 auto; }
.contact-info h3 { margin-bottom: .15rem; }
.contact-info p { font-size: .94rem; }
.contact-info a { color: var(--green-700); font-weight: 600; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-lg); padding: 2.6rem; }
.form-card h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--navy-800); }
.form-card label { display: block; font-weight: 600; font-size: .9rem; color: var(--navy-800); margin: 1.2rem 0 .45rem; }
.form-card input, .form-card textarea, .form-card select {
  width: 100%; font: inherit; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 13px;
  padding: .85rem 1.05rem; background: var(--paper);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.form-card input:focus, .form-card textarea:focus, .form-card select:focus { outline: 0; border-color: var(--green-400); box-shadow: 0 0 0 4px rgba(52,211,153,.16); background: #fff; }
.form-card textarea { min-height: 150px; resize: vertical; }
.form-card .btn { margin-top: 1.6rem; width: 100%; }
.map-frame { border: 0; width: 100%; height: 420px; border-radius: 24px; box-shadow: var(--shadow-lg); display: block; }

/* ---------- Footer ---------- */
.site-footer { position: relative; background: var(--navy-900); color: #aebacd; padding: 4.5rem 0 2rem; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.3fr 1.3fr; gap: 2.6rem; padding-bottom: 2.6rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.site-footer h4 { color: #fff; font-size: .95rem; margin-bottom: 1.1rem; font-family: var(--serif); }
.site-footer p, .site-footer li, .site-footer a { font-size: .92rem; }
.site-footer li { padding: .28rem 0; }
.site-footer a:hover { color: var(--green-300); }
.footer-brand { display: flex; align-items: center; gap: .7rem; color: #fff; font-weight: 700; margin-bottom: 1rem; font-family: var(--serif); }
.footer-brand img { width: 40px; height: 40px; border-radius: 10px; }
.socials { display: flex; gap: .6rem; margin-top: 1.2rem; }
.socials a { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); transition: .25s; }
.socials a:hover { background: var(--grad); border-color: transparent; transform: translateY(-3px); }
.socials svg { width: 17px; height: 17px; fill: #fff; }
.newsletter { display: flex; gap: .5rem; margin-top: .9rem; }
.newsletter input { flex: 1; font: inherit; color: #fff; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.18); border-radius: 11px; padding: .7rem .95rem; }
.newsletter input::placeholder { color: #7e8aa0; }
.newsletter button { border-radius: 11px; }
.copyright { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .84rem; color: #66738a; padding-top: 1.8rem; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 150;
  width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--grad); color: #fff; font-size: 1.15rem;
  box-shadow: 0 12px 30px rgba(22,163,74,.45);
  opacity: 0; pointer-events: none; transform: translateY(14px);
  transition: .3s;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { transform: translateY(-3px); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 30px; transform: translateX(-50%) translateY(20px);
  background: var(--navy-800); color: #fff; padding: .9rem 1.5rem; border-radius: 999px;
  font-size: .92rem; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none;
  transition: .35s; z-index: 300; max-width: 92vw; text-align: center;
  border: 1px solid rgba(52,211,153,.4);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.6rem; }
  .hero { min-height: auto; }
  .hero-card { transform: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stat-strip .wrap { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 3rem; }
  .split .imgstack .main { height: 380px; }
  .slide { grid-template-columns: 1fr; }
  .slide .simg { height: 230px; position: relative; }
}
@media (max-width: 680px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: -4.5%; right: -4.5%;
    background: var(--navy-900); padding: 1.1rem 5%; gap: .25rem;
    border-bottom: 1px solid rgba(255,255,255,.1); box-shadow: 0 30px 50px rgba(0,0,0,.4);
  }
  .nav.open .nav-links a { padding: .85rem 1rem; }
  .nav-toggle { display: block; }
  .hero { padding: 4rem 0 7rem; }
  .hero p.lead { font-size: 1.05rem; }
  .scroll-cue { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .slide .scontent { padding: 1.8rem; }
  .split .imgstack .float { display: none; }
  .split .imgstack .badge { padding: .7rem 1rem; }
  .split .imgstack .badge b { font-size: 1.3rem; }
  section.block { padding: 3.8rem 0; }
  .mission-quote { padding: 2.4rem 1.6rem 2rem; }
}

/* ============================================================
   v3 additions — modal, cart, team, articles, donor wall
   ============================================================ */

/* ---------- Modal (donate) ---------- */
.modal-veil {
  position: fixed; inset: 0; z-index: 380;
  background: rgba(7, 13, 29, 0.66); backdrop-filter: blur(6px);
  display: grid; place-items: center; padding: 1rem;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-veil.show { opacity: 1; pointer-events: auto; }
.modal {
  width: min(560px, 100%); max-height: 92vh; overflow: auto;
  background: #fff; border-radius: 24px; box-shadow: var(--shadow-lg);
  padding: 2.2rem; transform: translateY(24px) scale(.98); transition: transform .3s;
}
.modal-veil.show .modal { transform: none; }
.modal h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--navy-800); margin-bottom: .2rem; }
.modal .demo-flag {
  display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: #fef6e0; color: #a16207; border: 1px solid #fde68a;
  padding: .3rem .7rem; border-radius: 999px; margin-bottom: 1rem;
}
.modal .mrow { display: flex; gap: .55rem; flex-wrap: wrap; margin: .6rem 0 1rem; }
.modal .mrow button {
  flex: 1 1 auto; background: var(--paper); color: var(--navy-800);
  border: 1.5px solid var(--line); border-radius: 12px;
  padding: .7rem .9rem; font: 600 .92rem var(--sans); cursor: pointer; transition: .2s;
}
.modal .mrow button.sel { background: var(--grad); color: #fff; border-color: transparent; }
.modal label { display: block; font-weight: 600; font-size: .88rem; color: var(--navy-800); margin: .9rem 0 .35rem; }
.modal input, .modal select {
  width: 100%; font: inherit; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 12px;
  padding: .75rem .95rem; background: var(--paper);
}
.modal input:focus, .modal select:focus { outline: 0; border-color: var(--green-400); box-shadow: 0 0 0 4px rgba(52,211,153,.15); background: #fff; }
.modal .btn { width: 100%; margin-top: 1.3rem; }
.modal .mclose { position: absolute; }
.modal-head { display: flex; justify-content: space-between; align-items: flex-start; }
.xbtn { background: var(--paper); border: 1px solid var(--line); width: 36px; height: 36px; border-radius: 50%; font-size: 1rem; cursor: pointer; color: var(--ink-soft); transition: .2s; flex: 0 0 auto; }
.xbtn:hover { background: #fdecec; color: #b91c1c; transform: rotate(90deg); }
.modal .success { text-align: center; padding: 2rem 0 1rem; }
.modal .success .big { font-size: 3rem; }

/* ---------- Cart ---------- */
.cart-fab {
  position: fixed; right: 22px; bottom: 84px; z-index: 150;
  width: 54px; height: 54px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--navy-800); color: #fff; font-size: 1.3rem;
  box-shadow: 0 12px 30px rgba(11,19,36,.4); transition: .25s;
  display: grid; place-items: center;
}
.cart-fab:hover { transform: translateY(-3px); }
.cart-fab .cart-n {
  position: absolute; top: -4px; right: -4px; min-width: 22px; height: 22px;
  border-radius: 999px; background: var(--grad); color: #fff;
  font: 700 .72rem/22px var(--sans); text-align: center; padding: 0 5px;
}
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 390;
  width: min(420px, 100vw); background: #fff;
  box-shadow: -30px 0 70px rgba(7,13,29,.3);
  transform: translateX(105%); transition: transform .35s cubic-bezier(.25,.8,.3,1);
  display: flex; flex-direction: column;
}
.cart-drawer.show { transform: none; }
.cart-head { display: flex; justify-content: space-between; align-items: center; padding: 1.4rem 1.6rem; border-bottom: 1px solid var(--line); }
.cart-head h3 { font-family: var(--serif); color: var(--navy-800); font-size: 1.25rem; }
.cart-items { flex: 1; overflow: auto; padding: 1rem 1.6rem; }
.cart-line { display: flex; align-items: center; gap: .9rem; padding: .8rem 0; border-bottom: 1px dashed var(--line); }
.cart-line .nm { flex: 1; font-weight: 600; font-size: .92rem; color: var(--navy-800); }
.cart-line .nm small { display: block; color: var(--ink-soft); font-weight: 500; }
.cart-line .qty { display: flex; align-items: center; gap: .45rem; }
.cart-line .qty button { width: 26px; height: 26px; border-radius: 8px; border: 1px solid var(--line); background: var(--paper); cursor: pointer; font-weight: 700; color: var(--navy-800); }
.cart-line .rm { background: none; border: 0; color: #b91c1c; cursor: pointer; font-size: .85rem; }
.cart-foot { border-top: 1px solid var(--line); padding: 1.3rem 1.6rem; }
.cart-total { display: flex; justify-content: space-between; font-weight: 700; color: var(--navy-800); margin-bottom: 1rem; }
.cart-empty { text-align: center; color: var(--ink-soft); padding: 3rem 1rem; }
.cart-empty .big { font-size: 2.6rem; margin-bottom: .6rem; }

/* product photo on store cards */
.prodph { height: 190px; border-radius: 14px; overflow: hidden; margin-bottom: 1.1rem; background: var(--paper); }
.prodph img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .prodph img { transform: scale(1.06); }

/* ---------- Team ---------- */
.tcard { text-align: center; align-items: center; }
.tcard .tavatar {
  width: 110px; height: 110px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  color: var(--green-300); font-family: var(--serif); font-size: 2.1rem; font-weight: 600;
  border: 4px solid #e7f9ef; box-shadow: 0 10px 26px rgba(11,19,36,.2);
  margin-bottom: 1.1rem;
}
.tcard .trole { font-size: .78rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--green-700); margin-bottom: .6rem; }
.sample-note {
  max-width: 700px; margin: 2.4rem auto 0; text-align: center;
  font-size: .85rem; color: #a16207; background: #fef6e0; border: 1px solid #fde68a;
  border-radius: 14px; padding: .9rem 1.3rem;
}

/* ---------- Articles / news ---------- */
.article { max-width: 760px; margin: 0 auto 2rem; background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); overflow: hidden; }
.article .aimg { height: 280px; }
.article .aimg img { width: 100%; height: 100%; object-fit: cover; }
.article .abody { padding: 2.2rem 2.6rem; }
.article .ameta { display: flex; gap: 1rem; font-size: .82rem; color: var(--ink-soft); margin-bottom: .8rem; flex-wrap: wrap; }
.article h2 { font-size: 1.7rem; color: var(--navy-800); margin-bottom: .8rem; }
.article p { color: var(--ink-soft); margin-bottom: .9rem; }

/* ---------- Donor wall ---------- */
.tier { margin-bottom: 2.6rem; }
.tier h3 { font-family: var(--serif); text-align: center; font-size: 1.35rem; color: var(--navy-800); margin-bottom: 1.2rem; }
.tier h3 .tico { margin-right: .4rem; }
.donor-grid { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; }
.donor {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: .6rem 1.3rem; font-weight: 600; font-size: .92rem; color: var(--navy-600);
  box-shadow: var(--shadow); transition: .2s;
}
.donor:hover { transform: translateY(-3px); border-color: #c9ecd9; }
.donor.gold { border-color: #fde68a; background: linear-gradient(135deg, #fffbeb, #fef3c7); color: #92400e; }
.donor.silver { border-color: #e2e8f0; background: linear-gradient(135deg, #f8fafc, #eef2f7); }

/* ---------- Wishlist ---------- */
.wish-item { display: flex; gap: 1rem; align-items: center; }
.wish-item .wico { flex: 0 0 auto; width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 1.4rem; background: linear-gradient(135deg, #ecfdf5, #d1fae5); border: 1px solid #c9f0dd; }
.wish-item .wneed { margin-left: auto; font-size: .78rem; font-weight: 700; color: var(--green-700); background: #e7f9ef; border: 1px solid #c9f0dd; padding: .3rem .8rem; border-radius: 999px; white-space: nowrap; }

/* ---------- Legal pages ---------- */
.legal { max-width: 780px; margin-inline: auto; }
.legal h2 { font-size: 1.35rem; color: var(--navy-800); margin: 2.2rem 0 .6rem; }
.legal p, .legal li { color: var(--ink-soft); font-size: .96rem; margin-bottom: .7rem; }
.legal ul { list-style: disc; padding-left: 1.4rem; }

/* ---------- Badges row ---------- */
.badges-row { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-top: 2.2rem; }
.badge-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 600; color: var(--ink-soft);
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: .55rem 1.2rem; box-shadow: var(--shadow);
}

/* ---------- Lang toggle ---------- */
.lang-link { font-weight: 700; letter-spacing: .06em; }

@media (max-width: 680px) {
  .modal { padding: 1.6rem; }
  .article .abody { padding: 1.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ================= VIDEO STORY BAND ================= */
.video-band { padding: 5.5rem 0; background: var(--navy-800); }
.video-band .section-head .kicker { color: var(--green-300); }
.video-band .section-head h2 { color: #fff; }
.video-band .section-head h2 em { color: var(--green-300); }
.video-band .section-head p { color: #aab6c9; }
.video-frame {
  max-width: 56rem; margin: 0 auto; position: relative;
  aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--navy-900);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
