:root {
  --cream: #f7f4ee;
  --warm: #fbfaf6;
  --white: #ffffff;
  --sage: #74886f;
  --sage-dark: #5f725d;
  --ink: #191a18;
  --muted: #62665f;
  --line: #e8e4db;
  --shadow: 0 24px 60px rgba(41, 45, 38, 0.08);
  --soft-shadow: 0 14px 34px rgba(41, 45, 38, 0.07);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, var(--warm) 0%, var(--white) 50%, var(--cream) 100%);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-pad {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  padding-top: 28px;
}

.nav-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand img {
  width: 145px;
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
  font-size: 13px;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  color: #1f211f;
  transition: color 200ms ease, transform 200ms ease;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 0;
  height: 1px;
  background: var(--sage-dark);
  transform: translateX(-50%);
  transition: width 200ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  color: var(--sage-dark);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  border: 1px solid rgba(25, 26, 24, 0.45);
  border-radius: 10px;
  padding: 13px 26px;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: var(--sage);
  background: rgba(122, 143, 115, 0.08);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 1px;
  background: var(--ink);
}

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: 48px;
  padding-top: 112px;
  padding-bottom: 40px;
  position: relative;
  overflow: visible;
}

.hero::before {
  content: "";
  position: absolute;
  right: 28%;
  top: 0;
  width: 220px;
  height: 100%;
  background: rgba(246, 243, 237, 0.7);
  transform: skewX(-28deg);
  z-index: -1;
}

.hero-copy {
  padding-top: 22px;
}

.hero h1,
.focus-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 5.35rem);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1 span,
.focus-copy h2 span {
  color: var(--sage);
}

.hero-copy p {
  max-width: 500px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 42px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 178px;
  min-height: 52px;
  border-radius: 8px;
  padding: 14px 25px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn.primary {
  color: var(--white);
  background: var(--sage);
  box-shadow: 0 14px 24px rgba(95, 114, 93, 0.18);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  background: var(--sage-dark);
  box-shadow: 0 18px 32px rgba(95, 114, 93, 0.24);
}

.btn.secondary {
  color: #434640;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(25, 26, 24, 0.36);
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  border-color: var(--sage);
  background: var(--white);
}

.hero-visual {
  position: absolute;
  right: calc((100vw - min(1180px, 100vw - 48px)) / -2);
  bottom: 0;
  display: block;
  width: auto;
  height: auto;
  line-height: 0;
  z-index: 5;
  pointer-events: none;
  overflow: visible;
}

.hero-visual img {
  display: block;
  width: 453px;
  max-width: none;
  height: auto;
  filter: grayscale(1) contrast(1.06) brightness(1.02);
  pointer-events: auto;
}

.mission-wrap {
  position: relative;
  z-index: 4;
  margin-top: -38px;
  width: min(1080px, calc(100% - 48px));
  margin-inline: auto;
}

.mission-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 0 28px 28px 28px;
  padding: 44px 56px 58px;
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(8px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.48em;
  text-transform: uppercase;
}

.mission-text {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  line-height: 1.25;
}

.mission-text em {
  color: var(--sage);
  font-style: italic;
}

.rule {
  display: block;
  width: 54px;
  height: 1px;
  margin: 28px auto 44px;
  background: var(--sage);
}

.focus-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.focus-card {
  padding: 8px 34px 0;
  border-right: 1px solid var(--line);
}

.focus-card:last-child {
  border-right: 0;
}

.icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--sage-dark);
  background: #f4f2ec;
}

.icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.focus-card h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 500;
}

.focus-card p {
  margin: 0 auto;
  max-width: 170px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.focus-section {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 70px;
  align-items: center;
  padding-top: 94px;
  padding-bottom: 42px;
}

.focus-copy h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.05rem);
}

