
:root{
  --green:#2f5d3a;
  --green-dark:#25472d;
  --gold:#c7a86b;
  --cream:#f7f4ef;
  --text:#222;
  --muted:#666;
  --border:#e5e1d8;
  --max:1120px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.6;
}
a{color:var(--green); text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%; display:block}
.topbar{
  background:var(--green-dark);
  color:#fff;
  font-size:14px;
}
.wrap{
  width:min(calc(100% - 32px), var(--max));
  margin:0 auto;
}
.topbar .wrap{
  display:flex;
  gap:16px;
  justify-content:space-between;
  padding:10px 0;
  flex-wrap:wrap;
}
header{
  border-bottom:1px solid var(--border);
  background:#fff;
  position:sticky;
  top:0;
  z-index:50;
}
.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:16px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.brand img{
  width:68px;
  height:auto;
}
.brand-text h1{
  margin:0;
  font-size:28px;
  color:var(--green-dark);
}
.brand-text p{
  margin:4px 0 0;
  color:var(--muted);
  font-size:14px;
}
.callout{
  text-align:right;
}
.callout .phone{
  font-size:28px;
  font-weight:700;
  color:var(--green-dark);
}
.callout .cta{
  display:inline-block;
  margin-top:8px;
  background:var(--green);
  color:#fff;
  padding:10px 16px;
  border-radius:999px;
  font-weight:700;
}
nav{
  border-top:1px solid var(--border);
}
.nav-row{
  display:flex;
  gap:24px;
  padding:12px 0;
  flex-wrap:wrap;
}
.nav-row a{
  color:#333;
  font-weight:700;
}
.nav-row a.active{
  color:var(--green);
}
.hero{
  position:relative;
  color:#fff;
  min-height:420px;
  display:flex;
  align-items:center;
  background-size:cover;
  background-position:center;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(23,34,26,.72), rgba(23,34,26,.25));
}
.hero .wrap{
  position:relative;
  z-index:1;
  padding:80px 0;
}
.hero h2{
  font-size:clamp(36px, 6vw, 58px);
  line-height:1.06;
  margin:0 0 14px;
  max-width:720px;
}
.hero p{
  font-size:20px;
  max-width:640px;
  margin:0 0 26px;
}
.button-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin:-46px auto 36px;
  position:relative;
  z-index:2;
}
.quick-card{
  background:#fff;
  border-radius:18px;
  box-shadow:0 14px 30px rgba(0,0,0,.08);
  padding:22px;
  text-align:center;
  border:1px solid var(--border);
}
.quick-card img{
  width:58px;
  margin:0 auto 14px;
}
.quick-card h3{
  margin:0;
  color:var(--green-dark);
  font-size:22px;
}
.quick-card p{
  margin:8px 0 0;
  color:var(--muted);
}
.section{
  padding:48px 0;
}
.section.alt{
  background:var(--cream);
}
.section h2{
  margin:0 0 14px;
  font-size:38px;
  color:var(--green-dark);
}
.eyebrow{
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--gold);
  font-weight:700;
  font-size:13px;
  margin-bottom:10px;
}
.grid-2{
  display:grid;
  grid-template-columns:1.2fr .9fr;
  gap:34px;
  align-items:start;
}
.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:26px;
  box-shadow:0 8px 20px rgba(0,0,0,.04);
}
.service-list{
  columns:2;
  padding-left:20px;
  margin:14px 0 0;
}
.service-list li{
  margin:0 0 10px;
  break-inside:avoid;
}
.contact-box{
  background:var(--green-dark);
  color:#fff;
  border-radius:22px;
  padding:28px;
}
.contact-box h3{
  margin-top:0;
  font-size:28px;
}
.contact-box a{
  color:#fff;
}
.footer{
  background:#17211a;
  color:#d7ddd8;
  padding:32px 0;
  margin-top:48px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:24px;
}
.footer h4{
  color:#fff;
  margin:0 0 10px;
}
.footer a{
  color:#d7ddd8;
}
.page-hero{
  min-height:300px;
}
.content img.feature{
  width:100%;
  border-radius:18px;
  border:1px solid var(--border);
  box-shadow:0 10px 24px rgba(0,0,0,.06);
}
.notice{
  margin-top:20px;
  font-size:14px;
  color:var(--muted);
}
@media (max-width:900px){
  .button-row,.grid-2,.footer-grid{grid-template-columns:1fr}
  .service-list{columns:1}
  .callout{text-align:left}
  .header-row{flex-direction:column; align-items:flex-start}
}
@media (max-width:640px){
  .hero{min-height:360px}
  .hero p{font-size:18px}
  .brand-text h1{font-size:24px}
  .callout .phone{font-size:24px}
}

.form-intro{
  margin:0 0 18px;
  color:var(--muted);
}
.contact-form{
  display:grid;
  gap:12px;
}
.contact-form label{
  font-weight:700;
  color:var(--green-dark);
}
.contact-form input,
.contact-form textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid #cfd8d5;
  border-radius:10px;
  font:inherit;
  background:#fff;
}
.contact-form textarea{
  resize:vertical;
  min-height:140px;
}
.contact-form .cta,
.contact-form button{
  border:0;
  cursor:pointer;
  justify-self:start;
}
