:root {
  --green-950: #062d1a;
  --green-900: #0d4f2a;
  --green-800: #126533;
  --green-700: #178443;
  --green-600: #21a458;
  --green-100: #dff5e7;
  --green-50: #f1fbf5;
  --blue: #2679bf;
  --sky: #eaf5ff;
  --yellow: #f8c64e;
  --yellow-soft: #fff7dd;
  --coral: #f26d5b;
  --teal: #1ba7a6;
  --purple: #7b56a3;
  --ink: #17201a;
  --muted: #5c6b61;
  --line: #dce8df;
  --bg: #fbfdfb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(13, 79, 42, 0.11);
  --shadow-soft: 0 10px 24px rgba(13, 79, 42, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: 0; }
ul, ol { margin: 0; padding: 0; }
li { margin: 0; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--green-900);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(220, 232, 223, 0.78);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-soft); }
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 850; font-size: 1.35rem; color: var(--ink); }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 28px; font-size: .94rem; font-weight: 700; color: #1e2a22; }
.desktop-nav a { padding: 8px 0; border-bottom: 2px solid transparent; }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: var(--green-800); border-bottom-color: var(--green-700); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: var(--white); border-radius: 8px; padding: 10px; }
.menu-toggle span { display: block; width: 100%; height: 2px; background: var(--green-900); margin: 5px 0; }
.mobile-nav {
  display: none;
  padding: 0 20px 20px;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.mobile-nav a { display: block; padding: 14px 0; font-weight: 800; color: var(--ink); }
.mobile-nav .btn { display: flex; justify-content: center; padding: 12px 18px; margin-top: 8px; color: var(--white); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.btn-primary { background: var(--green-700); color: var(--white); border-color: var(--green-700); }
.btn-primary:hover { background: var(--green-800); }
.btn-secondary { background: var(--white); color: var(--green-800); border-color: var(--green-700); }
.btn-secondary:hover { background: var(--green-50); }
.btn-contrast { background: var(--white); color: var(--green-900); border-color: var(--white); box-shadow: 0 12px 28px rgba(3, 28, 15, .18); }
.btn-contrast:hover { background: var(--yellow-soft); color: var(--green-950); }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.button-row.compact-row { margin-top: 16px; gap: 10px; }
.center-row { justify-content: center; }
.text-link { color: var(--green-800); font-weight: 850; display: inline-flex; align-items: center; }
.text-link:hover { color: var(--green-950); text-decoration: underline; text-underline-offset: 4px; }

.home-hero { background: var(--white); padding: 18px 0 28px; }
.hero-grid {
  min-height: 500px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 38px;
  align-items: center;
}
.hero-copy h1 { font-size: 3.55rem; line-height: 1; max-width: 620px; }
.hero-copy h1 span { color: var(--green-700); }
.hero-copy > p:not(.eyebrow) { font-size: 1.08rem; color: var(--muted); max-width: 530px; margin-top: 18px; }
.eyebrow {
  color: var(--blue);
  font-size: .77rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.proof-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.proof-chips span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--green-900);
  border-radius: 8px;
  padding: 7px 12px;
  font-weight: 750;
  font-size: .82rem;
}

.hero-collage {
  display: grid;
  grid-template-columns: 1.1fr .9fr .72fr;
  grid-template-rows: 150px 150px 135px;
  gap: 8px;
  min-height: 451px;
}
.hero-tile { position: relative; overflow: hidden; border-radius: 5px; }
.hero-collage img { display: block; width: 100%; height: 100%; object-fit: cover; }
.tile-a { grid-column: 1 / 2; grid-row: 1 / 3; }
.tile-b { grid-column: 2 / 4; grid-row: 1 / 2; }
.tile-c { grid-column: 1 / 2; grid-row: 3 / 4; }
.tile-d { grid-column: 2 / 3; grid-row: 2 / 4; }
.tile-e { grid-column: 3 / 4; grid-row: 2 / 4; }

.trust-strip { background: linear-gradient(90deg, var(--green-50), #fff, var(--yellow-soft)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-strip .container { min-height: 74px; display: flex; justify-content: center; align-items: center; gap: 18px; text-align: center; flex-wrap: wrap; }
.trust-strip strong { color: var(--green-900); }
.trust-strip span { color: var(--muted); font-weight: 750; }

.section { padding: 82px 0; }
.section.pt-0 { padding-top: 0; }
.section.alt { background: var(--green-50); border-top: 1px solid rgba(220, 232, 223, .7); border-bottom: 1px solid rgba(220, 232, 223, .7); }
.section-heading { max-width: 760px; margin-bottom: 28px; }
.section-heading.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading h2, .feature-band h2, .cta-panel h2, .final-cta h2 { font-size: 3rem; color: var(--ink); }
.section-heading p, .lead { color: var(--muted); font-size: 1.04rem; margin-top: 13px; }
.lead { line-height: 1.85; }
.lead.center { text-align: center; max-width: 850px; margin: 0 auto; }
.section-row { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 16px; }

.support-overview-section {
  padding: 70px 0 74px;
  background: var(--white);
  border-top: 1px solid rgba(220, 232, 223, .62);
  border-bottom: 1px solid rgba(220, 232, 223, .62);
}
.support-overview {
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  gap: 44px;
  align-items: center;
}
.support-overview .section-heading { max-width: 700px; margin-bottom: 24px; }
.support-overview .section-heading h2 { font-size: 2.78rem; }
.support-overview .section-heading p { max-width: 690px; }
.support-group-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.support-group-card {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  min-height: 66px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  box-shadow: 0 10px 22px rgba(13, 79, 42, .06);
}
.support-group-card .program-icon { width: 38px; height: 38px; }
.support-group-card .program-icon svg { width: 21px; height: 21px; }
.support-group-card h3 { font-size: .98rem; line-height: 1.2; }
.support-group-card:nth-child(2) .program-icon { background: #fff0ed; color: var(--coral); }
.support-group-card:nth-child(3) .program-icon { background: var(--green-50); color: var(--green-700); }
.support-group-card:nth-child(4) .program-icon { background: #fff5d6; color: #a96d00; }
.support-visual {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  grid-template-rows: 172px 172px;
  gap: 10px;
  min-height: 354px;
}
.support-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(220, 232, 223, .9);
  box-shadow: var(--shadow-soft);
}
.support-photo-main { grid-row: 1 / 3; object-position: 52% 50%; }
.program-overview-section {
  padding: 74px 0 78px;
  background: var(--white);
  border-top: 1px solid rgba(220, 232, 223, .72);
  border-bottom: 1px solid rgba(220, 232, 223, .72);
}
.program-overview-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(220, 232, 223, .92);
  border-radius: 8px;
  background: var(--white);
  padding: 30px;
  box-shadow: var(--shadow-soft);
}
.program-overview-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--green-700), var(--teal), var(--yellow));
}
.program-overview-head {
  display: grid;
  grid-template-columns: minmax(280px, .56fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 24px;
}
.program-overview-head h2 { font-size: 2.48rem; line-height: 1.06; color: var(--ink); max-width: 430px; }
.program-overview-head p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 700px;
  justify-self: end;
}
.program-area-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.program-area-card {
  --area-color: var(--green-700);
  min-height: 138px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 30px;
  gap: 14px;
  align-items: start;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(220, 232, 223, .95);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(13, 79, 42, .08);
  isolation: isolate;
}
.program-area-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--area-color);
}
.program-area-card:hover { border-color: color-mix(in srgb, var(--area-color) 36%, var(--line)); transform: translateY(-2px); box-shadow: var(--shadow); }
.program-area-card .program-icon { width: 46px; height: 46px; background: color-mix(in srgb, var(--area-color) 11%, var(--white)); color: var(--area-color); }
.program-area-card .program-icon svg { width: 22px; height: 22px; }
.program-area-card h3 { margin-top: 2px; font-size: 1rem; line-height: 1.22; }
.program-area-card p { color: var(--muted); font-size: .9rem; line-height: 1.48; margin-top: 7px; }
.program-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(220, 232, 223, .95);
  border-radius: 8px;
  background: var(--white);
  color: var(--area-color);
  justify-self: end;
}
.program-card-arrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: -3px;
}
.program-area-card:hover .program-card-arrow {
  background: var(--area-color);
  border-color: var(--area-color);
  color: var(--white);
}
.program-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--green-50);
  color: var(--green-700);
}
.program-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.program-area-card:nth-child(2) { --area-color: var(--blue); }
.program-area-card:nth-child(3) { --area-color: #c78708; }
.program-area-card:nth-child(4) { --area-color: var(--coral); }
.program-area-card:nth-child(5) { --area-color: var(--teal); }
.program-area-card:nth-child(6) { --area-color: var(--purple); }

.card, .program-detail, .trust-card, .partners-card, .donation-card, .fact-panel, .document-panel, .contact-note {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}
.card {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  text-align: left;
  min-height: 156px;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--green-700);
}
.card:hover { border-color: rgba(23, 132, 67, .45); transform: translateY(-2px); box-shadow: var(--shadow); }
.card h3 { font-size: 1.02rem; margin-top: 2px; line-height: 1.24; }
.card p { color: var(--muted); font-size: .91rem; margin-top: 8px; line-height: 1.5; }
.icon-badge {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--green-50);
  color: var(--green-800);
  font-size: .78rem;
  font-weight: 900;
}
.card:nth-child(2n)::before { background: var(--blue); }
.card:nth-child(2n) .icon-badge { background: #eaf4ff; color: var(--blue); }
.card:nth-child(3n)::before { background: var(--yellow); }
.card:nth-child(3n) .icon-badge { background: #fff5d6; color: #a96d00; }
.card:nth-child(4n)::before { background: var(--coral); }
.card:nth-child(4n) .icon-badge { background: #fff0ed; color: var(--coral); }
.card:nth-child(5n)::before { background: var(--teal); }
.card:nth-child(5n) .icon-badge { background: #e8fbf8; color: var(--teal); }
.card:nth-child(6n)::before { background: var(--purple); }
.card:nth-child(6n) .icon-badge { background: #f3ecfb; color: var(--purple); }

.feature-band {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 38px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.feature-band.reverse { grid-template-columns: .92fr 1.08fr; }
.feature-band.reverse img { order: 2; }
.feature-band img { height: 340px; width: 100%; object-fit: cover; border-radius: 7px; border: 1px solid rgba(220, 232, 223, .92); box-shadow: var(--shadow-soft); }
.feature-band p { color: var(--muted); margin-top: 14px; max-width: 720px; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 26px; }
.pill-list span { background: var(--white); border: 1px solid #cfe6fb; border-radius: 8px; padding: 8px 12px; font-weight: 800; color: var(--green-900); }

.training-highlight-section {
  padding: 62px 0 68px;
  background: linear-gradient(180deg, #f5fbf7 0%, var(--white) 100%);
  border-top: 1px solid rgba(220, 232, 223, .75);
  border-bottom: 1px solid rgba(220, 232, 223, .75);
}
.training-highlight {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
  align-items: center;
}
.training-copy { max-width: 560px; }
.training-highlight h2 {
  margin-top: 0;
  color: var(--ink);
  font-size: 2.45rem;
  line-height: 1.08;
  max-width: 520px;
}
.training-highlight p {
  color: var(--muted);
  margin-top: 15px;
  line-height: 1.65;
}
.training-focus-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 24px;
}
.training-focus-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  color: var(--green-900);
  font-size: .94rem;
  font-weight: 850;
  white-space: nowrap;
  box-shadow: var(--shadow-soft);
}
.training-focus-list span::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green-700);
}
.training-focus-list span:nth-child(2)::before { background: var(--blue); }
.training-focus-list span:nth-child(3)::before { background: #a96d00; }
.training-focus-list span:nth-child(4)::before { background: var(--teal); }
.training-media {
  position: relative;
  min-height: 356px;
}
.training-photo-main {
  display: block;
  width: 100%;
  height: 356px;
  object-fit: cover;
  object-position: center 48%;
  border-radius: 8px;
  border: 1px solid rgba(220, 232, 223, .92);
  box-shadow: var(--shadow);
}
.training-photo-inset {
  position: absolute;
  right: 22px;
  bottom: -20px;
  width: min(260px, 42%);
  background: var(--white);
  border: 1px solid rgba(220, 232, 223, .95);
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 18px 45px rgba(14, 43, 27, .18);
}
.training-photo-inset img {
  display: block;
  width: 100%;
  height: 136px;
  object-fit: cover;
  object-position: center 58%;
  border-radius: 6px;
}
.training-photo-inset span {
  display: block;
  padding: 8px 4px 2px;
  color: var(--green-900);
  font-size: .82rem;
  font-weight: 850;
}

.work-card-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.image-card { display: block; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow-soft); }
.image-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.image-card img { width: 100%; height: 185px; object-fit: cover; }
.image-card div { padding: 16px; }
.image-card h3 { font-size: 1rem; }
.image-card p { color: var(--muted); font-size: .9rem; margin-top: 8px; }

.work-preview-section {
  padding: 76px 0 82px;
  background: var(--white);
}
.work-preview-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}
.work-preview-head .section-heading { max-width: 820px; }
.work-preview-head .section-heading h2 { font-size: 2.72rem; }
.work-preview-head .btn {
  justify-self: end;
  margin-bottom: 8px;
}
.work-preview-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.work-preview-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: 252px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}
.work-preview-card:hover {
  border-color: rgba(23, 132, 67, .45);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.work-preview-card img {
  display: block;
  width: 100%;
  height: 142px;
  object-fit: cover;
}
.work-preview-card-copy {
  display: grid;
  align-content: start;
  padding: 15px 16px 17px;
}
.work-preview-card h3 { font-size: 1.02rem; line-height: 1.2; }
.work-preview-card p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
  margin-top: 8px;
}
.work-preview-card.is-featured {
  grid-row: span 2;
  min-height: 520px;
  background: linear-gradient(180deg, var(--white), #f6fbf8);
}
.work-preview-card.is-featured img {
  height: 340px;
  object-position: center 42%;
}
.work-preview-card.is-featured .work-preview-card-copy { padding: 20px 22px 22px; }
.work-preview-card.is-featured h3 { font-size: 1.42rem; }
.work-preview-card.is-featured p { font-size: 1rem; line-height: 1.55; }

.triple-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 22px; }
.trust-card, .partners-card, .donation-card { padding: 26px; }
.trust-card h2, .partners-card h2, .donation-card h2, .fact-panel h2, .document-panel h2, .contact-note h2 { font-size: 1.6rem; margin-bottom: 10px; }
.trust-card p, .partners-card p, .donation-card p, .document-panel p, .contact-note p { color: var(--muted); }
.trust-card-inner { display: grid; grid-template-columns: 120px 1fr; gap: 20px; align-items: center; margin: 22px 0; }
.trust-card-inner img, .document-panel img { border: 1px solid var(--line); border-radius: 6px; background: var(--white); box-shadow: var(--shadow-soft); }
.check-list { display: grid; gap: 12px; list-style: none; }
.check-list li { position: relative; padding-left: 28px; color: var(--muted); }
.check-list li::before { content: ""; position: absolute; left: 0; top: .42em; width: 14px; height: 14px; border: 2px solid var(--green-700); border-radius: 4px; }
.partner-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 24px; }
.partner-list.compact { grid-template-columns: repeat(2, 1fr); }
.partner-list span { border: 1px solid var(--line); border-radius: 8px; min-height: 46px; display: flex; align-items: center; justify-content: center; text-align: center; padding: 8px 10px; font-weight: 850; color: var(--green-900); background: var(--white); }
.donation-card { background: linear-gradient(145deg, var(--green-50), #fff); }
.donation-card.large { padding: 32px; }
.donation-page-transfer h2 {
  font-size: 2.15rem;
  margin-bottom: 10px;
}
.donation-page-transfer > p {
  color: var(--muted);
  margin-bottom: 18px;
}
.donation-page-transfer .donation-transfer-card { margin-top: 0; }
.home-donation-section {
  padding: 0 0 82px;
  background: var(--white);
}
.home-donation {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 42px;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 38px;
  background: linear-gradient(135deg, #f4fbf7 0%, var(--white) 60%, #f8fff9 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}
.home-donation::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--green-700), var(--teal));
}
.donation-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
}
.home-donation h2 {
  font-size: 2.62rem;
  line-height: 1.06;
}
.home-donation p {
  max-width: 560px;
  color: var(--muted);
  margin-top: 14px;
  font-size: 1.03rem;
  line-height: 1.62;
}
.donation-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}
.receipt-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--green-800);
  font-weight: 850;
}
.donation-transfer-card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 1px solid rgba(220, 232, 223, .95);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 18px 45px rgba(14, 43, 27, .1);
}
.donation-transfer-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.donation-transfer-head span {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.donation-transfer-head strong {
  color: var(--green-800);
  font-size: 1.55rem;
  line-height: 1;
}
.donation-transfer-list {
  display: grid;
  margin: 2px 0 0;
}
.donation-transfer-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(220, 232, 223, .78);
}
.donation-transfer-list div:last-child { border-bottom: 0; padding-bottom: 0; }
.donation-transfer-list dt {
  color: var(--green-800);
  font-weight: 850;
}
.donation-transfer-list dd {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--ink);
  font-weight: 850;
  overflow-wrap: anywhere;
}
.transfer-highlight dd > span {
  color: var(--green-900);
  font-size: 1.28rem;
  letter-spacing: .02em;
  line-height: 1.1;
}
.copy-button {
  min-height: 30px;
  border: 1px solid rgba(23, 132, 67, .28);
  border-radius: 8px;
  background: var(--green-50);
  color: var(--green-800);
  cursor: pointer;
  font: inherit;
  font-size: .78rem;
  font-weight: 850;
  padding: 5px 9px;
}
.copy-button:hover,
.copy-button.is-copied {
  background: var(--green-700);
  border-color: var(--green-700);
  color: var(--white);
}
.donation-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--green-700); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: .78rem; font-weight: 900; margin-bottom: 14px; }
.bank-box { margin: 18px 0 20px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); padding: 16px; }
.bank-box dl, .fact-list { margin: 0; display: grid; gap: 10px; }
.bank-box div, .fact-list div { display: grid; grid-template-columns: 135px 1fr; gap: 14px; }
.bank-box dt, .fact-list dt { color: var(--green-800); font-weight: 850; }
.bank-box dd, .fact-list dd { margin: 0; font-weight: 800; color: var(--ink); overflow-wrap: anywhere; }

