:root {
  --primary: #0e7c82;
  --primary-dark: #0a5559;
  --primary-light: #19a3aa;
  --accent: #d4a017;
  --accent-hot: #e8910f;
  --navy: #1b1f2e;
  --text: #4a5160;
  --muted: #838694;
  --line: #e9e9ee;
  --soft: #f7f7f9;
  --white: #fff;
  --success: #1f9d6a;
  --danger: #e8572e;
  --shadow: 0 10px 40px rgba(27, 31, 46, 0.08);
  --shadow-lg: 0 20px 60px rgba(27, 31, 46, 0.14);
  --radius: 8px;
  --radius-lg: 16px;
  --container: 1200px;
  --font: "Poppins", "Segoe UI", sans-serif;
  --font-alt: "Roboto Slab", Georgia, serif;
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }

/* ========== TOP BAR ========== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.82);
  font-size: 13px;
  padding: 10px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar-left, .topbar-right { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }
.topbar a:hover { color: var(--accent); }
.topbar i { color: var(--accent); margin-right: 6px; }

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(27,31,46,.06);
  transition: box-shadow .25s;
}
.site-header.is-scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.brand-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -.01em;
}
.brand-text span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.nav-wrap { display: flex; align-items: center; gap: 8px; }
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: block;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  border-radius: 6px;
  transition: .2s;
}
.main-nav > li > a:hover,
.main-nav > li > a.active,
.main-nav > li:hover > a {
  color: var(--primary);
}
.main-nav .has-sub > a::after {
  content: "▾";
  font-size: 10px;
  margin-left: 5px;
  opacity: .7;
}
.submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .22s;
  z-index: 50;
}
.main-nav > li:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
}
.submenu a:hover { background: var(--soft); color: var(--primary); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 26px;
  border: 0;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-donate {
  background: linear-gradient(135deg, var(--accent-hot), var(--accent));
  color: var(--navy) !important;
  box-shadow: 0 8px 24px rgba(232,145,15,.35);
  padding: 0 22px;
  min-height: 44px;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(14,124,130,.28);
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--line);
}
.btn-white { background: var(--white); color: var(--navy); }
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--navy);
}

/* ========== HERO SLIDER ========== */
.hero-slider {
  position: relative;
  height: min(92vh, 740px);
  overflow: hidden;
  background: var(--navy);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .8s ease, visibility .8s;
  display: grid;
  align-items: center;
}
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 7s ease;
}
.hero-slide.is-active .hero-slide-bg { transform: scale(1); }
.hero-slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(27,31,46,.82) 0%, rgba(27,31,46,.55) 48%, rgba(27,31,46,.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 680px;
  padding: 40px 0;
}
.hero-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(212,160,23,.2);
  border: 1px solid rgba(212,160,23,.45);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-content h1 {
  margin: 0 0 16px;
  font-family: var(--font-alt);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -.02em;
}
.hero-content p {
  margin: 0 0 28px;
  font-size: 1.1rem;
  color: rgba(255,255,255,.88);
  max-width: 520px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-nav {
  position: absolute;
  z-index: 5;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.hero-dot.is-active { background: var(--accent); border-color: var(--accent); }
.hero-arrows {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 18px;
}
.hero-arrows button {
  pointer-events: auto;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.15);
  color: white;
  font-size: 20px;
  cursor: pointer;
  backdrop-filter: blur(6px);
}
.hero-arrows button:hover { background: var(--primary); }

/* ========== SECTION HELPERS ========== */
.section { padding: 90px 0; }
.section-soft { background: var(--soft); }
.section-dark {
  background: linear-gradient(135deg, var(--navy), #243049);
  color: var(--white);
}
.section-head { margin-bottom: 48px; max-width: 640px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.section-dark .section-kicker { color: var(--accent); }
.section-title {
  margin: 0 0 14px;
  font-family: var(--font-alt);
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  line-height: 1.2;
  color: var(--navy);
  font-weight: 700;
}
.section-dark .section-title { color: var(--white); }
.section-lead { margin: 0; color: var(--muted); font-size: 1.05rem; }
.section-dark .section-lead { color: rgba(255,255,255,.75); }

/* ========== ACHIEVEMENTS ========== */
.achieve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.achieve-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: .3s;
  border: 1px solid var(--line);
}
.achieve-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.achieve-card .thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.achieve-card .thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.achieve-card:hover .thumb img { transform: scale(1.08); }
.achieve-card .thumb::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(14,124,130,.55));
}
.achieve-card .body { padding: 18px 18px 22px; }
.achieve-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}
.achieve-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* ========== ABOUT SPLIT ========== */
.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
}
.split-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 460px;
  box-shadow: var(--shadow-lg);
}
.split-media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.split-badge {
  position: absolute;
  left: 20px; bottom: 20px;
  z-index: 2;
  background: var(--white);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  max-width: 210px;
}
.split-badge strong {
  display: block;
  font-family: var(--font-alt);
  font-size: 28px;
  color: var(--primary);
  line-height: 1;
}
.split-badge span { font-size: 13px; color: var(--muted); font-weight: 500; }
.checklist { margin-top: 20px; }
.checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 500;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* ========== SERVICES ========== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow);
  color: var(--white);
}
.service-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.service-card:hover img { transform: scale(1.08); }
.service-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27,31,46,.15), rgba(14,124,130,.92));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.service-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-family: var(--font-alt);
}
.service-card p { margin: 0 0 14px; color: rgba(255,255,255,.85); font-size: 14.5px; }
.service-card .link {
  font-weight: 700;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ========== COUNTERS ========== */
.counter-band {
  background:
    linear-gradient(120deg, rgba(14,124,130,.92), rgba(10,85,89,.88)),
    url("../assets/images/outreach.jpg") center/cover;
  color: white;
  padding: 70px 0;
}
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.counter-item strong {
  display: block;
  font-family: var(--font-alt);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
  margin-bottom: 8px;
}
.counter-item span {
  font-size: 14px;
  font-weight: 500;
  opacity: .9;
}

/* ========== FEATURES / DIFFERENT ========== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: .25s;
}
.feature-box:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(14,124,130,.1);
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 16px;
  font-weight: 700;
}
.feature-box h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 18px;
}
.feature-box p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* ========== CAMPAIGNS ========== */
.campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.campaign-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: .3s;
}
.campaign-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.campaign-card .thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.campaign-card .thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.campaign-card .body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.campaign-card h3 {
  margin: 0;
  font-size: 18px;
  color: var(--navy);
  line-height: 1.35;
}
.campaign-card .desc {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}
.progress {
  height: 8px;
  background: var(--line);
  border-radius: 50px;
  overflow: hidden;
}
.progress > span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 50px;
  transition: width 1.4s ease;
}
.campaign-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.campaign-meta .raised { color: var(--primary); }
.campaign-card .btn { width: 100%; margin-top: auto; }

