/* ---------- Tokens ---------- */
:root {
  --green-900: #0e3b1f;
  --green-800: #15532b;
  --green-700: #1c6b38;
  --green-50:  #effbe9;
  --lime:      #d8ff3c;
  --lime-soft: #ecffa8;
  --court:     #b6dca5;
  --ink:       #0d1a12;
  --ink-soft:  #3a4a3f;
  --muted:     #6b7a70;
  --paper:     #fbfcf7;
  --paper-2:   #f3f6ec;
  --line:      #e2ead6;
  --shadow-1:  0 1px 2px rgba(14,59,31,.06), 0 8px 24px rgba(14,59,31,.08);
  --shadow-2:  0 8px 30px rgba(14,59,31,.18);
  --radius:    18px;
  --radius-sm: 10px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--green-800); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; color: var(--green-900); letter-spacing: -0.01em; line-height: 1.1; margin: 0 0 .5em; }
h1 { font-size: clamp(2.4rem, 5.6vw, 4.4rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
p  { margin: 0 0 1em; }
sup { font-size: .55em; vertical-align: super; }

.container { width: min(1180px, 92%); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-soft { background: var(--paper-2); }
.section-dark { background: linear-gradient(160deg, var(--green-900), var(--green-800)); color: #eafff0; }
.section-dark h2 { color: #fff; }
.muted { color: var(--muted); }
.small { font-size: .9rem; }
.kicker { display:inline-block; font-weight:700; text-transform:uppercase; letter-spacing:.16em; font-size:.78rem; color: var(--green-700); margin-bottom:.6rem; }
.kicker-light { color: var(--lime); }
.link-light { color: var(--lime); }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }

/* Skip link */
.skip { position:absolute; left:-9999px; top:0; background:#000; color:#fff; padding:8px 12px; }
.skip:focus { left: 12px; top: 12px; z-index: 100; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 252, 247, .82);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display:flex; align-items:center; justify-content:space-between; padding: 14px 0; }
.brand { display:inline-flex; align-items:center; gap:10px; font-weight:800; color: var(--green-900); font-size: 1.15rem; text-decoration:none; }
.brand-mark {
  display:inline-flex; line-height:0;
  width: 40px; height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--lime-soft);
  box-shadow: 0 1px 2px rgba(14,59,31,.12), inset 0 0 0 2px rgba(14,59,31,.08);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-mark--footer { width: 36px; height: 36px; box-shadow: 0 1px 2px rgba(0,0,0,.25), inset 0 0 0 2px rgba(255,255,255,.18); }
.brand-name .sup { font-size: .55em; vertical-align: super; font-weight: 700; }
.nav nav ul { display:flex; gap: 22px; list-style:none; padding:0; margin:0; }
.nav nav a { color: var(--ink-soft); font-weight: 600; font-size: .95rem; }
.nav nav a:hover { color: var(--green-900); text-decoration: none; }
@media (max-width: 720px) {
  .nav nav { display:none; }
}

/* ---------- Hero ---------- */
.hero { padding: clamp(40px, 7vw, 90px) 0 clamp(40px, 7vw, 90px); position: relative; overflow: hidden; }
.hero::before {
  content:""; position:absolute; inset:auto -10% -40% -10%; height: 70%;
  background: radial-gradient(60% 60% at 30% 50%, rgba(216,255,60,.35), transparent 70%),
              radial-gradient(50% 50% at 80% 30%, rgba(28,107,56,.18), transparent 70%);
  z-index: 0; pointer-events:none;
}
.hero-grid { position: relative; z-index: 1; display:grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px, 5vw, 64px); align-items: center; }
.eyebrow { display:inline-block; padding: 6px 12px; border-radius: 999px; background: var(--lime-soft); color: var(--green-900); font-weight: 700; font-size: .8rem; letter-spacing: .04em; margin-bottom: 18px; }
.hl { background: linear-gradient(180deg, transparent 60%, var(--lime) 60%); padding: 0 .1em; }
.lede { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--ink-soft); max-width: 56ch; }

.hero-cta { display:flex; gap: 12px; flex-wrap: wrap; margin: 22px 0 28px; }
.btn { display:inline-flex; align-items:center; justify-content:center; padding: 14px 22px; border-radius: 999px; font-weight: 700; font-size: 1rem; text-decoration:none; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; border: 2px solid transparent; cursor: pointer; }
.btn-primary { background: var(--green-900); color: #fff; box-shadow: var(--shadow-1); }
.btn-primary:hover { background: var(--green-800); transform: translateY(-1px); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--green-900); border-color: var(--green-900); }
.btn-ghost:hover { background: var(--green-900); color: #fff; text-decoration: none; }

.hero-stats { list-style:none; padding:0; margin: 8px 0 0; display:flex; gap: clamp(18px, 4vw, 40px); flex-wrap: wrap; }
.hero-stats li { display:flex; flex-direction:column; }
.hero-stats strong { font-family: 'Fraunces', serif; font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 800; color: var(--green-900); line-height: 1; }
.hero-stats span { color: var(--muted); font-size: .9rem; margin-top: 4px; text-transform: uppercase; letter-spacing: .08em; }

/* hero art */
.hero-art { position: relative; aspect-ratio: 4 / 5; min-height: 420px; }
.hero-blob {
  position: absolute; inset: 0;
  background: radial-gradient(closest-side, var(--lime) 0%, var(--lime-soft) 55%, transparent 70%);
  filter: blur(2px);
  z-index: 0;
}
.hero-photo {
  position: absolute; width: 78%; aspect-ratio: 4/5;
  border-radius: 26px; overflow: hidden;
  box-shadow: var(--shadow-2);
  border: 6px solid #fff;
  z-index: 1;
  top: 4%; left: 12%;
  transform: rotate(-3deg);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo--2 {
  width: 52%; aspect-ratio: 4/3;
  top: auto; bottom: 0; left: auto; right: -2%;
  transform: rotate(5deg);
  z-index: 2;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { display: none; }
}

/* ---------- Ticker ---------- */
.ticker {
  background: var(--green-900); color: var(--lime);
  padding: 14px 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ticker-track {
  display: inline-flex; gap: 28px; white-space: nowrap;
  animation: ticker 40s linear infinite;
  font-weight: 600; font-size: .95rem; padding-left: 100%;
}
.ticker-track span { display:inline-block; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ---------- Two-col ---------- */
.two-col { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.two-col--center { align-items: center; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }

.timeline { list-style: none; padding: 0; margin: 28px 0 0; border-left: 2px dashed var(--court); }
.timeline li { position: relative; padding: 0 0 18px 22px; }
.timeline li::before {
  content:""; position:absolute; left:-7px; top: 8px; width: 12px; height:12px; border-radius:50%;
  background: var(--lime); border: 2px solid var(--green-900);
}
.timeline span { display:block; font-weight:700; color: var(--green-900); font-size: .9rem; letter-spacing: .04em; text-transform: uppercase; }
.timeline p { margin: 2px 0 0; color: var(--ink-soft); }

.story-art figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-1); background: #fff; }
.story-art img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.story-art figcaption { padding: 14px 18px; color: var(--muted); font-size: .9rem; }

/* ---------- Stats ---------- */
.stats-grid {
  display:grid; gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 920px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(216,255,60,.18);
  padding: 28px 24px; border-radius: var(--radius);
  backdrop-filter: blur(4px);
  transition: transform .2s ease, background .2s ease;
}
.stat-card:hover { transform: translateY(-3px); background: rgba(255,255,255,.1); }
.stat-card--accent { background: var(--lime); color: var(--green-900); border-color: transparent; }
.stat-card--accent .stat-label, .stat-card--accent .stat-sub { color: var(--green-900); }
.stat-num { font-family: 'Fraunces', serif; font-weight: 900; font-size: clamp(2.4rem, 4.4vw, 3.4rem); line-height: 1; color: #fff; }
.stat-card--accent .stat-num { color: var(--green-900); }
.stat-label { margin-top: 10px; font-weight: 700; font-size: 1.05rem; color: #fff; }
.stat-sub { color: rgba(234,255,240,.75); font-size: .9rem; margin-top: 4px; }
.impact-foot { text-align:center; margin-top: 28px; color: rgba(234,255,240,.75); }

/* ---------- Locations ---------- */
.locations { display:grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 760px) { .locations { grid-template-columns: 1fr; } }
.location {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-1);
  display:flex; flex-direction:column; gap: 10px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.location:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.location header { display:flex; flex-direction:column; gap: 6px; }
.badge { align-self: flex-start; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; }
.badge-active   { background: var(--lime); color: var(--green-900); }
.badge-planned  { background: var(--paper-2); color: var(--green-800); border: 1px solid var(--line); }
.badge-outreach { background: #fff7d6; color: #6a4b00; }
.location h3 { margin: 4px 0 0; }
.addr { color: var(--muted); font-size: .92rem; margin: 0; }
.loc-link { margin-top: auto; font-weight: 700; }
.location--active { border-color: rgba(28,107,56,.4); }

/* ---------- Gallery ---------- */
.gallery {
  display:grid; gap: 12px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
}
.g-item {
  border: 0; padding: 0; margin: 0; cursor: zoom-in; background: #000;
  border-radius: 14px; overflow: hidden; position: relative;
  box-shadow: var(--shadow-1);
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease, opacity .2s ease; }
.g-item:hover img { transform: scale(1.05); }
.g-item--tall { grid-row: span 2; }
.g-item--wide { grid-column: span 2; }
@media (max-width: 860px) { .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; } .g-item--wide { grid-column: span 2; } .g-item--tall { grid-row: span 2; } }

/* ---------- Contact ---------- */
.contact-cards { display:grid; gap: 14px; margin-top: 22px; }
.contact-card {
  display:flex; flex-direction: column; gap: 4px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; box-shadow: var(--shadow-1);
  text-decoration: none; color: var(--ink);
  transition: transform .15s ease, border-color .15s ease;
}
.contact-card:hover { transform: translateY(-2px); border-color: var(--green-700); text-decoration: none; }
.contact-label { color: var(--muted); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.contact-value { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.35rem; color: var(--green-900); }
.contact-hint { color: var(--ink-soft); font-size: .92rem; }
.contact-card--alt { background: var(--green-900); color: #fff; border-color: var(--green-900); }
.contact-card--alt .contact-label { color: var(--lime); }
.contact-card--alt .contact-value { color: #fff; }
.contact-card--alt .contact-hint { color: rgba(255,255,255,.75); }
.fineprint { margin-top: 16px; color: var(--muted); font-size: .9rem; }

.quote-card {
  background: var(--lime); color: var(--green-900);
  border-radius: var(--radius); padding: 32px;
  position: relative; box-shadow: var(--shadow-1);
}
.quote-card blockquote { margin: 0; }
.quote-card p { font-family: 'Fraunces', serif; font-size: clamp(1.2rem, 1.7vw, 1.6rem); line-height: 1.35; font-weight: 600; }
.quote-card footer { font-weight: 700; margin-top: 12px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--green-900); color: #cfe6d3; padding: 48px 0;
}
.footer-inner { display:grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; }
.footer .brand { color: #fff; }
.brand--footer .brand-name { color: #fff; }
.footer nav { display:flex; gap: 18px; }
.footer a { color: var(--lime); font-weight: 600; }
.footer .small { color: rgba(207,230,211,.7); }
.footer-inner > p:last-child { text-align: right; }
@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-inner > p:last-child { text-align: center; }
  .footer nav { justify-content: center; flex-wrap: wrap; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; background: rgba(7, 22, 12, .92);
  display: flex; align-items: center; justify-content: center;
  z-index: 100; padding: 4vmin;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: 10px; box-shadow: var(--shadow-2); }
.lightbox-close {
  position: absolute; top: 18px; right: 18px; width: 44px; height: 44px;
  border-radius: 50%; border: 0; background: #fff; color: var(--green-900);
  font-size: 28px; line-height: 1; cursor: pointer; box-shadow: var(--shadow-1);
}

/* ---------- A11y / motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001s !important; transition: none !important; scroll-behavior: auto !important; }
}
