﻿:root {
  --bg: #f5f1e7;
  --bg-soft: #eef1e4;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --text: #2f3129;
  --muted: #57584f;
  --line: rgba(79, 89, 62, 0.14);
  --green: #7d9446;
  --green-dark: #5d7330;
  --shadow: 0 24px 60px rgba(44, 42, 28, 0.12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(238, 192, 133, 0.22), transparent 25%),
    radial-gradient(circle at bottom left, rgba(173, 181, 131, 0.18), transparent 26%),
    var(--bg);
}

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

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 820px;
  color: #f8f4ed;
  background:
    linear-gradient(180deg, rgba(24, 30, 28, 0.18) 0%, rgba(24, 30, 28, 0.3) 100%),
    url("../images/main-page-intro-image.png") center/cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 26, 24, 0.76) 0%, rgba(23, 26, 24, 0.36) 38%, rgba(23, 26, 24, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28));
}

.hero__container,
.hero__content {
  position: relative;
  z-index: 1;
}

.topbar {
  position: relative;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 0;
  margin-top: -2.5%;
}

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

.brand__mark {
  width: clamp(112px, 10vw, 158px);
  height: auto;
  flex: 0 0 auto;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 2vw, 2.2rem);
  letter-spacing: 0.02em;
  line-height: 0.9;
}

.brand__subtitle {
  font-size: 0.74rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  opacity: 0.88;
  text-transform: uppercase;
}

.topbar__menu {
  display: flex;
  align-items: center;
  gap: 100px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.70rem;
  line-height: 1.5;
  font-weight: 500;
  margin-left: 50px;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nowrap {
  text-wrap: nowrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  justify-content: center;
  align-items: center;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.language-switcher {
  position: relative;
}

.language-switcher__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border: none;
  color: #fff;
  background: transparent;
  font: inherit;
  font-size: 0.90rem;
  cursor: pointer;
}

.language-switcher__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  gap: 6px;
  min-width: 140px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(32, 36, 32, 0.92);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: 0.22s ease;
}

.language-switcher.open .language-switcher__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  padding: 10px 12px;
  border: none;
  border-radius: 12px;
  color: #fff;
  background: transparent;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.language-option.is-active,
.language-option:hover {
  background: rgba(255, 255, 255, 0.08);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-size: clamp(0.88rem, 0.3vw + 0.82rem, 0.98rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-align: center;
  transition: 0.22s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--small {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  font-size: 0.77rem;
}

.topbar__actions .button--small::after {
  content: "";
  color: #fff;
  font-size: 1.05em;
  line-height: 1;
  margin-left: 3%;
  scale: 1.4;
}

.button--solid {
  color: #fff;
  background: linear-gradient(180deg, #7f9945, #6a8338);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button--ghost {
  border-color: rgba(255, 245, 232, 0.58);
  color: #fff9f1;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.hero__content {
  max-width: 650px;
  padding: 128px 0 250px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
}

.hero__title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.6rem, 7vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.hero__title span {
  display: block;
}

.hero__title-accent {
  color: #9fb35d;
  text-wrap: nowrap;
}

.hero__lead {
  max-width: 620px;
  margin: 28px 0 36px;
  font-size: clamp(1rem, 0.55vw + 0.92rem, 1.22rem);
  line-height: 1.75;
  color: rgba(255, 249, 240, 0.92);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

#about_nav {
  text-wrap: nowrap;
}

.sup-button {
  min-width: 80%;
}

.hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 122px;
  z-index: 2;
  pointer-events: none;
  transform: rotate(180deg);
}

.hero__wave-back,
.hero__wave-front {
  position: absolute;
  width: 120vw;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.hero__wave-back {
  height: 96px;
  opacity: 0.72;
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 96" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.72)" d="M0 0 L0 64 C180 96 360 22 560 44 C700 58 820 100 960 92 C1110 84 1240 36 1440 64 L1440 0 Z"/></svg>')
    center bottom / 100% 100% no-repeat;
}

.hero__wave-front {
  height: 122px;
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 122" preserveAspectRatio="none"><path fill="%23f7f4ed" d="M0 0 L0 80 C300 160 600 0 900 80 C1200 160 1440 80 1440 80 L1440 0 Z"/></svg>')
    center bottom / 100% 100% no-repeat;
}

.pillars {
  position: relative;
  z-index: 3;
  width: 100vw;
  max-width: none;
  margin-top: -2px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
  background: rgba(250, 248, 242, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(122, 135, 82, 0.08);
  box-shadow: 0 10px 40px rgba(66, 58, 37, 0.06);
}

.pillars__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 52px;
}

.pillars__inner--needs {
  grid-template-columns: 1fr;
  gap: 0;
}

.pillars::before {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  bottom: 100%;
  height: 44px;
  z-index: -1;
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 44" preserveAspectRatio="none"><path fill="%23faf8f2" d="M0 44 C220 10 470 40 720 18 C950 0 1180 22 1440 44 L1440 0 L0 0 Z"/></svg>')
    center bottom / 100% 100% no-repeat;
  transform: rotate(180deg);
  transform-origin: center center;
}

.pillars::after {
  content: none;
}

.pillar-card,
.service-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(126, 144, 74, 0.12);
  box-shadow: 0 24px 60px rgba(44, 42, 28, 0.12);
}

.pillar-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-height: 126px;
  padding: 18px 0 4px;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  position: relative;
}

.pillar-card > div:last-child {
  flex: 1 1 auto;
  min-width: 0;
}

.pillar-card p {
  max-width: 210px;
  font-size: 0.96rem !important;
  line-height: 1.55;
  text-wrap: pretty;
}

.pillar-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22px;
  right: -35px;
  width: 1px;
  height: 70px;
  background: rgba(125, 148, 70, 0.18);
}