/* ========== TESTIMONIALS ========== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.testimonial .stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 12px; }
.testimonial p {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 15px;
  font-style: italic;
}
.testimonial .who {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial .who img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial .who strong { display: block; color: var(--navy); font-size: 15px; }
.testimonial .who span { font-size: 12px; color: var(--muted); }

/* ========== PARTNERS ========== */
.partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 36px;
  align-items: center;
}
.partner-pill {
  min-width: 140px;
  padding: 16px 22px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
  font-weight: 700;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ========== NEWS ========== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: .3s;
  display: flex;
  flex-direction: column;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.news-card .thumb { aspect-ratio: 16/10; overflow: hidden; }
.news-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.news-card:hover .thumb img { transform: scale(1.06); }
.news-card .body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.news-card .meta {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.news-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--navy);
  line-height: 1.35;
}
.news-card p { margin: 0 0 14px; color: var(--muted); font-size: 14.5px; flex: 1; }
.news-card .more { font-weight: 700; color: var(--accent-hot); font-size: 14px; }

/* ========== CTA BANNER ========== */
.cta-banner {
  border-radius: 20px;
  overflow: hidden;
  padding: 60px 48px;
  color: white;
  background:
    linear-gradient(120deg, rgba(27,31,46,.88), rgba(14,124,130,.82)),
    url("../assets/images/donate.jpg") center/cover;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.cta-banner h2 {
  margin: 0 0 10px;
  font-family: var(--font-alt);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}
.cta-banner p { margin: 0; color: rgba(255,255,255,.85); max-width: 520px; }

/* ========== PAGE BANNER ========== */
.page-banner {
  position: relative;
  padding: 90px 0 70px;
  color: white;
  overflow: hidden;
}
.page-banner-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(27,31,46,.85), rgba(14,124,130,.7)),
    var(--banner, url("../assets/images/about.jpg")) center/cover;
}
.page-banner .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  margin-bottom: 14px;
  color: rgba(255,255,255,.75);
}
.breadcrumb a:hover { color: var(--accent); }
.page-banner h1 {
  margin: 0 0 10px;
  font-family: var(--font-alt);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}
