﻿:root {
  --primary: #0F766E;
  --primary-dark: #064E3B;
  --navy: #111827;
  --cream: #F5F1E8;
  --white: #FFFFFF;
  --muted: #4B5563;
  --border: #E5E7EB;
  --light-strong: #F8FAFC;
  --light-muted: rgba(255, 255, 255, 0.82);
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.08);
  --radius-img: 16px;
  --radius-card: 16px;
  --radius-pill: 999px;
  --radius-icon: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--cream);
  color: var(--navy);
  font-family: "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}
a { color: inherit; }
.container { width: min(1200px, calc(100% - 2rem)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(245, 241, 232, 0.96);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(245, 241, 232, 0.96);
  box-shadow: var(--shadow-soft);
}
.nav-wrap { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .9rem; text-decoration: none; }
.brand-logo, .brand-logo .custom-logo-link { display: flex; align-items: center; }
.brand-logo img { display: block; width: auto; height: auto; max-width: 100%; }
.brand strong { font-size: 1.02rem; letter-spacing: .02em; color: var(--navy); }
.brand span { font-size: .78rem; color: var(--muted); }

.primary-nav .menu, .footer-menu { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.2rem; flex-wrap: wrap; }
.primary-nav a, .footer-menu a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 600;
  padding: .4rem .1rem;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.primary-nav a:hover, .primary-nav a:focus-visible { color: var(--primary); border-bottom-color: rgba(15, 118, 110, .42); }
.footer-menu a { text-decoration: underline; text-underline-offset: 3px; color: var(--primary); }
.footer-menu a:hover { color: var(--primary-dark); }
.footer-menu {
  flex-direction: column;
  gap: .4rem;
}

.inner-page-stack a:not(.btn) { text-decoration: underline; text-underline-offset: 3px; color: var(--primary); }
.inner-page-stack a:not(.btn):hover { color: var(--primary-dark); }

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: .5rem .82rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  padding: .8rem 1.35rem;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, .menu-toggle:focus-visible, .primary-nav a:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; }
.hero .btn:focus-visible,
.cta .btn:focus-visible { outline-color: #ffffff; }
.btn-small { padding: .62rem 1.02rem; }
.btn, .btn-donate { background: var(--primary); color: var(--white); }
.btn:hover, .btn-donate:hover { background: var(--primary-dark); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: rgba(15, 118, 110, .09); }
.hero .btn-outline {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.75);
}
.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
}

.homepage-revslider { width: 100%; overflow: hidden; aspect-ratio: 1920 / 700; min-height: 0; }
.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.15)),
    linear-gradient(130deg, #0d3f39 0%, #126056 56%, #1c3550 100%);
  color: var(--light-strong);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 16%, rgba(255, 255, 255, .16), transparent 44%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}
.hero-copy {
  max-width: 620px;
}
.hero-image {
  justify-self: end;
  width: min(560px, 100%);
  margin-top: 0;
}
.kicker {
  margin: 0 0 .9rem;
  color: var(--light-muted);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
h1, h2, h3, h4 { margin: 0 0 .9rem; color: var(--navy); line-height: 1.15; }
h1 {
  color: var(--navy);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  max-width: 18ch;
}
.hero h1 {
  color: var(--light-strong);
}
.hero h2 {
  color: var(--light-strong);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  max-width: 18ch;
}
h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; }
h3 { font-size: clamp(18px, 2.2vw, 22px); font-weight: 700; }
h4 {
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
p { margin: .15rem 0 1rem; color: var(--muted); font-size: clamp(16px, 1.5vw, 18px); line-height: 1.7; }
.hero p { color: var(--light-muted); }
.lead { max-width: 64ch; }
.section-lead {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--navy);
  max-width: 62ch;
  margin-inline: auto;
  text-align: center;
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.35rem; }

.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-cue svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.55);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

