/* styles.css (UPDATED FULL) — logo image overlays the green mark + trust chips */
:root{
  --brand:#5b7c2b;
  --brand2:#86c23f;
  --ink:#1f2933;
  --muted:#6b7280;
  --bg:#ffffff;
  --soft:#f6f8fb;
  --line:#e5e7eb;
  --shadow: 0 18px 50px rgba(16,24,40,.12);
  --shadow2: 0 12px 30px rgba(16,24,40,.12);
  --r: 16px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background: radial-gradient(900px 400px at 20% 0%, rgba(134,194,63,.08), transparent 60%),
              radial-gradient(900px 500px at 90% 10%, rgba(91,124,43,.08), transparent 60%),
              var(--bg);
  line-height:1.6;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
.container{width:min(1150px, 92%); margin:0 auto}

/* Call FAB */
.call-fab{
  position:fixed; z-index:80;
  left:16px; right:16px; bottom:16px;
  display:flex; align-items:center; justify-content:center; gap:10px;
  padding:14px 16px;
  border-radius:999px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color:#0b1208;
  font-weight:900;
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.45);
}
.call-fab__text{font-size:14px}
@media (min-width: 980px){
  .call-fab{left:auto; right:18px; width:auto}
}

/* Topbar */
.topbar{
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color:#0b1208;
  font-size:13px;
}
.topbar-inner{
  display:flex; justify-content:space-between; gap:12px;
  padding:10px 0;
}
.topbar a{font-weight:800; text-decoration:underline; text-decoration-color: rgba(0,0,0,.18)}
.topbar-right{white-space:nowrap}
@media (max-width: 720px){
  .topbar-inner{flex-direction:column; align-items:flex-start}
  .topbar-right{white-space:normal}
}

/* Header */
.header{
  position:sticky; top:0; z-index:60;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229,231,235,.7);
  transition: box-shadow .2s ease;
}
.header.is-elevated{ box-shadow: 0 10px 28px rgba(16,24,40,.10); }

.nav{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding: 14px 0;
}
.logo{display:flex; align-items:center; gap:12px}
.logo-mark{
  position:relative;
  width:42px; height:42px; border-radius:14px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.75), rgba(255,255,255,0) 50%),
              linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 10px 24px rgba(16,24,40,.12);
  overflow:hidden;
}
.logo-img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:contain;
  padding:6px; /* keeps logo clean inside badge */
  filter: drop-shadow(0 8px 12px rgba(0,0,0,.12));
}
.logo-name{
  font-family:"Playfair Display", serif;
  font-size:20px;
  font-weight:700;
  line-height:1.05;
}
.logo-tagline{font-size:12px; color:var(--muted); margin-top:2px}

.nav-links{
  display:flex; align-items:center; gap:18px;
}
.nav-links a{
  font-weight:700;
  font-size:14px;
  color:#111827;
  padding:10px 6px;
  position:relative;
}
.nav-links a::after{
  content:"";
  position:absolute; left:6px; right:6px; bottom:6px;
  height:2px; border-radius:99px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  transform: scaleX(0);
  transform-origin:left;
  transition: transform .2s ease;
}
.nav-links a:hover::after,
.nav-links a.is-active::after{transform: scaleX(1)}
.nav-cta{
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color:#0b1208 !important;
  padding:10px 14px;
  border-radius:999px;
  font-weight:900;
  box-shadow: 0 12px 28px rgba(16,24,40,.12);
}

/* Burger */
.burger{
  display:none;
  width:44px; height:44px;
  border-radius:12px;
  background: rgba(17,24,39,.04);
  border:1px solid rgba(17,24,39,.10);
  align-items:center; justify-content:center;
  gap:5px;
}
.burger span{
  display:block; width:18px; height:2px;
  background: rgba(17,24,39,.85);
  border-radius:99px;
  transition: transform .2s ease, opacity .2s ease;
}
.burger.is-open span:nth-child(1){transform: translateY(7px) rotate(45deg)}
.burger.is-open span:nth-child(2){opacity:0}
.burger.is-open span:nth-child(3){transform: translateY(-7px) rotate(-45deg)}

