:root {
  --ink: #18242b;
  --muted: #5d6972;
  --line: #d9e2e3;
  --paper: #fbfcfb;
  --white: #ffffff;
  --teal: #13766d;
  --teal-dark: #0b4e48;
  --coral: #d94b3d;
  --gold: #c79b38;
  --leaf: #7aa05f;
  --shadow: 0 24px 60px rgba(21, 38, 43, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.has-intro {
  overflow: hidden;
}

.site-intro {
  display: none;
}

.js .site-intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(11, 78, 72, 0.94), rgba(15, 33, 35, 0.98)),
    var(--teal-dark);
  transition: opacity 700ms ease, visibility 700ms ease;
}

.site-intro.is-hiding {
  opacity: 0;
  visibility: hidden;
}

.site-intro__inner {
  display: grid;
  justify-items: center;
  width: min(620px, calc(100% - 48px));
  text-align: center;
}

.site-intro__inner img {
  width: 82px;
  height: 82px;
  margin-bottom: 18px;
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  animation: intro-mark 820ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.site-intro__inner span {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  animation: intro-rise 780ms 160ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.site-intro__inner strong {
  max-width: 720px;
  font-size: clamp(28px, 6vw, 58px);
  line-height: 1.02;
  animation: intro-rise 840ms 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.site-intro__rule {
  width: min(360px, 72vw);
  height: 2px;
  margin-top: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.site-intro__rule i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform-origin: left center;
  animation: intro-rule 1.1s 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(20px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 30px rgba(10, 30, 30, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.68);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 12px;
  text-decoration: none;
  border-radius: 6px;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.site-header.is-scrolled .site-nav a:hover {
  background: #eef5f3;
}

.nav-cta {
  background: var(--coral);
  color: var(--white);
}

.language-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 6px 8px 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.language-control select {
  width: auto;
  min-width: 62px;
  border: 0;
  padding: 7px 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 900;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--white);
  background: var(--teal);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}

.site-header.is-scrolled .header-phone {
  color: var(--white);
}

.site-header.is-scrolled .language-control {
  border-color: var(--line);
  background: #eef5f3;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.15);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(10, 34, 34, 0.82), rgba(10, 34, 34, 0.28) 66%),
    linear-gradient(180deg, rgba(10, 34, 34, 0.3), rgba(10, 34, 34, 0.72)),
    url("/assets/hero.webp") center / cover no-repeat;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  transform-origin: center center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 34, 34, 0.82), rgba(10, 34, 34, 0.28) 66%),
    linear-gradient(180deg, rgba(10, 34, 34, 0.3), rgba(10, 34, 34, 0.72));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 40px));
  margin-left: clamp(20px, 8vw, 300px);
  margin-right: auto;
  padding: 120px 0 190px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  font-size: 21px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.2vw, 23px);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--coral);
  color: var(--white);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.button.tertiary {
  color: var(--white);
  background: var(--teal-dark);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.hero-facts {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: 28px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 1px;
  width: min(620px, calc(100% - 40px));
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-facts div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
}

.hero-facts strong {
  display: block;
  font-size: 25px;
  color: var(--teal-dark);
}

.hero-facts span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

body.intro-active .site-header,
body.intro-active .hero-content,
body.intro-active .hero-facts {
  opacity: 0;
}

body.intro-active .site-header {
  transform: translateY(-14px);
}

body.intro-active .hero-content {
  transform: translateY(30px);
}

body.intro-active .hero-facts {
  transform: translateY(22px);
}

body.intro-active .hero-image {
  filter: saturate(0.86) contrast(1.02);
  transform: scale(1.07);
}

body.intro-complete .site-header {
  animation: header-drop 650ms 120ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.intro-complete .hero-image {
  animation: hero-settle 1600ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.intro-complete .hero-content {
  animation: hero-rise 900ms 180ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.intro-complete .hero-facts {
  animation: hero-rise 850ms 460ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes intro-mark {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes intro-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes intro-rule {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes header-drop {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-settle {
  from {
    filter: saturate(0.86) contrast(1.02);
    transform: scale(1.07);
  }

  to {
    filter: saturate(1) contrast(1);
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .js .site-intro {
    display: none;
  }

  body.intro-active .site-header,
  body.intro-active .hero-content,
  body.intro-active .hero-facts,
  body.intro-complete .site-header,
  body.intro-complete .hero-image,
  body.intro-complete .hero-content,
  body.intro-complete .hero-facts {
    opacity: 1;
    animation: none;
    filter: none;
    transform: none;
  }
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 4vw, 56px);
}

.section-intro {
  max-width: 860px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.section-intro.compact {
  max-width: 720px;
}

.principles,
.partner-grid,
.donation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto;
}

.partner-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.principles article,
.partner-grid article,
.donation-grid article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(18, 50, 48, 0.06);
}

.principles article:nth-child(2),
.partner-grid article:nth-child(2) {
  border-top: 5px solid var(--coral);
}

.principles article:nth-child(3),
.partner-grid article:nth-child(3) {
  border-top: 5px solid var(--leaf);
}

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

.founder-grid,
.health-layout {
  display: grid;
  grid-template-columns: minmax(320px, 480px) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}

.founder-grid--solo {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  text-align: center;
}

.founder-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.founder-photo img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.founder-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.founder-signature {
  display: grid;
  gap: 3px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.founder-signature strong {
  color: var(--teal-dark);
  font-size: 20px;
}

.founder-signature span {
  color: var(--muted);
  font-weight: 800;
}

.services-showcase,
.team-section {
  background: #f4f7f4;
}

.service-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 1240px;
  margin: 0 auto;
}

.service-gallery article {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 18px 45px rgba(18, 50, 48, 0.12);
}

.service-gallery img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.service-gallery article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 78, 72, 0.12), rgba(11, 32, 34, 0.86));
}

.service-gallery article div {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 22px;
}

.service-gallery h3 {
  margin-bottom: 8px;
}

.service-gallery p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 700;
}

.health-village-showcase {
  background: var(--ink);
  color: var(--white);
}

.health-village-showcase p:not(.eyebrow),
.health-village-showcase .check-list li {
  color: rgba(255, 255, 255, 0.82);
}

.health-visuals {
  display: grid;
  gap: 14px;
}

.health-plan-card {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
}

.health-plan-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  border-radius: 6px;
  background: var(--white);
}

.health-plan-card figcaption {
  margin-top: 10px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
}

.health-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.health-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  max-width: 1240px;
  margin: 0 auto;
}

.team-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(18, 50, 48, 0.05);
}

