:root {
  --green-950: #102419;
  --green-800: #2f6237;
  --green-600: #4f8d43;
  --leaf: #b9d97a;
  --cream: #f4f2e9;
  --mist: #e9efe6;
  --ink: #142218;
  --muted: #647463;
  --glass: rgba(255, 255, 255, 0.72);
  --radius: 28px;
  --shadow: 0 24px 70px rgba(16, 36, 25, 0.18);
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

body::selection {
  background: var(--leaf);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 20;
  width: min(1180px, calc(100vw - 36px));
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(244, 242, 233, 0.68);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  box-shadow: 0 14px 50px rgba(20, 34, 24, 0.08);
}

.brand {
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 220px;
  line-height: 1;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  font-size: 0.92rem;
  color: rgba(20, 34, 24, 0.76);
}

.desktop-nav a,
.header-call,
.btn {
  transition: transform 260ms ease, background 260ms ease, color 260ms ease;
}

.desktop-nav a:hover,
.header-call:hover,
.btn:hover {
  transform: translateY(-2px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-rating {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 7px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 12px 30px rgba(20, 34, 24, .08);
  backdrop-filter: blur(12px);
}

.header-rating img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.header-rating > span {
  color: var(--green-950);
  font-weight: 900;
}

.mini-stars {
  display: flex;
  gap: 1px;
}

.mini-stars i {
  display: block;
  color: #d8a53a;
  font-size: .76rem;
  font-style: normal;
  animation: headerStarPulse 1800ms ease-in-out infinite;
}

.mini-stars i:nth-child(2) { animation-delay: 150ms; }
.mini-stars i:nth-child(3) { animation-delay: 300ms; }
.mini-stars i:nth-child(4) { animation-delay: 450ms; }
.mini-stars i:nth-child(5) { animation-delay: 600ms; }

.header-call,
.menu-button {
  border: 0;
  border-radius: 999px;
  color: white;
  background: linear-gradient(180deg, #4d7f43, #2b5f32);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.36), 0 10px 24px rgba(47, 98, 55, 0.2);
}

.header-call {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 8px 0 22px;
  font-weight: 800;
}

.header-call span,
.btn span {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  color: var(--green-950);
}

.menu-button {
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  align-items: center;
  padding: 150px max(6vw, 28px) 70px;
}

.hero-media,
.hero-image {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-image {
  background-position: center;
  background-size: cover;
}

.hero-before {
  background-image:
    linear-gradient(90deg, rgba(16, 36, 25, 0.62), rgba(244, 242, 233, 0.04)),
    url("images/hero-garden-before.png");
  filter: saturate(0.82) blur(.15px) brightness(0.76) contrast(1.08);
  transform: scale(1.04);
}

.hero-after {
  background-image: linear-gradient(90deg, rgba(16, 36, 25, 0.35), rgba(244, 242, 233, 0.05)), url("https://images.unsplash.com/photo-1758922565071-014462d53878?auto=format&fit=crop&fm=jpg&q=78&w=2400");
  filter: saturate(1.42) brightness(1.08) contrast(1.08);
  clip-path: inset(0 100% 0 0);
  animation: lawnReveal 4.6s 1.2s cubic-bezier(.58, .05, .18, 1) forwards;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(244, 242, 233, 0.38), rgba(16, 36, 25, 0.18));
}

.mower-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.96), transparent);
  opacity: 0;
  filter: drop-shadow(0 0 18px rgba(255,255,255,.8));
  animation: mowerSweep 4.6s 1.2s cubic-bezier(.58, .05, .18, 1) forwards;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  color: white;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 22px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--green-950);
  font-size: 0.86rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

h1 {
  max-width: 760px;
  font-size: clamp(4.6rem, 10vw, 9.5rem);
  text-wrap: balance;
}

.hero-content p {
  width: min(610px, 100%);
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.55;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 0;
  border-radius: 999px;
  padding: 0 10px 0 24px;
  cursor: pointer;
  font-weight: 900;
}

.btn.primary {
  color: white;
  background: linear-gradient(180deg, #5d914e, #2f6237);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.35), 0 18px 40px rgba(47, 98, 55, 0.32);
}

.btn.secondary {
  background: rgba(255,255,255,.72);
  color: var(--green-950);
  backdrop-filter: blur(12px);
}

.btn.whatsapp {
  color: #0d2d19;
  background: #25d366;
  box-shadow: inset 0 1px 1px rgba(255,255,255,.42), 0 18px 40px rgba(37, 211, 102, 0.24);
}

.contact-whatsapp {
  width: fit-content;
  margin-top: 20px;
}

.proof-card {
  position: absolute;
  right: max(4vw, 24px);
  bottom: 38px;
  z-index: 2;
  width: min(360px, calc(100vw - 44px));
  padding: 24px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 24px;
  background: rgba(244, 242, 233, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.stars {
  color: var(--green-800);
  letter-spacing: 0.08em;
}

.proof-card p {
  margin: 12px 0 16px;
  line-height: 1.45;
}

.proof-card span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

section:not(.hero) {
  padding: 96px max(6vw, 24px);
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 28px !important;
  padding-bottom: 34px !important;
  background: #edf3e6;
}

.trust-stats article {
  min-height: 156px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  text-align: center;
  border: 1px solid rgba(58, 123, 65, .14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0, rgba(196, 222, 125, .36), transparent 58%),
    rgba(255, 255, 255, .68);
  box-shadow: 0 24px 70px rgba(16, 36, 25, .1);
}

.trust-stats strong {
  display: block;
  color: var(--green-950);
  font-size: clamp(3.6rem, 7vw, 7rem);
  line-height: .78;
  letter-spacing: -.07em;
}

.stat-number {
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
}

.trust-stats article > span {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .04em;
  line-height: 1.16;
  text-transform: uppercase;
}

.intro,
.contact {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 50px;
  align-items: start;
}

.section-kicker {
  background: rgba(79, 141, 67, 0.1);
  color: var(--green-800);
}

h2 {
  max-width: 980px;
  font-size: clamp(3.2rem, 7vw, 7.2rem);
}

.intro p,
.contact p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.6;
}

.care-process {
  grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr);
  align-items: center;
  overflow: hidden;
}

.process-copy {
  position: sticky;
  top: 140px;
  align-self: start;
  display: grid;
  gap: 22px;
}

.process-copy .section-kicker {
  margin-bottom: 0;
}

.process-copy p {
  max-width: 520px;
}

.process-copy .btn {
  width: fit-content;
}

.care-timeline {
  position: relative;
  display: grid;
  gap: clamp(16px, 2.3vw, 26px);
  padding: 22px 0;
}

.care-timeline::before {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 50%;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(47, 98, 55, .24), transparent);
  transform: translateX(-50%);
}

.care-timeline::after {
  content: "";
  position: absolute;
  top: 34px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 12px rgba(185, 217, 122, .16), 0 18px 42px rgba(47, 98, 55, .22);
  opacity: 0;
  transform: translate(-50%, 0) scale(.7);
}

.care-process.in-view .care-timeline::after {
  animation: timelinePulse 3200ms cubic-bezier(.2,.7,.2,1) 320ms forwards;
}

.timeline-step {
  position: relative;
  width: min(360px, calc(50% - 30px));
  min-height: 170px;
  display: grid;
  align-content: end;
  padding: clamp(20px, 2.2vw, 26px);
  border: 1px solid rgba(47, 98, 55, .14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 8%, rgba(185, 217, 122, .34), transparent 32%),
    rgba(255,255,255,.78);
  box-shadow: 0 18px 48px rgba(16, 36, 25, .1);
  opacity: 0;
  transform: translateX(-70px) translateY(24px);
  transition: opacity 760ms ease, transform 900ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms ease;
}

.timeline-step:nth-child(even) {
  justify-self: end;
  transform: translateX(70px) translateY(24px);
}

.timeline-step::before {
  content: "";
  position: absolute;
  top: 34px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green-800);
  box-shadow: 0 0 0 8px rgba(79, 141, 67, .12);
}

