:root{
  --green-700:#1B5E20;
  --green-600:#2E7D32;
  --green-400:#66BB6A;
  --black:#0B0F0C;
  --white:#FFFFFF;
  --gray-50:#F7F8F7;
  --gray-100:#EEF1EF;
  --gray-200:#E0E6E2;
  --gray-700:#3A3F3B;
  --shadow: 0 10px 30px rgba(11,15,12,.10);
  --radius: 18px;
  --container: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height:1.55;
}
img{max-width:100%; height:auto; display:block}
a{color:inherit}
p{margin:0 0 1rem}
h1,h2,h3{font-family:Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; margin:0 0 .6rem; line-height:1.15}
h1{font-size: clamp(2rem, 4vw, 3.2rem)}
h2{font-size: clamp(1.5rem, 2.7vw, 2.2rem)}
h3{font-size: 1.15rem}

.container{max-width:var(--container); margin:0 auto; padding:0 20px}
.section{padding:72px 0}
.section.tight{padding:44px 0}

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{left:16px; top:16px; width:auto; height:auto; padding:10px 12px; background:#fff; border-radius:10px; box-shadow:var(--shadow); z-index:9999}

.topbar{
  background: var(--black);
  color: rgba(255,255,255,.92);
  font-size:.92rem;
}
.topbar .container{display:flex; gap:14px; justify-content:space-between; align-items:center; padding:10px 20px}
.topbar a{color:rgba(255,255,255,.92); text-decoration:none}
.topbar .pill{display:inline-flex; align-items:center; gap:8px; padding:6px 10px; border:1px solid rgba(255,255,255,.14); border-radius:999px}

header{
  position:sticky; top:0; z-index:1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none}
.brand img{width:190px; height:auto}
.navlinks{display:flex; gap:20px; align-items:center}
.navlinks a{font-weight:600; text-decoration:none; color: rgba(11,15,12,.86)}
.navlinks a:hover{color: var(--green-600)}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px; border-radius: 999px; border:1px solid transparent;
  font-weight:700; text-decoration:none; transition: transform .08s ease, box-shadow .2s ease, background .2s ease;
  white-space:nowrap;
}
.btn:active{transform:translateY(1px)}
.btn.primary{background: var(--green-600); color: var(--white); box-shadow: 0 10px 20px rgba(46,125,50,.22)}
.btn.primary:hover{background: var(--green-700)}
.btn.ghost{background: transparent; border-color: rgba(11,15,12,.18)}
.btn.ghost:hover{border-color: rgba(46,125,50,.55); color: var(--green-700)}
.btn.dark{background: var(--black); color: var(--white)}
.btn.dark:hover{filter: brightness(1.08)}
.btn.small{padding:10px 14px; font-size:.95rem}

.mobile-toggle{
  display:none;
  background: transparent; border:1px solid rgba(11,15,12,.18);
  border-radius: 12px; padding:10px 12px; cursor:pointer;
}

.hero{
  min-height: 74vh;
  display:grid;
  align-items:center;
  background:
    linear-gradient(90deg, rgba(11,15,12,.78) 0%, rgba(11,15,12,.55) 48%, rgba(11,15,12,.20) 100%),
    url("../img/hero.jpg") center/cover no-repeat;
  color: var(--white);
}
.hero .wrap{padding:74px 0}
.hero .kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px; border-radius:999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  font-weight:700;
}
.hero p{max-width: 56ch; color: rgba(255,255,255,.90); font-size:1.07rem}
.hero .actions{display:flex; flex-wrap:wrap; gap:12px; margin-top:18px}

.card{
  background: var(--white);
  border: 1px solid rgba(11,15,12,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.grid{display:grid; gap:18px}
.grid.cols-3{grid-template-columns: repeat(3, minmax(0, 1fr))}
.grid.cols-2{grid-template-columns: repeat(2, minmax(0, 1fr))}
@media (max-width: 940px){
  .grid.cols-3{grid-template-columns: 1fr}
  .grid.cols-2{grid-template-columns: 1fr}
}

.service-card{padding:20px}
.icon{
  width:44px; height:44px;
  border-radius: 14px;
  background: rgba(46,125,50,.12);
  display:grid; place-items:center;
  border:1px solid rgba(46,125,50,.22);
  margin-bottom:12px;
}
.service-card p{color: rgba(11,15,12,.72)}
.service-card a{color: var(--green-700); text-decoration:none; font-weight:800}
.service-card a:hover{text-decoration:underline}

.split{
  display:grid; gap:28px;
  grid-template-columns: 1.05fr .95fr;
  align-items:center;
}
@media (max-width: 980px){ .split{grid-template-columns:1fr} }

.media{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(11,15,12,.10);
  box-shadow: var(--shadow);
}
.media img{width:100%; height:100%; object-fit:cover}
.badges{display:flex; flex-wrap:wrap; gap:10px; margin-top:16px}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  background: var(--gray-50);
  border:1px solid rgba(11,15,12,.08);
  border-radius: 999px;
  padding:10px 12px;
  font-weight:700;
}
.badge svg{width:18px; height:18px; color: var(--green-600)}

.separator{
  padding:50px 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.92)),
    url("../img/grass.jpg") center/cover no-repeat;
  border-top: 1px solid rgba(11,15,12,.06);
  border-bottom: 1px solid rgba(11,15,12,.06);
}
.separator .row{display:flex; flex-wrap:wrap; gap:16px; align-items:center; justify-content:space-between}
.separator h2{margin:0}
.separator p{margin:0; color: rgba(11,15,12,.72)}

