:root {
  --green: #2e7d32;
  --green-dark: #1f5c25;
  --ink: #111111;
  --muted: #5f6368;
  --surface: #f7f8f5;
  --white: #ffffff;
  --border: #e4e7e1;
  --shadow: 0 18px 50px rgba(17, 17, 17, 0.09);
  --radius-sm: .65rem;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --container: 1180px;
  --header-height: 76px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 1rem); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Manrope, Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid #f2b705; outline-offset: 3px; }
.skip-link {
  position: fixed; z-index: 9999; left: 1rem; top: -5rem;
  padding: .8rem 1rem; background: var(--ink); color: var(--white);
  border-radius: .5rem;
}
.skip-link:focus { top: 1rem; }
.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--soft { background: var(--surface); }
.eyebrow {
  margin: 0 0 .65rem; color: var(--green-dark); font-weight: 800;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; line-height: 1.1; letter-spacing: -.035em; }
h1 { font-size: clamp(2.45rem, 7vw, 5.6rem); max-width: 12ch; }
h2 { font-size: clamp(2rem, 4.4vw, 3.65rem); max-width: 16ch; }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.5rem); }
p { margin-top: 0; }
.lead { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 62ch; }
.section-heading { margin-bottom: 2.25rem; }
.section-heading.center { text-align: center; margin-inline: auto; }
.section-heading.center h2, .section-heading.center .lead { margin-inline: auto; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 48px; padding: .85rem 1.2rem; border: 1px solid transparent;
  border-radius: .8rem; text-decoration: none; font-weight: 800;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { color: var(--white); background: var(--green); box-shadow: 0 10px 25px rgba(46,125,50,.24); }
.btn--primary:hover { background: var(--green-dark); }
.btn--secondary { color: var(--green-dark); background: var(--white); border-color: var(--border); }
.btn--secondary:hover { border-color: var(--green); }
.text-link { color: var(--green-dark); font-weight: 800; text-underline-offset: .2em; }
.site-header {
  position: sticky; top: 0; z-index: 1000; min-height: var(--header-height);
  display: flex; align-items: center; background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(228,231,225,.9); backdrop-filter: blur(12px);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--header-height); }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; font-weight: 900; line-height: 1.1; }
.brand img { width: 48px; height: 48px; }
.brand span { max-width: 11rem; }
.nav-toggle {
  width: 48px; height: 48px; border: 1px solid var(--border); border-radius: .75rem;
  background: var(--white); display: grid; place-items: center;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ""; width: 22px; height: 2px; background: var(--ink); display: block;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span { margin: 5px 0; }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }
.site-nav {
  position: fixed; inset: var(--header-height) 0 auto 0; background: var(--white);
  border-bottom: 1px solid var(--border); padding: 1rem; transform: translateY(-120%);
  opacity: 0; visibility: hidden; transition: .25s ease;
}
.site-nav.is-open { transform: none; opacity: 1; visibility: visible; }
.site-nav ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .35rem; }
.site-nav a:not(.btn) { display: block; padding: .75rem; text-decoration: none; font-weight: 700; border-radius: .5rem; }
.site-nav a:not(.btn):hover { background: var(--surface); color: var(--green-dark); }
.nav-cta { margin-top: .5rem; width: 100%; }
.hero {
  position: relative; min-height: min(850px, calc(100vh - var(--header-height)));
  display: grid; align-items: end; overflow: hidden; color: var(--white); background: #19351d;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,21,12,.92) 0%, rgba(10,21,12,.72) 48%, rgba(10,21,12,.22) 100%),
    url("../images/hero/hero-lawn.jpg") center/cover no-repeat;
}
.hero-content { position: relative; z-index: 1; padding: clamp(5rem, 12vw, 9rem) 0 clamp(4rem, 8vw, 7rem); }
.hero .eyebrow { color: #cde9ce; }
.hero .lead { color: rgba(255,255,255,.86); max-width: 58ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.5rem 0; }
.trust-line { font-weight: 800; letter-spacing: .03em; }
.value-grid, .service-grid, .process-grid, .team-grid, .review-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.35rem; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); border-color: #bfd5c0; box-shadow: var(--shadow); }
.icon-box {
  width: 48px; height: 48px; display: grid; place-items: center;
  border-radius: .75rem; color: var(--green-dark); background: #eaf4e9; margin-bottom: 1rem;
}
.icon-box svg { width: 25px; height: 25px; }
.card p { color: var(--muted); margin-bottom: 0; }
.service-cta { margin-top: 2rem; text-align: center; }
.gallery { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .35s ease; }
.gallery a:hover img { transform: scale(1.025); }
.gallery figcaption { padding: .8rem 1rem; font-weight: 750; }
.split { display: grid; gap: 2rem; align-items: center; }
.media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); }
.media-frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.check-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .75rem; }
.check-list li { display: flex; gap: .7rem; align-items: flex-start; }
.check-list li::before { content: "✓"; flex: 0 0 auto; color: var(--green); font-weight: 900; }
.team-card { text-align: center; }
.team-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: .8rem; margin-bottom: 1rem; }
.team-card .role { color: var(--green-dark); font-weight: 800; margin-bottom: 0; }
.area-list { display: flex; flex-wrap: wrap; gap: .7rem; padding: 0; list-style: none; margin: 1.5rem 0; }
.area-list li { padding: .65rem .9rem; border-radius: 999px; background: var(--white); border: 1px solid var(--border); font-weight: 750; }
.step-number { font-size: 2.5rem; line-height: 1; font-weight: 900; color: #bdd8bf; margin-bottom: 1rem; }
.review-placeholder {
  border: 2px dashed #cdd2ca; padding: 2rem; border-radius: var(--radius);
  text-align: center; color: var(--muted); background: var(--surface);
}
.final-cta { background: var(--green-dark); color: var(--white); }
.final-cta .lead { color: rgba(255,255,255,.82); }
.final-cta-inner { display: grid; gap: 1.5rem; align-items: center; }
.site-footer { background: #0f1710; color: var(--white); padding: 4rem 0 1.5rem; }
.footer-grid { display: grid; gap: 2rem; }
.footer-title { font-weight: 900; margin-bottom: .75rem; }
.site-footer p, .site-footer address { color: rgba(255,255,255,.72); font-style: normal; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer-links a { color: rgba(255,255,255,.82); text-underline-offset: .2em; }
.socials { display: flex; gap: .65rem; flex-wrap: wrap; }
.social-link {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25); color: var(--white); transition: background .2s ease, transform .2s ease;
}
.social-link:hover { background: var(--green); transform: translateY(-2px); }
.social-link svg { width: 21px; height: 21px; fill: currentColor; }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.62); font-size: .92rem;
}
.legal-hero { background: var(--surface); padding: clamp(3rem, 7vw, 5.5rem) 0; border-bottom: 1px solid var(--border); }
.legal-wrap { width: min(100% - 2rem, 820px); margin-inline: auto; }
.legal-content { padding: 3rem 0 5rem; }
.legal-content h2 { font-size: clamp(1.5rem, 3vw, 2rem); max-width: none; margin-top: 2.5rem; }
.legal-content h3 { margin-top: 1.7rem; }
.legal-content p, .legal-content li { color: #303438; }
.legal-content a { color: var(--green-dark); font-weight: 750; }
.notice { padding: 1rem 1.1rem; border-left: 4px solid var(--green); background: #edf6ec; border-radius: .4rem; }
.error-page { min-height: 65vh; display: grid; place-items: center; text-align: center; padding: 4rem 1rem; }
.error-code { font-size: clamp(5rem, 20vw, 11rem); line-height: .8; font-weight: 950; color: #cfe2d0; }
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (min-width: 600px) {
  .value-grid, .service-grid, .team-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .final-cta-inner { grid-template-columns: 1fr auto; }
}
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav { position: static; transform: none; opacity: 1; visibility: visible; border: 0; padding: 0; background: transparent; }
  .site-nav ul { display: flex; align-items: center; gap: .15rem; }
  .site-nav a:not(.btn) { padding: .6rem .7rem; font-size: .94rem; }
  .nav-cta { margin: 0 0 0 .35rem; width: auto; }
  .value-grid { grid-template-columns: repeat(4, 1fr); }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card:last-child { grid-column: 2; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1.08fr .92fr; gap: clamp(3rem, 7vw, 6rem); }
  .split.reverse > :first-child { order: 2; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr .8fr .8fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .js .reveal { opacity: 1; transform: none; }
}
.review-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-stars {
  color: #f2b705;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
}

.review-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.7;
}

.review-author {
  margin: auto 0 0;
  font-weight: 800;
  color: var(--ink);
}

.review-source {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}