.pillar-card__icon,
.service-card__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--green);
  background: rgba(125, 148, 70, 0.1);
}

.pillar-card__icon {
  width: 70px;
  height: 70px;
  border-radius: 14px;
  margin-top: 2px;
  position: relative;
  font-size: 0;
  line-height: 0;
  color: transparent;
}

.pillar-card__icon::before {
  content: "";
  width: 70px;
  height: 70px;
  scale: 1.6;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 28px 28px;
}

.pillar-card:nth-child(1) .pillar-card__icon::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><g fill="none" stroke="%237d9446" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.1"><path d="M24 15.4C21.3 11.8 15.9 10.9 12.4 14.2C8.9 17.5 8.6 23.1 11.5 26.8C14.1 30.1 20.6 35.8 23 37.8C23.4 38.1 24 38.1 24.4 37.8C26.8 35.8 33.3 30.1 35.9 26.8C38.8 23.1 38.5 17.5 35 14.2C31.5 10.9 26.1 11.8 24 15.4Z"/><path d="M15 30.8C16.8 31.3 18.8 31.1 20.4 30.1L22.8 28.6C24 28 25.4 27.9 26.7 28.4L29 29.3C30.7 30 32.6 29.7 34 28.6L37 26.1"/><path d="M11 27.5L7.8 29.8"/></g></svg>');
}

.pillar-card:nth-child(2) .pillar-card__icon::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><g fill="none" stroke="%237d9446" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.1"><path d="M25.4 11.2C18.8 11.5 13.4 16.2 12.1 22.5C11 28 13.1 34.1 17.3 37.1C18.1 37.7 19.3 37.2 19.3 36.2V28.4C19.3 25.9 21.3 23.9 23.8 23.9H30.7C31.7 23.9 32.2 22.7 31.6 21.9C29.8 19.4 27.9 16 26.7 12.3C26.5 11.6 26 11.1 25.4 11.2Z"/><path d="M24.2 24.2C27 20.3 31.5 18 36.3 18H39.2"/><path d="M31.8 14.5C33.2 15 35.1 16.4 36 18.2"/></g></svg>');
}

.pillar-card:nth-child(3) .pillar-card__icon::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><g fill="none" stroke="%237d9446" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.1"><circle cx="24" cy="24" r="13"/><path d="M11 24H37"/><path d="M24 11C27.7 14.8 29.8 19.3 29.8 24C29.8 28.7 27.7 33.2 24 37"/><path d="M24 11C20.3 14.8 18.2 19.3 18.2 24C18.2 28.7 20.3 33.2 24 37"/><path d="M14.4 16.2C16.9 17.8 20.3 18.7 24 18.7C27.7 18.7 31.1 17.8 33.6 16.2"/><path d="M14.4 31.8C16.9 30.2 20.3 29.3 24 29.3C27.7 29.3 31.1 30.2 33.6 31.8"/></g></svg>');
}

.pillar-card:nth-child(4) .pillar-card__icon::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><g fill="none" stroke="%237d9446" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.1"><circle cx="17" cy="18" r="4.5"/><circle cx="31" cy="18" r="4.5"/><path d="M9.8 31.5C10.8 27.3 14.1 24.8 18.4 24.8H19.7C24 24.8 27.3 27.3 28.3 31.5"/><path d="M19.7 31.5C20.7 27.5 23.7 25.1 27.6 25.1H34C38.1 25.1 41.2 27.7 42 31.5"/></g></svg>');
}