.timeline-step:nth-child(odd)::before {
  right: -37px;
}

.timeline-step:nth-child(even)::before {
  left: -37px;
}

.timeline-step span {
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--green-800);
  background: rgba(79, 141, 67, .1);
  font-size: .8rem;
  font-weight: 900;
}

.timeline-step h3 {
  color: var(--green-950);
  font-size: clamp(1.65rem, 2.45vw, 2.55rem);
  line-height: .95;
}

.timeline-step p {
  margin-top: 10px;
  color: var(--muted);
  font-size: clamp(.95rem, 1vw, 1.05rem);
  line-height: 1.55;
}

.timeline-step.step-visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.timeline-step:hover {
  box-shadow: 0 24px 60px rgba(16, 36, 25, .14);
  transform: translateY(-4px);
}

.care-plans {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(18px, 3vw, 30px);
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(47, 98, 55, .14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 10%, rgba(185, 217, 122, .3), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,.88), rgba(233,239,230,.74));
  box-shadow: var(--shadow);
}

.plan-visual {
  display: grid;
  gap: 16px;
}

.calendar-card,
.plan-summary {
  border: 1px solid rgba(47, 98, 55, .12);
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 16px 36px rgba(16, 36, 25, .08);
}

.calendar-card {
  padding: 22px;
}

.calendar-card > span {
  display: block;
  margin-bottom: 16px;
  color: var(--green-950);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
  line-height: .9;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.calendar-grid i {
  aspect-ratio: 1;
  border-radius: 10px;
  background: rgba(47, 98, 55, .09);
}

.calendar-grid i.visit {
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.9) 0 22%, transparent 23%),
    var(--green-800);
  box-shadow: 0 10px 22px rgba(47, 98, 55, .24);
  animation: visitPulse 1800ms ease-in-out infinite;
}

.calendar-grid i.visit:nth-of-type(12) {
  animation-delay: 160ms;
}

.calendar-grid i.visit:nth-of-type(22) {
  animation-delay: 320ms;
}

.plan-summary {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.plan-summary span {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--green-950);
  background: rgba(185, 217, 122, .42);
  font-size: .82rem;
  font-weight: 900;
}

.plan-summary strong {
  color: var(--green-950);
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  line-height: 1;
}

.plan-summary p {
  min-height: 80px;
  color: var(--muted);
}

