:root {
  --green: #0b4f2c;
  --green-dark: #07361f;
  --gold: #b8860b;
  --gold-light: #d9b84a;
  --cream: #f7f4eb;
  --soft: #f3f6f1;
  --text: #233129;
  --muted: #66736b;
  --white: #ffffff;
  --shadow: 0 14px 35px rgba(7, 54, 31, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.65;
  background: var(--white);
}

h1, h2, h3 {
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.2;
  margin-top: 0;
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
a { color: inherit; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid #e8ece8;
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}
.brand strong, .brand span { display: block; }
.brand strong { color: var(--green); font-size: 1.1rem; }
.brand span { color: var(--muted); font-size: .78rem; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.site-nav a {
  text-decoration: none;
  font-size: .92rem;
  font-weight: 600;
}
.nav-cta {
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 1.6rem;
}

.hero {
  background:
    linear-gradient(115deg, rgba(7,54,31,.95), rgba(11,79,44,.86)),
    radial-gradient(circle at top right, rgba(217,184,74,.35), transparent 40%);
  color: var(--white);
  padding: 88px 0 76px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 52px;
  align-items: center;
}
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .78rem;
  font-weight: 700;
}
.gold { color: var(--gold-light); }
.lead {
  max-width: 740px;
  font-size: 1.16rem;
  color: #edf5ef;
}
.tagline {
  margin-top: 30px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.05rem;
  color: var(--gold-light);
}
.hero-logo-card {
  background: rgba(255,255,255,.96);
  border-radius: 30px;
  padding: 22px;
  box-shadow: 0 22px 55px rgba(0,0,0,.2);
}
.hero-logo-card img { width: 100%; display: block; border-radius: 18px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--gold); color: #fff; }
.btn-outline { border-color: var(--gold); color: var(--green-dark); background: #fff; }
.hero .btn-outline { background: transparent; color: #fff; border-color: #fff; }
.disabled { opacity: .7; cursor: default; }

.trust-strip {
  padding: 22px 0;
  background: var(--cream);
  border-bottom: 1px solid #e7dfc7;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.trust-grid div { text-align: center; }
.trust-grid strong { display: block; color: var(--green); }
.trust-grid span { font-size: .85rem; color: var(--muted); }

.section { padding: 82px 0; }
.soft { background: var(--soft); }
.dark { background: var(--green-dark); color: #fff; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.quote-card, .action-card, .card, .program-card, .update-card {
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.quote-card {
  background: var(--green);
  color: white;
  padding: 38px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.28rem;
  border-left: 7px solid var(--gold);
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
}
.card {
  background: #fff;
  padding: 30px;
  border-top: 5px solid var(--gold);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 34px;
}
.program-card {
  padding: 28px;
  border: 1px solid #e3e9e3;
  background: #fff;
}
.icon { font-size: 2rem; margin-bottom: 12px; }

.board-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 22px;
  margin-top: 32px;
}
.board-card {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
  background: rgba(255,255,255,.06);
}
.board-card h3 { margin-bottom: 6px; }
.role { color: var(--gold-light); font-weight: 700; }

.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.chip-row span {
  border: 1px solid #cad8ce;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 600;
}
.action-card {
  background: var(--cream);
  padding: 34px;
  border: 1px solid #eadcae;
}
.support-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}
.legal-note, .small-note {
  color: var(--muted);
  font-size: .86rem;
}
.updates-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
}
.update-card {
  border: 1px solid #e2e8e2;
  padding: 28px;
}
.date {
  color: var(--gold);
  font-size: .8rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .08em;
}
.contact-section { background: #fbfcfa; }
.contact-form {
  display: grid;
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: .9rem;
}
input, textarea, select {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid #ccd7ce;
  font: inherit;
  background: #fff;
}
footer {
  padding: 34px 0;
  background: #062a19;
  color: #dce8df;
}
.footer-grid {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 24px;
  align-items: center;
}
.footer-logo { width: 74px; height: 74px; border-radius: 50%; object-fit: cover; }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    flex-direction: column;
    border-bottom: 1px solid #e4e9e4;
  }
  .site-nav.open { display: flex; }
  .hero-grid, .two-col, .mission-grid, .support-box {
    grid-template-columns: 1fr;
  }
  .program-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 600px) {
  .container { width: min(100% - 28px, 1160px); }
  .hero { padding-top: 58px; }
  .program-grid, .board-grid, .updates-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .section { padding: 60px 0; }
  .footer-logo { width: 62px; height: 62px; }
}

.legacy-feature {
  margin-top: 58px;
  text-align: center;
}
.legacy-feature .eyebrow {
  margin-bottom: 16px;
}
.legacy-frame {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px;
  border: 2px solid var(--gold-light);
  border-radius: 24px;
  background: linear-gradient(145deg, #fffdf7, #f3ead0);
  box-shadow: 0 20px 45px rgba(7, 54, 31, .16);
}
.legacy-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.phase1-feature {
  margin-top: 58px;
  padding-top: 48px;
  border-top: 1px solid #e3e9e3;
}
.phase1-copy {
  max-width: 880px;
  margin: 0 auto 24px;
  text-align: center;
}
.phase1-copy h3 {
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  color: var(--green-dark);
  margin-bottom: 14px;
}
.phase1-frame {
  display: block;
  max-width: 1160px;
  margin: 0 auto;
  padding: 10px;
  border: 2px solid var(--gold-light);
  border-radius: 24px;
  background: linear-gradient(145deg, #fffdf7, #f3ead0);
  box-shadow: 0 20px 45px rgba(7, 54, 31, .16);
  overflow: hidden;
}
.phase1-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.phase1-frame:focus-visible {
  outline: 4px solid var(--gold-light);
  outline-offset: 4px;
}
.phase1-caption {
  margin: 12px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: .84rem;
}


/* Grandmothers legacy statement */
.legacy-carry-forward {
  max-width: 940px;
  margin: 1.7rem auto 0;
  padding: 1.4rem 1rem .35rem;
  text-align: center;
}
.legacy-carry-forward h3 {
  margin: .25rem 0 .55rem;
  color: #b58a24;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: .01em;
}
.legacy-carry-forward p {
  margin: 0;
  color: #0b4f35;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  line-height: 1.65;
  font-style: italic;
}
.legacy-rule {
  display: flex;
  align-items: center;
  gap: .7rem;
  max-width: 520px;
  margin: 0 auto .7rem;
  color: #b58a24;
}
.legacy-rule::before,
.legacy-rule::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, #b58a24);
}
.legacy-rule::after { background: linear-gradient(90deg, #b58a24, transparent); }
.legacy-rule span { font-size: 1rem; }
.legacy-rule-bottom { margin: .8rem auto 0; }
