:root {
  --teal: #007086;
  --teal-dark: #005a6b;
  --teal-soft: #e6f4f6;
  --pink: #c2185b;
  --pink-dark: #9c1249;
  --pink-soft: #fce4ec;
  --green: #4caf50;
  --orange: #f57c00;
  --ink: #1a2b2e;
  --muted: #5a6b6e;
  --line: #d7e4e6;
  --bg: #f7fbfc;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(0, 78, 94, 0.08);
  --radius: 14px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --header-offset: 130px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.05rem;
}

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

a {
  color: var(--teal);
  text-decoration: none;
}

a:hover {
  color: var(--pink);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--teal-dark);
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding: 0;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.visually-hidden-anchor {
  position: relative;
  top: calc(-1 * var(--header-offset));
  height: 0;
  width: 0;
  overflow: hidden;
  pointer-events: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--teal);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(0, 78, 94, 0.08);
  border-bottom-color: var(--line);
}

.header-bar {
  background: linear-gradient(90deg, var(--teal-dark), var(--teal));
  color: var(--white);
  font-size: 0.9rem;
}

.header-bar__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
}

.header-bar a {
  color: var(--white);
  opacity: 0.95;
}

.header-bar a:hover {
  opacity: 1;
  color: #ffe8f1;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.15rem 0;
}

.brand {
  display: flex;
  align-items: center;
  color: inherit;
}

.brand img {
  width: 180px;
  height: auto;
  object-fit: contain;
}

.site-nav__head,
.nav-close,
.nav-overlay {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav ul {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}

.site-nav a {
  display: inline-block;
  padding: 0.55rem 0.85rem;
  color: var(--ink);
  font-weight: 600;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--teal);
  background: var(--teal-soft);
}

.nav-ctas {
  display: flex;
  gap: 0.55rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  transform: translateY(-1px);
  color: var(--white);
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.btn--teal {
  background: var(--teal);
  color: var(--white);
}

.btn--teal:hover {
  background: var(--teal-dark);
}

.btn--pink {
  background: var(--pink);
  color: var(--white);
}

.btn--pink:hover {
  background: var(--pink-dark);
}

.btn--outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}

.btn--outline:hover {
  background: var(--teal);
  color: var(--white);
}

.btn--light {
  background: var(--white);
  color: var(--teal-dark);
}

.btn--light:hover {
  background: var(--pink-soft);
  color: var(--pink-dark);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
}

.btn--outline-light:hover {
  background: var(--white);
  color: var(--pink-dark);
  border-color: var(--white);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-offset));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(118deg, #003d48 0%, #006578 38%, #0a5f6e 62%, #7a1648 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 12% 80%, rgba(0, 0, 0, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 40% at 88% 18%, rgba(255, 255, 255, 0.1), transparent 50%),
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.06'%3E%3Cpath d='M0 40h80M40 0v80'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(8px);
}

.hero__glow--one {
  width: 420px;
  height: 420px;
  right: 8%;
  top: 8%;
  background: radial-gradient(circle, rgba(194, 24, 91, 0.45), transparent 70%);
  animation: floatGlow 12s ease-in-out infinite;
}

.hero__glow--two {
  width: 360px;
  height: 360px;
  left: -60px;
  bottom: -40px;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.28), transparent 70%);
  animation: floatGlow 14s ease-in-out infinite reverse;
}

.hero__glow--three {
  width: 220px;
  height: 220px;
  left: 42%;
  top: 18%;
  background: radial-gradient(circle, rgba(245, 124, 0, 0.22), transparent 70%);
  animation: floatGlow 9s ease-in-out infinite;
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  padding: 4.75rem 0 5.25rem;
}

.hero__copy {
  max-width: 38rem;
}

.hero__eyebrow {
  display: inline-block;
  margin: 0 0 1.15rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: #ffd0e2;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  animation: riseIn 0.8s ease both;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(2.55rem, 5.2vw, 3.85rem);
  max-width: 14ch;
  animation: riseIn 0.9s ease 0.08s both;
}

.hero__lead {
  font-size: 1.18rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.85rem;
  line-height: 1.7;
  animation: riseIn 0.9s ease 0.16s both;
}

.hero .btn-row {
  animation: riseIn 0.9s ease 0.24s both;
}

.hero__mark {
  justify-self: end;
  text-align: center;
  animation: riseIn 1s ease 0.18s both;
}

.hero__mark-ring {
  width: min(320px, 72vw);
  height: min(320px, 72vw);
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.88) 55%, rgba(255, 255, 255, 0.75));
  box-shadow:
    0 0 0 14px rgba(255, 255, 255, 0.1),
    0 0 0 28px rgba(255, 255, 255, 0.05),
    0 28px 60px rgba(0, 0, 0, 0.28);
}