.plan-options {
  display: grid;
  gap: 12px;
}

.plan-options button:not(.btn) {
  display: grid;
  gap: 5px;
  min-height: 92px;
  border: 1px solid rgba(47, 98, 55, .14);
  border-radius: 24px;
  padding: 18px 20px;
  color: var(--green-950);
  background: rgba(255,255,255,.66);
  cursor: pointer;
  text-align: left;
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.plan-options button:not(.btn):hover,
.plan-options button:not(.btn).active {
  background: rgba(255,255,255,.94);
  box-shadow: 0 16px 34px rgba(16, 36, 25, .12);
  transform: translateY(-2px);
}

.plan-options button:not(.btn).active {
  border-color: rgba(47, 98, 55, .4);
}

.plan-options span {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 900;
}

.plan-options strong {
  color: var(--muted);
}

.care-plans.is-changing .plan-summary {
  animation: resultPulse 420ms cubic-bezier(.2,.8,.2,1);
}

.garden-planner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(18px, 3vw, 30px);
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(47, 98, 55, .14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 10%, rgba(185, 217, 122, .34), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,.86), rgba(233,239,230,.74));
  box-shadow: var(--shadow);
}

.garden-planner::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(47, 98, 55, .1);
  border-radius: calc(var(--radius) - 10px);
  pointer-events: none;
}

.planner-preview,
.planner-content,
.check-topline,
.check-result {
  position: relative;
  z-index: 1;
}

.planner-preview {
  min-height: 380px;
  display: grid;
  align-content: end;
  gap: 14px;
}

.garden-bed {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid rgba(47, 98, 55, .14);
  border-radius: 30px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255,255,255,.72), transparent 20%),
    linear-gradient(135deg, #395b2f 0 26%, #799a45 26% 55%, #d7c08f 55% 69%, #5c7536 69%);
  box-shadow: inset 0 0 70px rgba(16, 36, 25, .18);
}

.garden-bed::before,
.garden-bed::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255,255,255,.28);
}

.garden-bed::before {
  width: 220px;
  height: 74px;
  left: -48px;
  top: 46px;
  transform: rotate(-18deg);
}

.garden-bed::after {
  width: 180px;
  height: 58px;
  right: -30px;
  bottom: 38px;
  transform: rotate(-22deg);
}

.patch {
  position: absolute;
  border-radius: 999px;
}

.patch.lawn {
  width: 58%;
  height: 42%;
  left: 13%;
  bottom: 11%;
  background: linear-gradient(135deg, rgba(185,217,122,.5), rgba(47,98,55,.42));
}

.patch.bed {
  width: 34%;
  height: 54%;
  right: 8%;
  top: 9%;
  background:
    radial-gradient(circle at 30% 35%, rgba(232, 112, 88, .82) 0 7%, transparent 8%),
    radial-gradient(circle at 62% 48%, rgba(245, 204, 101, .9) 0 6%, transparent 7%),
    radial-gradient(circle at 52% 28%, rgba(255,255,255,.86) 0 5%, transparent 6%),
    rgba(54, 112, 64, .74);
}

.patch.path {
  width: 70%;
  height: 18%;
  left: 14%;
  top: 43%;
  background: rgba(245, 235, 204, .74);
  transform: rotate(-16deg);
}

.care-sweep {
  position: absolute;
  inset: -10% auto -10% -40%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.36), transparent);
  transform: skewX(-14deg);
  animation: careSweep 4.8s cubic-bezier(.45,0,.2,1) infinite;
}

.planner-meter {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 20px;
  color: var(--green-950);
  background: rgba(255,255,255,.72);
}

.planner-meter span {
  color: var(--muted);
  font-weight: 900;
}

.planner-meter strong {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.check-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.check-topline span,
.check-result span,
.check-result small {
  color: var(--muted);
  font-size: .84rem;
  font-weight: 800;
}

.check-topline strong {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--green-950);
  background: rgba(185, 217, 122, .5);
}

.garden-planner p {
  position: relative;
  z-index: 1;
  min-height: 88px;
  margin-bottom: 22px;
}