.faq-section { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 28px; box-shadow: var(--shadow-soft); }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
details { border: 1px solid var(--line); border-radius: 8px; background: var(--white); padding: 16px; }
summary { cursor: pointer; font-weight: 850; color: var(--ink); }
details p { color: var(--muted); margin-top: 10px; }

.final-cta { padding: 10px 0 82px; }
.final-cta-grid {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 42px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 247, 221, .1), rgba(255, 255, 255, 0) 38%),
    linear-gradient(135deg, var(--green-950) 0%, var(--green-900) 54%, var(--green-700) 100%);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 22px 55px rgba(13, 79, 42, .16);
}
.final-cta-grid::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background: linear-gradient(90deg, var(--yellow), var(--teal), var(--green-600));
}
.final-cta-media { position: relative; min-height: 286px; }
.final-cta-photo-main,
.final-cta-photo-inset {
  width: 100%;
  object-fit: cover;
  border-radius: 7px;
  border: 4px solid rgba(255, 255, 255, .88);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .2);
}
.final-cta-photo-main { height: 286px; object-position: center 38%; }
.final-cta-photo-inset {
  position: absolute;
  right: -20px;
  bottom: -18px;
  width: 48%;
  height: 116px;
  object-position: center;
}
.final-cta-content { position: relative; z-index: 1; max-width: 760px; }
.final-cta h2 { max-width: 720px; color: var(--white); font-size: 2.7rem; }
.final-cta p { color: rgba(255, 255, 255, .82); margin-top: 12px; max-width: 650px; font-size: 1.04rem; }
.final-contact-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.final-contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  color: var(--white);
  font-weight: 850;
  overflow-wrap: anywhere;
}
.final-contact-links svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.final-cta-actions { margin-top: 24px; }