.focus-copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 28px 0 20px;
  color: var(--muted);
  font-size: 15px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 32px;
  list-style: none;
  color: #3f463e;
  font-size: 14px;
  font-weight: 600;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-list li::before {
  content: "\2713";
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 20px;
  border-radius: 50%;
  color: var(--white);
  background: var(--sage);
  font-size: 12px;
  line-height: 1;
}

.impact-visual {
  position: relative;
  min-height: 420px;
  padding: 24px 0 40px 34px;
}

.impact-visual > img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: 50% 43%;
  border-radius: 25px;
  box-shadow: var(--soft-shadow);
  filter: grayscale(1) contrast(1.04) brightness(1.02);
}

.dot-pattern {
  position: absolute;
  right: 0;
  top: 0;
  width: 194px;
  height: 74px;
  background-image: radial-gradient(rgba(122, 143, 115, 0.32) 1.5px, transparent 1.5px);
  background-size: 15px 15px;
  z-index: -1;
}

.impact-card {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(290px, 54%);
  padding: 24px 28px 26px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 4px;
  box-shadow: 0 18px 45px rgba(41, 45, 38, 0.12);
}

.impact-card p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.impact-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 500;
}

.impact-card span {
  display: block;
  max-width: 150px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.impact-card .icon {
  position: absolute;
  right: 26px;
  top: 24px;
  margin: 0;
}

.contact-strip {
  padding-top: 26px;
  padding-bottom: 54px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 0.86fr 1.1fr;
  align-items: center;
  gap: 32px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(232, 228, 219, 0.8);
  border-radius: 18px;
  box-shadow: var(--soft-shadow);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 30px;
  border-right: 1px solid var(--line);
}

.contact-item .icon {
  margin: 0;
}

.contact-item p {
  margin: 0 0 3px;
  color: #535850;
  font-size: 13px;
  font-weight: 700;
}

.contact-item a {
  color: #262925;
  font-size: 13px;
  font-weight: 600;
  transition: color 200ms ease;
}

.contact-item a:hover,
.contact-item a:focus-visible {
  color: var(--sage-dark);
}

.footer-logo {
  display: flex;
  justify-content: center;
  padding-inline: 18px;
  border-right: 1px solid var(--line);
}

.footer-logo img {
  width: 190px;
  mix-blend-mode: multiply;
}

.learn-more {
  justify-content: space-between;
  gap: 24px;
  padding-right: 0;
  border-right: 0;
}

.learn-more a:not(.round-link) {
  display: block;
  max-width: 230px;
  line-height: 1.5;
}

.round-link {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 58px;
  border-radius: 50%;
  color: var(--white);
  background: var(--sage);
  font-size: 20px;
  transition: transform 220ms ease, background 220ms ease;
}

.round-link:hover,
.round-link:focus-visible {
  transform: translateX(3px);
  background: var(--sage-dark);
}

.site-footer {
  min-height: 78px;
  padding: 22px min(8vw, 110px);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr auto;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.86);
  background: #71826f;
  font-size: 12px;
}

.site-footer p {
  margin: 0;
}

.social-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.social-links a,
.footer-links a {
  transition: opacity 200ms ease;
}

.social-links a:hover,
.social-links a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  opacity: 0.72;
}

.footer-links {
  grid-column: 1 / -1;
  justify-content: center;
  padding-top: 8px;
  display: flex;
  opacity: 0.9;
}

.inner-header {
  position: relative;
}

.nav-solid {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white) !important;
  background: var(--sage-dark);
  border-color: var(--sage-dark);
}

.nav-solid:hover,
.nav-solid:focus-visible {
  background: var(--sage);
}

.page-hero {
  min-height: 420px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 48px;
  padding-top: 70px;
  padding-bottom: 54px;
  position: relative;
}