.pillar-card h3,
.service-card h3 {
  margin: 0 0 8px;
  font-size: clamp(1.2rem, 0.55vw + 1.05rem, 1.45rem);
  line-height: 1.2;
}

.pillar-card h3 {
  max-width: 190px;
  font-size: 1.15rem;
}

.pillar-card p,
.service-card p,
.section-text,
.footer p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.96rem, 0.2vw + 0.92rem, 1.04rem);
  line-height: 1.5;
}

.needs-section {
  width: 100%;
  padding: 34px 38px 36px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 247, 240, 0.94));
  box-shadow: 0 18px 48px rgba(97, 88, 56, 0.08);
  position: relative;
  z-index: 1;
}

.needs-section__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.35fr);
  gap: 34px;
  align-items: start;
}

.needs-section__header {
  max-width: 420px;
  margin-bottom: 0;
}

.needs-section__header .section-title {
  margin-bottom: 12px;
}

.needs-section__content {
  min-width: 0;
}

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

.needs-card {
  min-height: 86px;
  padding: 20px 20px 18px;
  border-radius: 22px;
  background: rgba(246, 242, 233, 0.92);
  border: 1px solid rgba(125, 148, 70, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
}

.needs-card span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.needs-card span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  flex: 0 0 auto;
}

.needs-section__actions {
  margin-top: 24px;
}

.section {
  padding: 88px 0 92px;
}

.section--soft {
  background:
    radial-gradient(circle at top left, rgba(235, 238, 220, 0.74), transparent 28%),
    linear-gradient(180deg, rgba(238, 241, 228, 0.95), rgba(247, 244, 237, 0.92));
}

.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1.35fr;
  gap: 44px;
  align-items: center;
}

.section-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(125, 148, 70, 0.5);
  border-radius: 999px;
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section-title {
  margin: 20px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.025em;
}

.section-title--center,
.section-text--center {
  text-align: center;
}

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

.stats {
  display: flex;
  gap: 28px;
  margin: 34px 0;
}

.stat {
  position: relative;
  padding-right: 26px;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 1px;
  height: 74%;
  background: var(--line);
}

.stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 3vw, 3rem);
  line-height: 0.85;
}

.about__gallery {
  display: grid;
  grid-template-columns: 2fr 1.1fr;
  gap: 18px;
}

.gallery-card {
  height: 274px;
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(44, 42, 28, 0.12);
}

.gallery-card--large {
  grid-row: span 2;
  height: 566px;
}

.program {
  position: relative;
  overflow: hidden;
}

.program::before {
  content: "";
  position: absolute;
  inset: auto -10% 20% -10%;
  height: 220px;
  background:
    radial-gradient(60% 120px at 20% 100%, rgba(255, 255, 255, 0) 49%, rgba(255, 255, 255, 0.92) 50%),
    radial-gradient(80% 140px at 55% 100%, rgba(255, 255, 255, 0) 49%, rgba(255, 255, 255, 0.92) 50%),
    radial-gradient(70% 120px at 88% 100%, rgba(255, 255, 255, 0) 49%, rgba(255, 255, 255, 0.92) 50%);
  pointer-events: none;
}

.program__cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.service-card {
  min-height: 242px;
  padding: 32px 22px 28px;
  border-radius: 22px;
  text-align: center;
}

.service-card__icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 22px;
  border-radius: 22px;
  font-size: 2rem;
}

.footer {
  padding: 34px 0 48px;
  border-top: 1px solid rgba(100, 110, 74, 0.12);
  background: rgba(251, 249, 244, 0.9);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.footer__brand {
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
}

.footer__links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer__label {
  margin-bottom: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  color: #f8f4ed;
  isolation: isolate;
  background-image:
    linear-gradient(180deg, rgba(24, 30, 28, 0.26), rgba(24, 30, 28, 0.5)),
    var(--page-hero-image, url("../images/main-page-intro-image.png"));
  background-position:
    center,
    var(--page-hero-position, center);
  background-size:
    cover,
    var(--page-hero-size, cover);
  background-repeat: no-repeat, no-repeat;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22, 26, 24, 0.72) 0%, rgba(22, 26, 24, 0.28) 55%, rgba(22, 26, 24, 0.16) 100%),
    var(--page-hero-tint, linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.28)));
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto;
  top: var(--page-hero-orb-top, 18%);
  right: var(--page-hero-orb-right, 5%);
  width: var(--page-hero-orb-width, 440px);
  height: var(--page-hero-orb-height, 440px);
  border-radius: 50%;
  pointer-events: none;
  opacity: var(--page-hero-orb-opacity, 0.9);
  background:
    radial-gradient(circle at 50% 50%, var(--page-hero-orb-color, rgba(214, 196, 150, 0.18)) 0%, rgba(214, 196, 150, 0.08) 34%, rgba(214, 196, 150, 0) 70%);
  filter: blur(6px);
  z-index: 0;
}

