
:root{
  --forest:#0b422c;
  --deep:#062d1f;
  --leaf:#3f7d2f;
  --light-leaf:#86a93b;
  --earth:#4d3518;
  --sky:#1689d8;
  --cream:#fbfcf8;
  --soft:#eef6ea;
  --gold:#d8c37a;
  --ink:#173326;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  color:var(--ink);
  background:var(--cream);
}
header{
  position:sticky;
  top:0;
  z-index:10;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid #dfe9dc;
  padding:12px 6%;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand img{width:190px;max-width:48vw;height:auto;display:block}
nav a{
  margin-left:24px;
  color:var(--forest);
  text-decoration:none;
  font-weight:bold;
  font-size:15px;
  letter-spacing:.04em;
}
nav a:hover{color:var(--sky)}
.hero{
  padding:72px 6%;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:44px;
  align-items:center;
  background:linear-gradient(180deg,#fff,var(--soft));
}
.hero h1{
  font-size:58px;
  line-height:1.05;
  color:var(--forest);
  margin:0 0 18px;
}
.hero p,.lead{font-size:21px;line-height:1.58}
.hero img{
  width:100%;
  max-width:560px;
  justify-self:center;
  border-radius:24px;
  box-shadow:0 18px 44px rgba(15,75,51,.10);
}
.eyebrow{
  color:var(--leaf);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-weight:bold;
  font-size:15px;
  margin:0 0 12px;
}
.btn{
  display:inline-block;
  background:var(--forest);
  color:white;
  text-decoration:none;
  padding:14px 24px;
  border-radius:999px;
  font-weight:bold;
  margin-top:14px;
  border:2px solid var(--forest);
}
.btn.alt{background:white;color:var(--forest);margin-left:10px}
.section{padding:64px 6%}
.section h2{
  font-size:39px;
  color:var(--forest);
  margin:0 0 18px;
  line-height:1.15;
}
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:28px;
}
.card{
  background:white;
  border:1px solid #d9e8d5;
  border-radius:20px;
  padding:28px;
  box-shadow:0 10px 28px rgba(15,75,51,.07);
}
.card h3{color:var(--forest);margin-top:0;font-size:24px}
.band{
  background:var(--forest);
  color:white;
  text-align:center;
  padding:54px 6%;
}
.band h2{color:white;margin:0 0 12px}
.two{display:grid;grid-template-columns:1fr 1fr;gap:38px;align-items:start}
.quote{
  font-size:31px;
  line-height:1.35;
  color:var(--earth);
  font-style:italic;
  border-left:5px solid var(--sky);
  padding-left:22px;
}
.list li{margin-bottom:15px;font-size:18px;line-height:1.45}
.form{max-width:760px}
input,textarea{
  width:100%;
  padding:14px;
  border:1px solid #c9d9c7;
  border-radius:10px;
  margin:0 0 14px;
  font-size:16px;
  font-family:Georgia,"Times New Roman",serif;
}
a{color:var(--forest)}
.hero a:not(.btn), .section a{font-weight:bold}
footer{
  background:var(--deep);
  color:white;
  padding:34px 6%;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:26px;
  align-items:center;
}
footer img{width:150px;background:white;border-radius:12px;padding:8px}
footer p{margin:0;line-height:1.5}
footer a{color:white}
.footer-tagline{font-size:20px;font-style:italic}
@media(max-width:900px){
  header{flex-direction:column;gap:12px}
  nav{display:flex;flex-wrap:wrap;justify-content:center;gap:12px}
  nav a{margin:0}
  .hero,.two{grid-template-columns:1fr;text-align:center}
  .hero h1{font-size:40px}
  .cards{grid-template-columns:1fr}
  .quote{text-align:left}
  footer{grid-template-columns:1fr;text-align:center}
  footer img{margin:auto}
}

/* Contact and legal information */
.two-card{grid-template-columns:repeat(2,1fr);}
.legal-note{
  margin-top:24px;
  font-size:14px;
  line-height:1.55;
  color:#4b5f52;
  max-width:980px;
}
.contact-legal .card p{line-height:1.55;}
@media(max-width:900px){.two-card{grid-template-columns:1fr;}}
