:root{
  --bg:#f6f7f4;
  --card:#ffffff;
  --text:#1f2a22;
  --muted:#58685d;
  --line:#dde5dc;
  --accent:#2f7a57;   /* deep green */
  --accent2:#2e6ea8;  /* calm blue */
  --soft:#eef3ee;
  --shadow: 0 12px 30px rgba(0,0,0,.08);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height:1.55;
}

a{color:inherit;text-decoration:none}
.wrap{max-width:1120px;margin:0 auto;padding:0 18px}

header{
  position:sticky; top:0; z-index:50;
  background: rgba(246,247,244,.85);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0; gap:14px;
}
.brand{display:flex; flex-direction:column; gap:2px}
.brand b{font-size:18px; letter-spacing:.2px}
.brand span{font-size:12px; color:var(--muted)}
.navlinks{display:flex; gap:10px; flex-wrap:wrap; align-items:center}
.pill{
  font-size:13px;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
}
.pill:hover{border-color: rgba(0,0,0,.18)}
.pill.cta{
  border-color: rgba(47,122,87,.4);
  background: rgba(47,122,87,.10);
  color: var(--text);
}

.hero{
  position:relative;
  border-bottom:1px solid var(--line);
  background: #eaece6;
}
.heroMedia{
  position:relative;
  min-height:64vh;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.heroMedia::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(246,247,244,.92) 0%, rgba(246,247,244,.78) 55%, rgba(246,247,244,.55) 100%);
  z-index:1;
}
.heroImg{
  position:absolute; inset:0;
  background: center/cover no-repeat;
  filter: saturate(1.02) contrast(1.02);
}
.heroContent{
  position:relative; z-index:2;
  padding:56px 0;
  max-width:760px;
}
h1{margin:0 0 12px; font-size:40px; line-height:1.08}
.subhead{margin:0 0 18px; color:var(--muted); font-size:16px; max-width:700px}
@media (max-width:820px){ h1{font-size:32px} .heroMedia{min-height:56vh} }

.btnrow{display:flex; gap:12px; flex-wrap:wrap; margin-top:8px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(47,122,87,.45);
  background: rgba(47,122,87,.12);
  font-size:14px;
}
.btn.primary{
  background: var(--accent);
  border-color: var(--accent);
  color:#fff;
}
.btn.secondary{
  background:#fff;
  border-color: var(--line);
  color: var(--text);
}
.btn:hover{transform: translateY(-1px)}
.smallnote{color:var(--muted); font-size:12px; margin-top:10px}

section{padding:64px 0}
.kicker{
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom:10px;
}
h2{margin:0 0 10px; font-size:28px; line-height:1.2}
.lead{margin:0; color:var(--muted); font-size:15px; max-width:820px}

.grid2{display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-top:26px}
.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:26px}
@media (max-width:980px){ .grid3{grid-template-columns:1fr} .grid2{grid-template-columns:1fr} }

.card{
  background: var(--card);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.cardPad{padding:18px}
.card b{display:block; margin-bottom:6px}
.card p{margin:0; color:var(--muted); font-size:13px}

.media{
  height:220px;
  background: #dfe7dd center/cover no-repeat;
}
.media.tall{height:320px}
.badges{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.badge{
  display:inline-flex; gap:8px; align-items:center;
  border:1px solid var(--line);
  background:#fff;
  padding:8px 10px;
  border-radius:999px;
  font-size:12px;
  color:var(--muted);
}
.dot{width:10px;height:10px;border-radius:50%; background: var(--accent2);}

.split{
  display:grid; grid-template-columns: 1.15fr .85fr; gap:20px; align-items:stretch