.page-hero__container,
.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero__content {
  max-width: 760px;
  padding: 96px 0 120px;
}

.page-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 25px;
}

.page-hero__layout__secondary {
  display: flex;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 25px;
}

.page-hero__content--centered {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.page-hero__content--centered .page-summary {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero__content--narrow {
  max-width: 620px;
}

.hero-panel {
  position: relative;
  z-index: 1;
  align-self: stretch;
  padding: 24px;
  border: 1px solid rgba(255, 247, 235, 0.14);
  border-radius: 28px;
  background: rgba(23, 27, 25, 0.42);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 64px rgba(13, 16, 14, 0.22);
}

.hp-program {
  align-self: center;
}

.hero-panel__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(236, 228, 203, 0.12);
  color: rgba(255, 248, 240, 0.92);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero-panel__title {
  margin: 16px 0 10px;
  font-size: 1.2rem;
  color: #fff8f0;
}

.hero-panel__text {
  margin: 0;
  color: rgba(255, 248, 240, 0.82);
  line-height: 1.7;
}

.hero-stat-grid,
.hero-node-grid,
.hero-principles,
.hero-logo-cloud,
.donate-grid {
  display: grid;
  gap: 14px;
}

.hero-stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-stat {
  padding: 16px 14px;
  border-radius: 20px;
  background: rgba(255, 248, 236, 0.08);
  border: 1px solid rgba(255, 248, 236, 0.1);
}

.hero-stat strong {
  display: block;
  margin-bottom: 4px;
  color: #fff6e9;
  font-size: 1.3rem;
  font-weight: 800;
}

.hero-stat span {
  display: block;
  color: rgba(255, 248, 240, 0.78);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-node-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-node {
  min-height: 120px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(248, 244, 232, 0.1);
  border: 1px solid rgba(248, 244, 232, 0.12);
}

.hero-node strong {
  display: block;
  margin-bottom: 8px;
  color: #fff7ef;
  font-size: 1rem;
}

.hero-node span {
  display: block;
  color: rgba(255, 248, 240, 0.76);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-principles {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 920px;
  margin: 20px auto 0;
}

.hero-principle {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.09);
  border: 1px solid rgba(255, 250, 242, 0.14);
  text-align: left;
}

.hero-principle strong {
  display: block;
  margin-bottom: 7px;
  color: #fff8f1;
  font-size: 1rem;
}

.hero-principle span {
  display: block;
  color: rgba(255, 248, 240, 0.78);
  font-size: 0.93rem;
  line-height: 1.55;
}

.needs-section {
  margin-bottom: 25px;
}

.hero-quote {
  max-width: 420px;
  justify-self: end;
  align-self: start;
  margin-top: 8px;
  margin-left: 130px;
}

.hero-quote blockquote {
  margin: 18px 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
  color: #fff7ed;
}

.hero-panel--partners {
  margin-bottom: 50px;
}

.hero-quote cite,
.hero-quote p {
  display: block;
  margin: 0;
  color: rgba(255, 248, 240, 0.76);
  font-style: normal;
  line-height: 1.65;
}

.hero-logo-cloud {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-logo-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  border-radius: 24px;
  background: rgba(255, 249, 239, 0.09);
  border: 1px solid rgba(255, 249, 239, 0.14);
  color: #fff7ee;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-contact-card {
  max-width: 400px;
  justify-self: end;
  align-self: start;
  margin-top: 8px;
  margin-left: 130px;
}

.hero-contact-card .button {
  width: 100%;
  margin-top: 16px;
}

.hero-contact-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.hero-contact-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 248, 240, 0.1);
  color: rgba(255, 248, 240, 0.78);
}

.hero-contact-item strong {
  color: #fff7ef;
  font-size: 0.92rem;
}

.donate-section {
  background:
    radial-gradient(circle at top right, rgba(224, 231, 203, 0.42), transparent 24%),
    linear-gradient(180deg, rgba(248, 246, 239, 0.98), rgba(239, 242, 231, 0.9));
}

.donate-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: start;
}

.donate-card,
.requisites-card {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(126, 144, 74, 0.12);
  box-shadow: 0 20px 44px rgba(44, 42, 28, 0.08);
}

.donate-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.donate-item {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(244, 245, 236, 0.92);
}