.team-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: top center;
  background: #edf5f0;
}

.team-grid h3 {
  margin: 16px 16px 4px;
  font-size: 17px;
}

.team-grid p {
  margin: 0 16px 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.bank-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 980px;
  margin: 34px auto 0;
  padding: 28px;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal-dark);
}

.bank-panel p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.88);
}

.original-partners {
  max-width: 980px;
  margin: 34px auto 0;
  text-align: center;
}

.original-partners > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.original-partners img {
  width: 100%;
  height: 130px;
  object-fit: contain;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}

.split.reverse {
  grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
  margin-top: 54px;
}

.programme,
.donation {
  background: #edf5f0;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--coral);
}

.image-card {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.image-card figcaption {
  padding: 14px 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  max-width: 1160px;
  margin: 40px auto 0;
}

.flow div {
  min-height: 96px;
  padding: 18px;
  border-radius: 8px;
  background: var(--teal-dark);
  color: var(--white);
}

.flow strong {
  display: block;
  color: var(--gold);
  font-size: 24px;
}

.flow span {
  font-weight: 900;
}

.partner-grid article {
  min-height: 250px;
}

.partner-grid a {
  display: inline-block;
  margin-top: 12px;
  color: var(--teal-dark);
  font-weight: 900;
}

.impact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 38px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.impact-panel h2 {
  margin-bottom: 0;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
}

.metrics div {
  min-height: 130px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.metrics strong {
  display: block;
  color: var(--gold);
  font-size: 34px;
}

.metrics span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.donation-grid article {
  min-height: 170px;
  border-top: 5px solid var(--teal);
}

.donation-grid article:nth-child(2) {
  border-top-color: var(--coral);
}

.donation-grid article:nth-child(3) {
  border-top-color: var(--gold);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 520px);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  max-width: 1160px;
  margin: 0 auto;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 4vw, 56px);
  color: var(--white);
  background: var(--teal-dark);
  font-weight: 800;
}

.site-footer a {
  color: var(--white);
}

.partner-hero {
  min-height: 760px;
}

.partner-hero .hero-content {
  padding-bottom: 150px;
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1160px;
  margin: -54px auto 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.partner-strip div {
  min-height: 126px;
  padding: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
}

.partner-strip strong {
  display: block;
  color: var(--teal-dark);
  font-size: 28px;
}

.partner-strip span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.partner-pathways {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto;
}

.partner-pathways article {
  min-height: 260px;
  padding: 26px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(18, 50, 48, 0.06);
}

.partner-pathways article:nth-child(1) {
  border-top: 5px solid var(--teal);
}

.partner-pathways article:nth-child(2) {
  border-top: 5px solid var(--coral);
}

.partner-pathways article:nth-child(3) {
  border-top: 5px solid var(--gold);
}

.partner-pathways article:nth-child(4) {
  border-top: 5px solid var(--leaf);
}

.deal-table {
  max-width: 1160px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(18, 50, 48, 0.06);
}

.deal-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 1.1fr;
  gap: 1px;
  border-bottom: 1px solid var(--line);
}

.deal-row:last-child {
  border-bottom: 0;
}

.deal-row > div {
  padding: 20px;
}

.deal-row strong {
  color: var(--teal-dark);
}

.partner-contact {
  max-width: 1160px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
}

