:root {
  --green: #86c51f;
  --green-dark: #6ca70c;
  --green-soft: #f3f9e7;
  --ink: #151515;
  --text: #444a45;
  --muted: #6d726e;
  --line: #e7ebe5;
  --surface: #ffffff;
  --surface-soft: #fafcfa;
  --shadow: 0 14px 35px rgba(28, 43, 21, .09);
  --shadow-soft: 0 8px 24px rgba(28, 43, 21, .07);
  --radius: 18px;
  --container: 1180px;
  --header-height: 104px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
svg { display: block; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 16px;
  border-radius: 8px;
  background: #111;
  color: #fff;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 82px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(225,230,223,.9);
  box-shadow: 0 5px 20px rgba(20,30,15,.035);
  backdrop-filter: blur(12px);
}
.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; width: 180px; }
.brand img { width: 180px; max-height: 82px; object-fit: contain; }
.primary-nav { display: flex; justify-content: center; align-items: center; gap: 30px; }
.nav-link { position: relative; padding: 14px 0; color: #202420; font-size: 15px; font-weight: 700; }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 2px;
  background: var(--green);
  transition: right .25s ease;
}
.nav-link:hover::after, .nav-link.active::after { right: 0; }
.nav-link:hover, .nav-link.active { color: var(--green-dark); }
.header-actions { display: flex; align-items: center; gap: 20px; }
.header-phone { display: inline-flex; align-items: center; gap: 9px; color: #171a17; font-weight: 800; white-space: nowrap; }
.header-phone svg { width: 19px; height: 19px; fill: var(--green); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { display: block; width: 27px; height: 2px; background: #171717; margin: 6px 0; transition: .25s ease; }

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 25px;
  border: 2px solid transparent;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, .nav-link:focus-visible, .header-phone:focus-visible, .social-row a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible {
  outline: 3px solid rgba(134,197,31,.35);
  outline-offset: 3px;
}
.btn-primary { background: linear-gradient(135deg, #91ce2b, #7fbd16); color: #fff; box-shadow: 0 10px 22px rgba(116,174,18,.19); }
.btn-primary:hover { background: linear-gradient(135deg, #83bf1d, #6da90c); box-shadow: 0 13px 27px rgba(116,174,18,.25); }
.btn-outline { color: var(--green-dark); border-color: var(--green); background: #fff; }
.btn-outline:hover { background: var(--green-soft); }
.btn-light { background: #fff; color: var(--green-dark); box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.header-quote { min-height: 46px; padding-inline: 20px; font-size: 14px; }

.hero {
  min-height: 570px;
  padding: 0;
  overflow: hidden;
  background: #fff;
}
.hero-inner { min-height: 570px; display: flex; align-items: center; }
.hero-copy { position: relative; z-index: 3; width: 50%; max-width: 590px; padding: 75px 0 80px; }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 13px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--green); }
.hero h1 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(42px, 4.7vw, 68px);
  line-height: 1.06;
  letter-spacing: -.045em;
}
.hero h1 span { color: var(--green); }
.hero-lead { max-width: 560px; margin: 0 0 27px; font-size: 18px; color: #4d534e; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.trust-line { display: flex; align-items: center; gap: 10px; margin: 22px 0 0; color: #333833; font-size: 14px; font-weight: 650; }
.trust-line svg { width: 20px; height: 20px; fill: var(--green); flex: 0 0 auto; }
.hero-media { position: absolute; inset: 0 0 0 42%; overflow: hidden; }
.hero-media picture, .hero-media img { width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: 54% center; }
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.98) 7%, rgba(255,255,255,.84) 18%, rgba(255,255,255,.3) 36%, transparent 56%);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 90px;
  z-index: 2;
  background: linear-gradient(0deg, rgba(255,255,255,.45), transparent);
}

.services { background: linear-gradient(180deg, #fff 0%, #fbfcfb 100%); border-top: 1px solid #eff1ee; }
.section-heading { max-width: 760px; margin: 0 auto 38px; text-align: center; }
.section-kicker { position: relative; justify-content: center; margin-bottom: 8px; }
.section-kicker::before, .section-kicker::after { content: ""; width: 28px; height: 2px; background: var(--green); }
.section-kicker.left { justify-content: flex-start; }
.section-kicker.left::before { display: none; }
.section-kicker.left::after { width: 40px; }
.section-heading h2, .about-copy h2, .service-area-copy h2, .contact-info h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(31px, 3vw, 44px);
  line-height: 1.14;
  letter-spacing: -.025em;
}
.section-heading p { margin: 10px 0 0; color: var(--muted); font-size: 17px; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  position: relative;
  min-height: 295px;
  padding: 34px 26px 30px;
  text-align: center;
  border: 1px solid #e3e8e1;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card::after { content: ""; position: absolute; left: 50%; bottom: 18px; width: 38px; height: 2px; background: var(--green); transform: translateX(-50%); }
.service-card:hover { transform: translateY(-7px); border-color: rgba(134,197,31,.5); box-shadow: var(--shadow); }
.service-icon { width: 72px; height: 72px; margin: 0 auto 12px; color: var(--green); }
.service-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 4px 0 10px; color: var(--ink); font-size: 19px; line-height: 1.25; }
.service-card p { margin: 0; color: #555b56; font-size: 15px; line-height: 1.55; }

.about { padding-top: 72px; padding-bottom: 55px; }
.about-grid { display: grid; grid-template-columns: minmax(0, .86fr) minmax(0, 1.35fr); align-items: center; gap: 72px; }
.about-image { position: relative; max-width: 500px; }
.about-image::after {
  content: "";
  position: absolute;
  right: -13px;
  bottom: -13px;
  width: 78%;
  height: 78%;
  z-index: -1;
  border-radius: 0 0 90px 0;
  background: linear-gradient(135deg, #a8db4d, #75b318);
}
.about-image img { width: 100%; aspect-ratio: 1.48; object-fit: cover; border-radius: 0 0 82px 0; box-shadow: var(--shadow); }
.about-copy p { margin: 17px 0 0; font-size: 17px; color: #555b56; }

.why { padding-top: 52px; padding-bottom: 66px; }
.why .section-heading { margin-bottom: 28px; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.why-item { position: relative; padding: 10px 28px 4px; text-align: center; }
.why-item + .why-item { border-left: 1px solid #dfe4dc; }
.why-icon { width: 55px; height: 55px; margin: 0 auto 12px; color: var(--green); }
.why-icon svg { width: 100%; height: 100%; fill: currentColor; }
.why-item h3 { margin: 0 0 6px; color: var(--ink); font-size: 16px; line-height: 1.3; }
.why-item p { margin: 0; color: #5e645f; font-size: 14px; line-height: 1.45; }

.service-area { padding: 0 0 58px; }
.service-area-card {
  min-height: 250px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.55fr);
  align-items: center;
  gap: 48px;
  padding: 25px 55px 25px 25px;
  border: 1px solid #edf0eb;
  border-radius: 16px;
  background: #fbfcfb;
  box-shadow: 0 10px 30px rgba(31,42,27,.04);
}
.map-wrap img { width: 100%; max-height: 200px; object-fit: cover; border-radius: 12px; }
.service-area-copy p { margin: 12px 0 0; font-size: 17px; }

.contact { padding: 0 0 0; }
.contact-card {
  display: grid;
  grid-template-columns: .75fr 1.65fr;
  gap: 48px;
  padding: 38px 48px;
  border: 1px solid #dde3db;
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.contact-info { padding-right: 34px; border-right: 1px solid #e4e8e2; }
.contact-info p { margin: 12px 0 20px; color: #606660; }
.contact-list { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; }
.contact-list li { display: flex; align-items: center; gap: 10px; min-width: 0; color: #171a17; font-weight: 750; }
.contact-list svg { width: 20px; height: 20px; fill: var(--green); flex: 0 0 auto; }
.contact-list a { overflow-wrap: anywhere; }
.contact-list a:hover { color: var(--green-dark); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 14px; }
.field { min-width: 0; }
.field-full { grid-column: 1 / -1; }
.field label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
input, select, textarea {
  width: 100%;
  border: 1px solid #dbe1d8;
  border-radius: 6px;
  background: #fff;
  color: #222;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input, select { min-height: 48px; padding: 10px 14px; }
textarea { min-height: 124px; padding: 13px 14px; resize: vertical; }
input::placeholder, textarea::placeholder { color: #8a908a; }
input:focus, select:focus, textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(134,197,31,.11); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #cc3434; box-shadow: 0 0 0 4px rgba(204,52,52,.08); }
.hp-field { position: absolute !important; left: -99999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-submit { width: 100%; margin-top: 14px; min-height: 49px; }
.button-loader { display: none; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
.form-submit.loading .button-loader { display: inline-block; }
.form-submit.loading .button-label { opacity: .75; }
.form-status { min-height: 24px; margin: 10px 0 0; font-size: 14px; font-weight: 700; }
.form-status.success { color: #367b0a; }
.form-status.error { color: #b72929; }
@keyframes spin { to { transform: rotate(360deg); } }

.final-cta { margin-top: 48px; background: linear-gradient(90deg, rgba(42,70,12,.88), rgba(73,121,16,.72)), url('../images/cta-lawn.webp') center / cover no-repeat; color: #fff; }
.final-cta-inner { min-height: 116px; display: grid; grid-template-columns: 1.4fr .8fr; align-items: center; gap: 40px; padding-block: 24px; }
.final-cta h2 { margin: 0; max-width: 720px; font-size: clamp(27px, 3vw, 40px); line-height: 1.12; letter-spacing: -.02em; }
.final-cta .btn { justify-self: end; min-width: 275px; }

.site-footer { padding: 32px 0 20px; background: #fff; border-top: 1px solid #e8ece6; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .75fr 1fr .65fr; gap: 48px; align-items: start; }
.footer-brand img { width: 190px; max-height: 112px; object-fit: contain; }
.footer-brand p { margin: 8px 0 0 18px; font-size: 13px; line-height: 1.55; color: #606660; }
.footer-column { display: flex; flex-direction: column; gap: 5px; }
.footer-column h3 { margin: 5px 0 10px; color: #1c1f1c; font-size: 15px; }
.footer-column a { color: #555b56; font-size: 13px; }
.footer-column a:hover { color: var(--green-dark); }
.social-row { display: flex; gap: 10px; }
.social-row a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: #fff; }
.social-row svg { width: 20px; height: 20px; fill: currentColor; }
.footer-bottom { margin-top: 24px; padding-top: 14px; border-top: 1px solid #e8ece6; text-align: center; }
.footer-bottom p { margin: 0; color: #707670; font-size: 13px; }

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 25px rgba(68,104,15,.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s ease;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  :root { --header-height: 92px; }
  .header-inner { grid-template-columns: 165px 1fr auto; gap: 18px; }
  .brand, .brand img { width: 155px; }
  .primary-nav { gap: 20px; }
  .header-phone span { display: none; }
  .hero-copy { width: 54%; }
  .hero-media { left: 47%; }
  .service-card { padding-inline: 20px; }
  .contact-card { grid-template-columns: .85fr 1.5fr; gap: 32px; padding: 34px; }
}

@media (max-width: 900px) {
  :root { --header-height: 82px; }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 68px 0; }
  .header-inner { grid-template-columns: 145px 1fr auto; }
  .brand, .brand img { width: 140px; max-height: 72px; }
  .menu-toggle { display: block; justify-self: end; z-index: 1002; }
  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    z-index: 1001;
    display: grid;
    gap: 0;
    padding: 16px 22px 26px;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 35px rgba(20,30,15,.13);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: .25s ease;
  }
  .primary-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-link { padding: 13px 4px; border-bottom: 1px solid #eef1ed; }
  .nav-link::after { bottom: 0; }
  .header-actions { margin-left: auto; }
  .header-phone { display: none; }
  .header-quote { min-height: 42px; padding-inline: 15px; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .hero { min-height: auto; padding-top: 0; }
  .hero-inner { min-height: auto; display: block; padding-top: 365px; }
  .hero-media { inset: 0 0 auto 0; height: 385px; }
  .hero-media::before { background: linear-gradient(0deg, #fff 0%, rgba(255,255,255,.25) 30%, transparent 58%); }
  .hero-copy { width: 100%; max-width: 720px; padding: 35px 0 65px; }
  .hero h1 { max-width: 720px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 45px; grid-template-columns: .95fr 1.15fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .why-item:nth-child(3) { border-left: 0; }
  .service-area-card { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
  .map-wrap { order: 2; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-info { padding: 0 0 26px; border-right: 0; border-bottom: 1px solid #e4e8e2; }
  .final-cta-inner { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .final-cta h2 { margin-inline: auto; }
  .final-cta .btn { justify-self: center; }
  .footer-grid { grid-template-columns: 1.15fr 1fr 1fr; }
  .footer-social { grid-column: 2 / 3; }
}

@media (max-width: 640px) {
  :root { --header-height: 74px; }
  body { font-size: 15px; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .section { padding: 56px 0; }
  .header-inner { grid-template-columns: 118px 1fr auto; gap: 8px; }
  .brand, .brand img { width: 112px; max-height: 62px; }
  .header-quote { display: none; }
  .hero-inner { padding-top: 280px; }
  .hero-media { height: 305px; }
  .hero-media img { object-position: 58% center; }
  .hero-copy { padding: 20px 0 55px; }
  .eyebrow { font-size: 10px; }
  .hero h1 { font-size: 38px; }
  .hero-lead { font-size: 16px; }
  .hero-buttons { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-buttons .btn { padding-inline: 12px; }
  .trust-line { align-items: flex-start; }
  .section-heading { margin-bottom: 28px; }
  .section-heading h2, .about-copy h2, .service-area-copy h2, .contact-info h2 { font-size: 31px; }
  .section-heading p { font-size: 15px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; padding-bottom: 42px; }
  .about-grid { grid-template-columns: 1fr; gap: 34px; }
  .about-image { max-width: none; margin-right: 12px; }
  .about-copy p { font-size: 15px; }
  .why-grid { grid-template-columns: 1fr; gap: 0; }
  .why-item { padding: 24px 16px; }
  .why-item + .why-item { border-left: 0; border-top: 1px solid #e4e8e2; }
  .service-area { padding-top: 0; }
  .service-area-card { padding: 20px; }
  .contact-card { padding: 27px 20px; gap: 25px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .final-cta { margin-top: 35px; }
  .final-cta-inner { min-height: 160px; }
  .final-cta .btn { min-width: 0; width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-social { grid-column: auto; }
  .footer-brand p { margin-left: 8px; }
  .back-to-top { right: 14px; bottom: 14px; }
}

@media (max-width: 390px) {
  .hero-buttons { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-social { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
