/* ==========================================================
   FPHCM — Foundation for Peace, Hope & Conflict Management
   Palette drawn from the crest: navy field, white dove,
   olive branch, golden beak.
   ========================================================== */
:root {
  --navy-950: #0a1638;
  --navy-900: #0f2257;
  --navy-800: #16307a;
  --navy-700: #1f3f96;
  --navy-100: #e6ecf8;
  --navy-50:  #f2f5fc;
  --olive-700: #3d6e1f;
  --olive-600: #4c8a27;
  --olive-100: #e8f2df;
  --gold-500: #f0b429;
  --gold-600: #d99a0f;
  --gold-100: #fdf3d8;
  --cream:    #fbf8f1;
  --ink:      #17213a;
  --ink-2:    #45506a;
  --ink-3:    #6b7590;
  --line:     #e3e6ee;
  --white:    #fff;

  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15, 34, 87, .06), 0 2px 8px rgba(15, 34, 87, .05);
  --shadow:    0 10px 30px -10px rgba(15, 34, 87, .22);
  --shadow-lg: 0 30px 60px -20px rgba(15, 34, 87, .35);
  --wrap: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--white); color: var(--ink);
  font: 400 17px/1.7 var(--font-sans);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--navy-900); }
h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--navy-900); line-height: 1.15; margin: 0 0 .5em; font-weight: 600; letter-spacing: -.01em; }
h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.75rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1.1em; }
ul { padding-left: 1.2em; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; border-radius: 4px; }
.ic { width: 1.1em; height: 1.1em; flex: none; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--gutter); }
.skip { position: absolute; left: -999px; top: 8px; background: var(--navy-900); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .8em 1.4em; border-radius: 999px; border: 2px solid transparent;
  font: 600 .98rem/1.2 var(--font-sans); text-decoration: none; cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 1em 1.8em; font-size: 1.05rem; }
