:root {
  --green-950: #102d25;
  --green-900: #173d32;
  --green-800: #224d40;
  --green-700: #315f50;
  --gold: #c79a46;
  --gold-soft: #e3c98f;
  --ivory: #f7f2e8;
  --paper: #fffdf8;
  --sand: #e9dfcf;
  --ink: #202925;
  --muted: #68716d;
  --line: rgba(23, 61, 50, .16);
  --shadow: 0 24px 70px rgba(15, 40, 32, .14);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--paper); background: var(--green-700); }

.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;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 999;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 8px;
  color: white;
  background: var(--green-950);
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section-pad { padding: 110px 0; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3, blockquote p {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.035em;
  line-height: 1.08;
}
h1 { max-width: 790px; margin-bottom: 28px; font-size: clamp(3rem, 6.7vw, 6.5rem); font-weight: 500; }
h1 em { color: var(--green-800); font-style: italic; }
h2 { margin-bottom: 22px; font-size: clamp(2.3rem, 4.6vw, 4.6rem); font-weight: 500; }
h3 { margin-bottom: 12px; font-size: 1.55rem; }
p { margin-top: 0; }

.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 36px;
  padding: 7px 20px;
  color: rgba(255,255,255,.78);
  background: var(--green-950);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .17em;
}
.announcement-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(255,253,248,.86);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(20,49,39,.07); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 82px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--ivory);
  background: var(--green-900);
  font-family: Georgia, serif;
  font-size: .86rem;
  letter-spacing: -.02em;
}
.brand strong { display: block; font-family: Georgia, serif; font-size: 1.24rem; line-height: 1.1; }
.brand small { display: block; margin-top: 3px; color: var(--muted); font-size: .67rem; letter-spacing: .05em; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { color: #3a4842; font-size: .85rem; font-weight: 680; text-decoration: none; }
.main-nav a:not(.nav-cta):hover { color: var(--gold); }
.nav-cta { padding: 11px 18px; border-radius: 100px; color: white !important; background: var(--green-900); }
.menu-button { display: none; width: 44px; height: 44px; border: 0; background: transparent; }
.menu-button span:not(.sr-only) { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--green-900); transition: .25s; }

.hero { position: relative; overflow: hidden; padding-top: 92px; background: linear-gradient(180deg, var(--paper), var(--ivory)); }
.hero::before {
  content: "";
  position: absolute;
  right: -15vw;
  top: -25vw;
  width: 55vw;
  height: 55vw;
  border: 1px solid rgba(199,154,70,.18);
  border-radius: 50%;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: center; }
.hero-lead { max-width: 690px; margin-bottom: 35px; color: #4c5a54; font-size: clamp(1.08rem, 1.8vw, 1.35rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: .88rem;
  font-weight: 760;
  text-decoration: none;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--green-900); box-shadow: 0 12px 25px rgba(23,61,50,.18); }
.button-primary:hover { background: var(--green-800); }
.button-ghost { border-color: var(--line); background: rgba(255,255,255,.6); }
.button-ghost:hover { border-color: var(--gold); }
.button-light { color: var(--green-950); background: var(--paper); }
.microcopy { margin: 20px 0 0; color: #7b837f; font-size: .78rem; }

.hero-visual { position: relative; min-height: 650px; }
.hero-main-photo {
  position: absolute;
  inset: 20px 0 50px 80px;
  margin: 0;
  overflow: hidden;
  border-radius: 210px 210px 26px 26px;
  box-shadow: var(--shadow);
}
.hero-main-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(15,42,34,.28)); }
.hero-main-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-small { position: absolute; z-index: 2; overflow: hidden; margin: 0; border: 8px solid var(--paper); box-shadow: var(--shadow); }
.hero-small img { width: 100%; height: 100%; object-fit: cover; }
.hero-small-one { left: 0; bottom: 0; width: 190px; height: 235px; border-radius: 95px 95px 18px 18px; }
.hero-small-two { right: -30px; top: 110px; width: 205px; height: 155px; border-radius: 20px; }
.hero-seal {
  position: absolute;
  right: -10px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 190px;
  height: 190px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  color: var(--paper);
  background: var(--green-900);
  box-shadow: var(--shadow);
  transform: rotate(4deg);
}
.hero-seal strong { font-family: Georgia, serif; font-size: 1.25rem; }
.hero-seal span { font-size: .72rem; }