.breadcrumb {
  margin: 0 0 18px;
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-hero h1,
.center-intro h2,
.impact-band h2,
.newsletter h2,
.featured-update h2,
.share-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

.page-hero h1 {
  font-size: clamp(3.6rem, 6.6vw, 5.6rem);
}

.page-hero h1 span {
  color: var(--sage);
}

.page-hero p:not(.breadcrumb) {
  max-width: 440px;
  margin: 22px 0 0;
  color: #20231f;
  font-size: 15px;
  line-height: 1.85;
}

.leaf-art {
  justify-self: end;
  width: min(470px, 100%);
  height: 310px;
  opacity: 0.36;
  background:
    radial-gradient(circle at 20% 12%, rgba(122, 143, 115, 0.22) 2px, transparent 2px) 0 0 / 18px 18px,
    linear-gradient(134deg, transparent 45%, rgba(122, 143, 115, 0.22) 46%, rgba(122, 143, 115, 0.22) 47%, transparent 48%);
  border-radius: 52% 48% 30% 70%;
  position: relative;
}

.leaf-art::before,
.leaf-art::after {
  content: "";
  position: absolute;
  border-radius: 0 80% 0 80%;
  background: rgba(122, 143, 115, 0.32);
  transform: rotate(38deg);
}

.leaf-art::before {
  width: 220px;
  height: 52px;
  right: 26px;
  top: 70px;
  box-shadow: -68px 62px 0 rgba(122, 143, 115, 0.24), -176px 124px 0 rgba(122, 143, 115, 0.2);
}

.leaf-art::after {
  width: 150px;
  height: 42px;
  right: 150px;
  top: 38px;
  box-shadow: 72px 110px 0 rgba(122, 143, 115, 0.24), -42px 118px 0 rgba(122, 143, 115, 0.18);
}

.center-intro {
  padding-top: 42px;
  padding-bottom: 28px;
  text-align: center;
}

.center-intro.compact {
  padding-top: 28px;
  padding-bottom: 12px;
}

.center-intro h2 {
  font-size: clamp(2rem, 3.2vw, 3.1rem);
}

.center-intro > p:last-child {
  max-width: 650px;
  margin: 0 auto;
  color: #242720;
  font-size: 14px;
}

.involvement-grid,
.news-grid {
  display: grid;
  gap: 22px;
}

.involvement-grid {
  grid-template-columns: repeat(4, 1fr);
  padding-top: 10px;
  padding-bottom: 30px;
}

.action-card,
.news-card,
.share-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(232, 228, 219, 0.86);
  border-radius: 17px;
  box-shadow: 0 15px 34px rgba(41, 45, 38, 0.055);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.action-card:hover,
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(41, 45, 38, 0.08);
}

.action-card {
  min-height: 315px;
  padding: 30px 28px 24px;
}

.action-card .icon {
  margin-bottom: 18px;
}

.action-card h3,
.news-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.64rem;
  font-weight: 500;
  line-height: 1.1;
}

.action-card p {
  margin: 12px 0 0;
  color: #30342e;
  font-size: 13px;
  line-height: 1.75;
}

.action-card p:first-of-type {
  color: var(--sage-dark);
  font-weight: 800;
}

.action-card a,
.news-card a {
  display: inline-flex;
  gap: 10px;
  margin-top: 20px;
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 800;
}

.program-card {
  min-height: 380px;
}

.card-check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: #3f463e;
  font-size: 12px;
  font-weight: 600;
}

.card-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.card-check-list li::before {
  content: "\2713";
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 18px;
  margin-top: 1px;
  border-radius: 50%;
  color: var(--white);
  background: var(--sage);
  font-size: 10px;
  line-height: 1;
}

.focus-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 310px;
  padding: 24px;
  background: linear-gradient(145deg, #e8e4db 0%, #f0ece4 100%);
  border-left: 1px solid #ddd8ce;
}

.focus-image img {
  width: min(100%, 420px);
  height: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(1.05);
}

.programs-cta {
  background: #e8ede6;
  border-color: rgba(122, 143, 115, 0.22);
}

.coming-soon {
  padding-top: 20px;
  padding-bottom: 80px;
}