/* Mobile menu */
.mobile-menu{
  display:none;
  border-top: 1px solid rgba(229,231,235,.7);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
}
.mobile-menu.is-open{display:block}
.mobile-menu__inner{
  width:min(1150px, 92%);
  margin: 0 auto;
  padding: 12px 0 16px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.m-link{
  padding: 12px 12px;
  border-radius: 12px;
  background: rgba(17,24,39,.03);
  border: 1px solid rgba(17,24,39,.06);
  font-weight:800;
}
.m-cta{
  padding: 12px 12px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color:#0b1208;
  font-weight:900;
}
.m-ghost{
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.6);
  font-weight:800;
}

/* Hero */
.hero{
  position:relative;
  min-height: 78vh;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.hero-media{
  position:absolute; inset:0;
  background: url("images/hero.jpg") center/cover no-repeat;
  transform: scale(1.02);
}
.hero-overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(134,194,63,.18), transparent 60%),
    linear-gradient(90deg, rgba(0,0,0,.66), rgba(0,0,0,.42));
}
.hero-content{
  position:relative;
  color:#fff;
  max-width: 820px;
  padding: 64px 0 56px;
}
.hero-pill{
  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,.18);
  font-weight:800;
  font-size:12px;
  margin-bottom: 14px;
}
.hero-pill__dot{
  width:8px; height:8px; border-radius:99px;
  background: var(--brand2);
  box-shadow: 0 0 18px rgba(134,194,63,.55);
}
.hero h1{
  font-family:"Playfair Display", serif;
  font-size: clamp(38px, 5.3vw, 60px);
  line-height:1.04;
  margin-bottom: 14px;
}
.hero h1 span{
  background: linear-gradient(90deg, #bdf58a, #86c23f);
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}
.hero p{
  font-size: 16px;
  color: rgba(255,255,255,.88);
  max-width: 60ch;
  margin-bottom: 22px;
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight:900;
  border:1px solid transparent;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.btn:active{transform: translateY(1px)}
.btn-primary{
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color:#0b1208;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}
.btn-primary:hover{transform: translateY(-2px)}
.btn-secondary{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.22);
  color:#fff;
}
.btn-secondary:hover{transform: translateY(-2px); box-shadow: 0 18px 40px rgba(0,0,0,.18)}
.btn-ghost{
  background: rgba(17,24,39,.04);
  border-color: rgba(17,24,39,.10);
  color:#111827;
}
.btn-ghost:hover{transform: translateY(-2px); box-shadow: var(--shadow2)}
.hero-buttons{display:flex; flex-wrap:wrap; gap:12px}

/* Trust chips under hero buttons */
.trust-chips{
  margin-top: 18px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.tchip{
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.92);
  font-weight:800;
  font-size:12px;
}

/* Hero wave */
.hero-wave{
  position:absolute; left:0; right:0; bottom:-1px;
  height: 34px;
  background: linear-gradient(90deg, rgba(134,194,63,.35), rgba(91,124,43,.20));
  mask-image: radial-gradient(22px 18px at 22px 0, transparent 20px, black 21px);
  opacity:.75;
}

/* Sections */
.section{padding: 78px 0}
.section-light{
  background: linear-gradient(180deg, rgba(17,24,39,.02), rgba(17,24,39,0));
  border-top: 1px solid rgba(229,231,235,.9);
  border-bottom: 1px solid rgba(229,231,235,.9);
}
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:14px;
  margin-bottom: 22px;
}
.section-title{
  font-family:"Playfair Display", serif;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height:1.1;
}
.section-title.left{text-align:left}
.section-sub{color:var(--muted); margin-top:6px}
.section-sub.left{max-width: 55ch}
.chip{
  display:inline-flex; align-items:center; gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.7);
  box-shadow: var(--shadow2);
  font-weight:900;
}
.chip:hover{transform: translateY(-1px)}

/* Services grid */
.services-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.service-card{
  border-radius: 20px;
  overflow:hidden;
  border: 1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.85);
  box-shadow: var(--shadow2);
  transform: translateZ(0);
  transition: transform .16s ease, box-shadow .16s ease;
}
.service-card:hover{transform: translateY(-4px); box-shadow: var(--shadow)}
.service-img{
  height: 170px;
  background-size: cover;
  background-position: center;
}
.service-body{padding: 16px}
.service-body h3{font-size:16px; font-weight:900; margin-bottom:8px}
.service-body p{color: rgba(31,41,51,.82); font-size:13.5px; margin-bottom: 12px}
.service-link{font-weight:900; color: var(--brand)}
.service-link:hover{text-decoration:underline}

