:root {
  --green-950: #0b2f2a;
  --green-900: #123f38;
  --green-800: #19584d;
  --green-700: #247365;
  --green-100: #dcece7;
  --cream: #f7f3e9;
  --sand: #e7d8b5;
  --gold: #c59a3d;
  --ink: #1d2b28;
  --muted: #64716e;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(11, 47, 42, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(18,63,56,.08);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--cream);
  font-size: 23px;
  font-family: Georgia, serif;
}
.brand strong, .brand small { display: block; }
.brand strong { font-family: "Playfair Display", serif; font-size: 21px; line-height: 1; }
.brand small { color: var(--muted); font-size: 11px; letter-spacing: .11em; text-transform: uppercase; margin-top: 4px; }

.main-nav { display: flex; align-items: center; gap: 29px; font-weight: 600; font-size: 14px; }
.main-nav a:not(.nav-button):hover { color: var(--green-700); }
.nav-button {
  background: var(--green-900);
  color: white;
  padding: 11px 18px;
  border-radius: 999px;
}
.menu-toggle { display: none; border: 0; background: none; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; }

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f5ed 0%, #eef5f2 100%);
  padding: 88px 0 80px;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .19;
  background-image:
    linear-gradient(30deg, var(--green-100) 12%, transparent 12.5%, transparent 87%, var(--green-100) 87.5%, var(--green-100)),
    linear-gradient(150deg, var(--green-100) 12%, transparent 12.5%, transparent 87%, var(--green-100) 87.5%, var(--green-100));
  background-size: 80px 140px;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; }