.impact-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  margin-top: 85px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.impact-strip div { display: flex; align-items: baseline; gap: 12px; padding: 26px 20px; border-right: 1px solid var(--line); }
.impact-strip div:last-child { border-right: 0; }
.impact-strip strong { color: var(--green-900); font-family: Georgia, serif; font-size: 2.3rem; font-weight: 500; }
.impact-strip span { color: var(--muted); font-size: .78rem; font-weight: 700; }

.statement-band { padding: 52px 0; color: white; background: var(--green-900); }
.statement-inner { max-width: 1000px; }
.statement-inner p { margin: 0; font-family: Georgia, serif; font-size: clamp(1.55rem, 3vw, 2.65rem); line-height: 1.35; }
.statement-inner strong { color: var(--gold-soft); font-weight: 500; }
.section-heading { max-width: 850px; margin-bottom: 55px; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.1rem; }
.problem-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.problem-card { min-height: 310px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); transition: transform .25s, box-shadow .25s; }
.problem-card:hover { transform: translateY(-5px); box-shadow: 0 18px 45px rgba(21,54,44,.1); }
.card-number { display: inline-flex; margin-bottom: 58px; color: var(--gold); font-family: Georgia, serif; font-size: 1.1rem; }
.problem-card p { color: var(--muted); font-size: .92rem; }

.gallery-section { color: white; background: var(--green-950); }
.heading-light > p:last-child { color: rgba(255,255,255,.64); }
.photo-mosaic {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  grid-template-rows: 310px 310px;
  gap: 14px;
}
.photo-mosaic figure { position: relative; overflow: hidden; margin: 0; border-radius: var(--radius-md); background: #21463a; }
.photo-mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.photo-mosaic figure:hover img { transform: scale(1.035); }
.mosaic-a { grid-row: 1 / 3; }
.mosaic-b { grid-column: 2; grid-row: 1; }
.mosaic-c { grid-column: 3; grid-row: 1; }
.mosaic-d { grid-column: 2; grid-row: 2; }
.mosaic-e { grid-column: 3; grid-row: 2; }
.photo-note { display: flex; gap: 16px; align-items: flex-start; margin-top: 28px; padding: 22px 24px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; color: rgba(255,255,255,.75); background: rgba(255,255,255,.04); }
.photo-note p { margin: 0; font-size: .84rem; }
.photo-note strong { color: white; }
.photo-note small { color: rgba(255,255,255,.48); }
.note-icon { display: grid; place-items: center; flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; color: var(--green-950); background: var(--gold-soft); font-family: Georgia, serif; font-style: italic; font-weight: bold; }

.model-section { background: var(--ivory); }
.model-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 80px; align-items: center; }
.model-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.principle-box { margin-top: 36px; padding: 26px 28px; border-left: 4px solid var(--gold); background: var(--paper); }
.principle-box p { margin: 0; font-family: Georgia, serif; font-size: 1.25rem; line-height: 1.45; }
.pathway { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.pathway li { display: grid; grid-template-columns: 62px 1fr; gap: 16px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); }
.pathway li > span { color: var(--gold); font-family: Georgia, serif; font-size: 1.05rem; }
.pathway strong { display: block; font-family: Georgia, serif; font-size: 1.35rem; }
.pathway p { margin: 2px 0 0; color: var(--muted); font-size: .86rem; }

