
:root{
  --bg:#f6f7f5;
  --ink:#152018;
  --muted:rgba(21,32,24,.72);
  --card:#ffffff;
  --line:rgba(21,32,24,.10);
  --accent:#d8b262;
  --accent2:#1f5b3a;
  --shadow:0 18px 55px rgba(0,0,0,.10);
  --radius:20px;
  --max:1180px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  background:var(--bg);
  color:var(--ink);
  line-height:1.6;
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
}
img{max-width:100%;display:block;border-radius:16px}
a{color:inherit}
.container{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}
.topnav{
  position:sticky;
  top:0;
  z-index:60;
  background:rgba(246,247,245,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.navinner{
  min-height:78px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.01em;
  font-size:1.55rem;
  white-space:nowrap;
}
.brand .dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--accent2);
  display:inline-block;
}
.navlinks{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}
.navlinks a{
  text-decoration:none;
  color:rgba(21,32,24,.82);
  font-size:14px;
  white-space:nowrap;
}
.pill,.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border-radius:999px;
  font-weight:700;
  white-space:nowrap;
}
.pill{
  padding:12px 18px;
  border:1px solid rgba(21,32,24,.18);
  background:rgba(255,255,255,.7);
}
.pill.primary,.btn.primary{
  background:var(--accent);
  border-color:transparent;
  color:var(--ink);
}
.hero{
  position:relative;
  min-height:72vh;
  margin:14px auto 0;
  border-radius:18px;
  overflow:hidden;
  display:flex;
  align-items:flex-end;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.10), rgba(0,0,0,.58)),
    url("../assets/pollinator-plants.jpg") center/cover no-repeat;
}
.hero .wrap{width:100%}
.hero .container{padding:5.2rem 0 3.4rem}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin:0 0 12px;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(255,255,255,.92);
}
.kicker:before{
  content:"";
  width:28px;
  height:1px;
  background:rgba(255,255,255,.65);
  display:inline-block;
}
h1{
  margin:.15rem 0 1rem;
  font-size:clamp(2.5rem,5vw,4.35rem);
  line-height:1.02;
  letter-spacing:-.03em;
  color:#fff;
  text-shadow:0 10px 30px rgba(0,0,0,.35);
}
.lede{
  max-width:70ch;
  margin:0 0 22px;
  font-size:18px;
  color:rgba(255,255,255,.92);
}
.actions{display:flex;gap:10px;flex-wrap:wrap;align-items:center}
.btn{
  padding:12px 18px;
  border:1px solid transparent;
  font-size:14px;
}
.btn.ghost{border-color:rgba(255,255,255,.60);color:#fff;background:rgba(255,255,255,.06)}
.btn.soft{border-color:rgba(21,32,24,.18);background:rgba(255,255,255,.70);color:var(--ink)}
main.container{
  padding-top:28px;
  padding-bottom:24px;
}
.section{
  padding:68px 0;
  border-bottom:1px solid var(--line);
}
.section:last-of-type{border-bottom:none}
h2{
  margin:0 0 10px;
  font-size:2.2rem;
  line-height:1.12;
  letter-spacing:-.01em;
}
h3{
  margin:0 0 8px;
  font-size:1.1rem;
  letter-spacing:-.01em;
}
.subhead{
  margin:8px 0 0;
  color:var(--muted);
  max-width:80ch;
  font-size:16px;
}
.prose{
  font-family:ui-serif,Georgia,Cambria,"Times New Roman",Times,serif;
  font-size:17px;
  color:rgba(21,32,24,.92);
}
.prose p{margin:0 0 14px}
.callout{
  margin-top:18px;
  padding:18px;
  border-left:3px solid rgba(31,91,58,.65);
  background:rgba(255,255,255,.7);
  border-radius:14px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.75);
  font-size:12px;
  color:rgba(21,32,24,.75);
}
.grid{
  margin-top:2rem;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
  align-items:stretch;
}
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:0 12px 32px rgba(0,0,0,.06);
  overflow:hidden;
}
.card .img{
  height:190px;
  background:#e9ede7;
  overflow:hidden;
}
.card .img img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:0;
}
.card .body{
  padding:16px 16px 14px;
}
.card p{
  margin:0;
  color:rgba(21,32,24,.80);
  font-size:14px;
}
.list{
  margin-top:12px;
  padding-left:18px;
  color:rgba(21,32,24,.76);
  font-size:14px;
}
.list li{margin:6px 0}
.split{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:2.4rem;
  align-items:start;
  margin-top:1.8rem;
}
.figure{
  border-radius:16px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  background:#e9ede7;
  overflow:hidden;
}
.figure img{
  width:100%;
  height:360px;
  object-fit:cover;
  border-radius:0;
}
.caption{font-size:13px;color:rgba(21,32,24,.65);margin-top:10px}
.form{
  margin-top:1.1rem;
  display:grid;
  gap:12px;
  max-width:720px;
}
label{font-size:13px;color:rgba(21,32,24,.82);font-weight:650}
input,textarea,select{
  width:100%;
  padding:12px;
  border-radius:12px;
  border:1px solid rgba(21,32,24,.18);
  background:#fff;
  font-family:inherit;
  font-size:15px;
}
textarea{min-height:130px;resize:vertical}
.small{font-size:13px;color:rgba(21,32,24,.68)}
.terra-strip{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:24px;
}
.terra-strip img{
  width:100%;
  height:260px;
  object-fit:cover;
}
.footer{
  padding:48px 0 56px;
  color:rgba(21,32,24,.72);
  font-size:13px;
}
.footergrid{
  display:grid;
  grid-template-columns:1.3fr .8fr .9fr;
  gap:24px;
  border-top:1px solid var(--line);
  padding-top:24px;
}
hr{border:none;border-top:1px solid var(--line);margin:22px 0}

@media (max-width: 1080px){
  .navinner{
    grid-template-columns:1fr;
    justify-items:start;
    gap:10px;
    padding:14px 0 16px;
  }
  .navlinks{
    justify-content:flex-start;
  }
}
@media (max-width: 900px){
  .grid,
  .split,
  .footergrid,
  .terra-strip{
    grid-template-columns:1fr;
  }
  .figure img{height:320px}
}
@media (max-width: 720px){
  .container{width:min(var(--max), calc(100% - 24px))}
  .hero{min-height:64vh;border-radius:14px}
  .hero .container{padding:4.2rem 0 2.8rem}
  h1{font-size:clamp(2.2rem,9vw,3.4rem)}
  .lede{font-size:16px}
}


/* --- v3.22 homepage polish --- */
.hero h1{
  max-width: 11ch;
}
.hero .lede{
  max-width: 44rem;
}
.terra-strip{
  margin-bottom: 10px;
}
.callout strong{
  letter-spacing: -0.01em;
}


/* --- v3.23 partner cleanup --- */
.caption{
  line-height: 1.5;
}
.split .prose h2{
  max-width: 18ch;
}


/* --- v3.24 partner image alignment --- */
.split-top{
  align-items:start;
}
.split-top .figure{
  margin-top: 4px;
}
