:root {
  --ink: #172320;
  --muted: #5c6964;
  --paper: #fbfaf6;
  --line: #d9ded7;
  --forest: #1f5f49;
  --leaf: #6f9d55;
  --gold: #d79d36;
  --coral: #c85f4a;
  --blue: #2f6f86;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

[id] {
  scroll-margin-top: 104px;
}

body {
  margin: 0;
  padding-bottom: 74px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  border-bottom: 1px solid rgba(23, 35, 32, 0.12);
  backdrop-filter: blur(16px);
}

.header-phones {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.header-phone {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  color: var(--white);
  background: var(--forest);
  border-radius: 999px;
  font-weight: 850;
  white-space: nowrap;
}

.header-phone.alt {
  color: var(--forest);
  background: var(--white);
  border: 1px solid var(--forest);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 21px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--muted);
  font-size: 15px;
}

.main-nav a {
  padding: 8px 10px;
  border-radius: 999px;
}

.main-nav a:hover {
  color: var(--ink);
  background: rgba(31, 95, 73, 0.09);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px clamp(22px, 6vw, 92px) 78px;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("./assets/site-photo-27.jpg");
  background-size: cover;
  background-position: center 45%;
  transform: scale(1.03);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(23, 35, 32, 0.1), rgba(251, 250, 246, 0.74) 42%, rgba(251, 250, 246, 0.96) 76%),
    linear-gradient(180deg, rgba(23, 35, 32, 0.18), rgba(23, 35, 32, 0.28));
}

.hero-content {
  width: min(670px, 100%);
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 15px;
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  color: #165741;
  font-size: clamp(64px, 9vw, 118px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 650;
  line-height: 1.22;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  font-weight: 800;
}

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

.btn.secondary {
  color: var(--forest);
  background: rgba(255, 255, 255, 0.72);
}

.btn.phone {
  color: var(--ink);
  border-color: var(--gold);
  background: #f4d48a;
}

.btn.down {
  color: var(--forest);
  border-color: var(--line);
  background: var(--white);
}

.watch {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: center;
  background: var(--white);
}

.watch-copy p:not(.section-label) {
  max-width: 620px;
  color: var(--muted);
  font-size: 20px;
}

.watch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.watch-video {
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 52px rgba(23, 35, 32, 0.18);
}

.watch-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  object-fit: cover;
}

.hero-proof {
  position: absolute;
  right: clamp(22px, 6vw, 92px);
  bottom: 26px;
  max-width: 420px;
  padding-top: 18px;
  border-top: 2px solid var(--gold);
  color: var(--forest);
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 800;
}

.audiences {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.impact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--forest);
  color: var(--white);
}

.impact-strip div {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 24px clamp(18px, 4vw, 52px);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.impact-strip div:last-child {
  border-left: 0;
}

.impact-strip strong {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
}

.impact-strip span {
  color: #d9eadf;
  font-size: 16px;
}

.path {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 3vw, 42px);
  background: var(--white);
}

.path:hover {
  background: #f5f8f1;
}

.path-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-weight: 900;
}

.path h2 {
  margin: 18px 0 8px;
  font-size: clamp(25px, 3vw, 40px);
  line-height: 1.05;
}

.path p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.path strong {
  margin-top: 22px;
  color: var(--forest);
}

.path-action {
  align-self: start;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  color: var(--white) !important;
  background: var(--forest);
  border-radius: 999px;
}

.section {
  padding: clamp(54px, 8vw, 108px) clamp(22px, 6vw, 92px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) 1.4fr;
  gap: clamp(28px, 6vw, 78px);
}

.section h2 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: 0;
}

.intro-grid {
  display: grid;
  gap: 18px;
}

.intro-grid article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 8px 20px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.intro-grid article:last-child {
  border-bottom: 1px solid var(--line);
}

.intro-grid span {
  color: var(--gold);
  font-weight: 900;
  font-size: 22px;
}

.intro-grid h3,
.forms h3 {
  margin: 0;
  font-size: 25px;
}

.intro-grid p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.proof {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 86px);
  background: #e9f0ea;
}

.fit {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 78px);
  background: #f1eee6;
}

.fit-copy p:not(.section-label),
.groups-detail p,
.families-card p,
.donors-detail p {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
}

