:root {
  --green-950: #062918;
  --green-900: #0a3a23;
  --green-800: #0d4b2c;
  --green-700: #146233;
  --green-600: #2c7a32;
  --green-500: #4a9b22;
  --green-100: #eaf6e8;
  --green-050: #f5fbf3;
  --cream: #fbf8ef;
  --ink: #102016;
  --muted: #5f6f64;
  --line: rgba(16, 32, 22, 0.12);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 41, 24, 0.16);
  --radius: 22px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--green-050);
  line-height: 1.55;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(var(--max-width), calc(100% - 40px)); margin-inline: auto; }
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--green-900);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand img { width: 230px; height: auto; }
.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 750;
  color: var(--green-950);
}
.site-nav a { opacity: 0.88; }
.site-nav a:hover { color: var(--green-600); }
.header-call {
  background: var(--green-900);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 850;
  box-shadow: 0 10px 28px rgba(10, 58, 35, 0.18);
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--green-100);
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-900);
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(245, 251, 243, 0.98) 0%, rgba(245, 251, 243, 0.92) 35%, rgba(245, 251, 243, 0.45) 64%, rgba(245, 251, 243, 0.08) 100%),
    linear-gradient(0deg, rgba(6, 41, 24, 0.30), rgba(6, 41, 24, 0.04)),
    url("assets/images/hero-lawn-background.jpg") center right / cover no-repeat;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  left: -8vw;
  right: -8vw;
  bottom: -90px;
  height: 180px;
  background: var(--green-050);
  transform: rotate(-2deg);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 680px) 1fr;
  min-height: 780px;
  align-items: center;
  padding-block: 80px 130px;
}
.hero-card {
  max-width: 690px;
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,255,255,0.78));
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.84);
}
.hero-logo {
  width: min(520px, 100%);
  margin-bottom: 16px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--green-600);
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
h1, h2, h3 { color: var(--green-950); line-height: 1.08; margin: 0; }
h1 {
  font-size: clamp(2.25rem, 5vw, 4.75rem);
  letter-spacing: -0.055em;
  max-width: 660px;
}
h2 {
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  letter-spacing: -0.04em;
}
h3 { font-size: 1.25rem; }
.hero-copy {
  margin: 22px 0 26px;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  color: #263b2d;
  max-width: 620px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-actions.center { justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 14px;
  font-weight: 900;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green-900); color: var(--white); box-shadow: 0 12px 34px rgba(10,58,35,.22); }
.btn-secondary { background: var(--green-500); color: var(--white); box-shadow: 0 12px 34px rgba(74,155,34,.22); }
.btn-outline { border-color: rgba(10, 58, 35, 0.24); color: var(--green-950); background: rgba(255,255,255,.72); }
.btn.full { width: 100%; }
.trust-strip {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 18px 0 0;
  margin: 24px 0 0;
  border-top: 1px solid var(--line);
}
.trust-strip li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 850;
  color: var(--green-900);
  font-size: 0.95rem;
}
.trust-strip span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-700);
}

.quick-contact {
  background: var(--green-900);
  color: var(--white);
  margin-top: -56px;
  position: relative;
  z-index: 2;
}
.quick-contact-inner {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.quick-contact strong { font-size: 1.3rem; }
.quick-contact span { color: rgba(255,255,255,.82); }
.quick-contact a {
  margin-left: auto;
  color: var(--green-950);
  background: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 950;
}

.section { padding: 94px 0; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading p:not(.eyebrow), .large-copy {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 16px 0 0;
}
.section-heading-row {
  max-width: none;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}
.text-link { color: var(--green-700); font-weight: 900; white-space: nowrap; }

.services-section { background: var(--green-050); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 14px 40px rgba(6, 41, 24, 0.06);
}
.service-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: var(--green-100);
  border-radius: 16px;
  margin-bottom: 18px;
  font-size: 1.45rem;
}
.service-card p { color: var(--muted); margin: 12px 0 0; }

.split-section { background: var(--cream); }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 56px;
  align-items: center;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}
.feature-list div {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}
.feature-list strong { display: block; color: var(--green-950); font-weight: 950; }
.feature-list span { display: block; color: var(--muted); margin-top: 4px; }
.photo-stack {
  position: relative;
  min-height: 500px;
}
.photo-stack img {
  position: absolute;
  width: 78%;
  border-radius: 26px;
  box-shadow: var(--shadow);
  border: 8px solid var(--white);
}
.photo-one { top: 0; right: 0; }
.photo-two { bottom: 0; left: 0; }