.eyebrow, .section-label {
  display: inline-block;
  color: var(--green-700);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1, h2 {
  font-family: "Playfair Display", serif;
  line-height: 1.08;
  margin: 0;
}
.hero h1 { font-size: clamp(48px, 6vw, 76px); max-width: 760px; letter-spacing: -.03em; }
.hero h1 em { color: var(--green-700); font-style: normal; }
.hero-copy > p { color: var(--muted); font-size: 18px; max-width: 620px; margin: 26px 0 31px; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
}
.button.primary { color: white; background: var(--green-900); box-shadow: 0 12px 25px rgba(18,63,56,.19); }
.button.primary:hover { background: var(--green-800); transform: translateY(-1px); }
.button.secondary { background: transparent; border: 1px solid rgba(18,63,56,.22); }
.hero-points { display: flex; gap: 22px; flex-wrap: wrap; color: var(--green-800); font-weight: 600; font-size: 13px; margin-top: 29px; }

.hero-card {
  position: relative;
  min-height: 520px;
  border-radius: 220px 220px 26px 26px;
  overflow: hidden;
  background: var(--green-900);
  box-shadow: var(--shadow);
}
.arch { position: absolute; border: 1px solid rgba(255,255,255,.16); border-radius: 50% 50% 0 0; }
.arch-one { width: 330px; height: 420px; left: 50%; top: 35px; transform: translateX(-50%); }
.arch-two { width: 250px; height: 340px; left: 50%; top: 75px; transform: translateX(-50%); }
.book {
  position: absolute;
  width: 300px;
  height: 170px;
  left: 50%;
  top: 180px;
  transform: translateX(-50%) rotate(-2deg);
  display: grid;
  grid-template-columns: 1fr 8px 1fr;
  filter: drop-shadow(0 20px 24px rgba(0,0,0,.22));
}
.book-page { background: var(--cream); padding: 30px 22px; color: var(--green-900); }
.left-page { border-radius: 8px 0 0 14px; display: flex; gap: 11px; align-items: center; justify-content: center; font: 700 30px "Playfair Display", serif; }
.right-page { border-radius: 0 8px 14px 0; display: flex; flex-direction: column; justify-content: center; font-size: 16px; font-weight: 700; gap: 5px; }
.book-spine { background: #d4c7a8; }
.star { position: absolute; color: var(--sand); font-size: 28px; }
.star-one { left: 50px; top: 135px; }
.star-two { right: 55px; top: 100px; font-size: 20px; }
.hero-card-caption {
  position: absolute;
  inset: auto 35px 32px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: white;
  padding: 19px 22px;
  border-radius: 18px;
  backdrop-filter: blur(8px);
}
.hero-card-caption strong, .hero-card-caption span { display: block; }
.hero-card-caption span { color: rgba(255,255,255,.72); font-size: 13px; margin-top: 3px; }

.stats { background: var(--green-950); color: white; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.stats-grid > div { padding: 29px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
.stats-grid > div:last-child { border-right: 0; }
.stats strong { display: block; font: 700 31px "Playfair Display", serif; }
.stats span { font-size: 13px; color: rgba(255,255,255,.7); }

.section { padding: 105px 0; }
.two-column { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
h2 { font-size: clamp(38px, 4.3vw, 57px); letter-spacing: -.025em; }
.body-copy { color: var(--muted); font-size: 18px; }
.body-copy p:first-child { margin-top: 0; }
.programs { background: var(--cream); }
.section-heading.centered { max-width: 760px; text-align: center; margin: 0 auto 52px; }
.section-heading p { color: var(--muted); }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.program-card {
  background: white;
  border: 1px solid rgba(18,63,56,.08);
  border-radius: 22px;
  padding: 31px;
  transition: .2s ease;
}
.program-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(18,63,56,.09); }
.icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--green-100); color: var(--green-800);
  display: grid; place-items: center; font-weight: 800; margin-bottom: 25px;
}
.program-card h3 { font-family: "Playfair Display", serif; font-size: 25px; margin: 0 0 8px; }
.program-card p { color: var(--muted); margin: 0; font-size: 15px; }

.impact { background: var(--green-900); color: white; }
.impact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.section-label.light { color: var(--sand); }
.impact-panel p { color: rgba(255,255,255,.73); font-size: 18px; }
.values-list > div { display: grid; grid-template-columns: 45px 145px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.values-list span { color: var(--sand); font-size: 13px; font-weight: 700; }
.values-list strong { font-family: "Playfair Display", serif; font-size: 21px; }
.values-list p { color: rgba(255,255,255,.68); margin: 0; font-size: 14px; }

.support { background: white; }
.support-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 55px;
  background: linear-gradient(135deg, var(--cream), #eef5f2);
  border-radius: 28px;
}
.support-card > div { max-width: 720px; }
.support-card p { color: var(--muted); }

.contact { background: #f7faf8; }
.contact-grid { display: grid; grid-template-columns: 1fr .75fr; gap: 90px; align-items: center; }
.contact-grid > div:first-child p { color: var(--muted); font-size: 17px; }
.contact-card { background: white; border-radius: 24px; padding: 32px; box-shadow: var(--shadow); }
.contact-card > div { padding: 17px 0; border-bottom: 1px solid #edf1ef; }
.contact-card > div:last-child { border-bottom: 0; }
.contact-card span, .contact-card strong { display: block; }
.contact-card span { font-size: 12px; color: var(--green-700); text-transform: uppercase; letter-spacing: .11em; font-weight: 700; }
.contact-card strong { margin-top: 6px; }

footer { background: var(--green-950); color: white; padding: 38px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 20px; }
.footer-brand .brand-mark { background: rgba(255,255,255,.09); }
.footer-brand small { color: rgba(255,255,255,.55); }
footer p { color: rgba(255,255,255,.63); font-size: 13px; }
footer p:last-child { text-align: right; }

@media (max-width: 900px) {
  .hero-grid, .two-column, .impact-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 560px; width: 100%; margin: 0 auto; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .two-column, .impact-grid, .contact-grid { gap: 42px; }
  .support-card { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 720px) {
  .main-nav {
    display: none;
    position: absolute;
    left: 20px; right: 20px; top: 70px;
    background: white;
    padding: 22px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .hero { padding-top: 55px; }
  .hero h1 { font-size: 48px; }
  .hero-card { min-height: 450px; }
  .cards-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .section { padding: 75px 0; }
  .support-card { padding: 34px 26px; }
  .values-list > div { grid-template-columns: 35px 1fr; }
  .values-list p { grid-column: 2; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  footer p:last-child { text-align: left; }
}