.hero__mark-ring img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.hero__mark-caption {
  margin: 1.25rem 0 0;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section--white {
  background: var(--white);
}

.section--soft {
  background: linear-gradient(180deg, #f2f9fa 0%, #ffffff 100%);
}

.section--teal {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: var(--white);
}

.section--teal h2,
.section--teal h3 {
  color: var(--white);
}

.section-head {
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.page-hero {
  padding: 3.5rem 0 2.5rem;
  background:
    radial-gradient(circle at 90% 10%, rgba(194, 24, 91, 0.12), transparent 40%),
    linear-gradient(180deg, #e8f5f7 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin-bottom: 0.4rem;
}

.page-hero p {
  max-width: 40rem;
  color: var(--muted);
  margin: 0;
}

/* Grids & content blocks */
.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.about-intro {
  max-width: 720px;
}

.mv-section {
  background:
    radial-gradient(circle at 0% 50%, rgba(0, 112, 134, 0.08), transparent 42%),
    radial-gradient(circle at 100% 40%, rgba(194, 24, 91, 0.08), transparent 40%),
    linear-gradient(180deg, #eef7f8 0%, #f8fbfc 100%);
  padding-top: 1rem;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.mv-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 2.25rem 2rem 2.1rem;
  min-height: 100%;
  color: var(--white);
  box-shadow: 0 22px 48px rgba(0, 60, 72, 0.14);
}

.mv-card::before {
  content: "“";
  position: absolute;
  right: 1.2rem;
  top: 0.2rem;
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 1;
  opacity: 0.14;
  pointer-events: none;
}

.mv-card--mission {
  background:
    linear-gradient(155deg, #004d5a 0%, #007086 55%, #0a7a6e 100%);
}

.mv-card--vision {
  background:
    linear-gradient(155deg, #8e1348 0%, #c2185b 55%, #d81b60 100%);
}

.mv-card__label {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.mv-card h2 {
  color: var(--white);
  margin-bottom: 0.85rem;
  font-size: clamp(1.7rem, 2.8vw, 2.15rem);
}

.mv-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 34rem;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.mission-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mission-block h3 {
  color: var(--teal);
}

.mission-block--vision {
  border-top: 4px solid var(--pink);
}

.mission-block--mission {
  border-top: 4px solid var(--teal);
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--pink);
}

.programs-grid,
.values-grid,
.impact-grid,
.leaders-grid {
  display: grid;
  gap: 1.25rem;
}

.programs-grid {
  grid-template-columns: repeat(3, 1fr);
}

.values-grid,
.impact-grid {
  grid-template-columns: repeat(3, 1fr);
}

.leaders-grid {
  grid-template-columns: repeat(2, 1fr);
}

.program-item,
.value-item,
.impact-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.program-item:hover,
.value-item:hover,
.impact-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.program-item__icon,
.value-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--white);
  background: var(--teal);
}

.program-item:nth-child(2) .program-item__icon,
.value-item:nth-child(2) .value-item__icon {
  background: var(--pink);
}

.program-item:nth-child(3) .program-item__icon,
.value-item:nth-child(3) .value-item__icon {
  background: var(--green);
}

.program-item:nth-child(4) .program-item__icon,
.value-item:nth-child(4) .value-item__icon {
  background: var(--orange);
}

.program-item:nth-child(5) .program-item__icon,
.value-item:nth-child(5) .value-item__icon {
  background: #00897b;
}

.program-item:nth-child(6) .program-item__icon {
  background: #6a1b9a;
}

.program-item p,
.value-item p,
.impact-item p {
  color: var(--muted);
  margin: 0;
  font-size: 0.98rem;
}

.impact-item {
  text-align: left;
  border-left: 4px solid var(--teal);
}

.impact-item:nth-child(even) {
  border-left-color: var(--pink);
}

/* Leadership */
.leader-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.leader-photo {
  width: 140px;
  height: 180px;
  border-radius: 12px;
  background: linear-gradient(160deg, var(--teal-soft), #fde7ef);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}

.leader-photo span {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--teal);
  font-weight: 700;
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.leader-card h3 {
  margin-bottom: 0.2rem;
}

.leader-role {
  color: var(--pink);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 0.65rem;
}

.leader-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.98rem;
}

.leader-profile {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.leader-profile .leader-photo {
  width: 220px;
  height: 280px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  background: #e8f0f2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.prose p {
  color: var(--muted);
}

.prose p:last-child {
  margin-bottom: 0;
}

/* CTA band */
.cta-band {
  background:
    radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.12), transparent 35%),
    linear-gradient(90deg, var(--pink-dark), var(--pink) 45%, #d81b60);
  color: var(--white);
  padding: 2.75rem 0;
}

.cta-band__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 0.35rem;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.cta-band p {
  margin: 0;
  opacity: 0.95;
}

.cta-band__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Donate / Volunteer home panels */
.action-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.action-panel {
  border-radius: var(--radius);
  padding: 2rem;
  color: var(--white);
  min-height: 100%;
}

.action-panel h3 {
  color: var(--white);
}

.action-panel p {
  opacity: 0.95;
}

.action-panel--donate {
  background: linear-gradient(145deg, var(--teal-dark), var(--teal));
}

.action-panel--volunteer {
  background: linear-gradient(145deg, var(--pink-dark), var(--pink));
}

.action-panel ul {
  list-style: none;
  margin: 1rem 0 1.5rem;
}

.action-panel li {
  padding: 0.3rem 0 0.3rem 1.1rem;
  position: relative;
}

.action-panel li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffd5e5;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.map-section {
  width: 100%;
  line-height: 0;
  background: var(--teal-soft);
}

.map-section__frame {
  display: block;
  width: 100%;
  height: min(450px, 55vh);
  min-height: 280px;
  border: 0;
}

.contact-info {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info dl {
  margin: 0;
}

.contact-info dt {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 700;
  margin-top: 1rem;
}

.contact-info dd {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.contact-info a {
  font-weight: 600;
}

.form-shell {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.form-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-tabs button {
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

.form-tabs button.is-active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.form-panel {
  display: none;
}

.form-panel.is-active {
  display: block;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 600;
  font-size: 0.92rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.8rem 0.95rem;
  font: inherit;
  background: #fbfdfe;
  color: var(--ink);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 2px solid rgba(0, 112, 134, 0.25);
  border-color: var(--teal);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.alert {
  border-radius: 10px;
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.alert--success {
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #c8e6c9;
}

.alert--error {
  background: #fce4ec;
  color: #880e4f;
  border: 1px solid #f8bbd0;
}

.trustees {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.trustee {
  background: var(--teal-soft);
  border-radius: 12px;
  padding: 1rem 1.15rem;
}

.trustee strong {
  display: block;
  color: var(--teal-dark);
}

.trustee span {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  background:
    radial-gradient(circle at 85% 0%, rgba(194, 24, 91, 0.18), transparent 35%),
    linear-gradient(180deg, #042f37 0%, #053a44 55%, #03262d 100%);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 3.5rem;
  border-top: 4px solid var(--pink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.85fr 0.95fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 24rem;
}

.footer-brand__link {
  display: inline-flex;
  align-items: center;
  color: inherit;
}

.footer-brand__link:hover {
  color: inherit;
}

.footer-brand img {
  width: 180px;
  height: auto;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  padding: 0.35rem 0.55rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.site-footer h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.55rem;
}

.site-footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2rem;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
}

.footer-links,
.footer-contact {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  display: inline-block;
  transition: transform 0.2s ease, color 0.2s ease;
}

.footer-links a:hover {
  transform: translateX(4px);
}

.footer-contact li {
  display: grid;
  gap: 0.15rem;
  margin-bottom: 1rem;
}

.footer-contact__label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffc1d8;
  font-weight: 700;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer a:hover {
  color: #ffc1d8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.1rem 0;
  font-size: 0.92rem;
  background: rgba(0, 0, 0, 0.18);
}

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-bottom__legal {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom__channel {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}

.footer-bottom__channel:hover {
  opacity: 0.9;
}

.footer-bottom__channel-img {
  display: block;
  height: 28px;
  width: auto;
  background: transparent;
  padding: 0;
}

.footer-bottom__tagline {
  color: #ffc1d8;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

/* Floating WhatsApp (desktop / tablet) */
.whatsapp-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  z-index: 9990;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-size: 1.85rem;
  line-height: 1;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(0, 60, 72, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  color: #fff;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5), 0 6px 14px rgba(0, 60, 72, 0.2);
}

.whatsapp-float:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.mobile-contact-bar {
  display: none !important;
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
  :root {
    --header-offset: 108px;
  }

  .nav-wrap {
    gap: 1rem;
    padding: 0.1rem 0;
  }

  .brand img {
    width: 130px;
  }

  .site-nav {
    gap: 0.75rem;
  }

  .site-nav a {
    padding: 0.4rem 0.65rem;
    font-size: 0.95rem;
  }

  .btn--sm {
    padding: 0.45rem 0.85rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 960px) {
  :root {
    --header-offset: 96px;
  }

  .nav-wrap {
    gap: 0.75rem;
  }

  .brand img {
    width: 112px;
  }

  .site-nav {
    gap: 0.5rem;
  }

  .site-nav a {
    padding: 0.35rem 0.5rem;
    font-size: 0.9rem;
  }

  .nav-ctas {
    gap: 0.4rem;
  }

  .btn--sm {
    padding: 0.4rem 0.7rem;
    font-size: 0.75rem;
  }

  .split,
  .contact-layout,
  .leader-profile,
  .action-panels,
  .cta-band__inner,
  .footer-grid,
  .hero__layout,
  .mv-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .programs-grid,
  .values-grid,
  .impact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-band__inner {
    text-align: left;
  }

  .hero__mark {
    justify-self: center;
    text-align: center;
  }

  .hero__copy {
    text-align: center;
  }

  .hero__copy .hero__lead {
    margin-inline: auto;
  }

  .hero__copy .btn-row {
    justify-content: center;
  }

  .hero__mark-ring {
    width: 240px;
    height: 240px;
  }

  .leader-profile .leader-photo {
    width: 180px;
    height: 220px;
  }

  .leader-profile .leader-photo img {
    object-position: center 18%;
  }
}

@media (max-width: 991px) {
  :root {
    --header-offset: 78px;
  }

  .header-bar {
    display: none;
  }

  .nav-toggle {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 9px;
    z-index: 10020;
    position: relative;
  }

  .nav-overlay {
    display: none !important;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .nav-toggle {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  body.nav-open .mobile-contact-bar {
    display: none !important;
  }

  .site-nav {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: min(300px, 86vw);
    height: 100vh;
    height: 100dvh;
    z-index: 10010;
    display: flex !important;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 1.25rem;
    padding: 1.1rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom));
    transform: translateX(105%);
    opacity: 1;
    pointer-events: auto;
    transition: transform 0.28s ease;
    box-shadow: -12px 0 36px rgba(0, 60, 72, 0.22);
    border-bottom: 0;
    overflow-y: auto;
    margin: 0;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav__head {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--teal-dark);
  }

  .nav-close {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    color: var(--teal-dark);
    font-size: 1.15rem;
    cursor: pointer;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0.25rem;
  }

  .site-nav a {
    padding: 0.7rem 0.85rem;
    font-size: 1.05rem;
    border-radius: 10px;
  }

  .nav-ctas {
    flex-direction: column;
    margin-top: auto;
    padding-top: 0.5rem;
  }

  .nav-ctas .btn {
    width: 100%;
  }

  .btn--sm {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }

  .brand img {
    width: 96px;
    height: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero__layout {
    padding: 3.25rem 0 3.5rem;
    gap: 2rem;
  }

  .hero h1 {
    max-width: none;
  }

  .hero__mark-ring {
    width: 200px;
    height: 200px;
  }

  .leaders-grid,
  .programs-grid,
  .values-grid,
  .impact-grid,
  .mission-grid,
  .trustees,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .leader-card {
    grid-template-columns: 1fr;
  }

  .leader-photo {
    width: min(220px, 70%);
    height: auto;
    aspect-ratio: 1 / 1;
    margin-inline: auto;
  }

  .leader-card .leader-photo img {
    object-position: center 20%;
  }

  .leader-profile {
    padding: 1.25rem;
  }

  .leader-profile .leader-photo {
    width: min(260px, 80%);
    height: auto;
    aspect-ratio: 3 / 4;
    margin-inline: auto;
  }

  .leader-profile .leader-photo img {
    object-position: center 18%;
  }

  .section {
    padding: 3.25rem 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .footer-brand img {
    width: 120px;
    height: auto;
  }

  .whatsapp-float {
    display: none !important;
  }

  .mobile-contact-bar {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 9995 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(90deg, var(--teal-dark), var(--teal));
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 -6px 20px rgba(0, 60, 72, 0.22);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .mobile-contact-btn {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    text-decoration: none;
    font-weight: 700;
    color: var(--white);
    background: transparent;
    transition: background 0.15s ease;
  }

  .mobile-contact-btn:hover,
  .mobile-contact-btn:active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
  }

  .mobile-contact-btn--call {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
  }

  .mobile-contact-btn--whatsapp {
    background: #1ea952;
  }

  .mobile-contact-btn--whatsapp:hover,
  .mobile-contact-btn--whatsapp:active {
    background: #188c44;
  }

  .mobile-contact-btn i {
    font-size: 1.35rem;
    line-height: 1;
  }

  body {
    padding-bottom: calc(54px + env(safe-area-inset-bottom));
  }

  .cta-band {
    margin-bottom: 0;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