.gallery-section { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.gallery-item {
  border: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 22px;
  cursor: pointer;
  background: var(--green-100);
  box-shadow: 0 14px 38px rgba(6, 41, 24, 0.09);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .25s ease;
}
.gallery-item:hover img { transform: scale(1.045); }
.video-card {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
  background: var(--green-950);
  color: var(--white);
  border-radius: 28px;
  padding: 28px;
  overflow: hidden;
}
.video-card h3 { color: var(--white); font-size: clamp(1.45rem, 3vw, 2.25rem); }
.video-card p:not(.eyebrow) { color: rgba(255,255,255,.78); }
.video-card video {
  width: 100%;
  border-radius: 20px;
  background: #000;
  box-shadow: 0 22px 50px rgba(0,0,0,.24);
}

.reviews-section { background: var(--green-050); }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 44px;
  align-items: start;
}
.empty-review-card {
  margin-top: 28px;
  background: var(--white);
  border: 1px dashed rgba(20, 98, 51, 0.45);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 14px 40px rgba(6, 41, 24, 0.06);
}
.stars { color: #f2b705; letter-spacing: 0.08em; font-size: 1.5rem; margin-bottom: 10px; }
.empty-review-card p { color: var(--muted); margin-bottom: 0; }

.quote-section { background: linear-gradient(135deg, var(--green-900), var(--green-700)); color: var(--white); }
.quote-section h2, .quote-section .eyebrow { color: var(--white); }
.quote-section .quote-copy p { color: rgba(255,255,255,.78); }
.quote-grid {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 44px;
  align-items: start;
}
.contact-card {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 28px;
}
.contact-card span, .contact-card small { display: block; color: rgba(255,255,255,.74); }
.contact-card a { display: inline-block; color: var(--white); font-size: 2rem; font-weight: 950; margin: 4px 0; }

.lead-form {
  background: var(--white);
  color: var(--ink);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.lead-form h3 { margin-bottom: 18px; }
.lead-form label {
  display: block;
  color: var(--green-950);
  font-weight: 850;
  margin-bottom: 14px;
}
.lead-form input, .lead-form select, .lead-form textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  border: 1px solid rgba(16, 32, 22, 0.18);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfcfa;
  outline: none;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(74,155,34,0.16);
}
.form-row.two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.form-note { color: var(--muted); font-size: 0.9rem; margin: 12px 0 0; }
.hidden { display: none; }

.site-footer {
  background: var(--green-950);
  color: rgba(255,255,255,.78);
  padding-top: 54px;
  padding-bottom: 78px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 34px;
}
.site-footer img { width: 240px; background: var(--white); border-radius: 16px; padding: 8px; }
.site-footer h3 { color: var(--white); margin-bottom: 10px; }
.site-footer a { color: var(--white); font-weight: 850; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 34px; padding-top: 18px; }

.mobile-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 120;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  overflow: hidden;
}
.mobile-cta a {
  flex: 1;
  padding: 14px 10px;
  text-align: center;
  font-weight: 950;
  color: var(--green-950);
}
.mobile-cta a:nth-child(2) { background: var(--green-100); }
.mobile-cta a:nth-child(3) { background: var(--green-900); color: var(--white); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(0,0,0,.82);
}
.lightbox.is-open { display: grid; }
.lightbox img {
  max-height: 86vh;
  border-radius: 18px;
  box-shadow: 0 20px 80px rgba(0,0,0,.38);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 2rem;
  cursor: pointer;
}

.thank-you-page { min-height: 100vh; background: linear-gradient(135deg, var(--green-950), var(--green-700)); }
.thank-you-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
}
.thank-you-card {
  width: min(720px, 100%);
  background: var(--white);
  border-radius: 32px;
  padding: 42px;
  text-align: center;
  box-shadow: var(--shadow);
}
.thank-you-card img { width: min(420px, 100%); margin: 0 auto 24px; }
.thank-you-card p { color: var(--muted); font-size: 1.08rem; }

@media (max-width: 1040px) {
  .header-call { display: none; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-grid, .split-grid, .reviews-grid, .quote-grid { grid-template-columns: 1fr; }
  .photo-stack { min-height: 420px; max-width: 700px; }
}

@media (max-width: 760px) {
  body { padding-bottom: 66px; }
  .container { width: min(100% - 28px, var(--max-width)); }
  .header-inner { min-height: 68px; }
  .brand img { width: 178px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    overflow: hidden;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 16px 18px; border-bottom: 1px solid var(--line); }
  .hero { min-height: auto; }
  .hero-grid { min-height: 680px; padding-block: 50px 100px; }
  .hero-card { padding: 24px; border-radius: 26px; }
  .hero-actions .btn { width: 100%; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .quick-contact { margin-top: -42px; }
  .quick-contact-inner { display: grid; padding-block: 18px; }
  .quick-contact a { margin-left: 0; text-align: center; }
  .section { padding: 68px 0; }
  .section-heading-row { display: block; }
  .text-link { display: inline-block; margin-top: 16px; }
  .service-grid, .gallery-grid, .feature-list, .form-row.two, .footer-grid { grid-template-columns: 1fr; }
  .photo-stack { min-height: auto; display: grid; gap: 18px; }
  .photo-stack img { position: static; width: 100%; }
  .video-card { grid-template-columns: 1fr; padding: 22px; }
  .lead-form { padding: 22px; }
  .contact-card a { font-size: 1.55rem; }
  .mobile-cta { display: flex; }
}

@media (max-width: 420px) {
  .trust-strip { grid-template-columns: 1fr; }
  .brand img { width: 154px; }
}