.section { padding: 90px 0; }
.who-section { background: #FFFFFF; }
.who-copy h2 {
  padding-left: .9rem;
  border-left: 3px solid var(--primary);
}
.difference-section { background: #FFFFFF; }
.difference-section .card {
  display: flex;
  flex-direction: column;
}
.card-cta-link {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  margin-top: auto;
  padding-top: .75rem;
  color: var(--primary);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: color .2s ease;
}
.card-cta-link:hover { color: var(--primary-dark); }
.section-alt { background: linear-gradient(180deg, #f0ebdf 0%, #ece5d8 100%); }
.section-impact {
  background: linear-gradient(160deg, #0b5e56 0%, var(--primary-dark) 100%);
}
.section-impact .impact-value { color: #ffffff; }
.section-impact .impact-label { color: var(--light-muted); }
.section-impact .impact-card {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .15);
}
.section-impact .impact-card:hover { background: rgba(255, 255, 255, .13); }
.section-intro { background: linear-gradient(110deg, #0b5f57 0%, #0a4f42 100%); }
.intro-highlight { margin: 0; color: var(--light-strong); max-width: 72ch; }

.inner-page-section {
  background: #FFFFFF;
}
.inner-page-stack {
  max-width: 1080px;
}
.inner-page-stack > h1 {
  font-size: clamp(34px, 4vw, 52px);
  margin-bottom: 1rem;
  max-width: none;
  padding-bottom: .85rem;
  border-bottom: 3px solid var(--primary);
}
.inner-page-stack > p {
  max-width: 74ch;
}
.inner-page-stack > * + * {
  margin-top: 1.15rem;
}
.inner-page-stack ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}
.inner-page-stack li + li {
  margin-top: .45rem;
}
.inner-page-stack .two-col {
  margin-top: 1.4rem;
}
.inner-page-stack .two-col > div:first-child {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 1.35rem;
}
.inner-page-stack .icon-cards .icon-card h3 {
  justify-content: center;
  text-align: center;
}
.inner-page-stack .cards .card h3 {
  text-transform: none;
}
.inner-page-stack .btn {
  min-width: 160px;
}

.two-col { display: grid; grid-template-columns: 1.08fr .92fr; gap: 24px; align-items: center; }
.who-copy, .who-media, .card, .icon-card, .impact-card, .trust-item, .testimonial-card, .cta {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}
.who-copy, .who-media { padding: 1.35rem; }
.who-section .who-copy,
.who-section .who-media {
  border: 0;
  box-shadow: none;
}

.cards, .icon-cards, .impact-grid, .trust-grid { display: grid; gap: 24px; }
.cards.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cards.two   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.icon-cards.six { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.icon-cards.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.impact-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.trust-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card, .icon-card, .impact-card, .trust-item { transition: transform .2s ease, box-shadow .2s ease; }
.card:hover, .icon-card:hover, .impact-card:hover, .trust-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}
.card, .icon-card, .impact-card, .trust-item { padding: 1.2rem; }
.section-title-center {
  text-align: center;
  margin-bottom: 1.7rem;
}
.section-title-center::after {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: .55rem auto 0;
}
.section-impact .section-title-center::after,
.section-testimonial .section-title-center::after {
  background: rgba(255, 255, 255, .4);
}

.media-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-img);
  border: 1px solid var(--border);
}
.card-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: .95rem;
}

.icon-card {
  padding: 1.8rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.icon-card h3 {
  font-size: 1.02rem;
  margin: 0 0 .35rem;
  line-height: 1.3;
}
.icon-card p {
  font-size: .92rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}
.mission-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(145deg, #edf7f4 0%, #c4ece2 100%);
  color: var(--primary);
  margin-bottom: 1.1rem;
  box-shadow: 0 0 0 8px rgba(15, 118, 110, 0.07);
  transition: transform .25s ease, box-shadow .25s ease;
}
.icon-card:hover .mission-icon {
  transform: scale(1.1);
  box-shadow: 0 0 0 12px rgba(15, 118, 110, 0.13);
}
.mission-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.impact-card { text-align: center; }
.impact-value { margin: 0; color: var(--primary); font-size: clamp(34px, 5vw, 46px); font-weight: 800; line-height: 1.1; }
.impact-label { margin: .45rem 0 0; font-size: 1rem; font-weight: 600; }
.impact-context {
  margin: .2rem 0 0;
  font-size: .8rem;
  color: var(--light-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 600;
}

.section-testimonial {
  background: var(--navy);
}
.section-testimonial .section-title-center {
  color: var(--light-strong);
}
.section-testimonial .testimonial-card {
  padding: 2rem;
  text-align: center;
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .12);
  box-shadow: none;
}
.section-testimonial .testimonial-card blockquote {
  color: var(--light-strong);
}
.section-testimonial .testimonial-name {
  color: var(--light-muted);
}
.testimonial-avatar {
  width: 56px; height: 56px; margin: 0 auto 1rem;
  border-radius: 50%; display: grid; place-items: center;
  background: var(--primary); color: #fff; font-weight: 700;
}
.testimonial-card blockquote { margin: 0; color: var(--navy); font-size: clamp(20px, 2.2vw, 28px); line-height: 1.4; font-weight: 700; }

.trust-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.8rem; justify-content: center; }
.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(145deg, #edf7f4 0%, #c4ece2 100%);
  color: var(--primary);
  margin-bottom: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 8px rgba(15, 118, 110, 0.07);
  transition: transform .25s ease, box-shadow .25s ease;
}
.trust-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.8rem 1.4rem;
  border-top: 3px solid var(--primary);
}
.trust-item:hover .trust-icon {
  transform: scale(1.1);
  box-shadow: 0 0 0 12px rgba(15, 118, 110, 0.13);
}
.cta-band { background: #F5F1E8; }
.cta {
  padding: 2.2rem;
  text-align: left;
  background: linear-gradient(130deg, #0b5e56 0%, #0c4d3f 100%);
  border-color: rgba(255, 255, 255, .24);
}
.cta-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.2rem;
  align-items: center;
}
.cta-mark {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cta-mark svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cta-copy h2 { color: var(--light-strong); margin-bottom: .45rem; }
.cta-copy p { color: var(--light-muted); margin: 0; max-width: 64ch; }
.cta-copy {
  text-align: center;
}
.cta-actions {
  display: flex;
  align-items: center;
  gap: .8rem;
  justify-content: flex-end;
  white-space: nowrap;
}
.btn-light {
  background: #fff;
  color: var(--primary-dark);
  border-color: #fff;
}
.btn-light:hover {
  background: #f3f4f6;
  border-color: #f3f4f6;
}
.btn-light-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.75);
}
.btn-light-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form label {
  display: flex; flex-direction: column; gap: .35rem;
  font-weight: 600; font-size: .95rem; color: var(--navy);
}
.contact-form input,
.contact-form textarea {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .65rem .9rem;
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  color: var(--navy);
  transition: border-color .2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, .15);
}
.contact-form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form .wpcf7-form p {
  margin: 0;
}
.contact-form .wpcf7-form-control-wrap {
  display: block;
}
.contact-form .wpcf7-form label {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
}
.contact-form .wpcf7-form input[type="text"],
.contact-form .wpcf7-form input[type="email"],
.contact-form .wpcf7-form input[type="tel"],
.contact-form .wpcf7-form input[type="url"],
.contact-form .wpcf7-form select,
.contact-form .wpcf7-form textarea {
  width: 100%;
  height: 130px;
  resize: vertical;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .65rem .9rem;
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  color: var(--navy);
  transition: border-color .2s ease;
}
.contact-form .wpcf7-form input:focus,
.contact-form .wpcf7-form select:focus,
.contact-form .wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, .15);
}
.contact-form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  padding: .8rem 1.35rem;
  text-decoration: none;
  font-weight: 700;
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.contact-form .wpcf7-submit:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
}
.contact-form .wpcf7-spinner {
  margin: 0 0 0 .5rem;
}
/* Hide CF7's default <br> separators — flexbox handles spacing */
.contact-form .wpcf7-form br { display: none; }
/* Ensure control-wrap spans don't shrink inputs */
.contact-form .wpcf7-form-control-wrap { display: block; width: 100%; }
/* Invalid field highlight */
.contact-form .wpcf7 input.wpcf7-not-valid,
.contact-form .wpcf7 textarea.wpcf7-not-valid,
.contact-form .wpcf7 select.wpcf7-not-valid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .12);
}
.contact-form .wpcf7-not-valid-tip {
  display: block;
  margin-top: .3rem;
  font-size: .82rem;
  color: #dc2626;
}
/* Response output — reset CF7 defaults then apply themed states */
.contact-form .wpcf7 form .wpcf7-response-output {
  margin: .85rem 0 0;
  border: none;
  border-radius: 8px;
  padding: .75rem 1rem;
  font-size: .9rem;
  line-height: 1.5;
}
.contact-form .wpcf7 form.sent .wpcf7-response-output {
  background: rgba(15, 118, 110, .09);
  color: #065f46;
  border-left: 3px solid var(--primary);
}
.contact-form .wpcf7 form.failed .wpcf7-response-output,
.contact-form .wpcf7 form.invalid .wpcf7-response-output,
.contact-form .wpcf7 form.spam .wpcf7-response-output,
.contact-form .wpcf7 form.aborted .wpcf7-response-output {
  background: rgba(220, 38, 38, .07);
  color: #b91c1c;
  border-left: 3px solid #ef4444;
}