.check-options {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.check-options button {
  min-height: 42px;
  border: 1px solid rgba(47, 98, 55, .14);
  border-radius: 999px;
  padding: 0 15px;
  color: var(--green-950);
  background: rgba(255,255,255,.7);
  cursor: pointer;
  font-weight: 900;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.check-options button:hover,
.check-options button.active {
  color: white;
  background: var(--green-800);
  box-shadow: 0 12px 26px rgba(47, 98, 55, .2);
  transform: translateY(-2px);
}

.check-result {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(16, 36, 25, .92);
  color: white;
}

.check-result strong {
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1;
}

.check-result small {
  color: rgba(255,255,255,.68);
}

.garden-planner.is-changing .check-result,
.garden-planner.is-changing .garden-bed {
  animation: resultPulse 420ms cubic-bezier(.2,.8,.2,1);
}

.before-after,
.process,
.testimonials,
.service-areas {
  background: #edf3e6;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.proof-switcher {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}

.proof-option {
  min-width: 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(16, 36, 25, .1);
  border-radius: 999px;
  padding: 8px 16px 8px 8px;
  color: var(--green-950);
  background: rgba(255, 255, 255, .66);
  box-shadow: 0 16px 40px rgba(16, 36, 25, .08);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.proof-option:hover,
.proof-option.active {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 24px 54px rgba(16, 36, 25, .14);
}

.proof-option.active {
  border-color: rgba(58, 123, 65, .28);
}

.proof-option strong {
  overflow: hidden;
  font-size: .9rem;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.proof-thumb {
  width: 72px;
  aspect-ratio: 1.25;
  border-radius: 999px;
  background-image: linear-gradient(90deg, rgba(16, 36, 25, .16), rgba(255,255,255,.02)), var(--thumb-image);
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.42);
}

.yard-slider {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
}

.yard-img {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}

.yard-dry {
  background-image:
    linear-gradient(120deg, rgba(31, 24, 18, .2), rgba(16, 36, 25, .16)),
    var(--before-image, url("images/proof-garden-before.png"));
  filter: saturate(.62) contrast(1.08) brightness(.82);
}

.yard-fresh {
  background-image:
    radial-gradient(circle at 18% 12%, rgba(255, 222, 126, .2), transparent 28%),
    radial-gradient(circle at 86% 68%, rgba(180, 235, 91, .18), transparent 34%),
    linear-gradient(120deg, rgba(16, 36, 25, .02), rgba(185, 217, 122, .06)),
    var(--after-image, url("images/proof-garden-after.jpg"));
  clip-path: inset(0 50% 0 0);
  filter: saturate(1.18) contrast(1.04) brightness(1.04);
}

.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  border: 0;
  background: white;
  cursor: ew-resize;
  touch-action: none;
  transform: translateX(-50%);
  box-shadow: 0 0 0 999px transparent, 0 0 30px rgba(255,255,255,.9);
}

.slider-handle::after {
  content: "↔";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: var(--green-950);
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%);
}

.services {
  position: relative;
  min-height: 420vh;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(18px, 3vw, 46px);
  align-items: start;
}

.services.reveal-section {
  opacity: 1;
  transform: none;
}

.services .section-heading {
  position: sticky;
  top: 132px;
  margin-bottom: 0;
}

.service-grid {
  position: sticky;
  top: 118px;
  min-height: min(600px, calc(100vh - 138px));
  min-height: min(600px, calc(100svh - 138px));
  perspective: 1400px;
  isolation: isolate;
}

.service-card,
.process-track article,
.testimonial-wall article,
.quote-form,
.quote-modal {
  border: 1px solid rgba(47, 98, 55, 0.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
  box-shadow: 0 16px 44px rgba(16, 36, 25, 0.08);
}

.service-card {
  position: absolute;
  inset: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(26px, 4vw, 48px);
  overflow: hidden;
  transform: translateY(calc(var(--stack-distance, 0) * 42px)) scale(calc(1 - min(max(var(--stack-distance, 0), 0), 1) * .045));
  opacity: var(--stack-opacity, 1);
  z-index: var(--stack-z, 1);
  will-change: transform, opacity;
  transition: box-shadow 260ms ease, filter 260ms ease;
}

.service-card.service-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:nth-child(1) {
  --stack-distance: 0;
  --stack-z: 4;
}

.service-card:nth-child(2) {
  --stack-distance: 1;
  --stack-z: 3;
}

.service-card:nth-child(3) {
  --stack-distance: 2;
  --stack-z: 2;
}

.service-card:nth-child(4) {
  --stack-distance: 3;
  --stack-z: 1;
}

.service-card:nth-child(5) {
  --stack-distance: 4;
  --stack-z: 1;
}

.service-card:nth-child(6) {
  --stack-distance: 5;
  --stack-z: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .72;
  background: linear-gradient(180deg, rgba(16,36,25,.05), rgba(16,36,25,.84)), var(--service-image), radial-gradient(circle at 30% 20%, var(--leaf), transparent 30%);
  background-position: center;
  background-size: cover;
  transition: transform 520ms ease, opacity 520ms ease;
}

.service-card:hover::before {
  opacity: .78;
  transform: scale(1.1);
}

.service-card:nth-child(1) {
  --service-image: url("https://images.unsplash.com/photo-1689728318937-17d24bc0a65c?auto=format&fit=crop&fm=jpg&q=72&w=1600");
}

.service-card:nth-child(2) {
  --service-image: url("https://images.unsplash.com/photo-1543309959-4d45288d1629?auto=format&fit=crop&fm=jpg&q=72&w=1600");
}

.service-card:nth-child(3) {
  --service-image: url("images/service-weed-control.jpg");
}

.service-card:nth-child(4) {
  --service-image: url("https://images.unsplash.com/photo-1759422261399-3370e715b70f?auto=format&fit=crop&fm=jpg&q=72&w=1600");
}

.service-card:nth-child(5) {
  --service-image: url("https://images.unsplash.com/photo-1543309959-4d45288d1629?auto=format&fit=crop&fm=jpg&q=72&w=1600");
}

.service-card:nth-child(6) {
  --service-image: url("https://images.unsplash.com/photo-1758922565071-014462d53878?auto=format&fit=crop&fm=jpg&q=72&w=1600");
}

.service-card span,
.process-track span {
  color: var(--leaf);
  font-weight: 900;
}

.service-card h3,
.process-track h3 {
  position: relative;
  margin-top: 12px;
  font-size: clamp(2rem, 5vw, 5.4rem);
  line-height: .92;
}

.service-card p,
.process-track p,
.testimonial-wall p {
  position: relative;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.service-card h3,
.service-card p {
  width: min(620px, 100%);
  color: white;
}

.service-card p {
  color: rgba(255,255,255,.78);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-track article {
  padding: 26px;
  transform: translateY(24px);
  opacity: 0;
  transition: transform 720ms cubic-bezier(.2,.7,.2,1), opacity 720ms ease;
}

.process.in-view .process-track article {
  opacity: 1;
  transform: translateY(0);
}

.process.in-view .process-track article:nth-child(2) { transition-delay: 160ms; }
.process.in-view .process-track article:nth-child(3) { transition-delay: 320ms; }
.process.in-view .process-track article:nth-child(4) { transition-delay: 480ms; }

.team-section .process-track article {
  min-height: 340px;
  overflow: hidden;
  position: relative;
}

.team-section .process-track article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 150px;
  background: linear-gradient(180deg, rgba(16,36,25,.08), transparent), var(--team-image);
  background-position: center;
  background-size: cover;
  opacity: .9;
}

.team-section .process-track article:nth-child(1) {
  --team-image: url("https://images.unsplash.com/photo-1560250097-0b93528c311a?auto=format&fit=crop&w=900&q=80");
}

.team-section .process-track article:nth-child(2) {
  --team-image: url("https://images.unsplash.com/photo-1580489944761-15a19d654956?auto=format&fit=crop&w=900&q=80");
}

.team-section .process-track article:nth-child(3) {
  --team-image: url("https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=crop&w=900&q=80");
}

.team-section .process-track article:nth-child(4) {
  --team-image: url("https://images.unsplash.com/photo-1544005313-94ddf0286df2?auto=format&fit=crop&w=900&q=80");
}

.team-section .process-track article > * {
  position: relative;
  z-index: 1;
}

.team-section .process-track span {
  display: inline-flex;
  width: fit-content;
  margin-top: 150px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(185, 217, 122, .24);
}

.team-section .process-track h3 {
  color: var(--green-950);
  font-size: clamp(1.6rem, 2.2vw, 2.25rem);
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.1fr .8fr 1fr;
  gap: 18px;
  align-items: end;
}

.gallery-card {
  min-height: 460px;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(34px) scale(.96);
  transition: transform 900ms cubic-bezier(.2,.7,.2,1), opacity 700ms ease, filter 420ms ease;
}

.gallery-card.two {
  min-height: 560px;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(16,36,25,.74));
}

.gallery-card figcaption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 1;
  color: white;
  font-weight: 900;
}

.gallery.in-view .gallery-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gallery.in-view .gallery-card:nth-child(2) {
  transition-delay: 140ms;
}

.gallery.in-view .gallery-card:nth-child(3) {
  transition-delay: 280ms;
}

.gallery-card:hover {
  filter: saturate(1.12) contrast(1.05);
  transform: translateY(-8px) scale(1.015);
}

.gallery-card.one { background-image: url("https://images.unsplash.com/photo-1689728318937-17d24bc0a65c?auto=format&fit=crop&fm=jpg&q=74&w=1400"); }
.gallery-card.two { background-image: url("https://images.unsplash.com/photo-1759422261399-3370e715b70f?auto=format&fit=crop&fm=jpg&q=74&w=1400"); }
.gallery-card.three { background-image: url("https://images.unsplash.com/photo-1757918929794-937c431ef18b?auto=format&fit=crop&fm=jpg&q=74&w=1400"); }

.rating-animation {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
  padding: 12px 18px 12px 12px;
  border: 1px solid rgba(47, 98, 55, .12);
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.google-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.rating-animation strong {
  display: block;
  color: var(--green-950);
  line-height: 1;
}

.animated-stars {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}

.animated-stars span {
  display: block;
  color: #d8a53a;
  font-size: 1.25rem;
  line-height: 1;
  opacity: 0;
  transform: translateY(14px) scale(.5) rotate(-10deg);
  filter: drop-shadow(0 6px 12px rgba(216, 165, 58, .22));
}

.testimonials.in-view .animated-stars span {
  animation: starPop 680ms cubic-bezier(.2, 1.2, .28, 1) forwards, starGlow 2600ms ease-in-out 1200ms infinite;
}

.testimonials.in-view .animated-stars span:nth-child(1) { animation-delay: 80ms, 1280ms; }
.testimonials.in-view .animated-stars span:nth-child(2) { animation-delay: 190ms, 1390ms; }
.testimonials.in-view .animated-stars span:nth-child(3) { animation-delay: 300ms, 1500ms; }
.testimonials.in-view .animated-stars span:nth-child(4) { animation-delay: 410ms, 1610ms; }
.testimonials.in-view .animated-stars span:nth-child(5) { animation-delay: 520ms, 1720ms; }

.review-window {
  overflow: hidden;
  margin-inline: max(-6vw, -82px);
  padding-inline: max(6vw, 24px);
}

.testimonial-wall {
  display: flex;
  width: max-content;
  gap: 18px;
}

.review-track {
  animation: reviewMarquee 28s linear infinite;
}

.review-window:hover .review-track {
  animation-play-state: paused;
}

.review-card {
  flex: 0 0 380px;
  min-height: 250px;
  padding: 28px;
}

.review-card strong {
  display: block;
  margin-top: 18px;
}

.review-card > span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .9rem;
}

.area-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: stretch;
}

.map-panel,
.area-card {
  border: 1px solid rgba(47, 98, 55, .12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
  box-shadow: 0 16px 44px rgba(16, 36, 25, 0.08);
}

.map-panel {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #dbe8d0;
}

.map-panel iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.92) contrast(1.02);
}