.founding-section { position: relative; overflow: hidden; }
.founding-section::before { content: "10"; position: absolute; right: -30px; top: -110px; color: rgba(23,61,50,.035); font-family: Georgia, serif; font-size: 26rem; line-height: 1; }
.founding-head { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 65px; align-items: end; margin-bottom: 50px; }
.founding-head > p { color: var(--muted); font-size: 1.05rem; }
.program-card { position: relative; display: grid; grid-template-columns: repeat(4,1fr); overflow: hidden; border-radius: var(--radius-lg); color: white; background: var(--green-900); box-shadow: var(--shadow); }
.program-metric { padding: 38px 28px; border-right: 1px solid rgba(255,255,255,.14); }
.program-metric:last-child { border-right: 0; }
.program-metric strong { display: block; margin-bottom: 8px; color: var(--gold-soft); font-family: Georgia, serif; font-size: 2.45rem; font-weight: 500; }
.program-metric span { color: rgba(255,255,255,.72); font-size: .82rem; font-weight: 700; }
.timeline { display: grid; grid-template-columns: repeat(4,1fr); gap: 15px; margin-top: 30px; }
.timeline-card { padding: 30px 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); }
.timeline-card > span { color: var(--gold); font-size: .75rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.timeline-card h3 { margin-top: 36px; }
.timeline-card p { color: var(--muted); font-size: .87rem; }
.success-box { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--ivory); }
.success-box > div { padding: 28px; border-right: 1px solid var(--line); }
.success-box > div:last-child { border-right: 0; }
.success-box span { display: block; margin-bottom: 18px; color: var(--gold); font-family: Georgia, serif; }
.success-box strong { display: block; margin-bottom: 7px; font-family: Georgia, serif; font-size: 1.15rem; }
.success-box p { margin: 0; color: var(--muted); font-size: .8rem; }

.scale-section { background: var(--ivory); }
.scale-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr; gap: 12px; align-items: stretch; }
.scale-flow > div { padding: 25px 20px; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); }
.scale-flow > div span { display: block; margin-bottom: 32px; color: var(--gold); font-family: Georgia, serif; }
.scale-flow > div strong { display: block; margin-bottom: 6px; font-family: Georgia, serif; font-size: 1.12rem; }
.scale-flow small { display: block; color: var(--muted); font-size: .72rem; line-height: 1.45; }
.scale-flow i { display: grid; place-items: center; color: var(--gold); font-size: 1.5rem; font-style: normal; }
.anchor-quote { max-width: 880px; margin: 70px auto 0; text-align: center; }
.anchor-quote p { margin: 0; color: var(--green-900); font-size: clamp(2rem,4vw,3.8rem); font-weight: 500; }

.together-section { color: white; background: var(--green-900); }
.together-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 90px; align-items: start; }
.together-statement h2 { font-size: clamp(2.4rem,4vw,4.2rem); }
.large-copy { color: rgba(255,255,255,.7); font-size: 1.1rem; }
.support-list { padding: 38px; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius-lg); background: rgba(255,255,255,.05); }
.support-list h3 { margin-bottom: 26px; color: var(--gold-soft); }
.support-list ul { margin: 0; padding: 0; list-style: none; }
.support-list li { display: grid; grid-template-columns: 42px 1fr; gap: 12px; padding: 19px 0; border-top: 1px solid rgba(255,255,255,.12); }
.support-list li > span { color: var(--gold-soft); font-family: Georgia, serif; }
.support-list strong { display: block; font-family: Georgia, serif; font-size: 1.12rem; }
.support-list p { margin: 4px 0 0; color: rgba(255,255,255,.6); font-size: .8rem; }

.founder-section { background: var(--paper); }
.founder-card { display: grid; grid-template-columns: 260px 1fr; gap: 65px; align-items: center; max-width: 1000px; padding: 55px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--ivory); box-shadow: var(--shadow); }
.founder-monogram { display: grid; place-items: center; aspect-ratio: 1; border-radius: 50%; color: var(--gold-soft); background: var(--green-900); font-family: Georgia, serif; font-size: 8rem; font-style: italic; }
.founder-copy h2 { margin-bottom: 14px; }
.founder-copy > p:not(.eyebrow) { color: var(--muted); }
.founder-links a { display: inline-flex; margin-top: 10px; color: var(--green-900); font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: 5px; }