.donate-item strong,
.requisites-row strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 0.92rem;
}

.donate-item span,
.requisites-row span {
  display: block;
  color: var(--muted);
  line-height: 1.6;
}

.requisites-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.requisites-row {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(126, 144, 74, 0.12);
}

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

.page-kicker {
  margin: 0 0 16px;
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.86;
}

.page-title {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.1rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.page-summary {
  max-width: 680px;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255, 249, 240, 0.92);
}

.page-hero--about {
  --page-hero-image: url("../images/main-page-intro-image.png");
  --page-hero-position: center 38%;
  --page-hero-tint:
    linear-gradient(135deg, rgba(31, 39, 31, 0.18), rgba(31, 39, 31, 0.46)),
    radial-gradient(circle at 78% 22%, rgba(244, 202, 132, 0.34), rgba(244, 202, 132, 0) 34%);
  --page-hero-orb-top: 12%;
  --page-hero-orb-right: 8%;
  --page-hero-orb-width: 500px;
  --page-hero-orb-height: 500px;
  --page-hero-orb-color: rgba(244, 210, 154, 0.22);
}

.page-hero--program {
  --page-hero-image: url("../images/hero-bg.svg");
  --page-hero-position: center center;
  --page-hero-size: cover;
  --page-hero-tint:
    linear-gradient(135deg, rgba(54, 41, 24, 0.22), rgba(31, 24, 18, 0.46)),
    radial-gradient(circle at 72% 16%, rgba(198, 151, 86, 0.24), rgba(198, 151, 86, 0) 32%);
  --page-hero-orb-top: 18%;
  --page-hero-orb-right: 10%;
  --page-hero-orb-width: 360px;
  --page-hero-orb-height: 360px;
  --page-hero-orb-color: rgba(207, 170, 112, 0.18);
}

.page-hero--program::after {
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(234, 218, 182, 0.14), rgba(234, 218, 182, 0.03)),
    repeating-linear-gradient(90deg, rgba(255, 248, 232, 0.1) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(180deg, rgba(255, 248, 232, 0.08) 0 1px, transparent 1px 28px);
  filter: blur(0);
  opacity: 0.55;
}

.page-hero--directions {
  --page-hero-image: url("../images/page-network.svg");
  --page-hero-position: center center;
  --page-hero-size: cover;
  --page-hero-tint:
    linear-gradient(135deg, rgba(20, 36, 35, 0.2), rgba(13, 24, 24, 0.48)),
    radial-gradient(circle at 82% 28%, rgba(138, 173, 141, 0.28), rgba(138, 173, 141, 0) 34%);
  --page-hero-orb-top: 10%;
  --page-hero-orb-right: 4%;
  --page-hero-orb-width: 560px;
  --page-hero-orb-height: 560px;
  --page-hero-orb-color: rgba(162, 197, 168, 0.16);
}

.page-hero--directions::after {
  background:
    radial-gradient(circle at 50% 50%, rgba(184, 219, 187, 0.16) 0%, rgba(184, 219, 187, 0.08) 32%, rgba(184, 219, 187, 0) 68%),
    repeating-radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06) 0 2px, transparent 2px 32px);
  filter: blur(1px);
}

.page-hero--values {
  --page-hero-image: url("../images/about-side-bottom.svg");
  --page-hero-position: center center;
  --page-hero-size: cover;
  --page-hero-tint:
    linear-gradient(135deg, rgba(35, 37, 29, 0.2), rgba(23, 25, 20, 0.42)),
    radial-gradient(circle at 80% 24%, rgba(217, 221, 177, 0.22), rgba(217, 221, 177, 0) 32%);
  --page-hero-orb-top: 14%;
  --page-hero-orb-right: 6%;
  --page-hero-orb-width: 420px;
  --page-hero-orb-height: 420px;
  --page-hero-orb-color: rgba(222, 226, 187, 0.16);
}

.page-hero--values::after {
  background:
    linear-gradient(135deg, rgba(246, 242, 226, 0.12), rgba(246, 242, 226, 0.03)),
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 34%);
  border-radius: 28% 72% 54% 46% / 46% 34% 66% 54%;
  opacity: 0.75;
  filter: blur(4px);
}

.page-hero--stories {
  --page-hero-image: url("../images/about-main.svg");
  --page-hero-position: center center;
  --page-hero-size: cover;
  --page-hero-tint:
    linear-gradient(135deg, rgba(26, 28, 25, 0.22), rgba(18, 19, 18, 0.5)),
    radial-gradient(circle at 74% 22%, rgba(168, 139, 103, 0.26), rgba(168, 139, 103, 0) 34%);
  --page-hero-orb-top: 9%;
  --page-hero-orb-right: 7%;
  --page-hero-orb-width: 470px;
  --page-hero-orb-height: 470px;
  --page-hero-orb-color: rgba(180, 152, 120, 0.16);
}

