
:root{
  --green-950:#0b3d22;
  --green-800:#145c31;
  --green-600:#3f8f2f;
  --green-300:#b9d89f;
  --cream:#f5f4ee;
  --ink:#122017;
  --muted:#5f6d63;
  --white:#ffffff;
  --line:#dbe3d9;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--ink);
  background:var(--white);
  line-height:1.6;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.container{width:min(1140px,calc(100% - 36px));margin:0 auto}
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(18,32,23,.08);
}
.nav-wrap{display:flex;align-items:center;gap:24px;min-height:84px}
.brand img{width:180px;height:auto}
.nav{display:flex;gap:24px;margin-left:auto}
.nav a{font-size:14px;font-weight:700}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:50px;padding:0 22px;border-radius:999px;
  background:var(--green-800);color:white;font-weight:800;
  border:1px solid var(--green-800);
}
.btn:hover{transform:translateY(-1px)}
.btn-small{min-height:42px;padding:0 18px;font-size:14px}
.hero{position:relative;min-height:720px;display:grid;align-items:end;overflow:hidden;background:#163c24}
.hero-image{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(6,37,21,.88) 0%,rgba(6,37,21,.68) 45%,rgba(6,37,21,.25) 100%)}
.hero-content{position:relative;z-index:2;color:white;padding:120px 0 72px}
.eyebrow,.section-kicker{text-transform:uppercase;letter-spacing:.18em;font-size:12px;font-weight:900;color:var(--green-600)}
.hero .eyebrow{color:#cbe7b5}
.hero h1,.section h2{font-size:clamp(40px,6vw,72px);line-height:1.02;letter-spacing:-.045em;margin:14px 0 20px}
.hero h1{max-width:850px}
.hero p{max-width:700px;font-size:20px;color:rgba(255,255,255,.88)}
.hero-actions{display:flex;gap:12px;margin-top:30px}
.btn-ghost{background:transparent;border-color:rgba(255,255,255,.7)}
.trust-strip{display:flex;flex-wrap:wrap;gap:24px;margin-top:46px;font-size:14px;font-weight:700;color:rgba(255,255,255,.9)}
.section{padding:96px 0}
.section-soft{background:var(--cream)}
.two-col{display:grid;grid-template-columns:1.1fr .9fr;gap:72px;align-items:start}
.section h2{font-size:clamp(36px,5vw,58px);margin-top:10px}
.intro p{font-size:20px;color:var(--muted);margin-top:32px}
.section-head{display:flex;align-items:end;justify-content:space-between;gap:24px;margin-bottom:42px}
.section-head h2{max-width:760px;margin-bottom:0}
.text-link{font-weight:800;color:var(--green-800)}
.cards{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.card{background:white;border:1px solid var(--line);border-radius:22px;padding:28px;min-height:210px}
.card h3{margin:0 0 10px;font-size:22px}
.card p{color:var(--muted);margin:0}
.gallery{display:grid;grid-template-columns:2fr 1fr 1fr;grid-auto-rows:270px;gap:14px}
.gallery figure{margin:0;border-radius:22px;overflow:hidden;background:#eee}
.gallery img{width:100%;height:100%;object-fit:cover;transition:transform .3s ease}
.gallery figure:hover img{transform:scale(1.03)}
.gallery-large{grid-row:span 2}
.section-dark{background:var(--green-950);color:white}
.section-kicker.light{color:#b9d89f}
.rating-pill{white-space:nowrap;background:rgba(255,255,255,.1);padding:12px 16px;border-radius:999px}
.review-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
blockquote{margin:0;padding:28px;border-radius:22px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12)}
blockquote p{font-size:18px;margin:10px 0 18px}
blockquote footer{color:#c9d6cd;font-weight:700}
.stars{color:#ffbf2f;letter-spacing:.08em}
.contact-section{background:white}
.contact-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:70px;align-items:start}
.contact-list{display:grid;gap:10px;margin-top:28px;font-weight:800}
.quote-form{display:grid;grid-template-columns:1fr 1fr;gap:16px;background:var(--cream);padding:28px;border-radius:24px}
.quote-form label{display:grid;gap:8px;font-weight:800;font-size:14px}
.quote-form input,.quote-form select,.quote-form textarea{
  width:100%;border:1px solid #ccd7c9;background:white;border-radius:14px;padding:14px 15px;font:inherit;color:var(--ink)
}
.full{grid-column:1/-1}
.quote-form small{color:var(--muted)}
.footer{background:#081f12;color:white;padding:44px 0}
.footer-grid{display:grid;grid-template-columns:1.1fr .9fr 1fr;gap:28px;align-items:center}
.footer-grid>div{display:grid;gap:6px}
.footer-logo{width:220px;background:white;border-radius:14px;padding:8px}

@media (max-width: 920px){
  .nav{display:none}
  .cards{grid-template-columns:repeat(2,1fr)}
  .two-col,.contact-grid{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr 1fr}
  .gallery-large{grid-column:span 2}
  .footer-grid{grid-template-columns:1fr}
}
@media (max-width: 640px){
  .container{width:min(100% - 24px,1140px)}
  .site-header .btn-small{display:none}
  .brand img{width:150px}
  .hero{min-height:680px}
  .hero-content{padding:100px 0 48px}
  .hero p{font-size:18px}
  .hero-actions{flex-direction:column;align-items:stretch}
  .trust-strip{gap:10px 18px}
  .section{padding:72px 0}
  .cards{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr;grid-auto-rows:230px}
  .gallery-large{grid-column:auto;grid-row:auto}
  .section-head{align-items:start;flex-direction:column}
  .review-grid{grid-template-columns:1fr}
  .quote-form{grid-template-columns:1fr;padding:20px}
  .full{grid-column:auto}
}