.coming-soon-card {
  max-width: 620px;
  margin-inline: auto;
  padding: 52px 48px 56px;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(232, 228, 219, 0.86);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.coming-soon-card .icon {
  margin-bottom: 22px;
}

.coming-soon-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.05;
}

.coming-soon-card > p:last-of-type {
  max-width: 420px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.coming-soon-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.impact-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  margin-top: 2px;
  margin-bottom: 24px;
  background: #f3f0e9;
  border-radius: 17px;
  border: 1px solid rgba(232, 228, 219, 0.75);
}

.impact-band:has(.focus-image) {
  grid-template-columns: 1fr 1fr;
}

.impact-copy {
  min-height: 310px;
  padding: 34px 32px;
  position: relative;
}

.impact-copy h2 {
  max-width: 420px;
  font-size: clamp(2.2rem, 3.4vw, 3.35rem);
}

.impact-copy p:not(.eyebrow) {
  max-width: 425px;
  margin: 22px 0 28px;
  color: #242720;
  font-size: 14px;
}

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

.stat-grid article {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 155px;
  text-align: center;
  border-left: 1px solid #ddd8ce;
  border-bottom: 1px solid #ddd8ce;
}

.stat-grid article:nth-child(n+3) {
  border-bottom: 0;
}

.stat-grid .icon {
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
}

.stat-grid strong {
  font-family: var(--serif);
  font-size: 2.55rem;
  font-weight: 500;
  line-height: 1;
}

.stat-grid span {
  color: #20231f;
  font-size: 13px;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 17px 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 17px;
  box-shadow: var(--soft-shadow);
}

.info-strip > div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  align-items: center;
  padding-inline: 12px;
  border-right: 1px solid var(--line);
}

.info-strip > div:last-child {
  border-right: 0;
}

.info-strip .icon {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  margin: 0;
}

.info-strip p {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
}

.info-strip a,
.info-strip span {
  color: #242720;
  font-size: 12px;
  font-weight: 600;
}

.newsletter {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 28px;
  padding: 26px 34px;
  background: #f3f0e9;
  border: 1px solid rgba(232, 228, 219, 0.78);
  border-radius: 17px;
}

.newsletter h2 {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
}

.newsletter p {
  margin: 10px 0 0;
  color: #242720;
  font-size: 14px;
}

.subscribe-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
}

.subscribe-form input {
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  font: inherit;
  font-size: 13px;
  outline: none;
}

.subscribe-form input:focus {
  border-color: var(--sage);
}

.subscribe-form button {
  min-width: 132px;
  border: 0;
  border-radius: 0 8px 8px 0;
  color: var(--white);
  background: var(--sage-dark);
  font-weight: 800;
  cursor: pointer;
  transition: background 200ms ease;
}

.subscribe-form button:hover,
.subscribe-form button:focus-visible {
  background: var(--sage);
}

.subscribe-form .form-note {
  grid-column: 1 / -1;
  margin-top: 12px;
  color: #3f463e;
  font-size: 12px;
}

.subscribe-form .form-note::before {
  content: "\2713";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border-radius: 50%;
  color: var(--white);
  background: var(--sage);
  font-size: 11px;
}

.featured-update {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 34px;
  min-height: 320px;
  align-items: center;
  margin-top: 12px;
  margin-bottom: 10px;
  padding: 34px;
  background: #f3f0e9;
  border: 1px solid rgba(232, 228, 219, 0.78);
  border-radius: 17px;
  overflow: hidden;
}

.featured-update h2 {
  max-width: 470px;
  font-size: clamp(2rem, 3.3vw, 3.05rem);
}

.featured-update p:not(.eyebrow) {
  max-width: 490px;
  color: #242720;
  font-size: 14px;
}

.featured-update .date {
  margin: 18px 0 16px;
  color: var(--sage-dark);
  font-weight: 800;
}

.news-art {
  min-height: 230px;
  position: relative;
}