.fit-list {
  display: grid;
  gap: 14px;
}

.fit-list div {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.fit-list strong,
.fit-list span {
  display: block;
}

.fit-list strong {
  margin-bottom: 8px;
  color: var(--forest);
  font-size: 24px;
}

.fit-list span {
  color: var(--muted);
  font-size: 17px;
}

.groups-detail {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(26px, 6vw, 80px);
  align-items: start;
}

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

.check-list li {
  position: relative;
  padding: 18px 58px 18px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 15px;
  right: 18px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--leaf);
  border-radius: 50%;
  font-weight: 900;
}

.gallery {
  background: linear-gradient(180deg, #fbfaf6 0%, #e9f0ea 100%);
}

.gallery-head {
  max-width: 900px;
  margin-bottom: 32px;
}

.gallery-head p:not(.section-label) {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 14px;
}

.photo-grid figure {
  position: relative;
  min-height: 238px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 18px 44px rgba(23, 35, 32, 0.12);
}

.photo-grid figure.wide {
  grid-row: span 2;
  min-height: 490px;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.photo-grid figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 18px;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.62));
  font-weight: 800;
}

.proof-copy p:not(.section-label),
.visual p {
  max-width: 650px;
  color: var(--muted);
  font-size: 20px;
}

.quote-stack {
  display: grid;
  gap: 16px;
}

.learning-proof {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(26px, 6vw, 78px);
  align-items: center;
  background: var(--white);
}

.learning-proof p:not(.section-label) {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
}

.learning-card {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  color: var(--white);
  background: var(--forest);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(23, 35, 32, 0.16);
}

.learning-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.22);
}

.learning-stats span {
  display: grid;
  min-height: 112px;
  align-content: center;
  justify-items: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  font-weight: 750;
}

.learning-stats strong {
  display: block;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
}

.learning-card a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  color: var(--forest);
  background: var(--white);
  border-radius: 999px;
  font-weight: 850;
  text-align: center;
}

.learning-card p {
  margin: 0;
  color: #dcece2;
  font-size: 16px;
}

.inline-link {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 4px;
}

blockquote {
  margin: 0;
  padding: 24px;
  background: var(--white);
  border-right: 6px solid var(--leaf);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(23, 35, 32, 0.08);
}

blockquote p {
  margin: 0;
  font-size: clamp(21px, 2.6vw, 33px);
  font-weight: 750;
  line-height: 1.28;
}

.institutions {
  background: var(--ink);
  color: var(--white);
}

.families-detail {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(26px, 5vw, 72px);
  background: #e9f0ea;
}

.families-card {
  align-self: stretch;
  padding: clamp(26px, 4vw, 44px);
  color: var(--white);
  background: var(--forest);
  border-radius: 8px;
}

.families-card .section-label,
.families-card p {
  color: #dcece2;
}

.families-card h2 {
  color: var(--white);
}

.family-points {
  display: grid;
  gap: 16px;
}

.family-points article,
.donor-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.family-points h3,
.donor-grid h3 {
  margin: 0 0 8px;
  color: var(--forest);
  font-size: 27px;
}

.family-points p,
.donor-grid p {
  margin: 0;
}

.institutions .section-label,
.institutions .fine-print {
  color: #c6d8cd;
}

.institutions-copy {
  max-width: 760px;
  margin: 18px 0 0;
  color: #dcece2;
  font-size: 20px;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.logo-row figure {
  min-height: 150px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  margin: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.logo-row img {
  max-width: 100%;
  height: 72px;
  display: block;
  object-fit: contain;
}

.logo-row figcaption {
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  text-align: center;
}

.name-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.name-row span {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 750;
}

.fine-print {
  margin: 28px 0 0;
  font-size: 15px;
}

.visual {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}

.backstage {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  background: #e9f0ea;
}

.backstage figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(23, 35, 32, 0.12);
}

.backstage img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.backstage p:not(.section-label) {
  max-width: 620px;
  color: var(--muted);
  font-size: 20px;
}

.donors-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(26px, 6vw, 80px);
  background: var(--ink);
  color: var(--white);
}

.donors-detail .section-label,
.donors-detail p {
  color: #c6d8cd;
}

.donor-grid {
  display: grid;
  gap: 16px;
}