.checklist{display:grid; gap:10px; padding:0; margin:16px 0 0; list-style:none}
.checklist li{display:flex; gap:10px; align-items:flex-start; color: rgba(11,15,12,.78)}
.checklist svg{flex:0 0 auto; width:20px; height:20px; margin-top:2px; color: var(--green-600)}

.testimonial{padding:18px}
.stars{letter-spacing:1px; color: #0B0F0C}
.testimonial .name{font-weight:800; margin-top:8px}

.cta-strip{
  background: var(--black);
  color: rgba(255,255,255,.92);
  padding:48px 0;
}
.cta-strip .wrap{
  display:flex; gap:18px; justify-content:space-between; align-items:center; flex-wrap:wrap;
}
.cta-strip p{margin:0; color: rgba(255,255,255,.82)}
.cta-strip .btn.primary{box-shadow:none}

.page-hero{
  padding:64px 0;
  background:
    linear-gradient(0deg, rgba(11,15,12,.70), rgba(11,15,12,.70)),
    url("../img/yard.jpg") center/cover no-repeat;
  color: var(--white);
}
.breadcrumbs{color: rgba(255,255,255,.82); font-weight:700; font-size:.95rem}
.breadcrumbs a{color: rgba(255,255,255,.92); text-decoration:none}
.breadcrumbs a:hover{text-decoration:underline}
.page-hero p{max-width: 64ch; color: rgba(255,255,255,.90)}

.form{
  display:grid; gap:12px;
}
label{font-weight:800}
input, textarea, select{
  width:100%;
  padding:12px 14px;
  border-radius: 14px;
  border:1px solid rgba(11,15,12,.16);
  background: var(--white);
  font: inherit;
}
textarea{min-height: 140px; resize: vertical}
input:focus, textarea:focus, select:focus{outline: 3px solid rgba(102,187,106,.35); border-color: rgba(46,125,50,.55)}
.helper{font-size:.95rem; color: rgba(11,15,12,.70)}
.notice{
  padding:14px 16px;
  border-radius: 14px;
  background: rgba(46,125,50,.10);
  border: 1px solid rgba(46,125,50,.20);
  color: rgba(11,15,12,.82);
}

.gallery{
  display:grid;
  gap:14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px){ .gallery{grid-template-columns: repeat(3, minmax(0, 1fr))} }
@media (min-width: 1100px){ .gallery{grid-template-columns: repeat(4, minmax(0, 1fr))} }

.gallery .gallery-item{
  padding:0;
  border:0;
  background:transparent;
  cursor:pointer;
  border-radius: var(--radius);
  overflow:hidden;
  position:relative;
  border:1px solid rgba(11,15,12,.10);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.gallery .gallery-item:hover{
  transform: translateY(-2px);
  border-color: rgba(46,125,50,.35);
  box-shadow: 0 16px 40px rgba(11,15,12,.14);
}
.gallery .gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.gallery .cap{
  position:absolute; left:0; right:0; bottom:0;
  padding:10px 12px;
  background: linear-gradient(180deg, transparent, rgba(11,15,12,.70));
  color: rgba(255,255,255,.92);
  font-weight:800;
  font-size:.95rem;
}
.lightbox{
  position:fixed; inset:0; z-index:2000;
  background: rgba(0,0,0,.78);
  display:none;
  align-items:center; justify-content:center;
  padding:18px;
}
.lightbox.open{display:flex}
.lightbox .inner{
  max-width: 1100px;
  width: 100%;
}
.lightbox img{
  width:100%;
  max-height: 80vh;
  object-fit:contain;
  border-radius: var(--radius);
  background: #000;
}
.lightbox .bar{
  display:flex; justify-content:space-between; align-items:center; gap:12px;
  color:#fff; margin-top:10px;
}
.lightbox .bar .title{font-weight:800}
.lightbox .bar button{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.20);
  color:#fff;
  border-radius:999px;
  padding:10px 12px;
  cursor:pointer;
}
.lightbox .bar button:hover{background: rgba(255,255,255,.18)}

footer{
  background: var(--gray-50);
  border-top: 1px solid rgba(11,15,12,.06);
}
.footer-grid{
  display:grid; gap:18px;
  grid-template-columns: 1.4fr 1fr 1fr;
  padding:44px 0;
}
@media (max-width: 940px){ .footer-grid{grid-template-columns:1fr} }
.footer-grid a{color: rgba(11,15,12,.78); text-decoration:none}
.footer-grid a:hover{color: var(--green-700)}
.footer-bottom{
  padding:16px 0;
  border-top: 1px solid rgba(11,15,12,.08);
  color: rgba(11,15,12,.62);
  font-size:.95rem;
}
.small{font-size:.95rem; color: rgba(11,15,12,.70)}
hr.soft{border:0; border-top: 1px solid rgba(11,15,12,.08); margin:18px 0}

@media (max-width: 940px){
  .navlinks{display:none; position:absolute; top:64px; left:0; right:0; background:#fff; border-bottom:1px solid rgba(0,0,0,.06); padding:14px 20px; flex-direction:column; align-items:flex-start}
  header.open .navlinks{display:flex}
  .mobile-toggle{display:inline-flex}
  .brand img{width:170px}
}