.page-hero--stories::after {
  background:
    radial-gradient(circle at 50% 50%, rgba(225, 205, 181, 0.18) 0%, rgba(225, 205, 181, 0.08) 30%, rgba(225, 205, 181, 0) 68%),
    linear-gradient(130deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  box-shadow: inset 0 0 0 1px rgba(255, 247, 235, 0.08);
  filter: blur(2px);
}

.page-hero--partners {
  --page-hero-image: url("../images/page-network.svg");
  --page-hero-position: center center;
  --page-hero-size: cover;
  --page-hero-tint:
    linear-gradient(135deg, rgba(27, 35, 30, 0.2), rgba(17, 22, 18, 0.44)),
    radial-gradient(circle at 76% 20%, rgba(162, 188, 126, 0.24), rgba(162, 188, 126, 0) 30%);
  --page-hero-orb-top: 16%;
  --page-hero-orb-right: 8%;
  --page-hero-orb-width: 500px;
  --page-hero-orb-height: 500px;
  --page-hero-orb-color: rgba(170, 198, 133, 0.14);
}

.page-hero--partners::after {
  background:
    radial-gradient(circle at 50% 50%, rgba(190, 216, 160, 0.18) 0%, rgba(190, 216, 160, 0.07) 34%, rgba(190, 216, 160, 0) 70%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 18px);
  opacity: 0.5;
  filter: blur(1px);
}

.page-hero--contacts {
  --page-hero-image: url("../images/page-learning.svg");
  --page-hero-position: center center;
  --page-hero-size: cover;
  --page-hero-tint:
    linear-gradient(135deg, rgba(28, 31, 29, 0.18), rgba(19, 22, 20, 0.44)),
    radial-gradient(circle at 78% 18%, rgba(214, 190, 137, 0.2), rgba(214, 190, 137, 0) 30%);
  --page-hero-orb-top: 20%;
  --page-hero-orb-right: 9%;
  --page-hero-orb-width: 340px;
  --page-hero-orb-height: 340px;
  --page-hero-orb-color: rgba(231, 214, 166, 0.14);
}

.page-hero--contacts::after {
  background:
    linear-gradient(180deg, rgba(255, 247, 226, 0.1), rgba(255, 247, 226, 0.02)),
    radial-gradient(circle at 50% 50%, rgba(255, 247, 226, 0.14) 0%, rgba(255, 247, 226, 0) 70%);
  border-radius: 30px;
  opacity: 0.62;
  filter: blur(0);
}

.content-section {
  padding: 84px 0;
}

.content-section--tint {
  background:
    radial-gradient(circle at top right, rgba(224, 231, 203, 0.55), transparent 24%),
    linear-gradient(180deg, rgba(243, 242, 235, 0.96), rgba(235, 240, 225, 0.84));
}

.split-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.split-layout--reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.eyebrow-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(125, 148, 70, 0.12);
  color: var(--green-dark);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.copy-title {
  margin: 18px 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 3.6vw, 3.6rem);
  line-height: 0.98;
}

.copy-text {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.bullet-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
}

.bullet-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
  line-height: 1.7;
}

.bullet-item strong {
  color: var(--green-dark);
}

.bullet-mark {
  width: 12px;
  height: 12px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(125, 148, 70, 0.12);
  flex: 0 0 auto;
}

