:root {
  --forest: #173f2d;
  --deep: #0e2c20;
  --leaf: #3f6d49;
  --moss: #78945d;
  --cream: #f8f3e8;
  --paper: #fffdf7;
  --gold: #e5a92f;
  --ink: #1c2b22;
  --line: rgba(23,63,45,.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 1rem/1.65 "DM Sans", sans-serif;
  overflow-x: hidden;
}
a { color: inherit; }
.sr-only, .skip-link:not(:focus) { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link:focus { position: fixed; z-index: 100; left: 1rem; top: 1rem; padding: .75rem 1rem; background: white; color: var(--deep); }

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  height: 6rem;
  padding: 0 clamp(1.25rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--deep);
}
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; font-weight: 600; letter-spacing: -.02em; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid currentColor;
  border-radius: 50% 44% 53% 47%;
  font-family: "Newsreader", serif;
  font-size: 1.45rem;
  transform: rotate(-8deg);
}
.brand-mark::first-letter { transform: rotate(8deg); }
nav { display: flex; align-items: center; gap: 2rem; font-size: .91rem; font-weight: 500; }
nav a { text-decoration: none; }
nav a:not(.nav-cta) { border-bottom: 1px solid transparent; }
nav a:not(.nav-cta):hover { border-color: currentColor; }
.nav-cta { color: white; background: var(--forest); padding: .7rem 1.1rem; border-radius: 2rem; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: min(53rem, 100svh);
  display: flex;
  align-items: center;
  padding: 8rem clamp(1.25rem, 7vw, 7.5rem) 5rem;
  overflow: hidden;
  background: var(--cream);
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 48% 50%; }
.hero-wash { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,253,247,.98) 0%, rgba(255,253,247,.88) 34%, rgba(255,253,247,.18) 62%, rgba(255,253,247,0) 100%); }
.hero-content { position: relative; z-index: 2; width: min(42rem, 58vw); }
.eyebrow { margin: 0 0 1.4rem; color: var(--leaf); text-transform: uppercase; letter-spacing: .15em; font-size: .76rem; font-weight: 600; }
h1, h2, h3, blockquote { font-family: "Newsreader", Georgia, serif; font-weight: 400; letter-spacing: -.035em; }
h1 { margin: 0; font-size: clamp(3.5rem, 7vw, 7rem); line-height: .91; max-width: 9ch; color: var(--deep); }
h1 em, blockquote em { color: var(--leaf); font-weight: 400; }
.hero-copy { max-width: 36rem; margin: 2rem 0 2.2rem; font-size: clamp(1rem, 1.4vw, 1.2rem); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .9rem; min-height: 3.4rem; padding: 0 1.35rem; text-decoration: none; font-size: .92rem; font-weight: 600; border-radius: 2rem; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--forest); color: white; }
.button-link { padding-inline: .2rem; border-radius: 0; border-bottom: 1px solid var(--ink); min-height: 2rem; }
.location-note { position: absolute; z-index: 2; bottom: 1.5rem; right: clamp(1.25rem, 5vw, 5rem); margin: 0; color: rgba(14,44,32,.72); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }

.section { padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 7vw, 7.5rem); }
.section-kicker { display: flex; align-items: center; gap: 1rem; margin-bottom: 3.5rem; color: var(--leaf); text-transform: uppercase; letter-spacing: .14em; font-size: .74rem; font-weight: 600; }
.section-kicker::after { content: ""; display: block; height: 1px; width: 5rem; background: currentColor; opacity: .35; }
.section-kicker span { font-family: "Newsreader", serif; font-size: 1rem; }
.mission { background: var(--paper); }
.mission-grid { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(18rem,.8fr); gap: clamp(3rem, 9vw, 9rem); align-items: start; }
.mission h2, .programs h2, .connect h2 { margin: 0; font-size: clamp(2.7rem, 5vw, 5.2rem); line-height: 1.02; color: var(--deep); }
.mission p { margin-top: 0; }
.mission .lead { font-size: 1.25rem; color: var(--forest); }
.growth-line { margin-top: clamp(4rem, 8vw, 7rem); display: flex; align-items: center; max-width: 55rem; }
.growth-line span { width: .75rem; height: .75rem; border-radius: 50% 48% 52% 45%; background: var(--gold); }
.growth-line i { flex: 1; height: 1px; background: var(--line); position: relative; }
.growth-line i::after { content: ""; position: absolute; top: -.35rem; left: 50%; width: .6rem; height: .8rem; background: var(--moss); border-radius: 100% 0 100% 0; transform: rotate(40deg); }