.donor-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.donor-grid h3 {
  color: var(--white);
}

.donation-box {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.donation-box h3 {
  margin: 0;
  color: var(--white);
  font-size: 28px;
}

.donation-box p {
  max-width: 760px;
  margin: 6px 0 0;
  color: #dcece2;
  font-size: 18px;
}

.bank-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 14px 0 0;
}

.bank-details div {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.bank-details dt {
  color: #c6d8cd;
  font-size: 13px;
  font-weight: 800;
}

.bank-details dd {
  margin: 0;
  color: var(--white);
  font-size: 17px;
  font-weight: 850;
}

.donation-actions,
.audience-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.action-pages {
  background: var(--white);
}

.action-pages-head {
  max-width: 980px;
  margin-bottom: 34px;
}

.action-pages-head p:not(.section-label) {
  max-width: 780px;
  color: var(--muted);
  font-size: 20px;
}

.audience-page {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(22px, 5vw, 56px);
  align-items: stretch;
  padding: clamp(22px, 4vw, 42px) 0;
  border-top: 1px solid var(--line);
}

.audience-page:last-child {
  border-bottom: 1px solid var(--line);
}

.audience-video {
  min-height: 310px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(23, 35, 32, 0.1), rgba(23, 35, 32, 0.58)),
    url("./assets/site-photo-29.jpg") center / cover;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(23, 35, 32, 0.14);
  cursor: pointer;
}

.family-audience .audience-video {
  background:
    linear-gradient(180deg, rgba(23, 35, 32, 0.08), rgba(23, 35, 32, 0.6)),
    url("./assets/site-photo-19.jpg") center / cover;
}

.donor-audience .audience-video {
  background:
    linear-gradient(180deg, rgba(23, 35, 32, 0.08), rgba(23, 35, 32, 0.6)),
    url("./assets/site-photo-24.jpg") center / cover;
}

.audience-video::before {
  content: "▶";
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  padding-right: 4px;
  color: var(--forest);
  background: var(--white);
  border-radius: 50%;
  font-size: 26px;
  font-weight: 900;
}

.audience-video span,
.audience-video strong {
  display: block;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.34);
}

.audience-video span {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.05;
}

.audience-video strong {
  color: #f6df9f;
  font-size: 17px;
}

.audience-video:hover::before {
  transform: scale(1.06);
}

.audience-copy {
  align-self: center;
}

.audience-copy h3 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.06;
}

.audience-copy p:not(.section-label) {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.audience-copy ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 26px;
  padding: 0;
  list-style: none;
}

.audience-copy li {
  position: relative;
  padding-right: 34px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
}

.audience-copy li::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  width: 18px;
  height: 18px;
  background: var(--leaf);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px var(--white);
  outline: 1px solid var(--leaf);
}

.video-plan {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(26px, 6vw, 80px);
  background: #f1eee6;
}

.video-plan > div:first-child p:not(.section-label) {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
}

.video-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.video-plan-grid article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.video-plan-grid h3 {
  margin: 0 0 8px;
  color: var(--forest);
  font-size: 24px;
}

.video-plan-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.draft-video {
  grid-column: 1 / -1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 22px 52px rgba(23, 35, 32, 0.18);
}

.draft-video video,
.draft-video img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  object-fit: cover;
}

.video-open-link {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  background: var(--white);
  border-top: 1px solid var(--line);
  font-weight: 900;
}

.program-preview {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(31, 95, 73, 0.09), rgba(215, 157, 54, 0.12)),
    var(--white);
  box-shadow: 0 20px 50px rgba(23, 35, 32, 0.12);
}