.final-cta { padding: 110px 0; color: white; background: linear-gradient(135deg, var(--green-950), #285b4a); }
.final-cta-inner { max-width: 850px; text-align: center; }
.final-cta h2 { margin-bottom: 20px; }
.final-cta p:not(.eyebrow) { max-width: 700px; margin: 0 auto 32px; color: rgba(255,255,255,.68); }
.site-footer { padding: 34px 0; color: rgba(255,255,255,.66); background: #0b211b; }
.footer-grid { display: grid; grid-template-columns: 1fr 2fr auto; gap: 25px; align-items: center; }
.footer-grid strong { color: white; font-family: Georgia, serif; font-size: 1.35rem; }
.footer-grid p { margin: 2px 0 0; font-size: .73rem; }
.footer-grid > p { text-align: center; }
.footer-grid a { color: white; font-size: .78rem; font-weight: 700; text-decoration: none; }

.floating-wa { position: fixed; right: 22px; bottom: 22px; z-index: 80; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; color: white; background: #1fa95b; box-shadow: 0 14px 35px rgba(10,62,35,.28); transition: transform .2s; }
.floating-wa:hover { transform: translateY(-3px) scale(1.02); }
.floating-wa svg { width: 30px; fill: currentColor; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 820px; }
  .hero-visual { width: min(100%, 650px); margin: 0 auto; }
  .problem-grid, .timeline { grid-template-columns: repeat(2,1fr); }
  .model-grid, .together-grid { grid-template-columns: 1fr; }
  .scale-flow { grid-template-columns: repeat(5,1fr); }
  .scale-flow i { display: none; }
  .founding-head { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 820px) {
  .section-pad { padding: 82px 0; }
  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 14px; }
  .nav-cta { margin-top: 7px; text-align: center; }
  .menu-button { display: block; }
  .impact-strip, .program-card, .success-box { grid-template-columns: repeat(2,1fr); }
  .impact-strip div:nth-child(2), .program-metric:nth-child(2), .success-box > div:nth-child(2) { border-right: 0; }
  .impact-strip div:nth-child(-n+2), .program-metric:nth-child(-n+2), .success-box > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .program-metric:nth-child(-n+2) { border-bottom-color: rgba(255,255,255,.14); }
  .photo-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 410px 260px 260px; }
  .mosaic-a { grid-column: 1 / 3; grid-row: 1; }
  .mosaic-b { grid-column: 1; grid-row: 2; }
  .mosaic-c { grid-column: 2; grid-row: 2; }
  .mosaic-d { grid-column: 1; grid-row: 3; }
  .mosaic-e { grid-column: 2; grid-row: 3; }
  .scale-flow { grid-template-columns: 1fr 1fr; }
  .scale-flow > div:last-child { grid-column: 1 / 3; }
  .founder-card { grid-template-columns: 180px 1fr; gap: 35px; padding: 38px; }
  .founder-monogram { font-size: 5rem; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .announcement { letter-spacing: .11em; font-size: .59rem; }
  .brand small { display: none; }
  .hero { padding-top: 64px; }
  h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
  h2 { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 510px; }
  .hero-main-photo { inset: 15px 0 50px 42px; border-radius: 140px 140px 20px 20px; }
  .hero-small-one { width: 135px; height: 175px; border-width: 5px; }
  .hero-small-two { right: -4px; top: 82px; width: 145px; height: 112px; border-width: 5px; }
  .hero-seal { right: 0; bottom: 20px; width: 145px; height: 145px; padding: 22px; }
  .hero-seal strong { font-size: 1rem; }
  .hero-seal span { font-size: .59rem; }
  .impact-strip { grid-template-columns: 1fr 1fr; margin-top: 55px; }
  .impact-strip div { flex-direction: column; gap: 0; padding: 20px 16px; }
  .impact-strip strong { font-size: 1.9rem; }
  .problem-grid, .timeline { grid-template-columns: 1fr; }
  .problem-card { min-height: auto; }
  .card-number { margin-bottom: 35px; }
  .photo-mosaic { grid-template-columns: 1fr; grid-template-rows: repeat(5, 360px); }
  .mosaic-a, .mosaic-b, .mosaic-c, .mosaic-d, .mosaic-e { grid-column: 1; }
  .mosaic-a { grid-row: 1; }.mosaic-b { grid-row: 2; }.mosaic-c { grid-row: 3; }.mosaic-d { grid-row: 4; }.mosaic-e { grid-row: 5; }
  .model-grid, .together-grid { gap: 50px; }
  .program-card, .success-box { grid-template-columns: 1fr; }
  .program-metric, .success-box > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .success-box > div { border-bottom-color: var(--line); }
  .program-metric:last-child, .success-box > div:last-child { border-bottom: 0; }
  .scale-flow { grid-template-columns: 1fr; }
  .scale-flow > div:last-child { grid-column: auto; }
  .founder-card { grid-template-columns: 1fr; padding: 28px; }
  .founder-monogram { width: 160px; justify-self: center; }
  .support-list { padding: 26px; }
  .floating-wa { right: 16px; bottom: 16px; }
}