.programs { background: var(--deep); color: white; display: grid; grid-template-columns: minmax(17rem,.7fr) minmax(30rem,1.3fr); gap: clamp(3rem, 8vw, 8rem); }
.programs-heading { position: sticky; top: 4rem; align-self: start; }
.section-kicker-light { color: #bdd2aa; }
.programs h2 { color: white; }
.programs-heading > p { color: rgba(255,255,255,.7); max-width: 31rem; margin-top: 2rem; }
.program-list { border-top: 1px solid rgba(255,255,255,.18); }
.program-card { position: relative; display: grid; grid-template-columns: 3rem 1fr auto; gap: 1.5rem; padding: 2.3rem .5rem 2.3rem 0; border-bottom: 1px solid rgba(255,255,255,.18); overflow: hidden; transition: padding .25s, background .25s; }
.program-card:hover { padding-left: 1rem; background: rgba(255,255,255,.04); }
.program-number { color: var(--gold); font-size: .75rem; letter-spacing: .12em; padding-top: .5rem; }
.program-type { margin: 0 0 .35rem; color: #bdd2aa; text-transform: uppercase; letter-spacing: .13em; font-size: .67rem; font-weight: 600; }
.program-card h3 { margin: 0; font-size: clamp(1.8rem, 3vw, 2.75rem); line-height: 1.1; }
.program-card .program-copy > p:last-child { margin: .8rem 0 0; max-width: 43rem; color: rgba(255,255,255,.68); }
.petal-mark { color: var(--gold); font-size: 1.2rem; padding-top: .25rem; opacity: .8; }

.letters {
  background: var(--paper);
  text-align: center;
}
.letters-intro { max-width: 51rem; margin: 0 auto 3rem; }
.letters-intro .section-kicker { justify-content: center; margin-bottom: 2.2rem; }
.letters-intro .eyebrow { margin-bottom: 1rem; }
.letters-intro h2 { margin: 0; font-size: clamp(2.7rem, 5vw, 5.2rem); line-height: 1.02; color: var(--deep); }
.letters-intro > p:last-child { max-width: 42rem; margin: 1.5rem auto 0; color: #536158; font-size: 1.05rem; }
.flyer-frame {
  width: min(100%, 48rem);
  margin: 0 auto;
  padding: clamp(.55rem, 1.4vw, 1rem);
  border: 1px solid var(--line);
  background: var(--cream);
  box-shadow: 0 2rem 5rem rgba(14,44,32,.14);
}
.flyer-frame img { display: block; width: 100%; height: auto; }
.letters-contact {
  width: min(100%, 48rem);
  margin: 2rem auto 0;
  padding: 1.35rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem 1.2rem;
  flex-wrap: wrap;
  border-radius: 999px;
  background: var(--forest);
  color: white;
}
.letters-contact span { color: #cdddaf; text-transform: uppercase; letter-spacing: .12em; font-size: .7rem; font-weight: 600; }
.letters-contact a { font-family: "Newsreader", Georgia, serif; font-size: clamp(1.15rem, 2.2vw, 1.5rem); text-underline-offset: .25rem; }
.letters-contact a:hover { color: var(--gold); }

.community { text-align: center; background: var(--cream); position: relative; overflow: hidden; }
.community::before, .community::after { content: "❊"; position: absolute; color: rgba(63,109,73,.1); font-size: clamp(10rem, 25vw, 24rem); line-height: 1; }
.community::before { left: -7rem; bottom: -7rem; }
.community::after { right: -6rem; top: -7rem; }
.community .section-kicker { justify-content: center; position: relative; z-index: 1; }
.community blockquote { position: relative; z-index: 1; margin: 0 auto; max-width: 56rem; font-size: clamp(2.4rem, 5vw, 5rem); line-height: 1.08; color: var(--deep); }
.audience-row { position: relative; z-index: 1; display: flex; justify-content: center; gap: .8rem; flex-wrap: wrap; margin-top: 4rem; }
.audience-row span { padding: .55rem 1rem; border: 1px solid var(--line); border-radius: 2rem; color: var(--forest); background: rgba(255,255,255,.45); font-size: .83rem; }

.connect { background: var(--paper); }
.connect-card { padding: clamp(2.2rem, 5vw, 5rem); background: var(--forest); color: white; display: grid; grid-template-columns: 1fr .8fr; gap: clamp(2rem, 7vw, 7rem); border-radius: 10rem 1.2rem 1.2rem 1.2rem; }
.connect .eyebrow { color: #cdddaf; }
.connect h2 { color: white; max-width: 10ch; }
.connect-copy { align-self: end; }
.connect-copy p { color: rgba(255,255,255,.75); margin: 0 0 1.5rem; }
.button-gold { background: var(--gold); color: var(--deep); }
.interest-panel { position: relative; margin: 1.2rem 0 0; padding: clamp(2rem, 4vw, 4rem); border: 1px solid var(--line); background: var(--cream); animation: reveal .35s ease; }
@keyframes reveal { from { opacity: 0; transform: translateY(-10px); } }
.interest-panel h3 { margin: 0 0 2rem; color: var(--deep); font-size: clamp(2rem, 4vw, 3.5rem); }
.interest-options { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.interest-options div { background: var(--paper); padding: 1.5rem; display: grid; gap: .5rem; }
.interest-options strong { color: var(--forest); }
.interest-options span { font-size: .9rem; color: #536158; }
.coming-soon { margin: 2rem 0 0; color: var(--leaf); font-weight: 600; }
.panel-close { position: absolute; top: 1rem; right: 1rem; border: 0; background: transparent; color: var(--forest); font-size: 2rem; cursor: pointer; }

footer { padding: 3rem clamp(1.25rem, 7vw, 7.5rem); display: grid; grid-template-columns: 1fr auto auto; gap: 2rem; align-items: center; background: var(--deep); color: rgba(255,255,255,.65); font-size: .82rem; }
.brand-footer { color: white; font-size: 1rem; }
.footer-tagline { color: #cdddaf; font-family: "Newsreader", serif; font-size: 1rem; }

.founder-page { background: var(--cream); }
.founder-header { position: relative; background: var(--paper); border-bottom: 1px solid var(--line); }
.founder-back {
  padding-bottom: .15rem;
  color: var(--forest);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}
.founder-hero {
  min-height: calc(100svh - 6rem);
  display: grid;
  grid-template-columns: minmax(20rem, .82fr) minmax(30rem, 1.18fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 7rem) clamp(1.25rem, 7vw, 7.5rem);
  background:
    radial-gradient(circle at 90% 12%, rgba(229,169,47,.13), transparent 24rem),
    var(--cream);
}
.founder-portrait-wrap { position: relative; max-width: 37rem; margin-inline: auto; }
.founder-portrait-wrap::before {
  content: "";
  position: absolute;
  inset: -1.1rem 1.2rem 1.2rem -1.1rem;
  border: 1px solid rgba(229,169,47,.72);
  border-radius: 48% 48% 1.2rem 1.2rem;
}
.founder-portrait {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 55%;
  border-radius: 48% 48% 1.2rem 1.2rem;
  box-shadow: 0 2rem 5rem rgba(14,44,32,.18);
}
.founder-photo-label {
  position: absolute;
  right: -1.2rem;
  bottom: 2rem;
  padding: .8rem 1.4rem;
  background: var(--forest);
  color: white;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.2rem;
}
.founder-story { max-width: 47rem; }
.founder-story .eyebrow { margin-bottom: 1.1rem; }
.founder-story h1, .founder-story h2 { max-width: none; margin: 0; color: var(--deep); font-size: clamp(3.7rem, 7vw, 7.3rem); line-height: .91; }
.founder-story h1 em, .founder-story h2 em { color: var(--leaf); font-weight: 400; }
.founder-home { border-top: 1px solid var(--line); }
.founder-story p { color: #45574b; }
.founder-story .founder-greeting {
  margin: 2rem 0 1.4rem;
  color: var(--forest);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.3;
}
.founder-signature {
  margin-top: 2.4rem;
  padding: 1.6rem 1.8rem;
  display: grid;
  gap: .2rem;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,.55);
}
.founder-signature strong { color: var(--deep); font-family: "Newsreader", Georgia, serif; font-size: 1.65rem; font-weight: 500; }
.founder-signature span { color: #536158; font-size: .88rem; }

@media (max-width: 860px) {
  .site-header { height: 5rem; }
  .menu-toggle { display: grid; gap: 4px; width: 2.6rem; height: 2.6rem; place-content: center; border: 0; border-radius: 50%; background: var(--forest); color: white; }
  .menu-toggle span:not(.sr-only) { display: block; width: 1.1rem; height: 1px; background: currentColor; }
  nav { display: none; position: absolute; top: 4.5rem; left: 1rem; right: 1rem; padding: 1.5rem; background: var(--paper); box-shadow: 0 1rem 2rem rgba(14,44,32,.12); flex-direction: column; align-items: stretch; gap: 1rem; }
  nav.open { display: flex; }
  .nav-cta { text-align: center; }
  .hero { min-height: 48rem; align-items: flex-end; padding-bottom: 6rem; }
  .hero-image { object-position: 62% 50%; }
  .hero-wash { background: linear-gradient(0deg, rgba(255,253,247,.97) 0%, rgba(255,253,247,.83) 58%, rgba(255,253,247,.18) 100%); }
  .hero-content { width: 100%; }
  .location-note { left: 1.25rem; right: auto; font-size: .68rem; }
  .mission-grid, .programs, .connect-card { grid-template-columns: 1fr; }
  .programs-heading { position: static; }
  .connect-card { border-radius: 5rem 1rem 1rem 1rem; }
  footer { grid-template-columns: 1fr; gap: .5rem; }
  .founder-hero { grid-template-columns: 1fr; }
  .founder-portrait-wrap { width: min(88%, 30rem); }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(3.25rem, 17vw, 5rem); }
  .hero-copy { font-size: 1rem; }
  .section { padding-block: 4.5rem; }
  .program-card { grid-template-columns: 2rem 1fr; }
  .petal-mark { display: none; }
  .interest-options { grid-template-columns: 1fr; }
  .letters-contact { border-radius: 1rem; }
  .button-primary, .button-gold { width: 100%; }
  .hero-actions { gap: .8rem; align-items: stretch; flex-direction: column; }
  .button-link { width: fit-content; }
  .founder-header { height: 5rem; }
  .founder-back { font-size: .82rem; }
  .founder-hero { padding-top: 3.5rem; }
  .founder-photo-label { right: -.5rem; bottom: 1rem; }
}

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