.media-frame {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

.info-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(126, 144, 74, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 55px rgba(44, 42, 28, 0.08);
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.quote-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.quote-strip__single {
  display: flex;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.quote-strip__single div blockquote {
  margin: auto;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  line-height: 1.08;
}

.quote-card {
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(125, 148, 70, 0.16), rgba(255, 255, 255, 0.88));
  box-shadow: var(--shadow);
}

.quote-card blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.quote-card p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-panel {
  padding: 26px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(126, 144, 74, 0.12);
}

.stat-panel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  line-height: 0.9;
}



.timeline {
  display: grid;
  gap: 18px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(126, 144, 74, 0.12);
}

.timeline-step__num {
  display: grid;
  place-items: center;
  height: 72px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(180deg, #7f9945, #698238);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.timeline-step h3 {
  margin: 0 0 8px;
  font-size: 1.28rem;
}

.timeline-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.mosaic__stack {
  display: grid;
  gap: 18px;
}

.mosaic img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

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

.partner-card {
  min-height: 170px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(126, 144, 74, 0.12);
  box-shadow: 0 20px 44px rgba(44, 42, 28, 0.08);
}

.partner-card__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(125, 148, 70, 0.1);
  color: var(--green-dark);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.partner-card h3,
.contact-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.partner-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

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

.story-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(126, 144, 74, 0.12);
  box-shadow: 0 20px 44px rgba(44, 42, 28, 0.08);
}

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

.story-card__body {
  padding: 22px;
}

.story-card__meta {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(125, 148, 70, 0.1);
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.story-card h3 {
  margin: 14px 0 10px;
  font-size: 1.24rem;
}

.story-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-card {
  min-height: 220px;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(126, 144, 74, 0.12);
  box-shadow: 0 20px 44px rgba(44, 42, 28, 0.08);
}

.contact-card a {
  color: var(--green-dark);
  font-weight: 700;
}


@media (max-width: 1180px) {
  .pillars__inner,
  .program__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-cards,
  .story-grid,
  .partner-grid,
  .stat-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-layout,
  .split-layout--reverse,
  .quote-strip,
  .mosaic,
  .contact-grid,
  .donate-layout,
  .page-hero__layout {
    grid-template-columns: 1fr;
  }

  .page-hero__layout__secondary {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    align-items: start;
  }

  .page-hero__layout__secondary .page-hero__content--narrow {
    max-width: 720px;
  }

  .page-hero__layout__secondary .hero-quote,
  .page-hero__layout__secondary .hero-contact-card {
    margin-left: 0;
    margin-top: 0;
    justify-self: start;
  }

  .about__grid,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .about__content {
    max-width: 820px;
  }

  .about__gallery {
    max-width: 900px;
  }
}

@media (max-width: 940px) {
  .topbar {
    align-items: flex-start;
  }

  .page-hero__layout__secondary {
    gap: 22px;
  }

  .page-hero__layout__secondary .hero-quote,
  .page-hero__layout__secondary .hero-contact-card {
    max-width: 100%;
    width: 100%;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .topbar__menu {
    position: absolute;
    top: 88px;
    left: 20px;
    right: 20px;
    z-index: 40;
    display: grid;
    gap: 20px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(31, 35, 31, 0.9);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.22s ease;
  }

  .topbar.menu-open .topbar__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links,
  .topbar__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    gap: 14px;
    width: 100%;
    font-size: 1rem;
  }

  .nav-links a,
  .topbar__actions,
  .language-switcher,
  .language-switcher__button {
    width: 100%;
  }

  .topbar__actions {
    gap: 12px;
  }

  .button--small {
    width: 100%;
  }

  .hero {
    min-height: 760px;
  }

  .hero__content {
    max-width: 560px;
    padding: 92px 0 210px;
  }

  .hero__lead {
    font-size: 1.02rem;
    max-width: 540px;
  }

  .section {
    padding: 72px 0 80px;
  }

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

  .needs-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .needs-section__layout {
    grid-template-columns: 1fr;
  }

  .needs-section__header {
    max-width: 760px;
  }

  .pillar-card,
  .service-card {
    padding: 22px;
  }

  .pillar-card {
    min-height: 100px;
    padding: 22px 24px 18px;
  }

  .pillar-card:nth-child(2n)::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .needs-section {
    padding: 28px 24px 30px;
    border-radius: 26px;
  }

  .needs-section__grid {
    grid-template-columns: 1fr;
  }

  .needs-card {
    min-height: auto;
    padding: 18px 18px 16px;
  }

  .page-hero__layout__secondary {
    gap: 18px;
  }

  .page-hero__layout__secondary .page-hero__content--narrow {
    max-width: 100%;
  }

  .page-hero__layout__secondary .hero-quote,
  .page-hero__layout__secondary .hero-contact-card {
    margin-left: 0;
    max-width: none;
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    max-width: 100%;
    padding: 64px 0 140px;
  }

  .hero__title {
    font-size: clamp(2.75rem, 12vw, 4rem);
    line-height: 0.96;
  }

  .hero__lead {
    margin: 22px 0 28px;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__wave {
    height: 84px;
  }

  .pillars__inner,
  .program__cards,
  .about__gallery,
  .grid-cards,
  .story-grid,
  .partner-grid,
  .stat-band,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .pillars {
    margin-top: 0;
  }

  .pillars::before {
    height: 30px;
    background:
      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 30" preserveAspectRatio="none"><path fill="%23faf8f2" d="M0 30 C220 6 470 28 720 12 C950 0 1180 14 1440 30 L1440 0 L0 0 Z"/></svg>')
      center bottom / 100% 100% no-repeat;
  }

  .pillars::after {
    height: 44px;
    clip-path: path("M0,0 C210,18 460,42 720,28 C980,14 1220,4 1440,16 L1440,44 L0,44 Z");
  }

  .gallery-card--large {
    height: 320px;
  }

  .gallery-card {
    height: 220px;
  }

  .stats {
    flex-direction: column;
    gap: 18px;
  }

  .section-title {
    margin: 16px 0;
    font-size: clamp(2.2rem, 10vw, 3.1rem);
  }

  .page-hero__content {
    padding: 72px 0 94px;
  }

  .hero-quote,
  .hero-contact-card {
    max-width: none;
    justify-self: stretch;
  }

  .hero-stat-grid,
  .hero-principles,
  .donate-grid {
    grid-template-columns: 1fr;
  }

  .hero-node-grid,
  .hero-logo-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-title,
  .copy-title {
    font-size: clamp(2.3rem, 11vw, 3.2rem);
  }

  .page-summary,
  .copy-text {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .hero-node-grid,
  .hero-logo-cloud,
  .donate-grid {
    grid-template-columns: 1fr;
  }

  .hero-principles {
    margin-top: 24px;
  }

  .timeline-step {
    grid-template-columns: 1fr;
  }

  .timeline-step__num {
    width: 72px;
  }

  .section-text,
  .pillar-card p,
  .service-card p,
  .footer p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .pillar-card h3,
  .service-card h3 {
    font-size: 1.14rem;
  }

  .stat strong {
    font-size: 2.3rem;
  }

  .footer {
    padding: 28px 0 38px;
  }

  .stat {
    padding-right: 0;
  }

  .stat:not(:last-child)::after {
    display: none;
  }

  .pillar-card,
  .service-card {
    min-height: auto;
  }

  .pillar-card {
    padding: 18px 18px 16px;
  }

  .pillar-card::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .topbar {
    padding-top: 16px;
  }

  .page-hero__layout__secondary {
    gap: 16px;
  }

  .page-hero__layout__secondary .hero-quote,
  .page-hero__layout__secondary .hero-contact-card {
    border-radius: 22px;
  }

  .brand {
    gap: 10px;
    max-width: calc(100% - 62px);
  }

  .brand__mark {
    width: 92px;
    height: auto;
  }

  .brand__title {
    font-size: 1.5rem;
  }

  .brand__subtitle {
    font-size: 0.62rem;
    letter-spacing: 0.05em;
  }

  .topbar__menu {
    top: 74px;
    left: 14px;
    right: 14px;
    padding: 16px;
    border-radius: 20px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .button {
    min-height: 50px;
    padding: 0 18px;
    font-size: 0.84rem;
  }

  .hero__content {
    padding: 52px 0 118px;
  }

  .hero__title {
    font-size: clamp(2.35rem, 11.5vw, 3.2rem);
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.76rem;
  }

  .pillar-card {
    gap: 14px;
    padding: 16px 14px 14px;
  }

  .pillar-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .pillar-card__icon::before {
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
  }

  .service-card {
    padding: 24px 18px 22px;
    border-radius: 18px;
  }

  .service-card__icon {
    width: 62px;
    height: 62px;
    margin-bottom: 18px;
    border-radius: 18px;
    font-size: 1.6rem;
  }

  .gallery-card--large {
    height: 260px;
  }

  .gallery-card {
    height: 190px;
    border-radius: 18px;
  }

  .pillars::before {
    height: 22px;
    left: 0;
    right: 0;
    background:
      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 22" preserveAspectRatio="none"><path fill="%23faf8f2" d="M0 22 C220 4 470 18 720 8 C950 0 1180 10 1440 22 L1440 0 L0 0 Z"/></svg>')
      center bottom / 100% 100% no-repeat;
  }

  .pillars::after {
    height: 30px;
    left: 0;
    right: 0;
    clip-path: path("M0,0 C210,12 460,28 720,18 C980,8 1220,2 1440,10 L1440,30 L0,30 Z");
  }

  .hero__wave-back {
    height: 54px;
    background:
      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 54" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.72)" d="M0 0 L0 36 C180 56 360 12 560 24 C700 32 820 58 960 54 C1110 50 1240 18 1440 36 L1440 0 Z"/></svg>')
      center bottom / 100% 100% no-repeat;
  }

  .hero__wave-front {
    height: 74px;
    background:
      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 74" preserveAspectRatio="none"><path fill="%23f7f4ed" d="M0 0 L0 50 C300 96 600 0 900 50 C1200 96 1440 50 1440 50 L1440 0 Z"/></svg>')
      center bottom / 100% 100% no-repeat;
  }
}