.map-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  border-radius: 18px;
  color: var(--green-950);
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 32px rgba(16, 36, 25, .1);
}

.map-label span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
}

.map-label strong {
  font-size: 1.1rem;
}

.area-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 44px);
}

.area-card h3 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: .9;
  text-transform: uppercase;
}

.area-card p {
  margin: 16px 0 24px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.58;
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.area-chips button {
  min-height: 42px;
  border: 1px solid rgba(47, 98, 55, .16);
  border-radius: 999px;
  padding: 0 15px;
  color: var(--green-950);
  background: rgba(255,255,255,.72);
  cursor: pointer;
  font-weight: 900;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.area-chips button:hover,
.area-chips button.active {
  color: white;
  background: var(--green-800);
  box-shadow: 0 12px 26px rgba(47, 98, 55, .2);
  transform: translateY(-2px);
}

.quote-form,
.modal-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 22px;
}

label,
.modal-form input,
.modal-form textarea {
  display: grid;
  gap: 8px;
  color: var(--green-950);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(47, 98, 55, .18);
  border-radius: 18px;
  background: rgba(255,255,255,.76);
  padding: 15px 16px;
  color: var(--ink);
  outline: none;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.full,
.quote-form .btn,
.modal-form textarea,
.modal-form .btn {
  grid-column: 1 / -1;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 34px max(6vw, 24px) 110px;
  color: rgba(255,255,255,.8);
  background: var(--green-950);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: white;
  background: rgba(255,255,255,.08);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 211, 102, .5);
  background: rgba(37, 211, 102, .18);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.mobile-cta {
  display: none;
}

.lead-assistant {
  position: fixed;
  right: max(28px, env(safe-area-inset-right));
  bottom: max(28px, env(safe-area-inset-bottom));
  z-index: 60;
  font-family: inherit;
}

.assistant-launcher {
  position: relative;
  min-width: 190px;
  min-height: 64px;
  display: grid;
  gap: 2px;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  color: var(--cream);
  background: linear-gradient(135deg, var(--green-950), #24542e);
  box-shadow: 0 24px 70px rgba(16, 36, 25, .34);
  cursor: pointer;
  transform-origin: 82% 100%;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.assistant-launcher:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 28px 78px rgba(16, 36, 25, .42);
}

.assistant-badge {
  position: absolute;
  top: -8px;
  right: -7px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 2px solid var(--cream);
  border-radius: 50%;
  color: #fff;
  background: #e52d2d;
  box-shadow: 0 12px 30px rgba(229, 45, 45, .42);
  font-size: .8rem;
  font-style: normal;
  font-weight: 950;
  opacity: 0;
  transform: scale(.25);
  transition: opacity 180ms ease, transform 220ms cubic-bezier(.2, 1.1, .2, 1);
}

.lead-assistant.has-nudge .assistant-badge {
  opacity: 1;
  transform: scale(1);
}

.lead-assistant.has-nudge .assistant-launcher {
  animation: assistantPulse 1.35s ease-in-out 3;
}

.assistant-launcher span {
  font-size: .72rem;
  font-weight: 900;
  opacity: .72;
}

.assistant-launcher strong {
  font-size: 1.05rem;
}

.assistant-panel {
  position: absolute;
  right: 0;
  bottom: 82px;
  width: min(420px, calc(100vw - 28px));
  max-height: min(720px, calc(100vh - 120px));
  max-height: min(720px, calc(100svh - 120px));
  display: grid;
  grid-template-rows: auto minmax(240px, 1fr) auto auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 30px;
  background: rgba(244, 242, 233, .94);
  box-shadow: 0 34px 110px rgba(16, 36, 25, .38);
  backdrop-filter: blur(18px);
  transform: translateY(20px) scale(.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease, transform 260ms cubic-bezier(.2,.7,.2,1);
}

.lead-assistant.open .assistant-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.lead-assistant.open .assistant-launcher {
  display: none;
}

.assistant-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 14px;
  color: var(--cream);
  background: var(--green-950);
}

.assistant-head span {
  display: block;
  margin-bottom: 4px;
  color: rgba(244, 242, 233, .68);
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.assistant-head strong {
  font-size: 1.05rem;
}

.assistant-close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--green-950);
  background: var(--cream);
  cursor: pointer;
  font-weight: 900;
}

.assistant-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow-y: auto;
  padding: 18px;
  color: var(--green-950);
}

.assistant-message {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(16, 36, 25, .08);
  font-size: .92rem;
  line-height: 1.45;
}

.assistant-message.user {
  justify-self: end;
  color: var(--cream);
  background: var(--green-950);
}

.assistant-message.summary {
  max-width: 100%;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(58, 123, 65, .18);
  background: rgba(196, 222, 125, .18);
}

.assistant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 18px 14px;
}