.news-art::before {
  content: "";
  position: absolute;
  inset: 0 42px 0 auto;
  width: 250px;
  border-radius: 10px;
  background:
    linear-gradient(var(--sage), var(--sage)) 42px 48px / 72px 56px no-repeat,
    repeating-linear-gradient(0deg, transparent 0 24px, rgba(95, 114, 93, 0.26) 25px 29px) 152px 52px / 122px 136px no-repeat,
    #e6e2d7;
  transform: rotate(-4deg);
  box-shadow: 0 18px 34px rgba(41, 45, 38, 0.08);
}

.news-art span {
  position: absolute;
  right: 48px;
  top: 96px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--sage);
}

.news-art span::before,
.news-art span::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  height: 2px;
  background: var(--white);
}

.news-art span::before {
  top: 42px;
}

.news-art span::after {
  top: 60px;
}

.news-grid {
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 22px;
}

.news-card {
  min-height: 226px;
  padding: 24px 24px 22px 80px;
  position: relative;
}

.news-card .icon {
  position: absolute;
  left: 24px;
  top: 24px;
  width: 44px;
  height: 44px;
  margin: 0;
}

.news-card > p:first-of-type {
  margin: 0 0 7px;
  color: var(--sage-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-card h3 {
  font-size: 1.22rem;
}

.news-card span {
  display: block;
  margin: 10px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.news-card > p:not(:first-of-type) {
  margin: 0;
  color: #30342e;
  font-size: 12px;
  line-height: 1.65;
}

.share-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  margin-bottom: 34px;
  padding: 26px 34px;
}

.share-card .icon {
  margin: 0;
}

.share-card h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.share-card p {
  max-width: 620px;
  margin: 10px 0 0;
  color: #242720;
  font-size: 14px;
}

.share-actions {
  display: flex;
  gap: 18px;
}

.expanded-footer {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1.1fr 0.75fr 0.7fr;
  gap: 46px;
  padding-top: 32px;
  padding-bottom: 26px;
}

.footer-main > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-main img {
  width: 142px;
  margin-bottom: 12px;
  mix-blend-mode: multiply;
}

.footer-main p {
  margin: 0 0 10px;
  color: #242720;
  font-size: 13px;
  font-weight: 800;
}

.footer-main > div:first-child p {
  max-width: 190px;
  font-weight: 500;
  line-height: 1.65;
}

.footer-main a {
  margin: 0 0 8px;
  color: #242720;
  font-size: 13px;
  font-weight: 600;
}

.footer-main .social-links {
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.footer-main .social-links a {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  color: var(--sage-dark);
  background: #f3f0e9;
  font-size: 0;
}

.footer-main .social-links a::first-letter {
  font-size: 13px;
}

.footer-bottom {
  padding: 9px 22px;
  color: rgba(255, 255, 255, 0.92);
  background: var(--sage-dark);
  text-align: center;
  font-size: 12px;
}

@media (max-width: 980px) {
  .site-header {
    position: fixed;
    padding: 14px 0;
    background: rgba(251, 250, 246, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(41, 45, 38, 0.05);
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    right: 24px;
    width: min(330px, calc(100vw - 48px));
    display: grid;
    gap: 0;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 12px 14px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero,
  .focus-section,
  .page-hero,
  .impact-band,
  .featured-update,
  .newsletter,
  .share-card {
    grid-template-columns: 1fr;
  }

  .focus-image {
    border-left: 0;
    border-top: 1px solid #ddd8ce;
    min-height: 260px;
  }

  .hero {
    gap: 34px;
    padding-top: 130px;
  }

  .hero-visual {
    position: static;
    justify-self: stretch;
    pointer-events: auto;
  }

  .hero-visual img {
    width: min(100%, 480px);
    max-width: 100%;
    margin-inline: auto;
  }

  .mission-wrap {
    margin-top: 24px;
  }

  .mission-card {
    border-radius: 24px;
    padding: 42px 30px 48px;
  }

  .focus-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
  }

  .focus-card:nth-child(2) {
    border-right: 0;
  }

  .focus-section {
    gap: 42px;
    padding-top: 70px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 48px;
  }

  .leaf-art {
    justify-self: center;
    width: min(430px, 100%);
    height: 220px;
  }

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

  .info-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 0;
  }

  .info-strip > div:nth-child(2) {
    border-right: 0;
  }

  .info-strip > div:nth-child(n+3) {
    padding-top: 16px;
    border-top: 1px solid var(--line);
  }

  .share-card {
    justify-items: start;
  }

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

  .contact-item,
  .footer-logo {
    border-right: 0;
    padding-right: 0;
    justify-content: center;
    text-align: center;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .section-pad,
  .nav-shell,
  .mission-wrap {
    width: min(100% - 30px, 1180px);
  }

  .brand img {
    width: 122px;
  }

  .hero {
    min-height: auto;
    padding-top: 108px;
  }

  .hero::before {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .hero-copy p {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .btn {
    width: 100%;
  }

  .hero-visual img {
    width: min(100%, 400px);
  }

  .coming-soon-card {
    padding: 40px 24px 44px;
  }

  .coming-soon-actions {
    flex-direction: column;
    width: 100%;
  }

  .coming-soon-actions .btn {
    width: 100%;
  }

  .mission-card {
    padding: 34px 18px 38px;
  }

  .eyebrow {
    letter-spacing: 0.32em;
  }

  .mission-text {
    font-size: 1.32rem;
  }

  .focus-cards {
    grid-template-columns: 1fr;
  }

  .focus-card {
    border-right: 0;
    padding: 0 18px 28px;
    border-bottom: 1px solid var(--line);
  }

  .focus-card:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .focus-section {
    padding-top: 54px;
  }

  .focus-copy h2 {
    font-size: clamp(2.45rem, 12vw, 3.5rem);
  }

  .impact-visual {
    min-height: auto;
    padding: 18px 0 112px;
  }

  .page-hero {
    gap: 18px;
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 30px;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 14vw, 4.3rem);
  }

  .leaf-art {
    height: 170px;
  }

  .involvement-grid,
  .news-grid,
  .stat-grid,
  .info-strip,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .action-card,
  .news-card {
    min-height: auto;
  }

  .impact-band,
  .featured-update,
  .newsletter,
  .share-card {
    width: min(100% - 30px, 1180px);
  }

  .impact-copy,
  .featured-update,
  .newsletter,
  .share-card {
    padding: 26px 20px;
  }

  .stat-grid article {
    min-height: 138px;
    border-left: 0;
  }

  .stat-grid article:nth-child(n+3) {
    border-bottom: 1px solid #ddd8ce;
  }

  .stat-grid article:last-child {
    border-bottom: 0;
  }

  .info-strip > div {
    border-right: 0;
    border-top: 1px solid var(--line);
    padding: 16px 0 0;
  }

  .info-strip > div:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .subscribe-form {
    grid-template-columns: 1fr;
  }

  .subscribe-form input {
    border-right: 1px solid var(--line);
    border-radius: 8px 8px 0 0;
  }

  .subscribe-form button {
    min-height: 52px;
    border-radius: 0 0 8px 8px;
  }

  .news-card {
    padding-left: 24px;
    padding-top: 82px;
  }

  .share-actions {
    width: 100%;
    flex-direction: column;
  }

  .footer-main {
    text-align: center;
  }

  .footer-main > div {
    align-items: center;
  }

  .impact-visual > img {
    height: 360px;
    border-radius: 20px;
  }

  .impact-card {
    left: 18px;
    right: 18px;
    bottom: 0;
    width: auto;
  }

  .contact-panel {
    padding: 26px 18px;
  }

  .contact-item,
  .learn-more {
    flex-direction: column;
    gap: 14px;
  }

  .footer-logo img {
    width: 160px;
  }

  .site-footer {
    padding-inline: 22px;
  }

  .social-links {
    gap: 16px;
  }
}