.site-footer {
  background: #111827;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 90px;
  padding-bottom: 48px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: .65rem; }
.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.footer-brand-text strong {
  font-size: 1rem;
  letter-spacing: .02em;
  color: var(--navy);
}
.footer-brand-text span {
  font-size: .78rem;
  color: var(--muted);
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .7rem;
  color: var(--muted);
  font-size: clamp(14px, 1.3vw, 16px);
}
.contact-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(15, 118, 110, 0.1);
  color: var(--primary);
}
.contact-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-logo .custom-logo { width: 160px; height: auto; }
.social-placeholders { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .5rem; }
.footer-donate { margin-top: 1.25rem; }
.footer-social-label {
  margin: 1.1rem 0 0;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
}
.social-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  color: var(--muted);
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.social-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-link:hover {
  transform: translateY(-3px);
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 6px 16px rgba(15, 118, 110, 0.28);
}
.social-link:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}
.mini-map {
  margin-top: .7rem;
  min-height: 88px;
  border-radius: var(--radius-icon);
  border: 1px dashed #c9cfda;
  background: #f7f8fb;
  color: #55606e;
  display: grid;
  place-items: center;
}
.footer-grid h4 {
  padding-bottom: .55rem;
  margin-bottom: .8rem;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.footer-bottom {
  padding: 1rem 0 1.6rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  border-top: 1px solid var(--border);
  margin-top: 2.5rem;
}
.footer-bottom p,
.footer-bottom a {
  font-size: .85rem;
  margin: 0;
}

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.reveal-in { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .section, .site-footer { padding-top: 70px; padding-bottom: 70px; }
  .cards, .icon-cards, .impact-grid, .trust-grid, .footer-grid, .two-col { gap: 18px; }
  .cards.four, .cards.two, .cards.three, .icon-cards.six, .icon-cards.four, .impact-grid, .trust-grid, .footer-grid, .two-col { grid-template-columns: 1fr; }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hero-copy {
    max-width: none;
  }
  .hero-image {
    justify-self: stretch;
    width: 100%;
  }
  .nav-wrap { min-height: 88px; }
  .menu-toggle { display: inline-flex; }
  .btn-donate { display: none; }
  .primary-nav {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 88px;
    padding: .9rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    background: #fff;
    box-shadow: var(--shadow-soft);
  }
  .primary-nav.open { display: block; }
  .primary-nav .menu { flex-direction: column; gap: .45rem; }
  .cta-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta-mark {
    margin-inline: auto;
  }
  .cta-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (min-width: 681px) and (max-width: 979px) {
  .cards.three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards.four  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .icon-cards.six  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .icon-cards.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .section, .site-footer { padding-top: 50px; padding-bottom: 50px; }
  h1 { font-size: clamp(36px, 10vw, 42px); }
  h2 { font-size: clamp(28px, 7.5vw, 34px); }
  h3 { font-size: clamp(15px, 3.5vw, 18px); }
  .hero h2 { font-size: clamp(32px, 9vw, 40px); }
  .hero-actions { width: 100%; }
  .hero-actions .btn { width: 100%; }
  .cta-actions .btn {
    width: 100%;
  }
  .footer-logo .custom-logo {
    width: 140px;
  }
}

.section-impact h2 {
  color: #fff;
}

@media (max-width: 979px) {
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ── Dark footer overrides ──────────────────────────────────── */
.site-footer p {
  color: rgba(255, 255, 255, 0.62);
}
.site-footer p strong {
  color: #fff;
}
.site-footer h4 {
  color: #fff;
}
.site-footer .footer-brand-text strong {
  color: #fff;
}
.site-footer .footer-brand-text span {
  color: rgba(255, 255, 255, 0.5);
}
.site-footer .footer-social-label {
  color: rgba(255, 255, 255, 0.4);
}
.site-footer .footer-menu a {
  color: #5eead4;
}
.site-footer .footer-menu a:hover {
  color: #99f6e4;
}
.site-footer .contact-detail {
  color: rgba(255, 255, 255, 0.68);
}
.site-footer .contact-icon {
  background: rgba(15, 118, 110, 0.35);
  color: #5eead4;
}
.site-footer .social-link {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
}
.site-footer .social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.site-footer .footer-donate {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.site-footer .footer-donate:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}
.site-footer .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.1);
}
.site-footer .footer-bottom p,
.site-footer .footer-bottom a {
  color: rgba(255, 255, 255, 0.38);
}
/* ── End dark footer ────────────────────────────────────────── */

/* ── About Us page ─────────────────────────────────────────── */
.about-intro-section { background: #ffffff; }

.about-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.about-kicker { color: var(--primary); }

.about-intro-copy h1 {
  font-size: clamp(34px, 4vw, 52px);
  margin-bottom: 1rem;
  padding-bottom: .85rem;
  border-bottom: 3px solid var(--primary);
  max-width: none;
}

.about-intro-actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.about-img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Vision + Mission cards */
.about-vm-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.about-vm-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 2rem 1.8rem;
  transition: transform .2s ease, box-shadow .2s ease;
}

.about-vm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.11);
}