.assistant-options button,
.assistant-action {
  border: 1px solid rgba(16, 36, 25, .12);
  border-radius: 999px;
  padding: 10px 13px;
  color: var(--green-950);
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-size: .86rem;
  font-weight: 900;
  text-decoration: none;
}

.assistant-options button.selected,
.assistant-action.primary {
  color: var(--green-950);
  background: var(--leaf);
}

.assistant-options button:disabled {
  opacity: .48;
  cursor: not-allowed;
}

.assistant-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(16, 36, 25, .1);
}

.assistant-form[hidden] {
  display: none;
}

.assistant-form input {
  min-width: 0;
  border: 1px solid rgba(16, 36, 25, .12);
  border-radius: 999px;
  padding: 12px 14px;
  font: inherit;
}

.assistant-form button {
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  color: var(--cream);
  background: var(--green-950);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.quote-modal {
  width: min(620px, calc(100vw - 28px));
  border: 0;
  padding: 30px;
}

.quote-modal::backdrop {
  background: rgba(16, 36, 25, .62);
  backdrop-filter: blur(12px);
}

.modal-close {
  float: right;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: var(--mist);
}

.quote-modal h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.quote-modal p {
  margin: 12px 0 22px;
  color: var(--muted);
}

.reveal-section {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 800ms ease, transform 900ms cubic-bezier(.2,.7,.2,1);
}

.reveal-section.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-section:target {
  opacity: 1;
  transform: translateY(0);
}

@keyframes lawnReveal {
  to { clip-path: inset(0 0 0 0); }
}

@keyframes mowerSweep {
  0% { opacity: 0; left: 0; }
  12% { opacity: 1; }
  84% { opacity: 1; }
  100% { opacity: 0; left: 100%; }
}

@keyframes headerStarPulse {
  0%, 100% { transform: translateY(0) scale(1); filter: brightness(1); }
  45% { transform: translateY(-2px) scale(1.18); filter: brightness(1.2); }
}

@keyframes starPop {
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

@keyframes starGlow {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-2px) scale(1.08); }
}