.btn-primary { background: var(--navy-800); color: #fff; box-shadow: 0 8px 20px -8px rgba(22, 48, 122, .6); }
.btn-primary:hover { background: var(--navy-900); color: #fff; }
.btn-gold { background: var(--gold-500); color: var(--navy-950); box-shadow: 0 8px 20px -8px rgba(217, 154, 15, .7); }
.btn-gold:hover { background: var(--gold-600); color: var(--navy-950); }
.btn-outline { border-color: var(--navy-800); color: var(--navy-800); background: transparent; }
.btn-outline:hover { background: var(--navy-800); color: #fff; }
.btn-ghost-light { border-color: rgba(255, 255, 255, .55); color: #fff; }
.btn-ghost-light:hover { background: #fff; color: var(--navy-900); }
.link-arrow { display: inline-flex; align-items: center; gap: .4em; font-weight: 600; text-decoration: none; color: var(--navy-700); }
.link-arrow .ic { transition: transform .15s; }
.link-arrow:hover .ic { transform: translateX(4px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6em; margin-bottom: 1rem;
  font: 700 .78rem/1 var(--font-sans); letter-spacing: .16em; text-transform: uppercase; color: var(--olive-700);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.eyebrow-light { color: var(--gold-500); }
.lead { font-size: 1.18rem; color: var(--ink-2); }

/* ---------- Top bar & header ---------- */
.topbar { background: var(--navy-950); color: #c9d3ee; font-size: .85rem; }
.topbar-in { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 40px; }
.topbar .motto { margin: 0; font-family: var(--font-serif); }
.topbar .motto em { color: var(--gold-500); }
.topbar-links { display: flex; align-items: center; gap: 18px; list-style: none; margin: 0; padding: 0; }
.topbar-links a { color: #c9d3ee; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.topbar-links a:hover { color: #fff; }

.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid transparent; transition: box-shadow .2s, border-color .2s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.header-in { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 84px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--navy-900); }
.brand img { width: 56px; height: 56px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font: 700 1.35rem/1 var(--font-serif); letter-spacing: .04em; color: var(--navy-800); }
.brand-text small { font-size: .72rem; color: var(--ink-3); margin-top: 4px; font-weight: 500; }
.brand-light, .brand-light .brand-text strong { color: #fff; }
.brand-light .brand-text small { color: #aeb9da; }

.nav { display: flex; align-items: center; gap: 22px; }
.nav ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav ul a {
  display: block; padding: 8px 12px; border-radius: 8px; color: var(--ink); text-decoration: none;
  font-weight: 500; font-size: .96rem; position: relative;
}
.nav ul a:hover { color: var(--navy-800); background: var(--navy-50); }
.nav ul a[aria-current="page"] { color: var(--navy-800); font-weight: 600; }
.nav ul a[aria-current="page"]::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 2px; height: 2px; background: var(--gold-500); border-radius: 2px; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; color: var(--navy-900); cursor: pointer; }
.nav-toggle .ic { width: 28px; height: 28px; }
.nav-toggle .i-close { display: none; }

@media (max-width: 1080px) {
  .topbar .motto span, .topbar-links li:nth-child(2) span { display: none; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(360px, 88vw); background: #fff; z-index: 60;
    flex-direction: column; align-items: stretch; padding: 96px 24px 32px; gap: 20px;
    box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform .28s ease; overflow-y: auto;
  }
  .nav ul { flex-direction: column; }
  .nav ul a { padding: 14px 12px; font-size: 1.1rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav ul a[aria-current="page"]::after { display: none; }
  .nav-open .nav { transform: none; }
  .nav-open .nav-toggle { position: fixed; right: 16px; top: 22px; z-index: 70; }
  .nav-open .nav-toggle .i-open { display: none; }
  .nav-open .nav-toggle .i-close { display: block; }
  .nav-open::after { content: ""; position: fixed; inset: 0; background: rgba(10, 22, 56, .45); z-index: 55; }
  .nav-open { overflow: hidden; }
}
@media (max-width: 560px) {
  .topbar-links li:first-child { display: none; }
  .topbar .motto { font-size: .8rem; }
  .brand-text small { display: none; }
  .header-in { min-height: 72px; }
  .brand img { width: 48px; height: 48px; }
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(64px, 9vw, 112px); }
.section-tight { padding-block: clamp(48px, 6vw, 72px); }
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy-900); color: #d5dcf0; }
.bg-navy h2, .bg-navy h3 { color: #fff; }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::after { content: ""; width: 28px; height: 2px; background: currentColor; }
.section-head-row { display: flex; justify-content: space-between; align-items: end; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.section-head-row .section-head { margin-bottom: 0; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--cream) 0%, #fff 100%); }
.hero::before {
  content: ""; position: absolute; right: -180px; top: -180px; width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 63, 150, .09), transparent 65%);
}
.hero-in { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; padding-block: clamp(48px, 7vw, 96px); }
.hero h1 { margin-bottom: .35em; }
.hero h1 em { font-style: italic; color: var(--olive-700); }
.hero .lead { max-width: 560px; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust { display: flex; align-items: center; gap: 10px; margin-top: 28px; color: var(--ink-3); font-size: .9rem; }
.hero-trust .ic { color: var(--olive-600); width: 20px; height: 20px; }

.hero-media { position: relative; }
.hero-media .main {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 4.3; box-shadow: var(--shadow-lg);
}
.hero-media .main img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .inset {
  position: absolute; left: -36px; bottom: 48px; width: 42%; aspect-ratio: 1; border-radius: var(--radius);
  overflow: hidden; border: 6px solid #fff; box-shadow: var(--shadow);
}
.hero-media .inset img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; right: -14px; top: 32px; background: #fff; border-radius: var(--radius); padding: 14px 18px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px; max-width: 250px;
}
.hero-badge img { width: 44px; height: 44px; }
.hero-badge strong { display: block; font: 600 1.05rem/1.2 var(--font-serif); color: var(--navy-900); }
.hero-badge span { font-size: .8rem; color: var(--ink-3); line-height: 1.3; display: block; }

@media (max-width: 900px) {
  .hero-in { grid-template-columns: 1fr; }
  .hero-media { max-width: 560px; margin-inline: auto; width: 100%; }
  .hero-media .inset { left: -8px; bottom: -20px; width: 38%; }
  .hero-badge { right: 8px; top: 16px; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; color: #fff; background: var(--navy-900); overflow: hidden;
  padding-block: clamp(64px, 9vw, 120px) clamp(48px, 7vw, 88px);
}
.page-hero .bg { position: absolute; inset: 0; }
.page-hero .bg img { width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(10, 22, 56, .95) 30%, rgba(15, 34, 87, .55)); }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; max-width: 820px; }
.page-hero .lead { color: #d5dcf0; max-width: 680px; margin: 0; }
.crumbs { display: flex; gap: 8px; list-style: none; padding: 0; margin: 0 0 18px; font-size: .88rem; color: #aeb9da; }
.crumbs a { color: #fff; text-decoration: none; }
.crumbs li + li::before { content: "/"; margin-right: 8px; opacity: .6; }

/* ---------- Stats ---------- */
.stats { background: var(--navy-800); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 36px 24px; text-align: center; border-left: 1px solid rgba(255, 255, 255, .12); }
.stat:first-child { border-left: 0; }
.stat strong { display: block; font: 600 clamp(2.2rem, 4vw, 3rem)/1 var(--font-serif); color: var(--gold-500); margin-bottom: 8px; }
.stat span { font-size: .95rem; color: #d5dcf0; }
@media (max-width: 760px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, .12); }
}

/* ---------- Split / about ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
.split-media .tag {
  position: absolute; right: -12px; bottom: -22px; background: var(--olive-600); color: #fff; border-radius: var(--radius);
  padding: 18px 22px; box-shadow: var(--shadow); max-width: 240px;
}
.split-media .tag strong { display: block; font: 600 1.8rem/1 var(--font-serif); }
.split-media .tag span { font-size: .88rem; opacity: .95; }
.checks { list-style: none; padding: 0; margin: 0 0 1.8em; display: grid; gap: 10px; }
.checks li { display: flex; gap: 10px; align-items: flex-start; }
.checks .ic { color: var(--olive-600); margin-top: .35em; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split-media .tag { right: 8px; } }
/* Transparent collage PNGs from the original site: show whole, unframed */
.split-media.plain img { border-radius: 0; box-shadow: none; aspect-ratio: auto; object-fit: contain; filter: drop-shadow(0 18px 30px rgba(15, 34, 87, .18)); }

/* ---------- Core values ---------- */
.values { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.value {
  position: relative; text-align: center; padding: 30px 18px 26px; border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); transition: transform .2s, background .2s;
}
.value:hover { transform: translateY(-4px); background: rgba(255, 255, 255, .09); }
.value img { width: 128px; height: 128px; object-fit: contain; margin: 0 auto 18px; border-radius: 50%; box-shadow: 0 0 0 6px rgba(255, 255, 255, .08); }
.value-num { position: absolute; top: 14px; left: 18px; font: 600 .85rem var(--font-serif); color: var(--gold-500); letter-spacing: .06em; }
.value h3 { font-size: 1.12rem; margin: 0; color: #fff; }
@media (max-width: 1000px) { .values { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .values { grid-template-columns: 1fr 1fr; } .value img { width: 104px; height: 104px; } }
@media (max-width: 380px)  { .values { grid-template-columns: 1fr; } }

/* ---------- What we do ---------- */
.wwd { display: grid; grid-template-columns: 1fr 1.35fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.wwd-media { position: sticky; top: 120px; display: grid; gap: 24px; justify-items: start; }
.wwd-media img { width: 100%; filter: drop-shadow(0 18px 30px rgba(15, 34, 87, .18)); }
.wwd-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.wwd-item { background: var(--cream); border-radius: var(--radius-lg); padding: 26px 24px; border: 1px solid transparent; transition: border-color .2s, transform .2s; }
.wwd-item:hover { border-color: var(--navy-100); transform: translateY(-3px); }
.wwd-ic { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--navy-800); color: var(--gold-500); margin-bottom: 16px; }
.wwd-ic .ic { width: 24px; height: 24px; }
.wwd-item h3 { font-size: 1.15rem; margin-bottom: .45em; }
.wwd-item p { margin: 0; font-size: .95rem; color: var(--ink-2); }
/* Intro variant (Who we are / Our story): heading spans full width, image pinned top-left, facts under it */
.section-head-wide { max-width: 900px; }
.wwd-intro { grid-template-columns: 1.1fr 1fr; }
.wwd-intro .wwd-media { justify-items: stretch; }
.intro-copy > :last-child { margin-bottom: 0; }
.intro-copy .btn { margin-top: .6em; }
.fact-card { background: var(--cream); border-radius: var(--radius-lg); padding: 22px 24px; margin: 0; }
.fact-card.checks { gap: 12px; }
.fact-reg { display: flex; gap: 14px; align-items: flex-start; }
.fact-reg .ic { width: 28px; height: 28px; color: var(--olive-600); flex: none; margin-top: 2px; }
.fact-reg strong { display: block; font: 600 1.1rem/1.3 var(--font-serif); color: var(--navy-900); }
.fact-reg span { font-size: .92rem; color: var(--ink-2); }
@media (max-width: 1000px) { .wwd { grid-template-columns: 1fr; } .wwd-media { position: static; max-width: 620px; } }
@media (max-width: 620px)  { .wwd-list { grid-template-columns: 1fr; } }

/* ---------- Pillars (vision/mission/objectives) ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar { background: #fff; border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.pillar .badge { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px; }
.pillar .badge .ic { width: 26px; height: 26px; }
.pillar:nth-child(1) .badge { background: var(--navy-100); color: var(--navy-800); }
.pillar:nth-child(2) .badge { background: var(--olive-100); color: var(--olive-700); }
.pillar:nth-child(3) .badge { background: var(--gold-100); color: var(--gold-600); }
.pillar p { color: var(--ink-2); margin: 0; }
@media (max-width: 860px) { .pillars { grid-template-columns: 1fr; } }

/* ---------- Focus areas ---------- */
.focus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.focus {
  position: relative; padding: 30px 28px; border-radius: var(--radius-lg); background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1); transition: background .2s, transform .2s; text-decoration: none; color: inherit; display: block;
}
.focus:hover { background: rgba(255, 255, 255, .08); transform: translateY(-3px); color: inherit; }
.focus .ic { width: 34px; height: 34px; color: var(--gold-500); margin-bottom: 18px; }
.focus h3 { font-size: 1.22rem; margin-bottom: .4em; }
.focus p { margin: 0; font-size: .96rem; color: #b9c4e2; }
@media (max-width: 900px) { .focus-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .focus-grid { grid-template-columns: 1fr; } }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  display: flex; flex-direction: column; background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; text-decoration: none; color: inherit;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); color: inherit; }
.card-img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy-50); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-body h3 { font-size: 1.25rem; margin: 0; }
.card-body p { color: var(--ink-2); font-size: .97rem; margin: 0; flex: 1; }
.card-meta { display: flex; flex-wrap: wrap; gap: 8px 14px; font-size: .82rem; color: var(--ink-3); }
.card-meta span { display: inline-flex; align-items: center; gap: 5px; }
.chip { display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--olive-700); background: var(--olive-100); padding: 5px 10px; border-radius: 999px; align-self: flex-start; }
@media (max-width: 980px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .cards { grid-template-columns: 1fr; } }

/* ---------- Story / quote band ---------- */
.story { display: grid; grid-template-columns: 1fr 1.1fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; background: var(--navy-900); box-shadow: var(--shadow-lg); }
.story-img img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.story-body { padding: clamp(32px, 5vw, 64px); color: #d5dcf0; }
.story-body .ic-quote { width: 44px; height: 44px; color: var(--gold-500); margin-bottom: 18px; }
.story-body blockquote { margin: 0 0 24px; font: 500 clamp(1.3rem, 2.4vw, 1.7rem)/1.4 var(--font-serif); color: #fff; }
@media (max-width: 860px) { .story { grid-template-columns: 1fr; } .story-img img { min-height: 240px; max-height: 320px; } }

/* ---------- Partners ---------- */
.partners { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.partner {
  padding: 16px 26px; border-radius: 999px; border: 1px solid var(--line); background: #fff;
  font: 600 1rem/1.2 var(--font-serif); color: var(--navy-800); display: flex; align-items: center; gap: 10px;
}
.partner small { font: 500 .78rem var(--font-sans); color: var(--ink-3); }

/* ---------- Ways to help ---------- */
.ways { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.way { background: #fff; border-radius: var(--radius-lg); padding: 34px 30px; border: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; }
.way .ic { width: 38px; height: 38px; color: var(--navy-700); }
.way h3 { margin: 6px 0 0; }
.way p { color: var(--ink-2); margin: 0; flex: 1; }
.way.featured { background: var(--navy-800); border-color: var(--navy-800); color: #d5dcf0; }
.way.featured h3 { color: #fff; }
.way.featured p { color: #d5dcf0; }
.way.featured .ic { color: var(--gold-500); }
@media (max-width: 900px) { .ways { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--navy-800), var(--navy-900) 60%); color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; right: -80px; top: -120px; width: 380px; height: 380px; border-radius: 50%; border: 60px solid rgba(240, 180, 41, .08); }
.cta-band-in { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 32px; padding-block: clamp(48px, 7vw, 80px); flex-wrap: wrap; }
.cta-band h2 { color: #fff; max-width: 640px; margin: 0; font-size: clamp(1.6rem, 3vw, 2.3rem); }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: #aeb9da; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.1fr 1.4fr; gap: 40px; padding-block: 72px 48px; }
.site-footer h3 { color: #fff; font: 600 .82rem/1 var(--font-sans); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.footer-about p { margin: 18px 0 0; }
.footer-about .reg { display: flex; gap: 8px; font-size: .84rem; color: #8f9bc2; }
.footer-about .reg .ic { color: var(--olive-600); margin-top: 3px; }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer a { color: #d5dcf0; text-decoration: none; }
.site-footer a:hover { color: var(--gold-500); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact .ic { color: var(--gold-500); margin-top: 4px; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, .07); }
.socials a:hover { background: var(--gold-500); color: var(--navy-950); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-top: 1px solid rgba(255, 255, 255, .08); padding-block: 22px; font-size: .85rem; }
.footer-bottom p { margin: 0; }
.motto-foot em { font-family: var(--font-serif); color: var(--gold-500); }
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Programmes page ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.filter {
  border: 1px solid var(--line); background: #fff; color: var(--ink-2); padding: 9px 16px; border-radius: 999px;
  font: 500 .92rem var(--font-sans); cursor: pointer;
}
.filter:hover { border-color: var(--navy-700); color: var(--navy-800); }
.filter[aria-pressed="true"] { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.anchor { scroll-margin-top: 110px; }

/* ---------- Article (programme detail) ---------- */
.article { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(32px, 5vw, 64px); align-items: start; }
.article-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 36px; box-shadow: var(--shadow); }
.article-img img { width: 100%; max-height: 520px; object-fit: cover; }
.prose { font-size: 1.08rem; color: var(--ink-2); }
.prose p:first-child::first-letter { font: 600 3.4em/.9 var(--font-serif); float: left; margin: .06em .1em 0 0; color: var(--navy-800); }
.prose ul { padding: 0; list-style: none; display: grid; gap: 10px; margin: 0 0 1.2em; }
.prose li { display: flex; gap: 10px; }
.prose li::before { content: ""; flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--olive-600); margin-top: .65em; }
.aside { position: sticky; top: 110px; display: grid; gap: 20px; }
.aside-box { background: var(--cream); border-radius: var(--radius-lg); padding: 26px; }
.aside-box h3 { font-size: 1.05rem; margin-bottom: 14px; }
.facts { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; font-size: .95rem; }
.facts li { display: flex; gap: 10px; }
.facts .ic { color: var(--olive-600); margin-top: 4px; }
.facts b { display: block; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.aside-donate { background: var(--navy-800); color: #d5dcf0; }
.aside-donate h3 { color: #fff; }
.aside-donate p { font-size: .95rem; }
@media (max-width: 900px) { .article { grid-template-columns: 1fr; } .aside { position: static; } }

/* ---------- Gallery ---------- */
.masonry { columns: 3 280px; column-gap: 16px; }
.masonry a { display: block; margin-bottom: 16px; border-radius: var(--radius); overflow: hidden; break-inside: avoid; position: relative; }
.masonry img { width: 100%; transition: transform .4s; }
.masonry a:hover img { transform: scale(1.04); }
.gallery-group + .gallery-group { margin-top: 64px; }
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(6, 12, 32, .94); display: grid; place-items: center; padding: 56px 16px; }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: 8px; object-fit: contain; }
.lightbox button { position: absolute; background: rgba(255, 255, 255, .1); border: 0; color: #fff; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; }
.lightbox button:hover { background: rgba(255, 255, 255, .2); }
.lightbox .lb-close { top: 16px; right: 16px; }
.lightbox .lb-prev { left: 16px; top: 50%; transform: translateY(-50%) scaleX(-1); }
.lightbox .lb-next { right: 16px; top: 50%; transform: translateY(-50%); }
.lightbox .ic { width: 22px; height: 22px; }

/* ---------- Team ---------- */
.team { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.member { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 20px; }
.avatar { width: 96px; height: 96px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--navy-700), var(--navy-900)); color: #fff; font: 600 1.8rem var(--font-serif); }
.member h3 { font-size: 1.12rem; margin-bottom: 4px; }
.member p { margin: 0; color: var(--ink-3); font-size: .9rem; }

/* ---------- Timeline ---------- */
.timeline { list-style: none; padding: 0; margin: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 11px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.timeline li { position: relative; padding: 0 0 28px 44px; }
.timeline li::before { content: ""; position: absolute; left: 4px; top: 7px; width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 3px solid var(--olive-600); }
.timeline b { display: block; font: 600 1.05rem var(--font-serif); color: var(--navy-900); }
.timeline span { color: var(--ink-2); font-size: .98rem; }

/* ---------- Donate ---------- */
.give-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 880px; margin-inline: auto; }
.give { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-sm); padding: 36px 32px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.give .cur { width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; font: 600 2rem var(--font-serif); background: var(--navy-50); color: var(--navy-800); }
.give h3 { margin: 6px 0 0; }
.give p { color: var(--ink-2); margin: 0 0 8px; }
.give.alt .cur { background: var(--olive-100); color: var(--olive-700); }
.impact-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.impact { background: var(--cream); border-radius: var(--radius); padding: 24px; }
.impact .ic { width: 30px; height: 30px; color: var(--olive-600); margin-bottom: 10px; }
.impact h3 { font-size: 1.1rem; margin-bottom: 6px; }
.impact p { margin: 0; color: var(--ink-2); font-size: .95rem; }
.secure { display: flex; justify-content: center; align-items: center; gap: 8px; color: var(--ink-3); font-size: .9rem; margin-top: 28px; }
@media (max-width: 760px) { .give-grid, .impact-list { grid-template-columns: 1fr; } }

/* ---------- Forms ---------- */
.form-card { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow); padding: clamp(24px, 4vw, 44px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.form-grid .full { grid-column: 1 / -1; }
.field label, .field legend { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 6px; color: var(--ink); }
.field .req { color: #c0392b; }
.field input, .field select, .field textarea {
  width: 100%; font: 400 1rem/1.5 var(--font-sans); color: var(--ink); background: #fff;
  border: 1.5px solid var(--line); border-radius: 10px; padding: 12px 14px; transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy-700); box-shadow: 0 0 0 4px rgba(31, 63, 150, .12); }
fieldset.field { border: 0; padding: 0; margin: 0; }
.checks-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; }
.check { display: flex; gap: 10px; align-items: center; padding: 10px 14px; border: 1.5px solid var(--line); border-radius: 10px; cursor: pointer; font-size: .95rem; }
.check:has(input:checked) { border-color: var(--olive-600); background: var(--olive-100); }
.check input { accent-color: var(--olive-600); width: 18px; height: 18px; }
.hp { position: absolute; left: -5000px; }
.alert { padding: 16px 20px; border-radius: 12px; margin-bottom: 24px; display: flex; gap: 12px; align-items: flex-start; }
.alert .ic { margin-top: 4px; }
.alert-ok { background: var(--olive-100); color: var(--olive-700); }
.alert-err { background: #fdecea; color: #a23024; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }

.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(32px, 5vw, 56px); align-items: start; }
.contact-cards { display: grid; gap: 16px; }
.contact-card { display: flex; gap: 16px; padding: 22px; border-radius: var(--radius); background: var(--cream); }
.contact-card .ic { width: 26px; height: 26px; color: var(--navy-700); flex: none; margin-top: 2px; }
.contact-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.contact-card p { margin: 0; color: var(--ink-2); }
.map { border-radius: var(--radius-lg); overflow: hidden; margin-top: 16px; border: 1px solid var(--line); }
.map iframe { width: 100%; height: 260px; border: 0; display: block; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Motion ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: .01ms !important; }
}
