:root {
  --ink: #111814;
  --ink-soft: #304239;
  --leaf: #1f8b4c;
  --leaf-deep: #0d5a38;
  --lime: #b8f23a;
  --mint: #dff7df;
  --sky: #d7ecff;
  --clay: #c56f3c;
  --cream: #f8f5ec;
  --paper: #fffdf7;
  --line: rgba(17, 24, 20, 0.13);
  --shadow: 0 24px 70px rgba(9, 20, 13, 0.22);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, var(--paper) 0%, #f2f8f0 48%, #fcfbf4 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

body::selection {
  background: var(--lime);
  color: var(--ink);
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 16px;
  left: clamp(14px, 3vw, 40px);
  right: clamp(14px, 3vw, 40px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  min-height: 64px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(11, 21, 16, 0.54);
  color: #fff;
  backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  transition: background 260ms ease, border-color 260ms ease, transform 260ms ease;
}

.site-header.scrolled {
  background: rgba(12, 28, 20, 0.82);
  border-color: rgba(255, 255, 255, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(184, 242, 58, 0.95), rgba(31, 139, 76, 0.96)),
    var(--leaf);
  box-shadow: inset 0 -8px 18px rgba(0, 0, 0, 0.18);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.82);
  transform-origin: bottom center;
}

.brand-mark::before {
  width: 4px;
  height: 22px;
  left: 15px;
  top: 6px;
  border-radius: 999px;
  transform: rotate(24deg);
}

.brand-mark::after {
  width: 17px;
  height: 8px;
  left: 9px;
  top: 10px;
  border-radius: 100% 0 100% 0;
  transform: rotate(-20deg);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.93rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 10px 2px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--lime);
  color: #132018;
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(184, 242, 58, 0.22);
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: clip;
  isolation: isolate;
  color: #fff;
}

.hero-image,
.hero-canvas,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.hero-canvas {
  z-index: -1;
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
  opacity: 0.9;
  pointer-events: none;
}

.hero-shade {
  z-index: -2;
  background:
    radial-gradient(circle at 76% 62%, rgba(184, 242, 58, 0.18), transparent 26%),
    linear-gradient(90deg, rgba(2, 12, 7, 0.86) 0%, rgba(2, 12, 7, 0.61) 43%, rgba(2, 12, 7, 0.1) 74%),
    linear-gradient(180deg, rgba(1, 7, 4, 0.3) 0%, rgba(1, 7, 4, 0.08) 50%, rgba(1, 7, 4, 0.42) 100%);
}