@keyframes reviewMarquee {
  to { transform: translateX(-50%); }
}

@keyframes resultPulse {
  0% { transform: scale(.98); filter: brightness(.9); }
  100% { transform: scale(1); filter: brightness(1); }
}

@keyframes visitPulse {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.08); filter: brightness(1.12); }
}

@keyframes assistantPulse {
  0%, 100% { transform: translateY(0) scale(1); }
  18% { transform: translateY(-8px) scale(1.06); }
  36% { transform: translateY(0) scale(.99); }
  54% { transform: translateY(-4px) scale(1.035); }
}

@keyframes careSweep {
  0%, 18% { transform: translateX(0) skewX(-14deg); opacity: 0; }
  30% { opacity: 1; }
  82%, 100% { transform: translateX(380%) skewX(-14deg); opacity: 0; }
}

@keyframes timelinePulse {
  0% {
    opacity: 0;
    transform: translate(-50%, 0) scale(.7);
  }
  10%, 88% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, calc(100% + 540px)) scale(1);
  }
}

@media (max-width: 900px) {
  html,
  body {
    overflow-x: hidden;
  }

  .desktop-nav {
    display: none;
  }

  .site-header {
    top: 14px;
    height: 64px;
    left: 12px;
    right: 12px;
    width: auto;
    max-width: none;
    transform: none;
  }

  .header-call {
    display: none;
  }

  .header-rating {
    margin-left: auto;
    padding: 6px 8px 6px 6px;
  }

  .header-rating img {
    width: 26px;
    height: 26px;
  }

  .mini-stars i {
    font-size: .66rem;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 120px;
    max-width: 100vw;
    overflow: hidden;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .hero-cta {
    display: none;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3.7rem, 16.4vw, 5.4rem);
  }

  .proof-card {
    display: none;
  }

  section:not(.hero) {
    padding: 70px 18px;
  }

  .trust-stats {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 18px !important;
    padding-bottom: 22px !important;
  }

  .trust-stats article {
    min-height: 118px;
    border-radius: 24px;
  }

  .trust-stats strong {
    font-size: clamp(3.1rem, 18vw, 5.3rem);
  }

  .intro,
  .contact {
    grid-template-columns: 1fr;
  }

  .garden-planner,
  .care-plans,
  .area-layout {
    grid-template-columns: 1fr;
  }

  .care-process {
    grid-template-columns: 1fr;
  }

  .process-copy {
    position: relative;
    top: auto;
  }

  .care-timeline {
    padding-left: 18px;
  }

  .care-timeline::before,
  .care-timeline::after {
    left: 8px;
  }

  .timeline-step,
  .timeline-step:nth-child(even) {
    width: 100%;
    min-height: 150px;
    justify-self: stretch;
    padding: 20px;
    border-radius: 22px;
    transform: translateX(42px) translateY(18px);
  }

  .timeline-step:nth-child(odd)::before,
  .timeline-step:nth-child(even)::before {
    left: -17px;
    right: auto;
  }

  .timeline-step span {
    margin-bottom: 10px;
    padding: 7px 11px;
    font-size: .72rem;
  }

  .timeline-step h3 {
    font-size: clamp(1.65rem, 8vw, 2.45rem);
  }

  .timeline-step p {
    margin-top: 9px;
    font-size: .98rem;
    line-height: 1.45;
  }

  .planner-preview,
  .map-panel {
    min-height: 380px;
  }

  .proof-switcher {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 2px 10px;
    margin-bottom: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .proof-option {
    flex: 0 0 min(78vw, 270px);
    scroll-snap-align: start;
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 7px 14px 7px 7px;
  }

  .proof-thumb {
    width: 64px;
  }

  .yard-slider {
    min-height: 430px;
  }

  .process-track,
  .testimonial-wall {
    display: flex;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .process-track article,
  .review-card,
  .testimonial-wall article {
    flex: 0 0 min(82vw, 330px);
    min-width: 0;
    scroll-snap-align: center;
  }

  .services {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .services .section-heading {
    position: relative;
    top: auto;
    margin-bottom: 0;
  }

  .service-grid {
    position: relative;
    top: auto;
    display: grid;
    gap: 14px;
    min-height: 0;
    margin-top: 0;
    perspective: none;
  }

  .service-card {
    position: relative;
    inset: auto;
    min-height: 360px;
    padding: 22px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 640ms ease, transform 760ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms ease, filter 260ms ease;
  }

  .service-card.service-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    filter: brightness(1) !important;
  }

  .service-card h3 {
    font-size: clamp(2.7rem, 13vw, 4.4rem);
  }

  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .rating-animation {
    width: 100%;
    border-radius: 22px;
  }

  .review-window {
    margin-inline: -18px;
    overflow-x: auto;
    padding: 0 18px 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .review-window::-webkit-scrollbar {
    display: none;
  }

  .review-track {
    animation: none;
  }

  .gallery-card,
  .gallery-card.two {
    min-height: 380px;
  }

  .quote-form,
  .modal-form {
    grid-template-columns: 1fr;
  }

  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 70;
    isolation: isolate;
    pointer-events: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 10px;
    border-radius: 999px;
    background: rgba(244, 242, 233, .9);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
  }

  .mobile-cta a,
  .mobile-cta button {
    position: relative;
    z-index: 1;
    min-height: 50px;
    border: 0;
    border-radius: 999px;
    display: grid;
    place-items: center;
    min-width: 0;
    padding: 0 8px;
    font-size: 0.8rem;
    font-weight: 900;
    white-space: nowrap;
  }

  .mobile-cta a {
    color: white;
    background: var(--green-950);
  }

  .mobile-cta .mobile-whatsapp {
    color: #0d2d19;
    background: #25d366;
  }

  .mobile-cta button {
    position: relative;
    background: var(--leaf);
    color: var(--green-950);
  }

  .lead-assistant {
    position: fixed;
    z-index: 60;
    display: block;
    margin-top: 0;
    padding: 0;
    left: 10px;
    right: 10px;
    bottom: calc(82px + env(safe-area-inset-bottom));
    pointer-events: none;
  }

  .assistant-launcher {
    display: none;
  }

  .lead-assistant.open {
    pointer-events: auto;
  }

  .assistant-panel {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-height: min(76vh, calc(100vh - 116px));
    max-height: min(76svh, calc(100svh - 116px));
    grid-template-rows: auto minmax(150px, 1fr) auto auto;
    border-radius: 24px 24px 20px 20px;
  }

  .assistant-head {
    padding: 14px 14px 12px;
  }

  .assistant-head span {
    font-size: .68rem;
  }

  .assistant-head strong {
    font-size: .95rem;
  }

  .assistant-close {
    width: 34px;
    height: 34px;
  }

  .assistant-messages {
    gap: 8px;
    padding: 12px;
  }

  .assistant-message {
    max-width: 92%;
    padding: 10px 12px;
    border-radius: 16px;
    font-size: .86rem;
  }

  .assistant-options {
    max-height: 150px;
    overflow-y: auto;
    gap: 7px;
    padding: 0 12px 10px;
    -webkit-overflow-scrolling: touch;
  }

  .assistant-options button,
  .assistant-action {
    padding: 9px 11px;
    font-size: .78rem;
  }

  .assistant-form {
    grid-template-columns: minmax(0, 1fr) 68px;
    gap: 7px;
    padding: 10px 12px 12px;
  }

  .assistant-form input {
    min-height: 42px;
    padding: 10px 12px;
    font-size: .86rem;
  }

  .assistant-form button {
    min-height: 42px;
    padding: 0 12px;
    font-size: .82rem;
  }

  .assistant-mobile-trigger.has-nudge {
    animation: assistantPulse 1.35s ease-in-out 3;
  }

  .assistant-mobile-trigger.has-nudge::after {
    content: "1";
    position: absolute;
    top: -7px;
    right: 12px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border: 2px solid var(--cream);
    border-radius: 50%;
    color: #fff;
    background: #e52d2d;
    box-shadow: 0 12px 30px rgba(229, 45, 45, .42);
    font-size: .78rem;
    font-weight: 950;
  }

  .site-footer {
    padding-bottom: 100px;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}
