/* ==========================================================================
   ICW Ghana — Shared Stylesheet
   Design tokens, layout, components and page styles for all pages.
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Palette matched to the ICW Ghana Chapter logo: green ring, blue wordmark,
     red + yellow accents, cream ground. Token names kept for compatibility —
     --coral is now the brand GREEN, --teal is now the brand BLUE. */
  --coral: #2f9e4f;        /* brand green (primary actions) */
  --coral-dark: #26833f;
  --coral-soft: #d3ecdb;
  --teal: #2f7fb8;         /* brand blue (secondary) */
  --teal-dark: #235f8c;
  --navy: #123b64;         /* deep blue (headings & dark sections) */
  --navy-soft: #1d4f82;
  --cream: #f6f3e9;        /* logo cream */
  --cream-2: #fbf9f2;
  --ink: #33414d;
  --muted: #6f7d86;
  --line: #e6e0d3;
  --white: #ffffff;
  --red: #e23b2e;          /* logo red accent */
  --yellow: #f6c21c;       /* logo yellow accent */

  --font-serif: "Fredoka", "Poppins", system-ui, sans-serif; /* rounded display face, echoes the ICW poster lettering */
  --font-sans: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 4px 14px rgba(44, 62, 68, 0.08);
  --shadow-md: 0 14px 40px rgba(44, 62, 68, 0.12);
  --radius: 14px;
  --radius-lg: 22px;
  --pill: 999px;
  --container: 1160px;
  --transition: 0.25s ease;
}

/* ---------- Reset / Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 700;
}

p { margin: 0 0 1rem; }

a { color: var(--coral-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--coral); }

img { max-width: 100%; display: block; }

ul { margin: 0; padding: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 84px 0; }
.section--tight { padding: 60px 0; }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: #dfe6e8; }
.section--navy h1,
.section--navy h2,
.section--navy h3 { color: #fff; }

.text-center { text-align: center; }

/* ---------- Reusable bits ---------- */
.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0 0 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 3px;
  background: var(--red);
  border-radius: 3px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.4em;
}