.about-vm-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(145deg, #edf7f4 0%, #c4ece2 100%);
  color: var(--primary);
  margin-bottom: 1rem;
  box-shadow: 0 0 0 7px rgba(15, 118, 110, 0.07);
}

.about-vm-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-vm-card h2 {
  font-size: clamp(20px, 2.4vw, 26px);
  margin-bottom: .65rem;
}

/* Values section */
.about-values-section { background: #ffffff; }

.about-values-grid { margin-top: 2.2rem; }

/* Responsive */
@media (max-width: 980px) {
  .about-intro-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-vm-grid    { grid-template-columns: 1fr; }
}
/* ── End About Us page ─────────────────────────────────────── */

/* ── Shared dark page intro (contact, get-involved, etc.) ───── */
.page-intro-section {
  background: linear-gradient(110deg, #0b5f57 0%, #0a4f42 100%);
}
.page-intro-section .kicker { color: rgba(255, 255, 255, 0.65); }
.page-intro-section h1 {
  color: var(--light-strong);
  font-size: clamp(34px, 4vw, 52px);
  max-width: none;
  padding-bottom: .85rem;
  border-bottom: 3px solid rgba(255, 255, 255, 0.22);
  margin-bottom: 1rem;
}
.page-intro-section p { color: rgba(255, 255, 255, 0.72); max-width: 64ch; }

/* ── Contact page ──────────────────────────────────────────── */

.contact-channel-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}
.contact-channel-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  padding: .5rem 1rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: .88rem;
  font-weight: 500;
}
.contact-channel-badge svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.contact-main-section { background: #fff; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}

.contact-form-card { padding: 2rem; }

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.6rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
}
.contact-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(145deg, #edf7f4 0%, #c4ece2 100%);
  color: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(15, 118, 110, 0.07);
}
.contact-card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-card-header h2 { margin: 0; font-size: clamp(20px, 2.2vw, 24px); }
.contact-card-header p  { margin: .2rem 0 0; font-size: .88rem; }

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form select {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .65rem .9rem;
  padding-right: 2.4rem;
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  color: var(--navy);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234B5563' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 16px;
  cursor: pointer;
  transition: border-color .2s ease;
}
.contact-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, .15);
}

