:root {
  --forest: #10422b;
  --forest-2: #1d593d;
  --sage: #699b84;
  --sage-soft: #dbe8e1;
  --mist: #f3f7f4;
  --ivory: #fbfcfa;
  --ink: #173229;
  --muted: #65736d;
  --line: #d8e2dc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 66, 43, 0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 252, 250, 0.92);
  border-bottom: 1px solid rgba(16, 66, 43, 0.08);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50% 50% 50% 16%;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  font-weight: 700;
}

.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { letter-spacing: 0.22em; font-size: 15px; color: var(--forest); }
.brand-text small { margin-top: 6px; letter-spacing: 0.14em; font-size: 9px; color: var(--muted); }

.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: #28443a;
  position: relative;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -8px;
  height: 2px;
  background: var(--sage);
  transition: right .25s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }

.menu-toggle { display: none; background: transparent; border: 0; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--forest); }

.hero {
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 83% 22%, rgba(105, 155, 132, .22), transparent 23%),
    linear-gradient(180deg, #fbfcfa 0%, #f4f8f5 100%);
}

.hero-shape { position: absolute; pointer-events: none; border-radius: 999px; }
.hero-shape-one {
  width: 560px; height: 560px; right: -180px; top: 80px;
  border: 80px solid rgba(16, 66, 43, .035);
}
.hero-shape-two {
  width: 380px; height: 380px; right: 90px; top: 165px;
  border: 1px solid rgba(16, 66, 43, .16);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr .75fr;
  gap: 90px;
  align-items: center;
  position: relative;
}

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

h1, h2, h3 { font-family: "Playfair Display", Georgia, serif; margin: 0; line-height: 1.08; }
h1 { font-size: clamp(52px, 7vw, 86px); letter-spacing: -.035em; color: var(--forest); }
h1 span { color: var(--sage); }
h2 { font-size: clamp(36px, 5vw, 54px); color: var(--forest); }
h3 { font-size: 34px; color: var(--forest); }

.hero-lede {
  max-width: 720px;
  margin: 28px 0 34px;
  font-size: 19px;
  color: #50635b;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--forest); color: white; box-shadow: 0 12px 28px rgba(16,66,43,.18); }
.btn-secondary { border: 1px solid var(--line); background: rgba(255,255,255,.6); color: var(--forest); }
.btn-light { background: var(--white); color: var(--forest); }

.hero-card {
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(16,66,43,.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 34px;
}
.card-kicker { font-weight: 700; margin: 0 0 22px; letter-spacing: .08em; text-transform: uppercase; font-size: 11px; color: var(--sage); }
.focus-item { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 19px 0; border-top: 1px solid var(--line); }
.focus-item span { color: var(--sage); font-family: "Playfair Display", serif; font-weight: 700; font-size: 21px; }
.focus-item div { display: flex; flex-direction: column; }
.focus-item strong { color: var(--forest); }
.focus-item small { margin-top: 3px; color: var(--muted); }

.section { padding: 105px 0; scroll-margin-top: 75px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: start; }
.about { background: var(--white); }
.about-copy > p:first-child { margin: 0; font-size: 19px; color: #52625c; }
.value-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 30px 0; }
.value-row span { border-radius: 999px; padding: 9px 14px; background: var(--mist); border: 1px solid var(--line); color: var(--forest); font-weight: 700; font-size: 13px; }
.status-note { padding-left: 18px; border-left: 3px solid var(--sage); color: var(--muted); font-size: 14px; }

.programs { background: var(--mist); }
.section-heading { display: grid; grid-template-columns: 1fr .75fr; gap: 60px; align-items: end; margin-bottom: 46px; }
.section-heading > p { margin: 0; color: var(--muted); font-size: 17px; }

.program-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.program-card {
  display: grid;
  grid-template-rows: 240px 1fr;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(16,66,43,.09);
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.program-visual { display: grid; place-items: center; overflow: hidden; }
.program-visual.light { background: #fdfefd; }
.program-visual.light img { width: 190px; height: 190px; object-fit: contain; }
.program-visual.dark {
  background:
    radial-gradient(circle at 50% 30%, rgba(105,155,132,.22), transparent 40%),
    var(--forest);
}

.prudence-mark { text-align: center; color: white; display: flex; flex-direction: column; align-items: center; line-height: 1.2; }
.prudence-mark .sprout { font-size: 40px; transform: rotate(-8deg); color: #a8c7b7; height: 48px; }
.prudence-mark strong { font-size: 13px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: #cfe0d7; }
.prudence-mark b { margin-top: 6px; font-family: "Playfair Display", serif; font-size: 38px; font-weight: 600; }

.program-content { padding: 30px; display: flex; flex-direction: column; }
.program-number { margin: 0 0 10px; color: var(--sage); font-weight: 700; font-size: 11px; letter-spacing: .14em; }
.program-subtitle { margin: 10px 0 14px; color: var(--forest-2); font-weight: 700; }
.program-content > p:not(.program-number):not(.program-subtitle) { color: var(--muted); margin: 0 0 26px; }
.learn-more { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); color: var(--forest); font-weight: 700; display: flex; justify-content: space-between; }

.community { background: var(--ivory); }
.community-panel {
  border-radius: 30px;
  padding: 58px 64px;
  color: white;
  background:
    linear-gradient(120deg, rgba(105,155,132,.18), transparent 45%),
    var(--forest);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}
.community-panel h2 { color: white; max-width: 720px; }
.community-panel p:not(.eyebrow) { max-width: 760px; color: #d5e3dc; font-size: 17px; }
.light-eyebrow { color: #a8c7b7; }

.contacts { background: white; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.contact-grid > div:first-child > p:last-child { color: var(--muted); font-size: 17px; max-width: 560px; }
.contact-links { border-top: 1px solid var(--line); }
.contact-links > a, .domain-card {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.contact-links > a:hover strong { color: var(--sage); }
.contact-links span, .domain-card span { color: var(--muted); }
.contact-links strong, .domain-card strong { color: var(--forest); text-align: right; }

.site-footer { background: #0c3323; color: #b9cdc2; padding: 34px 0; }
.footer-wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; font-size: 12px; }
.footer-brand .brand-mark { background: var(--sage); }
.footer-brand .brand-text strong { color: white; }
.footer-brand .brand-text small { color: #a9c0b5; }

@media (max-width: 900px) {
  .hero { min-height: auto; padding: 90px 0; }
  .hero-grid, .split, .section-heading, .contact-grid { grid-template-columns: 1fr; gap: 42px; }
  .hero-grid { gap: 48px; }
  .program-grid { grid-template-columns: 1fr; }
  .community-panel { grid-template-columns: 1fr; padding: 44px 36px; }
  .footer-wrap { flex-wrap: wrap; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1160px); }
  .nav-wrap { min-height: 72px; }
  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 14px;
    right: 14px;
    padding: 18px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 6px; }
  .site-nav a::after { display: none; }
  .menu-toggle { display: block; }
  .hero { padding: 70px 0; }
  h1 { font-size: clamp(46px, 14vw, 64px); }
  .section { padding: 78px 0; }
  .program-card { grid-template-rows: 210px 1fr; }
  .program-visual.light img { width: 165px; height: 165px; }
  .contact-links > a, .domain-card { flex-direction: column; }
  .contact-links strong, .domain-card strong { text-align: left; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
}