.hero-content {
  width: min(1160px, calc(100% - 32px));
  min-height: 92svh;
  margin: 0 auto;
  padding: clamp(118px, 18vh, 180px) 0 98px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 384px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.hero-copy {
  max-width: 690px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.7rem, 8.8vw, 8.5rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-lede {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.primary-action,
.secondary-action,
.quote-submit,
.booking-form button,
.studio-controls button,
.mobile-booking a,
.mobile-booking button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 900;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-action,
.quote-submit,
.booking-form button,
.mobile-booking a {
  background: var(--lime);
  color: #111814;
  box-shadow: 0 18px 42px rgba(184, 242, 58, 0.24);
}

.secondary-action,
.studio-controls button,
.mobile-booking button {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(16px);
}

.primary-action:hover,
.secondary-action:hover,
.quote-submit:hover,
.booking-form button:hover,
.studio-controls button:hover,
.mobile-booking a:hover,
.mobile-booking button:hover {
  transform: translateY(-2px);
}

.primary-action:focus-visible,
.secondary-action:focus-visible,
.header-cta:focus-visible,
.quote-submit:focus-visible,
.booking-form button:focus-visible,
.studio-controls button:focus-visible,
.frequency-toggle button:focus-visible,
.season-tabs button:focus-visible,
.mobile-booking a:focus-visible,
.mobile-booking button:focus-visible,
.nav-links a:focus-visible {
  outline: 3px solid rgba(184, 242, 58, 0.75);
  outline-offset: 3px;
}

.action-icon,
.mini-mower-icon {
  position: relative;
  flex: 0 0 auto;
}

.action-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--leaf-deep);
}

.action-icon::before,
.action-icon::after {
  content: "";
  position: absolute;
  background: var(--lime);
}

.action-icon::before {
  width: 9px;
  height: 2px;
  top: 8px;
  left: 5px;
}

.action-icon::after {
  width: 2px;
  height: 9px;
  top: 5px;
  left: 8px;
}

.mini-mower-icon {
  width: 28px;
  height: 16px;
  border-radius: 5px 8px 5px 5px;
  background: var(--lime);
  box-shadow: inset -8px 0 rgba(17, 24, 20, 0.22);
}

.mini-mower-icon::before,
.mini-mower-icon::after {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #111814;
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.mini-mower-icon::before {
  left: 2px;
}

.mini-mower-icon::after {
  right: 2px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  min-height: 42px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
}

.trust-row strong {
  color: #fff;
  font-size: 1.08rem;
}

.quote-panel {
  align-self: center;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(10, 22, 15, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(1.3);
}

.quote-panel-head,
.estimate-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.quote-panel-head {
  margin-bottom: 22px;
}

.quote-panel-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.83rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quote-panel-head span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(184, 242, 58, 0.17);
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 850;
}

.field-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
}

.quote-panel input[type="range"] {
  width: 100%;
  accent-color: var(--lime);
}

.estimate-row {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
}

.estimate-row strong {
  color: #fff;
  font-size: 1.22rem;
}

.frequency-toggle,
.season-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.frequency-toggle {
  margin: 20px 0;
}

.frequency-toggle button,
.season-tabs button {
  min-height: 40px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 850;
}

.frequency-toggle button.active,
.season-tabs button.active {
  background: var(--lime);
  color: var(--ink);
}

.route-meter {
  position: relative;
  height: 52px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background:
    repeating-linear-gradient(105deg, rgba(255, 255, 255, 0.07) 0 16px, transparent 16px 30px),
    linear-gradient(90deg, rgba(31, 139, 76, 0.46), rgba(184, 242, 58, 0.22));
}

.route-meter span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  background: rgba(184, 242, 58, 0.24);
  transition: width 260ms ease;
}

.route-mower,
.plan-mower {
  position: absolute;
  width: 38px;
  height: 20px;
  border-radius: 5px 10px 5px 5px;
  background: #101713;
  box-shadow: inset -11px 0 var(--lime), 0 9px 18px rgba(0, 0, 0, 0.28);
}

.route-mower {
  left: calc(42% - 20px);
  top: 15px;
  transition: left 260ms ease;
}

.route-mower::before,
.route-mower::after,
.plan-mower::before,
.plan-mower::after {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #030503;
  border: 2px solid #90a39b;
}

.route-mower::before,
.plan-mower::before {
  left: 4px;
}

.route-mower::after,
.plan-mower::after {
  right: 4px;
}

.quote-submit {
  width: 100%;
}

.signal-band {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1060px, calc(100% - 32px));
  margin: -42px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 24, 20, 0.12);
  box-shadow: var(--shadow);
}

.signal-band div {
  min-height: 96px;
  padding: 19px 20px;
  background: rgba(255, 253, 247, 0.94);
}

.signal-band span {
  display: block;
  margin-bottom: 6px;
  color: var(--leaf-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signal-band strong {
  font-size: clamp(1rem, 2vw, 1.28rem);
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(68px, 10vw, 118px) 0;
}

.intro-section {
  padding-top: clamp(82px, 11vw, 136px);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 1.06fr);
  gap: clamp(34px, 7vw, 82px);
  align-items: start;
}

h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.35rem, 5vw, 5.3rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
}

.intro-section p,
.studio-copy p,
.booking-copy p,
.plan-details p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.intro-section p {
  max-width: 600px;
  margin: 24px 0 0;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.metric {
  min-height: 152px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.72);
}

.metric span {
  display: block;
  margin-bottom: 18px;
  color: var(--leaf-deep);
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 950;
  line-height: 1;
}

.metric p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.45;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.section-heading h2 {
  max-width: 14ch;
}

.section-heading a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--leaf-deep);
  font-weight: 900;
}

.service-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card,
.review-card {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 46px rgba(17, 24, 20, 0.08);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px 18px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--leaf), var(--lime), var(--clay));
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 260ms ease;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card h3,
.plan-details h3 {
  margin: 24px 0 10px;
  font-size: 1.45rem;
  line-height: 1.05;
}

.service-card p,
.review-card blockquote {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.62;
}

.service-motion {
  position: relative;
  height: 104px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, #274b35, #82c55a);
}