.lead { font-size: 1.05rem; color: var(--muted); max-width: 640px; }
.section-head { max-width: 720px; margin-bottom: 46px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Hand-drawn / human touches */
.hl {
  background: linear-gradient(120deg, rgba(246,194,28,0.55), rgba(246,194,28,0.55));
  background-repeat: no-repeat;
  background-size: 100% 40%;
  background-position: 0 82%;
  padding: 0 3px;
  border-radius: 3px;
}
.ci-ico { width: 26px; height: 26px; display: block; }
.section-head.center .eyebrow::after {
  content: "";
  width: 24px; height: 3px;
  background: var(--red); border-radius: 3px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid transparent;
  border-radius: var(--pill);
  padding: 13px 30px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary { background: var(--coral); color: #fff; box-shadow: 0 10px 24px rgba(47, 158, 79, 0.32); }
.btn--primary:hover { background: var(--coral-dark); color: #fff; transform: translateY(-2px); }
.btn--teal { background: var(--teal); color: #fff; }
.btn--teal:hover { background: var(--teal-dark); color: #fff; transform: translateY(-2px); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-soft); color: #fff; transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--outline:hover { border-color: var(--coral); color: var(--coral-dark); }
.btn--white { background: #fff; color: var(--navy); }
.btn--white:hover { background: var(--cream); color: var(--navy); }
.btn--sm { padding: 10px 22px; font-size: 0.8rem; }
.btn--block { width: 100%; justify-content: center; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.topbar {
  background: var(--teal);
  color: #eafafa;
  font-size: 0.82rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: #eafafa; }
.topbar a:hover { color: #fff; }
.topbar__info { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__info span { display: inline-flex; align-items: center; gap: 7px; }
.topbar__social { display: flex; gap: 14px; align-items: center; }
.topbar__social a { display: inline-flex; }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}
.brand:hover { color: var(--navy); }
.brand__mark { color: var(--coral); font-size: 1.6rem; }
.brand__logo { width: 44px; height: 44px; object-fit: contain; border-radius: 8px; flex: none; }
.footer .brand__logo { background: #fff; padding: 3px; }
.brand small { display: block; font-family: var(--font-sans); font-size: 0.6rem; letter-spacing: 0.2em; color: var(--muted); font-weight: 600; }

.nav__links {
  display: flex;
  gap: 6px;
  list-style: none;
  align-items: center;
}
.nav__links a {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 8px 14px;
  border-radius: var(--pill);
}
.nav__links a:hover { color: var(--coral-dark); }
.nav__links a.active { color: var(--coral-dark); font-weight: 600; }

.nav__actions { display: flex; align-items: center; gap: 14px; }

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
  color: var(--navy);
}
.nav__toggle svg { width: 28px; height: 28px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  color: #fff;
  background: linear-gradient(90deg, rgba(18,40,66,0.86) 0%, rgba(18,40,66,0.60) 55%, rgba(18,40,66,0.32) 100%),
              url("../images/child-health-building.jpg?v=5") center/cover no-repeat;
}
.hero__inner { max-width: 620px; padding: 60px 0; }
.hero__eyebrow { font-family: var(--font-sans); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.85rem; font-weight: 700; color: var(--yellow); margin-bottom: 0.9rem; }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 5.2vw, 4rem); margin-bottom: 0.3em; }
.hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 6px 0 30px;
}
.hero__line { width: 140px; height: 14px; background: no-repeat center/contain url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='140'%20height='14'%20viewBox='0%200%20140%2014'%3E%3Cpath%20d='M3%209%20Q20%201%2037%209%20T71%209%20T105%209%20T137%208'%20fill='none'%20stroke='%23f6c21c'%20stroke-width='3'%20stroke-linecap='round'/%3E%3C/svg%3E"); }
.hero__tag {
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--pill);
  padding: 5px 18px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Page banner (interior pages) */
.page-banner {
  position: relative;
  color: var(--navy);
  padding: 66px 0 58px;
  text-align: center;
  background:
    radial-gradient(120% 95% at 50% -20%, rgba(246,194,28,0.20), rgba(246,194,28,0) 62%),
    var(--cream);
  border-bottom: 1px solid var(--line);
}
.page-banner .container { display: flex; flex-direction: column; align-items: center; }
.pb-brand {
  order: 1;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
  margin: 0 0 12px;
}
.page-banner h1 { order: 2; color: var(--navy); font-size: clamp(2rem, 4vw, 3rem); margin: 0; }
.breadcrumb { order: 3; font-size: 0.82rem; color: var(--muted); letter-spacing: 0.04em; margin: 14px 0 0; }
.breadcrumb a { color: var(--navy); }
.breadcrumb span { opacity: 0.55; }

/* ==========================================================================
   Feature cards (overlap under hero)
   ========================================================================== */
.features {
  position: relative;
  z-index: 5;
  margin-top: -80px;
  padding-bottom: 30px;
}
.features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.feature {
  padding: 40px 34px;
  color: #fff;
}
.feature h3 { color: #fff; font-size: 1.5rem; }
.feature p { color: rgba(255,255,255,0.85); font-size: 0.92rem; }
.feature--teal { background: var(--teal); }
.feature--navy { background: var(--navy); }
.feature--photo {
  padding: 0;
  position: relative;
  background: linear-gradient(rgba(47,158,79,0.32), rgba(18,40,66,0.32)),
              url("../images/library-visit.jpg?v=5") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}
.play-btn {
  width: 66px; height: 66px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  color: var(--coral-dark);
  transition: transform var(--transition);
}
.play-btn:hover { transform: scale(1.08); color: var(--coral-dark); }
.feature .link-underline { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.6); padding-bottom: 2px; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; }

/* ==========================================================================
   About / Goals section
   ========================================================================== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.goals-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.goals-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  list-style: none;
  margin-bottom: 28px;
}
.goals-list li { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--navy); font-size: 0.95rem; }
.check {
  width: 22px; height: 22px; flex: none;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
}
.progress-head { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--muted); margin-bottom: 8px; }
.progress {
  height: 8px;
  background: #e4dcd7;
  border-radius: var(--pill);
  overflow: hidden;
  margin-bottom: 24px;
}
.progress__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--coral-dark));
  border-radius: var(--pill);
  width: 0;
  transition: width 1.4s ease;
}

/* ==========================================================================
   Cards / Causes / Blog
   ========================================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card__media img { transform: scale(1.06); }
.card__badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--yellow); color: var(--navy);
  font-family: var(--font-serif);
  font-weight: 600; font-size: 0.92rem;
  padding: 5px 15px; border-radius: 7px;
  box-shadow: var(--shadow-sm);
  transform: rotate(-4deg);
}
.card__tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--coral); color: #fff;
  font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 5px 13px; border-radius: var(--pill);
}
.card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.card__meta { font-size: 0.78rem; color: var(--muted); margin-bottom: 8px; display: flex; gap: 14px; flex-wrap: wrap; }
.card__body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card__body p { font-size: 0.92rem; color: var(--muted); }
.card__foot { margin-top: auto; padding-top: 18px; }
.card .progress { margin-bottom: 10px; }
.card__raised { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--muted); margin-bottom: 16px; }
.card__raised strong { color: var(--navy); }

/* ==========================================================================
   Stats band
   ========================================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat__num { font-family: var(--font-serif); font-size: 2.8rem; color: var(--coral); font-weight: 700; line-height: 1; }
.stat__label { color: var(--muted); font-size: 0.9rem; margin-top: 8px; }
.section--navy .stat__label { color: #b9c6c9; }
.section--navy .stat__num { color: var(--yellow); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.testi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  position: relative;
}
.testi__quote { font-size: 1.02rem; color: var(--ink); font-style: italic; }
.testi__person { display: flex; align-items: center; gap: 14px; margin-top: 18px; }
.testi__person img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testi__person strong { display: block; color: var(--navy); }
.testi__person span { font-size: 0.82rem; color: var(--muted); }
.quote-mark { position: absolute; top: 20px; right: 28px; font-family: var(--font-serif); font-size: 4rem; color: var(--coral-soft); line-height: 1; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background: linear-gradient(120deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin: 0; font-size: clamp(1.6rem, 3vw, 2.3rem); }
.cta-band p { color: rgba(255,255,255,0.9); margin: 8px 0 0; }

/* ==========================================================================
   Team
   ========================================================================== */
.team-card { text-align: center; }
.team-card .card__media { aspect-ratio: 1 / 1; border-radius: var(--radius); }
.team-card .card__media img { object-position: center top; }
.team-card h3 { margin: 16px 0 2px; font-size: 1.2rem; }
.team-role { color: var(--coral-dark); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.05em; }
.team-bio { font-size: 0.88rem; color: var(--muted); margin: 10px 0 14px; }
.team-social { display: flex; gap: 12px; justify-content: center; }
.team-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cream); color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.team-social a:hover { background: var(--coral); color: #fff; }
.team-card .card__media.avatar-initials {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  color: #fff; font-family: var(--font-serif); font-weight: 700;
  font-size: 3.2rem; letter-spacing: 1px;
}

/* ==========================================================================
   Forms (donation + contact)
   ========================================================================== */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream-2);
  transition: border var(--transition);
}
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--teal); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }

.toggle {
  display: inline-flex;
  background: var(--cream);
  border-radius: var(--pill);
  padding: 5px;
  margin-bottom: 22px;
}
.toggle button {
  border: 0; background: none; cursor: pointer;
  padding: 9px 26px; border-radius: var(--pill);
  font-family: inherit; font-weight: 600; font-size: 0.85rem;
  color: var(--muted); transition: all var(--transition);
}
.toggle button.active { background: var(--coral); color: #fff; box-shadow: var(--shadow-sm); }

.amounts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 18px; }
.amount-btn {
  border: 2px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 14px 0;
  font-family: inherit; font-weight: 700; font-size: 1rem;
  color: var(--navy); cursor: pointer;
  transition: all var(--transition);
}
.amount-btn:hover { border-color: var(--coral); }
.amount-btn.active { background: var(--coral); border-color: var(--coral); color: #fff; }

.form-note { font-size: 0.82rem; color: var(--muted); text-align: center; margin-top: 14px; }
.form-success {
  background: var(--teal);
  color: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  margin-top: 18px;
  display: none;
}
.form-success.show { display: block; }

/* Mobile Money donation panel */
.momo-card { text-align: center; }
.momo-badge {
  display: inline-block;
  background: var(--yellow); color: var(--navy);
  font-weight: 700; font-size: 0.72rem; letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--pill);
  margin-bottom: 14px;
}
.momo-title { font-size: 1.5rem; margin-bottom: 6px; }
.momo-lead { color: var(--muted); font-size: 0.95rem; margin-bottom: 22px; }
.momo-number {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--cream); border: 2px dashed var(--teal);
  border-radius: var(--radius); padding: 16px 20px; margin-bottom: 22px;
}
.momo-digits {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(1.5rem, 5vw, 2rem); letter-spacing: 0.04em; color: var(--navy);
}
.momo-copy {
  border: 0; cursor: pointer; flex: none;
  background: var(--coral); color: #fff;
  font-family: var(--font-sans); font-weight: 600; font-size: 0.82rem;
  padding: 9px 18px; border-radius: var(--pill);
  transition: background var(--transition);
}
.momo-copy:hover { background: var(--coral-dark); }
.momo-steps {
  list-style: none; counter-reset: momo; text-align: left;
  display: grid; gap: 12px; margin-bottom: 22px;
}
.momo-steps li {
  counter-increment: momo; position: relative;
  padding-left: 40px; color: var(--ink); font-size: 0.92rem;
}
.momo-steps li::before {
  content: counter(momo);
  position: absolute; left: 0; top: -1px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--teal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-weight: 700; font-size: 0.85rem;
}

/* Photo duo (real-image gallery) */
.photo-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.photo-duo figure { margin: 0; }
.photo-duo img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}
.photo-duo figcaption { margin-top: 14px; color: var(--muted); font-size: 0.92rem; }

/* Info tiles */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info-tile {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; text-align: center;
}
.info-tile .icon-circle {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--coral-soft); color: var(--coral-dark);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.info-tile h3 { font-size: 1.1rem; }
.info-tile p { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* Contact layout */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 46px; align-items: start; }
.contact-list { list-style: none; display: grid; gap: 22px; margin-bottom: 30px; }
.contact-list li { display: flex; gap: 16px; }
.contact-list .icon-circle {
  width: 48px; height: 48px; border-radius: 50%; flex: none;
  background: var(--cream); color: var(--coral-dark);
  display: inline-flex; align-items: center; justify-content: center;
}
.contact-list strong { display: block; color: var(--navy); }
.contact-list span { color: var(--muted); font-size: 0.92rem; }
.map-embed {
  border-radius: var(--radius); overflow: hidden; height: 260px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); border: 1px dashed var(--line);
  background-image: url("../images/map-placeholder.jpg?v=5");
  background-size: cover; background-position: center;
}

/* Values / mission */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.value {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px;
}
.value .icon-circle {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--teal); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.value h3 { font-size: 1.2rem; }
.value p { font-size: 0.92rem; color: var(--muted); margin: 0; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.mv-card {
  background: var(--cream); border-radius: var(--radius); padding: 30px; margin-bottom: 22px;
  border-left: 4px solid var(--coral);
}
.mv-card h3 { margin-bottom: 8px; }
.mv-card p { margin: 0; color: var(--muted); }

/* Focus areas list */
.focus-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.focus-item { display: flex; gap: 14px; align-items: flex-start; background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.focus-item .num { font-family: var(--font-serif); font-size: 1.6rem; color: var(--coral); font-weight: 700; line-height: 1; }
.focus-item h4 { margin: 0 0 4px; color: var(--navy); font-family: var(--font-sans); font-size: 1rem; }
.focus-item p { margin: 0; font-size: 0.88rem; color: var(--muted); }

/* Blog single */
.post {
  max-width: 780px; margin: 0 auto;
}
.post__hero img { border-radius: var(--radius-lg); margin-bottom: 30px; }
.post__meta { display: flex; gap: 18px; color: var(--muted); font-size: 0.85rem; margin-bottom: 14px; flex-wrap: wrap; }
.post h2 { margin-top: 1.6em; }
.post blockquote {
  border-left: 4px solid var(--coral);
  background: var(--cream);
  padding: 20px 26px; margin: 26px 0;
  font-family: var(--font-serif); font-style: italic; font-size: 1.15rem; color: var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.tag-list { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 30px; }
.tag-list a { background: var(--cream); color: var(--navy); padding: 6px 16px; border-radius: var(--pill); font-size: 0.8rem; }
.tag-list a:hover { background: var(--coral); color: #fff; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--navy); color: #b9c6c9; padding: 70px 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer h4 { color: #fff; font-family: var(--font-sans); font-size: 1rem; margin-bottom: 20px; }
.footer a { color: #b9c6c9; }
.footer a:hover { color: var(--coral); }
.footer__links { list-style: none; display: grid; gap: 12px; font-size: 0.92rem; }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer .brand small { color: #8fa1a5; }
.footer__about p { font-size: 0.92rem; }
.footer__social { display: flex; gap: 12px; margin-top: 18px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.footer__social a:hover { background: var(--coral); }
.topbar__social svg { width: 16px; height: 16px; display: block; }
.footer__social svg { width: 18px; height: 18px; display: block; }
.team-social svg { width: 17px; height: 17px; display: block; }
.footer__news { display: flex; gap: 8px; margin-top: 14px; }
.footer__news input {
  flex: 1; padding: 11px 14px; border: 0; border-radius: var(--pill);
  font-family: inherit; font-size: 0.85rem;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 0.85rem;
}

/* ==========================================================================
   Utilities / Animation
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

.icon { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.icon--sm { width: 16px; height: 16px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .features__grid { grid-template-columns: 1fr; }
  .about__grid,
  .split,
  .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .card-grid,
  .info-grid,
  .value-grid { grid-template-columns: 1fr 1fr; }
  .photo-duo { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .testi-grid,
  .focus-list { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .section { padding: 70px 0; }
  .split { gap: 34px; }
}

@media (max-width: 780px) {
  .nav__toggle { display: inline-flex; }
  .nav .container { min-height: 64px; gap: 10px; }
  .brand { font-size: 1.25rem; }
  .brand__logo { width: 38px; height: 38px; }
  .nav__links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 16px 18px;
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 13px 10px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav__links li:last-child a { border-bottom: 0; }
  .topbar__info { display: none; }
  .topbar .container { justify-content: center; }
  .cta-band { padding: 38px 26px; text-align: center; justify-content: center; }
  .hero { min-height: 500px; }
  .hero__inner { padding: 40px 0; }
  .page-banner { padding: 48px 0 42px; }
}

@media (max-width: 560px) {
  .section { padding: 52px 0; }
  .card-grid,
  .info-grid,
  .value-grid,
  .stats,
  .goals-list,
  .amounts,
  .form-row,
  .footer__grid { grid-template-columns: 1fr; }
  .amounts { grid-template-columns: 1fr 1fr; }
  .form-card,
  .goals-card { padding: 22px; }
  .hero { min-height: 460px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .cta-band .btn { width: 100%; justify-content: center; }
  .footer { padding: 50px 0 0; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .brand small { display: none; }
  .nav__actions .btn { padding: 9px 15px; }
  .pb-brand { letter-spacing: 0.14em; font-size: 0.66rem; }
  .container { padding: 0 18px; }
}