.partner-contact h2 {
  max-width: 760px;
}

.partner-contact p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
}

.plan-body {
  background: #f6f8f4;
}

.plan-nav {
  margin-left: auto;
}

.plan-shell {
  padding-top: 92px;
}

.plan-hero,
.plan-section,
.plan-summary {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.plan-hero {
  padding: clamp(46px, 8vw, 90px) 0 34px;
}

.plan-hero h1 {
  max-width: 900px;
  color: var(--ink);
  font-size: clamp(42px, 7vw, 78px);
}

.plan-hero p {
  max-width: 780px;
  color: var(--muted);
  font-size: 20px;
}

.plan-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.plan-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 34px;
}

.plan-summary article {
  min-height: 180px;
  padding: 22px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(18, 50, 48, 0.05);
}

.plan-summary span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--coral);
  font-weight: 900;
}

.plan-summary strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 19px;
}

.plan-summary p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.plan-section {
  padding: 42px 0;
}

.plan-heading {
  max-width: 900px;
  margin-bottom: 20px;
}

.plan-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 44px);
}

.plan-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(18, 50, 48, 0.07);
}

table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  text-align: left;
}

th,
td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  color: var(--teal-dark);
  background: #edf5f0;
  font-size: 13px;
  font-weight: 900;
}

td {
  color: var(--ink);
  font-size: 14px;
}

tbody tr:last-child td {
  border-bottom: 0;
}

td a {
  color: var(--teal-dark);
  font-weight: 900;
}

.priority {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 6px 8px;
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.priority.high {
  background: var(--coral);
}

.priority.medium {
  background: var(--teal);
}

.plan-checklist {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.plan-checklist div {
  min-height: 118px;
  padding: 20px;
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  color: var(--muted);
  background: var(--white);
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(18, 50, 48, 0.05);
}

.brief-body {
  background: #f7f9f6;
}

.brief-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 42px 20px 80px;
}

.brief-hero {
  padding: 34px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
}

.brief-hero h1 {
  max-width: 900px;
  font-size: clamp(34px, 5vw, 58px);
}

.brief-grid,
.brief-two {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

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

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

.brief-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.brief-card h2,
.brief-card h3 {
  margin-bottom: 12px;
}

.brief-card ul,
.brief-card ol {
  padding-left: 20px;
  margin-bottom: 0;
}

.brief-card li {
  margin-bottom: 8px;
}

.warning {
  border-left: 6px solid var(--coral);
}

.success {
  border-left: 6px solid var(--teal);
}

.money {
  border-left: 6px solid var(--gold);
}

.back-link {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--teal-dark);
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    inset: 76px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-block;
    color: currentColor;
  }

  .language-control {
    margin-left: 0;
  }

  .header-phone {
    display: none;
  }

  .hero-content {
    width: min(358px, calc(100% - 40px));
    margin-left: 20px;
    margin-right: 20px;
    padding: 120px 0 32px;
  }

  .hero {
    display: block;
    min-height: auto;
  }

  h1 {
    font-size: 32px;
    line-height: 1.08;
  }

  .hero-facts {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: min(358px, calc(100% - 40px));
    margin: 0 20px 28px;
  }

  .hero-facts,
  .partner-strip,
  .principles,
  .partner-grid,
  .partner-pathways,
  .plan-summary,
  .plan-checklist,
  .donation-grid,
  .split,
  .split.reverse,
  .founder-grid,
  .health-layout,
  .service-gallery,
  .team-grid,
  .bank-panel,
  .original-partners > div,
  .impact-panel,
  .contact,
  .brief-grid,
  .brief-two {
    grid-template-columns: 1fr;
  }

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

  .deal-row {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    left: auto;
    right: auto;
  }

}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand span {
    font-size: 15px;
  }

  .language-control span {
    display: none;
  }

  .language-control select {
    min-width: 58px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    width: min(358px, calc(100% - 32px));
    margin-left: 16px;
    margin-right: 16px;
    padding: 120px 0 28px;
  }

  h1 {
    font-size: 30px;
    line-height: 1.08;
  }

  .hero-copy {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .button.secondary {
    background: rgba(255, 255, 255, 0.16);
  }

  .hero-facts {
    width: min(358px, calc(100% - 32px));
    margin: 0 16px 24px;
  }

  .hero-facts,
  .partner-strip,
  .flow,
  .metrics {
    grid-template-columns: 1fr;
  }

  .health-gallery {
    grid-template-columns: 1fr;
  }

  .partner-strip {
    margin: 0 16px 24px;
  }

  .partner-contact {
    padding: 24px;
  }

  .plan-shell {
    padding-top: 82px;
  }

  .plan-hero,
  .plan-section,
  .plan-summary {
    width: calc(100% - 32px);
  }

  .plan-hero h1 {
    font-size: 34px;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .impact-panel,
  .brief-hero {
    padding: 24px;
  }

  .site-footer {
    flex-direction: column;
  }
}