.service-motion::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(110deg, rgba(255, 255, 255, 0.14) 0 12px, rgba(255, 255, 255, 0) 12px 28px);
  animation: stripeDrift 7s linear infinite;
}

.service-motion::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 24px;
  left: 18px;
  top: 42px;
  border-radius: 7px 11px 7px 7px;
  background: #111814;
  box-shadow:
    inset -12px 0 var(--lime),
    0 10px 18px rgba(0, 0, 0, 0.22);
  animation: serviceMower 5.5s ease-in-out infinite;
}

.health {
  background:
    radial-gradient(circle at 25% 30%, var(--sky), transparent 19%),
    radial-gradient(circle at 72% 64%, #ebf9b8, transparent 18%),
    linear-gradient(135deg, #25543a, #7fcf75);
}

.edges {
  background:
    linear-gradient(90deg, #bac7ca 0 14%, transparent 14%),
    linear-gradient(135deg, #1d6d43, #b4e34d);
}

.seasonal {
  background:
    radial-gradient(circle at 20% 24%, rgba(197, 111, 60, 0.9), transparent 12%),
    radial-gradient(circle at 74% 36%, rgba(215, 236, 255, 0.9), transparent 14%),
    linear-gradient(135deg, #256045, #9edb63);
}

.studio-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
}

.studio-copy h2 {
  max-width: 10ch;
}

.studio-copy p {
  max-width: 440px;
}

.studio-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.studio-controls button {
  background: var(--ink);
  color: #fff;
}

.studio-controls button + button {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.yard-shell {
  position: relative;
  min-height: clamp(390px, 58vw, 620px);
  overflow: hidden;
  border: 1px solid rgba(17, 24, 20, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent 26%),
    repeating-linear-gradient(115deg, #3b7e42 0 22px, #4f9a4a 22px 44px);
  box-shadow: 0 26px 90px rgba(17, 24, 20, 0.16);
  touch-action: none;
}

.yard-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.yard-mower {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 42px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.26));
}

.mower-body,
.mower-deck,
.wheel {
  position: absolute;
  display: block;
}

.mower-body {
  left: 10px;
  top: 5px;
  width: 46px;
  height: 25px;
  border-radius: 6px 13px 6px 6px;
  background: #111814;
  box-shadow: inset -14px 0 var(--lime);
}

.mower-deck {
  left: 3px;
  top: 18px;
  width: 54px;
  height: 15px;
  border-radius: 12px;
  background: #24342b;
  border-bottom: 3px solid var(--lime);
}

.wheel {
  bottom: 2px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #030503;
  border: 3px solid #d6e3dd;
}

.wheel-a {
  left: 8px;
}

.wheel-b {
  right: 8px;
}

.yard-status {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(8, 20, 13, 0.68);
  color: #fff;
  backdrop-filter: blur(16px);
}

.yard-status span {
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
}

.yard-status small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.compare-section {
  padding-top: 40px;
}

.compare-shell {
  position: relative;
  height: clamp(380px, 52vw, 610px);
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 28px 90px rgba(17, 24, 20, 0.16);
  background: #6f8f46;
}

.lawn-before,
.lawn-after {
  position: absolute;
  inset: 0;
}

.lawn-before {
  background:
    radial-gradient(circle at 18% 42%, rgba(121, 95, 45, 0.62), transparent 15%),
    radial-gradient(circle at 74% 70%, rgba(150, 120, 54, 0.52), transparent 17%),
    repeating-linear-gradient(100deg, #87934d 0 18px, #6e813e 18px 42px);
}

.lawn-after {
  width: 58%;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.24), transparent 34%),
    repeating-linear-gradient(108deg, #1e8747 0 24px, #53ad52 24px 48px);
  transition: width 100ms linear;
}

.lawn-before span,
.lawn-after span {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(17, 24, 20, 0.72);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lawn-after span {
  background: rgba(184, 242, 58, 0.9);
  color: var(--ink);
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 58%;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(17, 24, 20, 0.12), 0 0 30px rgba(255, 255, 255, 0.6);
  transform: translateX(-50%);
  transition: left 100ms linear;
}

.compare-handle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 28px rgba(17, 24, 20, 0.24);
}

.compare-handle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 14px;
  border-left: 3px solid var(--leaf-deep);
  border-right: 3px solid var(--leaf-deep);
  transform: translate(-50%, -50%);
}

.compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.plans-section {
  width: min(1100px, calc(100% - 32px));
}

.season-tabs {
  width: min(360px, 100%);
}

.season-tabs button {
  border-color: var(--line);
  background: #fff;
  color: var(--ink-soft);
}

.plan-board {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(17, 24, 20, 0.11);
}

.plan-visual {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background:
    radial-gradient(circle at 24% 24%, var(--sky), transparent 16%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.38), transparent 38%),
    repeating-linear-gradient(105deg, #237643 0 22px, #58ab50 22px 44px);
}

.moisture-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: min(220px, 56%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.9) 0 50%, transparent 51%),
    conic-gradient(var(--lime) 0 82%, rgba(255, 255, 255, 0.34) 82% 100%);
  transform: translate(-50%, -50%);
}

.moisture-ring span {
  color: var(--leaf-deep);
  font-size: clamp(3rem, 7vw, 5.4rem);
  font-weight: 950;
}

.moisture-ring span::after {
  content: "%";
  font-size: 0.34em;
}

.plan-mower {
  right: 14%;
  bottom: 18%;
  animation: planDrive 7s ease-in-out infinite;
}

.plan-details {
  padding: clamp(28px, 5vw, 56px);
}

.plan-details h3 {
  margin-top: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.plan-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.plan-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: inset 0 0 0 4px var(--leaf-deep);
}

.reviews-section {
  padding-top: 42px;
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 255px;
}

.review-card blockquote {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.review-card figcaption {
  margin-top: 26px;
  color: var(--leaf-deep);
  font-weight: 900;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 7vw, 82px);
  align-items: start;
  padding-bottom: 140px;
}

.booking-copy h2 {
  max-width: 11ch;
}

.booking-form {
  display: grid;
  gap: 15px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(13, 90, 56, 0.95), rgba(17, 24, 20, 0.96)),
    var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  outline: none;
}