.page-hero {
  padding: 54px 0 58px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(340px, .78fr);
  align-items: center;
  gap: 42px;
}
.page-hero-copy { max-width: 760px; }
.page-hero h1 { font-size: 3.55rem; max-width: 760px; }
.page-hero p:not(.eyebrow) { color: var(--muted); font-size: 1.06rem; max-width: 700px; margin-top: 16px; }
.page-hero .button-row { margin-top: 24px; }
.page-hero-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(220, 232, 223, .95);
  background: var(--white);
  box-shadow: var(--shadow);
}
.page-hero-media::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--green-700), var(--teal), var(--yellow));
  z-index: 1;
}
.page-hero img { width: 100%; height: 360px; object-fit: cover; object-position: center; }
.page-hero-media.is-document { display: flex; justify-content: center; padding: 22px; }
.page-hero-media.is-document img { height: 360px; width: min(100%, 280px); object-fit: contain; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.copy-stack { display: grid; gap: 18px; color: var(--muted); font-size: 1.04rem; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.card-grid { display: grid; gap: 18px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card-grid.five { grid-template-columns: repeat(5, 1fr); }
.fact-panel, .document-panel, .contact-note { padding: 28px; }
.program-intro-section {
  padding: 24px 0;
  background: #fafdfb;
  border-bottom: 1px solid var(--line);
}
.program-intro-note {
  max-width: 980px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}
.program-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.program-detail {
  position: relative;
  overflow: hidden;
  padding: 26px;
  scroll-margin-top: 110px;
}
.program-detail::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--green-700);
}
.program-detail h2 { font-size: 1.45rem; margin-top: 16px; }
.program-detail p { color: var(--muted); margin-top: 12px; }
.program-detail ul { list-style: none; margin-top: 18px; display: grid; gap: 9px; }
.program-detail li { color: var(--muted); padding-left: 22px; position: relative; }
.program-detail li::before { content: ""; width: 7px; height: 7px; background: var(--green-700); border-radius: 50%; position: absolute; left: 0; top: .66em; }
.narrow { max-width: 900px; }
.cta-panel { text-align: center; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-soft); border-radius: 8px; padding: 42px; }
.cta-panel p { color: var(--muted); margin: 14px auto 0; max-width: 680px; }
.work-flow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.work-flow-card {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 12px 16px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 58px 22px 20px;
  box-shadow: var(--shadow-soft);
}
.work-flow-card .program-icon { width: 50px; height: 50px; grid-row: 1 / span 2; }
.work-flow-card .program-icon svg { width: 23px; height: 23px; }
.work-flow-card:nth-child(2) .program-icon { background: var(--sky); color: var(--blue); }
.work-flow-card:nth-child(3) .program-icon { background: var(--yellow-soft); color: #a96d00; }
.work-flow-card:nth-child(4) .program-icon { background: #eaf8f7; color: var(--teal); }
.flow-number {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green-900);
  color: var(--white);
  font-size: .88rem;
  font-weight: 900;
}
.work-flow-card h3 { font-size: 1.16rem; margin-top: 2px; }
.work-flow-card p { color: var(--muted); font-size: .94rem; line-height: 1.55; }
.our-work-stream-section { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.workstream-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.workstream-card {
  display: grid;
  grid-template-columns: minmax(180px, .82fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}
.workstream-image { min-height: 100%; background: var(--green-50); }
.workstream-image img { width: 100%; height: 100%; min-height: 310px; object-fit: cover; }
.workstream-copy { padding: 22px; }
.workstream-copy .program-icon { width: 44px; height: 44px; }
.workstream-copy .program-icon svg { width: 22px; height: 22px; }
.workstream-card:nth-child(2) .program-icon { background: var(--green-50); color: var(--green-700); }
.workstream-card:nth-child(3) .program-icon { background: var(--sky); color: var(--blue); }
.workstream-card:nth-child(4) .program-icon { background: var(--yellow-soft); color: #a96d00; }
.workstream-card:nth-child(5) .program-icon { background: #eaf8f7; color: var(--teal); }
.workstream-card:nth-child(6) .program-icon { background: #fff0ed; color: var(--coral); }
.workstream-card:nth-child(7) .program-icon { background: #f2ecfb; color: var(--purple); }
.workstream-copy h3 { font-size: 1.18rem; margin-top: 14px; }
.workstream-copy p { color: var(--muted); margin-top: 10px; font-size: .94rem; line-height: 1.58; }
.workstream-copy ul { list-style: none; display: grid; gap: 8px; margin-top: 16px; }
.workstream-copy li {
  position: relative;
  color: var(--green-900);
  font-weight: 850;
  font-size: .88rem;
  line-height: 1.35;
  padding-left: 18px;
}
.workstream-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .52em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-700);
}
.work-timeline article:nth-child(3n + 2)::before { background: var(--blue); }
.work-timeline article:nth-child(3n)::before { background: var(--teal); }
.timeline { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.timeline article { position: relative; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 20px; box-shadow: var(--shadow-soft); }
.timeline article::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: var(--green-700); }
.timeline span { display: inline-flex; color: var(--green-800); font-weight: 900; font-size: .9rem; background: var(--green-50); border: 1px solid var(--line); border-radius: 8px; padding: 4px 8px; margin-bottom: 12px; }
.timeline h3 { font-size: 1.2rem; }
.timeline p { color: var(--muted); margin-top: 6px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-grid figure { margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-soft); }
.gallery-grid img { width: 100%; height: 220px; object-fit: cover; }
.gallery-grid figcaption { padding: 13px; font-weight: 850; color: var(--green-900); }
.step-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.step-grid article { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 22px; box-shadow: var(--shadow-soft); }
.step-grid span { width: 38px; height: 38px; border-radius: 50%; background: var(--green-700); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 900; margin-bottom: 14px; }
.step-grid h3 { font-size: 1.05rem; }
.step-grid p { color: var(--muted); margin-top: 8px; font-size: .93rem; }
.document-panel img { width: 190px; margin-top: 22px; }
.contact-grid { display: grid; grid-template-columns: 1.2fr .9fr .9fr; gap: 22px; }
.fine-print { margin-top: 18px; color: var(--muted); font-size: .93rem; }
.legal-content { max-width: 860px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow-soft); padding: 44px; }
.legal-content h2 { font-size: 1.55rem; margin-top: 30px; margin-bottom: 10px; }
.legal-content p { color: var(--muted); margin-bottom: 14px; }

.site-footer {
  background: var(--green-950);
  color: var(--white);
  padding: 56px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .85fr 1fr;
  gap: 44px;
  align-items: start;
}
.footer-brand {
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand img {
  width: 46px;
  height: 46px;
  background: var(--white);
  border-radius: 8px;
  padding: 3px;
}
.site-footer p {
  color: rgba(255, 255, 255, .72);
  line-height: 1.75;
  max-width: 580px;
}
.site-footer h2 {
  color: #bdeacb;
  font-size: .86rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer strong {
  color: var(--white);
}
.site-footer a {
  color: inherit;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  padding: 8px 13px;
  color: rgba(255, 255, 255, .86);
  font-weight: 800;
}
.footer-social a:hover,
.footer-links a:hover,
.site-footer p a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
}
.footer-links a {
  color: rgba(255, 255, 255, .78);
  font-weight: 750;
  line-height: 1.35;
}
.footer-bottom {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, .64);
  font-size: .9rem;
  font-weight: 700;
}

@media (max-width: 1120px) {
  .desktop-nav { gap: 18px; }
  .hero-copy h1 { font-size: 3.3rem; }
  .page-hero h1 { font-size: 3.15rem; }
  .section-heading h2, .feature-band h2, .cta-panel h2, .final-cta h2 { font-size: 2.65rem; }
  .final-cta h2 { font-size: 2.45rem; }
  .program-area-grid, .work-card-grid { grid-template-columns: repeat(3, 1fr); }
  .work-flow-grid { grid-template-columns: repeat(2, 1fr); }
  .workstream-grid { grid-template-columns: 1fr; }
  .work-preview-grid { grid-template-columns: 1fr 1fr; }
  .work-preview-card.is-featured { grid-column: 1 / -1; min-height: 0; }
  .work-preview-card.is-featured img { height: 310px; }
  .card-grid.five { grid-template-columns: repeat(3, 1fr); }
  .step-grid { grid-template-columns: repeat(3, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .desktop-nav, .header-donate { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav:not([hidden]) { display: block; }
  .hero-grid, .page-hero-grid, .support-overview, .feature-band, .feature-band.reverse, .two-col, .final-cta-grid, .contact-grid, .home-donation { grid-template-columns: 1fr; }
  .workstream-card { grid-template-columns: .9fr 1fr; }
  .training-highlight { grid-template-columns: 1fr; gap: 28px; }
  .training-copy { max-width: 720px; }
  .training-media { min-height: 340px; }
  .training-photo-main { height: 340px; }
  .work-preview-head { grid-template-columns: 1fr; gap: 14px; align-items: start; }
  .work-preview-head .btn { justify-self: start; margin-bottom: 0; }
  .donation-copy { max-width: 720px; }
  .donation-transfer-card { max-width: 760px; }
  .hero-grid { min-height: 0; padding: 30px 0; }
  .hero-copy h1 { font-size: 2.95rem; }
  .page-hero h1 { font-size: 2.85rem; }
  .page-hero-grid { gap: 26px; }
  .page-hero img { height: 320px; }
  .section-heading h2, .feature-band h2, .cta-panel h2, .final-cta h2 { font-size: 2.35rem; }
  .final-cta-grid { gap: 26px; padding: 24px; }
  .final-cta-media { max-width: 620px; min-height: 270px; }
  .final-cta-photo-main { height: 270px; }
  .support-overview .section-heading h2 { font-size: 2.35rem; }
  .support-visual { grid-template-rows: 190px 190px; }
  .hero-collage { min-height: 414px; grid-template-rows: 136px 136px 126px; }
  .program-overview-head { grid-template-columns: 1fr; gap: 10px; }
  .program-overview-head p { justify-self: start; }
  .program-area-grid { grid-template-columns: repeat(2, 1fr); }
  .triple-grid, .program-detail-grid, .mission-grid, .card-grid.three, .card-grid.four, .gallery-grid, .faq-grid { grid-template-columns: 1fr 1fr; }
  .feature-band.reverse img { order: initial; }
  .final-cta-grid .btn { justify-self: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 70px; }
  .brand { font-size: 1.15rem; }
  .brand img { width: 42px; height: 42px; }
  .home-hero { padding-top: 10px; }
  .hero-grid { gap: 22px; padding: 20px 0 24px; }
  .hero-copy h1 { font-size: 2.05rem; }
  .page-hero { padding: 42px 0 46px; }
  .page-hero h1 { font-size: 2.25rem; }
  .page-hero p:not(.eyebrow) { font-size: 1rem; }
  .page-hero .button-row { align-items: stretch; gap: 10px; }
  .page-hero .button-row .btn { width: 100%; }
  .hero-copy > p:not(.eyebrow) { font-size: 1rem; margin-top: 14px; }
  .section-heading h2, .feature-band h2, .cta-panel h2, .final-cta h2 { font-size: 2rem; }
  .section.program-overview-section { padding: 64px 0 54px; }
  .program-overview-head h2 { font-size: 2rem; }
  .hero-collage { min-height: auto; grid-template-columns: 1fr 1fr; grid-template-rows: 132px 108px 108px; }
  .tile-a { grid-column: 1 / 3; grid-row: 1 / 2; }
  .tile-b { grid-column: 1 / 2; grid-row: 2 / 3; }
  .tile-c { grid-column: 2 / 3; grid-row: 2 / 3; }
  .tile-d { grid-column: 1 / 2; grid-row: 3 / 4; }
  .tile-e { grid-column: 2 / 3; grid-row: 3 / 4; }
  .section { padding: 56px 0; }
  .page-hero { padding: 42px 0 46px; }
  .section.work-preview-section { padding: 56px 0 60px; }
  .section.home-donation-section { padding: 0 0 56px; }
  .work-preview-head .section-heading h2 { font-size: 2rem; }
  .work-preview-grid { grid-template-columns: 1fr; gap: 14px; }
  .work-preview-card, .work-preview-card.is-featured { min-height: 0; grid-column: auto; grid-row: auto; }
  .work-preview-card img, .work-preview-card.is-featured img { height: 188px; }
  .work-preview-card.is-featured .work-preview-card-copy, .work-preview-card-copy { padding: 15px; }
  .work-preview-card.is-featured h3, .work-preview-card h3 { font-size: 1rem; }
  .work-preview-card.is-featured p, .work-preview-card p { font-size: .9rem; line-height: 1.45; }
  .section.training-highlight-section { padding: 56px 0 60px; }
  .training-highlight { gap: 22px; }
  .training-highlight h2 { font-size: 2rem; }
  .training-highlight p { font-size: .98rem; }
  .training-focus-list { display: grid; grid-template-columns: 1fr; margin: 18px 0 22px; }
  .training-focus-list span { white-space: normal; }
  .training-media { min-height: 0; }
  .training-photo-main { height: 230px; }
  .training-photo-inset {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(78%, 270px);
    margin: -36px 12px 0 auto;
  }
  .training-photo-inset img { height: 118px; }
  .support-overview-section { padding: 50px 0 54px; }
  .support-overview { gap: 26px; }
  .support-group-grid { grid-template-columns: 1fr; }
  .support-group-card { min-height: 0; }
  .support-visual { grid-template-columns: 1fr 1fr; grid-template-rows: 168px 120px; min-height: 298px; }
  .support-photo-main { grid-column: 1 / 3; grid-row: 1 / 2; }
  .program-area-grid, .work-card-grid, .triple-grid, .card-grid.five, .card-grid.three, .card-grid.four, .gallery-grid, .faq-grid, .step-grid, .program-detail-grid, .mission-grid, .timeline, .work-flow-grid { grid-template-columns: 1fr; }
  .work-flow-card { min-height: 0; padding: 18px; }
  .work-flow-card { padding-right: 52px; }
  .workstream-card { grid-template-columns: 1fr; }
  .workstream-image img { min-height: 0; height: 210px; }
  .workstream-copy { padding: 18px; }
  .card { min-height: 0; }
  .gallery-grid img { height: 188px; }
  .program-overview-shell { padding: 20px; }
  .program-area-card { min-height: 0; grid-template-columns: 44px minmax(0, 1fr) 28px; padding: 15px; }
  .program-area-card .program-icon { width: 42px; height: 42px; }
  .program-card-arrow { width: 28px; height: 28px; }
  .feature-band, .cta-panel, .faq-section, .legal-content { padding: 18px; }
  .home-donation { padding: 22px; }
  .home-donation h2 { font-size: 2rem; }
  .donation-actions { align-items: stretch; gap: 10px; margin-top: 20px; }
  .donation-actions .btn,
  .receipt-link {
    width: 100%;
    justify-content: center;
  }
  .donation-transfer-card { padding: 16px; }
  .donation-transfer-head { align-items: start; }
  .donation-transfer-head strong { font-size: 1.25rem; }
  .donation-transfer-list div { grid-template-columns: 1fr; gap: 6px; padding: 12px 0; }
  .transfer-highlight dd > span { font-size: 1.16rem; }
  .copy-button { margin-left: auto; }
  .feature-band img, .page-hero img { height: 260px; }
  .page-hero-media.is-document img { height: 320px; }
  .trust-card-inner, .bank-box div, .fact-list div, .timeline article { grid-template-columns: 1fr; }
  .partner-list, .partner-list.compact { grid-template-columns: 1fr; }
  .final-cta { padding: 0 0 56px; }
  .final-cta-grid { padding: 18px; gap: 22px; }
  .final-cta h2 { font-size: 1.92rem; }
  .final-cta p { font-size: .98rem; }
  .final-cta-media { min-height: 0; }
  .final-cta-photo-main { height: 196px; }
  .final-cta-photo-inset {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(72%, 260px);
    height: 104px;
    margin: -34px 12px 0 auto;
  }
  .final-contact-links { display: grid; grid-template-columns: 1fr; }
  .final-contact-links a { width: 100%; }
  .button-row .btn { width: 100%; }
  .site-footer { padding: 42px 0 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; margin-top: 32px; }
}
@media (max-width: 380px) {
  .hero-copy h1 { font-size: 1.95rem; }
  .page-hero h1 { font-size: 2.08rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}