.program-card {
  display: grid;
  gap: 6px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.program-day {
  color: var(--coral);
  font-size: 15px;
  font-weight: 900;
}

.program-card strong {
  color: var(--forest);
  font-size: clamp(23px, 3vw, 35px);
  line-height: 1.05;
}

.program-card small {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.contact {
  background: #f1eee6;
}

.contact-head {
  margin-bottom: 32px;
}

.contact-head p:not(.section-label) {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
}

.contact-person {
  display: flex;
  max-width: 720px;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid #d8cec0;
  border-radius: 8px;
  background: #fffaf2;
}

.contact-person img {
  width: 82px;
  height: 82px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: 0 10px 24px rgba(30, 24, 18, 0.16);
}

.contact-person strong,
.contact-person span {
  display: block;
}

.contact-person strong {
  color: var(--forest);
  font-size: 22px;
  font-weight: 900;
}

.contact-person span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.direct-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.direct-contact a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 850;
}

.direct-contact a:nth-child(1),
.direct-contact a:nth-child(2),
.direct-contact a:nth-child(3) {
  color: var(--white);
  background: var(--forest);
}

.direct-contact a:last-child {
  color: var(--forest);
  background: var(--white);
  border: 1px solid var(--forest);
}

.forms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.form-note {
  margin: -4px 0 2px;
  color: var(--muted);
  font-size: 15px;
}

.form-donation-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  color: var(--white);
  background: var(--gold);
  border-radius: 999px;
  font-weight: 850;
  text-align: center;
}

.form-bank-details {
  display: grid;
  gap: 5px;
  padding: 14px;
  color: var(--ink);
  background: #f8f0da;
  border: 1px solid #e4c56d;
  border-radius: 8px;
  font-size: 15px;
}

.form-bank-details strong {
  color: var(--forest);
}

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

.faq-head {
  max-width: 900px;
  margin-bottom: 30px;
}

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

.faq-grid article {
  padding: 24px;
  background: #f8f6ef;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-grid h3 {
  margin: 0 0 8px;
  color: var(--forest);
  font-size: 24px;
  line-height: 1.2;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.contact-note {
  max-width: 720px;
  padding: 14px 18px;
  color: var(--forest);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 850;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

legend {
  padding: 0 6px;
  color: var(--forest);
  font-weight: 850;
}

.check-option {
  grid-template-columns: auto 1fr;
  align-items: center;
  justify-content: start;
  color: var(--ink);
  font-size: 15px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #fcfcfa;
  font: inherit;
}

input[type="checkbox"],
input[type="radio"] {
  width: 20px;
  min-height: 20px;
  margin: 0;
  accent-color: var(--forest);
}

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

button {
  min-height: 46px;
  margin-top: 6px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--forest);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

button:hover {
  background: #164936;
}

.quick-nav {
  position: fixed;
  right: 50%;
  bottom: 14px;
  z-index: 30;
  display: flex;
  gap: 6px;
  padding: 8px;
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  border: 1px solid rgba(23, 35, 32, 0.16);
  border-radius: 999px;
  box-shadow: 0 18px 46px rgba(23, 35, 32, 0.18);
  transform: translateX(50%);
  backdrop-filter: blur(14px);
}

.quick-nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  color: var(--forest);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.quick-nav a:hover {
  color: var(--white);
  background: var(--forest);
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .main-nav {
    justify-content: space-between;
  }

  .header-phone {
    align-self: center;
  }

  [id] {
    scroll-margin-top: 178px;
  }

  .hero {
    min-height: 82vh;
    padding-top: 70px;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(251, 250, 246, 0.95), rgba(251, 250, 246, 0.82));
  }

  .audiences,
  .watch,
  .impact-strip,
  .intro,
  .fit,
  .proof,
  .learning-proof,
  .groups-detail,
  .audience-page,
  .video-plan,
  .video-plan-grid,
  .photo-grid,
  .logo-row,
  .families-detail,
  .visual,
  .backstage,
  .donors-detail,
  .donation-box,
  .bank-details,
  .faq-grid,
  .forms {
    grid-template-columns: 1fr;
  }

  .path {
    min-height: 190px;
  }

  .photo-grid figure,
  .photo-grid figure.wide {
    min-height: 300px;
  }

  .learning-stats {
    grid-template-columns: 1fr;
  }

  .logo-row figure {
    min-height: 128px;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 92px;
  }

  .main-nav a {
    padding: 7px 4px;
    font-size: 14px;
  }

  .quick-nav {
    width: calc(100% - 20px);
    overflow-x: auto;
    justify-content: flex-start;
    border-radius: 18px;
  }

  .hero h1 {
    font-size: 72px;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .watch-actions {
    flex-direction: column;
  }

  .hero-proof {
    position: static;
    margin-top: 40px;
  }

  .intro-grid article {
    grid-template-columns: 1fr;
  }

  .intro-grid p {
    grid-column: auto;
  }
}