.contact-info-col { display: flex; flex-direction: column; gap: 18px; }

.contact-details-card,
.contact-hours-card { padding: 1.5rem; }

.contact-details-card h3,
.contact-hours-card h3 {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--muted);
  margin-bottom: .9rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.contact-details-card .contact-detail a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s ease;
}
.contact-details-card .contact-detail a:hover { color: var(--primary); }

.contact-hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.contact-hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: .92rem;
  color: var(--muted);
}
.contact-hours-list li span:first-child { font-weight: 600; color: var(--navy); }

.contact-social-box { padding-top: .4rem; }
.contact-social-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin: 0 0 .65rem;
}

@media (max-width: 900px) {
  .contact-grid       { grid-template-columns: 1fr; }
  .contact-form-row   { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .contact-channel-row { flex-direction: column; align-items: flex-start; }
}
/* ── End Contact page ──────────────────────────────────────── */

/* ── Get Involved page ─────────────────────────────────────── */
.gi-ways-section { background: #fff; }

.gi-cards { margin-top: 2.2rem; }

.gi-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem 1.6rem;
  border-top: 3px solid var(--primary);
}

.gi-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(145deg, #edf7f4 0%, #c4ece2 100%);
  color: var(--primary);
  margin-bottom: 1.1rem;
  box-shadow: 0 0 0 8px rgba(15, 118, 110, 0.07);
  flex-shrink: 0;
  transition: transform .25s ease, box-shadow .25s ease;
}
.gi-card:hover .gi-card-icon {
  transform: scale(1.08);
  box-shadow: 0 0 0 12px rgba(15, 118, 110, 0.11);
}
.gi-card-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gi-list {
  list-style: none;
  margin: .75rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  flex: 1;
}
.gi-list li {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .93rem;
  color: var(--muted);
}
.gi-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.gi-card-btn {
  margin-top: 1.6rem;
  align-self: flex-start;
}
/* ── End Get Involved page ─────────────────────────────────── */

/* ── Programmes page ───────────────────────────────────────── */
.programme-section { padding: 72px 0; }
.programme-section--white { background: #fff; }

.programme-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.programme-row--reverse .programme-media { order: 2; }

.programme-img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.programme-tag {
  display: inline-block;
  background: rgba(15, 118, 110, 0.1);
  color: var(--primary);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .3rem .8rem;
  border-radius: var(--radius-pill);
  margin-bottom: .9rem;
}

.programme-copy h2 { margin-bottom: .65rem; }

.programme-list {
  list-style: none;
  margin: .85rem 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.programme-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .95rem;
  color: var(--muted);
}
.programme-list li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .programme-row { grid-template-columns: 1fr; gap: 28px; }
  .programme-row--reverse .programme-media { order: 0; }
  .programme-section { padding: 56px 0; }
}
/* ── End Programmes page ───────────────────────────────────── */

/* ── Documents page ────────────────────────────────────────── */
.doc-status-section { background: #fff; }

.doc-status-row {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.doc-status-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 2rem;
  flex: 1;
  min-width: 200px;
}
.doc-status-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  flex-shrink: 0;
}
.doc-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(145deg, #edf7f4 0%, #c4ece2 100%);
  color: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(15, 118, 110, 0.07);
}
.doc-status-badge svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.doc-status-item strong {
  display: block;
  font-size: .98rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .15rem;
}
.doc-status-item span {
  font-size: .83rem;
  color: var(--muted);
}

.doc-library-section { }

.doc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 2.2rem;
}
.doc-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.3rem 1.5rem;
}
.doc-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(145deg, #edf7f4 0%, #c4ece2 100%);
  color: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(15, 118, 110, 0.07);
  transition: transform .25s ease, box-shadow .25s ease;
}
.doc-card:hover .doc-card-icon {
  transform: scale(1.08);
  box-shadow: 0 0 0 10px rgba(15, 118, 110, 0.11);
}
.doc-card-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.doc-card-body {
  flex: 1;
  min-width: 0;
}
.doc-card-body h3 {
  font-size: 1rem;
  margin: 0 0 .2rem;
}
.doc-card-body p {
  font-size: .86rem;
  margin: 0 0 .45rem;
  color: var(--muted);
  line-height: 1.5;
}
.doc-availability {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--primary);
  background: rgba(15, 118, 110, 0.09);
  padding: .18rem .55rem;
  border-radius: 4px;
}
.doc-card-btn { flex-shrink: 0; }