.booking-form select option {
  color: var(--ink);
}

.booking-form input::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(184, 242, 58, 0.22);
}

.booking-form button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  line-height: 1.45;
}

.mobile-booking {
  position: fixed;
  z-index: 28;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(17, 24, 20, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 18px));
  transition: opacity 220ms ease, transform 220ms ease;
}

.mobile-booking.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-booking a,
.mobile-booking button {
  min-height: 48px;
  padding: 0 12px;
  font-size: 0.9rem;
}

@keyframes stripeDrift {
  from {
    transform: translateX(-40px);
  }

  to {
    transform: translateX(40px);
  }
}

@keyframes serviceMower {
  0%,
  100% {
    transform: translateX(0) rotate(-2deg);
  }

  50% {
    transform: translateX(calc(100% + 72px)) rotate(2deg);
  }
}

@keyframes planDrive {
  0%,
  100% {
    transform: translate(0, 0) rotate(-8deg);
  }

  50% {
    transform: translate(-120%, -54%) rotate(-8deg);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-content,
  .split-layout,
  .studio-section,
  .plan-board,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .hero-content {
    align-items: end;
  }

  .quote-panel {
    max-width: 520px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    min-height: 58px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(2, 12, 7, 0.58) 0%, rgba(2, 12, 7, 0.55) 35%, rgba(2, 12, 7, 0.84) 100%),
      linear-gradient(90deg, rgba(2, 12, 7, 0.84), rgba(2, 12, 7, 0.1));
  }

  .hero-content {
    min-height: 92svh;
    padding: 104px 0 44px;
    gap: 20px;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 18vw, 5rem);
  }

  .hero-actions {
    display: grid;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .quote-panel {
    display: none;
  }

  .signal-band {
    grid-template-columns: 1fr;
    margin-top: -28px;
  }

  .signal-band div {
    min-height: 82px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

  h2 {
    font-size: clamp(2.2rem, 13vw, 3.55rem);
  }

  .metric-grid,
  .service-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 254px;
  }

  .yard-shell,
  .compare-shell {
    min-height: 420px;
    height: 70svh;
  }

  .season-tabs {
    width: 100%;
  }

  .mobile-booking {
    display: grid;
  }
}

@media (max-width: 440px) {
  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr;
  }

  .frequency-toggle,
  .season-tabs {
    grid-template-columns: 1fr;
  }
}

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

  .hero-canvas {
    display: none;
  }
}
