:root{
  --green:#123f2d;
  --green-dark:#0d3224;
  --cream:#f4efe2;
  --cream-2:#ede5d3;
  --gold:#d3ad48;
  --ink:#151511;
  --muted:#655e50;
  --white:#fffdf8;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:var(--cream);
  font-family:Arial, Helvetica, sans-serif;
  line-height:1.6;
}
h1,h2,h3{
  font-family:Georgia, 'Times New Roman', serif;
  line-height:1.05;
  margin:0;
}
a{color:inherit}
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  min-height:86px;
  padding:12px clamp(20px,5vw,70px);
  background:var(--green);
  display:flex;
  align-items:center;
  justify-content:space-between;
  box-shadow:0 8px 20px rgba(0,0,0,.12);
}
.brand img{
  width:92px;
  height:64px;
  object-fit:contain;
  background:#fff;
}
.site-nav{
  display:flex;
  gap:28px;
  align-items:center;
}
.site-nav a{
  text-decoration:none;
  color:var(--white);
  font-weight:700;
}
.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  background:none;
  border:0;
  padding:8px;
}
.menu-toggle span{
  display:block;
  height:3px;
  background:var(--white);
  margin:6px 0;
  border-radius:99px;
}
.hero{
  position:relative;
  min-height:650px;
  background:url('/.netlify/images?url=/assets/hero.png&w=1600&q=82') center/cover no-repeat;
  display:flex;
  align-items:center;
  padding:70px clamp(24px,7vw,110px);
  color:var(--white);
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(11,48,34,.86) 0%,rgba(11,48,34,.62) 48%,rgba(11,48,34,.25) 100%);
}
.hero-content{
  position:relative;
  z-index:1;
  max-width:760px;
}
.eyebrow,.section-kicker{
  letter-spacing:.14em;
  font-weight:800;
  color:var(--gold);
  margin:0 0 20px;
}
.hero h1{
  font-size:clamp(3rem,7vw,6.4rem);
  max-width:850px;
}
.hero-copy{
  font-size:clamp(1.08rem,2vw,1.45rem);
  max-width:760px;
  color:#f1eee5;
  margin:30px 0 32px;
}
.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:58px;
  padding:0 26px;
  border-radius:7px;
  text-decoration:none;
  font-weight:800;
  font-size:1.05rem;
  transition:.18s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn:focus-visible,.site-nav a:focus-visible,.brand:focus-visible,.menu-toggle:focus-visible{
  outline:3px solid var(--gold);
  outline-offset:4px;
}
.btn-gold{background:var(--gold);color:var(--green-dark)}
.btn-outline-light{border:2px solid var(--white);color:var(--white)}
.btn-green{background:var(--green);color:var(--white)}
.btn-outline-green{border:2px solid var(--green);color:var(--green)}
.trust-strip{
  background:var(--cream-2);
  padding:34px clamp(24px,7vw,110px);
  border-bottom:1px solid #dccda9;
}
.trust-title{
  text-align:center;
  color:var(--green);
  font-weight:800;
  font-size:1.15rem;
  margin:0 0 18px;
}
.trust-grid{
  max-width:1000px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  color:var(--muted);
  text-align:center;
}
.section{
  padding:85px clamp(24px,7vw,110px);
}
.section-light{background:#fbf7ef}
.section-cream{background:var(--cream-2)}
.section-green{background:var(--green);color:var(--white)}
.section h2{
  font-size:clamp(2.6rem,6vw,5.2rem);
  margin-bottom:24px;
}
.lead{
  color:var(--muted);
  font-size:1.25rem;
  max-width:760px;
  margin:0 0 38px;
}
.service-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
  max-width:1180px;
}
.service-card{
  background:var(--cream);
  border:1px solid #d8c89f;
  border-radius:22px;
  padding:30px;
}
.service-head{
  display:flex;
  gap:18px;
  justify-content:space-between;
  align-items:flex-start;
}
.service-card h3{
  font-size:2rem;
  max-width:70%;
}
.price{
  flex:0 0 auto;
  color:var(--gold);
  border:1px solid #d8c37c;
  border-radius:999px;
  padding:6px 13px;
  font-weight:800;
}
.service-card p{color:var(--muted)}
.price-note{
  margin-top:28px;
  max-width:900px;
  background:var(--cream);
  border:1px solid #d8c89f;
  border-radius:18px;
  padding:24px 28px;
}
.price-note p{margin:0 0 8px;color:var(--muted)}
.price-note strong{color:var(--green)}
.about-copy{max-width:900px;font-size:1.18rem;color:var(--muted)}
.about-copy p{margin:0 0 22px}
.cta-row.dark{margin-top:28px}
.small-note{color:var(--muted);margin-bottom:30px}
.area-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  max-width:900px;
}
.area-grid span{
  background:var(--cream);
  border:1px solid #d8c89f;
  border-radius:14px;
  padding:22px 20px;
  font-weight:800;
}
.contact-section p{
  color:#e6e0d3;
  max-width:760px;
  font-size:1.2rem;
}
.contact-section h2{max-width:850px}
.section-kicker.gold{color:var(--gold)}
.contact-number{
  color:var(--gold);
  font-size:2rem;
  font-weight:900;
  margin:20px 0 28px;
}
.site-footer{
  background:var(--green-dark);
  color:var(--white);
  padding:36px clamp(24px,7vw,110px);
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:22px;
}
.site-footer img{width:88px;background:white}
.site-footer div{display:flex;flex-direction:column}
.site-footer a{text-decoration:none;color:var(--gold);font-weight:800}
.site-footer small{opacity:.7}
@media (max-width:850px){
  .menu-toggle{display:block}
  .site-nav{
    position:absolute;
    top:86px;
    left:0;
    right:0;
    background:var(--green-dark);
    display:none;
    flex-direction:column;
    align-items:flex-start;
    padding:24px;
  }
  .site-nav.open{display:flex}
  .hero{
    min-height:600px;
    background-position:58% center;
    padding-top:80px;
    align-items:flex-start;
  }
  .hero-overlay{
    background:linear-gradient(180deg,rgba(13,50,36,.88) 0%,rgba(13,50,36,.74) 65%,rgba(13,50,36,.45) 100%);
  }
  .hero h1{font-size:3.4rem}
  .trust-grid{grid-template-columns:1fr 1fr;text-align:left}
  .service-grid{grid-template-columns:1fr}
  .area-grid{grid-template-columns:1fr 1fr}
  .site-footer{grid-template-columns:auto 1fr}
  .site-footer small{grid-column:1/-1}
}
@media (max-width:520px){
  .site-header{min-height:78px}
  .site-nav{top:78px}
  .brand img{width:82px;height:56px}
  .hero{min-height:640px;padding:56px 22px}
  .hero h1{font-size:3rem}
  .hero-copy{font-size:1.12rem}
  .btn{width:100%}
  .trust-grid{grid-template-columns:1fr}
  .section{padding:68px 22px}
  .section h2{font-size:3.15rem}
  .service-head{display:block}
  .service-card h3{max-width:none;margin-bottom:16px}
  .area-grid{grid-template-columns:1fr 1fr}
  .area-grid span{padding:18px 14px}
  .site-footer{grid-template-columns:1fr;text-align:left}
}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .btn{transition:none}
}