.doc-request-note {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1.8rem;
  font-size: .9rem;
  color: var(--muted);
  max-width: 64ch;
  margin-inline: auto;
  text-align: center;
  justify-content: center;
  flex-wrap: wrap;
}
.doc-request-note svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.doc-request-note a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 860px) {
  .doc-grid { grid-template-columns: 1fr; }
  .doc-status-divider { display: none; }
  .doc-status-row { flex-direction: column; }
  .doc-status-item { border-bottom: 1px solid var(--border); }
  .doc-status-item:last-child { border-bottom: none; }
  .doc-card-btn { align-self: flex-end; }
}

/* ── Governance page ──────────────────────────────────────────────── */
.gov-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.gov-overview-copy h2 { margin-top: 0; }
.gov-overview-copy p { color: var(--muted); }
.gov-overview-copy .btn { margin-top: 1.2rem; }

.gov-overview-panels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gov-panel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  border-left: 3px solid var(--primary);
  transition: box-shadow .2s ease;
}
.gov-panel:hover {
  box-shadow: var(--shadow-soft);
}
.gov-panel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(145deg, #edf7f4 0%, #c4ece2 100%);
  color: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 0 0 5px rgba(15, 118, 110, 0.07);
}
.gov-panel-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.gov-panel strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .1rem;
}
.gov-panel span {
  font-size: .82rem;
  color: var(--muted);
}

@media (max-width: 860px) {
  .gov-overview-grid { grid-template-columns: 1fr; gap: 32px; }
}
/* ── End Documents page ─────────────────────────────────────── */