/* Trust row */
.trust-row{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.trust{
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.6);
}
.trust-icon{font-size:18px}
.trust-title{margin-top:8px; font-weight:900}
.trust-text{margin-top:6px; color: var(--muted); font-size:13px}

/* Split / Why */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items:start;
}
.checklist{list-style:none; margin-top: 14px; display:grid; gap:10px}
.check{
  display:inline-grid; place-items:center;
  width:22px; height:22px;
  border-radius: 8px;
  background: rgba(134,194,63,.18);
  border: 1px solid rgba(134,194,63,.30);
  margin-right:10px;
  color:#2c3a1c;
  font-weight:900;
}
.btn-row{margin-top: 16px; display:flex; flex-wrap:wrap; gap:12px}

.quote-box{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.85);
  box-shadow: var(--shadow2);
}
.quote-media{
  height: 220px;
  background: url("images/landscaping.jpg") center/cover no-repeat;
}
.quote-content{padding: 16px}
.quote-mark{
  font-family:"Playfair Display", serif;
  font-size: 46px;
  line-height: 1;
  color: rgba(91,124,43,.55);
}
.quote-content p{margin-top:-6px; color: rgba(31,41,51,.86)}
.quote-content strong{display:block; margin-top: 10px}

/* CTA */
.cta{
  padding: 70px 0;
  color:#fff;
  background:
    radial-gradient(900px 340px at 20% 0%, rgba(134,194,63,.35), transparent 60%),
    linear-gradient(135deg, rgba(91,124,43,.95), rgba(134,194,63,.80));
  border-top: 1px solid rgba(255,255,255,.14);
}
.cta-inner{text-align:center}
.cta-inner h2{
  font-family:"Playfair Display", serif;
  font-size: clamp(30px, 3.2vw, 40px);
}
.cta-inner p{margin-top:8px; color: rgba(255,255,255,.88)}
.cta-buttons{margin-top: 18px; display:flex; justify-content:center; gap:12px; flex-wrap:wrap}
.btn-white{
  background: rgba(255,255,255,.92);
  color:#0b1208;
}
.btn-white:hover{transform: translateY(-2px)}
.btn-glass{
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.22);
  color:#fff;
}
.btn-glass:hover{transform: translateY(-2px); box-shadow: 0 18px 40px rgba(0,0,0,.18)}
.cta-mini{
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.88);
  display:flex; justify-content:center; gap:10px; flex-wrap:wrap;
}
.cta-mini a{text-decoration:underline; text-decoration-color: rgba(255,255,255,.35)}

/* Footer */
.footer{
  padding: 34px 0 18px;
  border-top: 1px solid rgba(229,231,235,.9);
  background: rgba(255,255,255,.65);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 16px;
}
.footer-title{font-weight:900; margin-bottom: 10px}
.footer-link{display:block; padding: 6px 0; color: rgba(31,41,51,.85); font-weight:600}
.footer-link:hover{text-decoration:underline}
.muted{color: var(--muted)}
.footer-bottom{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(229,231,235,.9);
  display:flex; justify-content:space-between; gap: 10px;
}

/* Reveal animation */
[data-reveal]{
  opacity:0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.revealed{
  opacity:1 !important;
  transform: translateY(0) !important;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  [data-reveal]{transition:none}
  .service-card{transition:none}
  .btn{transition:none}
}

/* Responsive */
@media (max-width: 980px){
  .nav-links{display:none}
  .burger{display:flex}
  .services-grid{grid-template-columns: 1fr 1fr}
  .trust-row{grid-template-columns: 1fr}
  .footer-grid{grid-template-columns: 1fr 1fr}
  .hero{min-height:auto}
  .hero-content{padding: 56px 0 44px}
}
@media (max-width: 720px){
  .services-grid{grid-template-columns: 1fr}
  .split{grid-template-columns: 1fr}
  .footer-bottom{flex-direction:column; align-items:flex-start}
}