.page-banner p { margin: 0; max-width: 560px; color: rgba(255,255,255,.88); }

/* ========== FORMS / LEADERSHIP / ETC ========== */
.form-card, .info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 6px; font-size: 13px; font-weight: 600; color: var(--navy); }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: var(--soft);
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid rgba(14,124,130,.25);
  border-color: var(--primary);
  background: white;
}
textarea { min-height: 130px; resize: vertical; }
.amount-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.amount-btn {
  min-height: 46px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--soft);
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
}
.amount-btn.is-active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.legal-box {
  margin-top: 14px;
  padding: 14px;
  border-radius: 10px;
  background: #fff8e8;
  border: 1px solid #f0e0b0;
  font-size: 13.5px;
  color: var(--navy);
}

.leader-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.leader-grid-4 {
  grid-template-columns: repeat(2, 1fr);
}
.leader-card {
  text-align: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  box-shadow: var(--shadow);
}
.leader-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 200px 1fr;
  text-align: left;
  gap: 28px;
  align-items: center;
  padding: 32px;
  background: linear-gradient(135deg, #f3fbfb, white);
}
.leader-photo {
  width: 140px; height: 140px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--accent);
}
.leader-card.featured .leader-photo {
  width: 180px; height: 180px; margin: 0;
}
.leader-photo img { width: 100%; height: 100%; object-fit: cover; }
.leader-card h3 { margin: 0 0 4px; color: var(--navy); font-size: 20px; }
.leader-card .role { color: var(--primary); font-weight: 700; font-size: 13px; margin-bottom: 10px; }
.leader-card p { margin: 0; color: var(--muted); font-size: 14.5px; }

.article { max-width: 760px; margin: 0 auto; }
.article h1 {
  font-family: var(--font-alt);
  color: var(--navy);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.2;
}
.article .meta { color: var(--muted); margin-bottom: 18px; }
.article-cover {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
  max-height: 420px;
}
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.prose h2 { color: var(--navy); font-family: var(--font-alt); }
.prose p { color: var(--text); }

/* ========== FOOTER ========== */
.site-footer {
  background: #141824;
  color: rgba(255,255,255,.78);
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 36px;
  padding-bottom: 40px;
}
.footer-brand img { width: 70px; margin-bottom: 14px; }
.footer-brand strong {
  display: block;
  color: white;
  font-size: 18px;
  margin-bottom: 10px;
}
.footer-brand p { margin: 0; font-size: 14px; line-height: 1.7; }
.footer-col h4 {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-col a, .footer-col p {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.72);
}
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: .7s cubic-bezier(.22,1,.36,1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Mobile offcanvas */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
}
.mobile-drawer.is-open { pointer-events: auto; }
.mobile-drawer .backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27,31,46,.5);
  opacity: 0;
  transition: .25s;
}
.mobile-drawer.is-open .backdrop { opacity: 1; }
.mobile-drawer .panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 88vw);
  background: white;
  padding: 24px 18px;
  transform: translateX(100%);
  transition: .3s;
  overflow: auto;
}
.mobile-drawer.is-open .panel { transform: none; }
.mobile-drawer .panel a {
  display: block;
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  color: var(--navy);
}
.mobile-drawer .sub a {
  padding-left: 22px;
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
}

@media (max-width: 1100px) {
  .achieve-grid,
  .service-grid,
  .campaign-grid,
  .news-grid,
  .testimonial-grid,
  .feature-grid,
  .counter-grid,
  .leader-grid,
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
  .nav-toggle { display: inline-block; }
  .cta-banner { grid-template-columns: 1fr; padding: 40px 28px; }
}
@media (max-width: 720px) {
  .achieve-grid,
  .service-grid,
  .campaign-grid,
  .news-grid,
  .testimonial-grid,
  .feature-grid,
  .counter-grid,
  .leader-grid,
  .footer-grid,
  .split,
  .form-row,
  .amount-row { grid-template-columns: 1fr; }
  .leader-card.featured { grid-template-columns: 1fr; text-align: center; }
  .leader-card.featured .leader-photo { margin-inline: auto; }
  .hero-slider { height: 78vh; }
  .split-media { min-height: 300px; }
  .section { padding: 64px 0; }
  .topbar { display: none; }
}
