:root {
  --green-900: #123821;
  --green-700: #1f5c34;
  --green-600: #297a44;
  --gold-500: #d9a441;
  --gold-400: #e8bd6a;
  --cream-100: #faf7f0;
  --cream-200: #f2ecdd;
  --ink-900: #16201a;
  --ink-600: #4a564d;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 12px 32px -12px rgba(18, 56, 33, 0.25);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream-100);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: rgba(250, 247, 240, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(18, 56, 33, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink-900);
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--font-display); font-size: 16px; }
.brand-text em { font-style: normal; font-size: 12px; color: var(--ink-600); }

.site-nav { display: flex; gap: 28px; }
.site-nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink-600);
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--green-700); }

@media (max-width: 760px) {
  .site-nav { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold-500);
  color: var(--green-900);
  box-shadow: 0 8px 20px -8px rgba(217, 164, 65, 0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -8px rgba(217, 164, 65, 0.7); }
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--ink-900);
  color: var(--ink-900);
}
.btn-ghost:hover { background: var(--ink-900); color: var(--white); }
.btn-ghost-light {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.15); }
.nav-cta { padding: 10px 22px; font-size: 13.5px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-900);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,56,33,0.55) 0%, rgba(18,56,33,0.45) 45%, rgba(15,25,18,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding-top: 120px;
  padding-bottom: 120px;
  max-width: 780px;
}
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin: 0 0 14px;
}
.eyebrow.center { text-align: center; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  margin: 0 0 20px;
  font-weight: 600;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin: 0 0 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-actions.center { justify-content: center; }

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 20px;
  z-index: 2;
}
.scroll-cue span {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--gold-400);
  border-radius: 3px;
  transform: translateX(-50%);
  animation: scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue {
  0% { opacity: 1; top: 6px; }
  60% { opacity: 0.2; top: 20px; }
  100% { opacity: 0; top: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue span { animation: none; }
}

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-alt { background: var(--cream-200); }
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 600;
  color: var(--green-900);
  margin: 0 0 18px;
  line-height: 1.15;
}
h2.center { text-align: center; }
.section-lede { max-width: 620px; margin: 0 auto 56px; color: var(--ink-600); font-size: 17px; }
.section-lede.center { text-align: center; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col.reverse .col-image { order: 2; }
.two-col.reverse .col-text { order: 1; }
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col.reverse .col-image, .two-col.reverse .col-text { order: initial; }
}
.col-text p { color: var(--ink-600); font-size: 16.5px; }
.col-image img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
@media (max-width: 860px) { .card-grid { grid-template-columns: 1fr; } }
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.card:hover { transform: translateY(-4px); }
.card-icon {
  width: 48px;
  height: 48px;
  color: var(--green-700);
  margin-bottom: 18px;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 0 0 10px;
  color: var(--green-900);
}
.card p { margin: 0; color: var(--ink-600); font-size: 15px; }

/* ---------- Stats ---------- */
.stat-row {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--green-700);
  font-weight: 600;
}
.stat-label { font-size: 14px; color: var(--ink-600); }

.impact-banner {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 48px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .story-grid { grid-template-columns: 1fr; } }
.story-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.story-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top center;
}
.story-quote {
  margin: 0;
  padding: 20px 22px 24px;
  border-left: 4px solid var(--gold-500);
  color: var(--ink-900);
  font-size: 15.5px;
}

/* ---------- CTA ---------- */
.section-cta {
  background: linear-gradient(160deg, var(--green-900) 0%, var(--green-700) 100%);
  color: var(--white);
  text-align: center;
}
.section-cta h2 { color: var(--white); }
.section-cta p { max-width: 520px; margin: 0 auto 36px; color: rgba(255,255,255,0.85); font-size: 17px; }
.cta-inner { display: flex; flex-direction: column; align-items: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-900);
  color: var(--cream-100);
  padding-top: 56px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .brand-mark { width: 44px; height: 44px; border-radius: 50%; }
.footer-brand strong { font-family: var(--font-display); font-size: 17px; }
.footer-contact p { margin: 2px 0; }
.footer-contact a { text-decoration: none; color: var(--gold-400); font-weight: 600; }
.footer-ein { color: rgba(255,255,255,0.5); font-size: 13px; }
.footer-bottom {
  padding: 20px 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-align: center;
}

/* ---------- Parallax ---------- */
[data-parallax] { will-change: transform; }
@media (prefers-reduced-motion: reduce) {
  [data-parallax] { transform: none !important; }
}
