:root {
  --c-dark-green: #1f3a2e;
  --c-deep-green: #173026;
  --c-brand-green: #4f8a3d;
  --c-soft-green: #a8bfa3;
  --c-mist: #eef3ea;
  --c-bg-light: #fbfbfa;
  --c-stone: #f2f0eb;
  --c-charcoal: #1d1d1f;
  --c-muted: #5f6368;
  --c-line: rgba(31, 58, 46, 0.13);
  --c-white: #fff;
  --font-main: "Inter", Arial, sans-serif;
  --header-height: 104px;
  --max-width: 1160px;
  --section-y: clamp(3.75rem, 6.4vw, 6.25rem);
  --section-x: clamp(1.25rem, 5vw, 4rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  padding-top: var(--header-height);
  background: var(--c-bg-light);
  color: var(--c-charcoal);
  font-family: var(--font-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

h1,
h2,
h3 {
  color: var(--c-dark-green);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  color: var(--c-white);
  font-size: clamp(2.9rem, 5.2vw, 4.25rem);
}

h2 {
  font-size: clamp(2.1rem, 3.7vw, 3.35rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

p {
  color: var(--c-muted);
  font-size: clamp(1rem, 1.45vw, 1.125rem);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--c-dark-green);
  color: var(--c-white);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(170px, 230px) 1fr auto;
  align-items: center;
  gap: 1.65rem;
  min-height: var(--header-height);
  padding: 0 var(--section-x);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(18px);
  transition: min-height 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 88px;
  box-shadow: 0 12px 32px rgba(31, 58, 46, 0.06);
}

.logo-link {
  display: flex;
  align-items: center;
  min-width: 0;
}

.logo {
  width: auto;
  max-width: 100%;
  height: min(74px, calc(var(--header-height) - 24px));
  mix-blend-mode: multiply;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(1rem, 2.1vw, 2.35rem);
}

.main-nav a {
  color: var(--c-charcoal);
  font-size: 0.84rem;
  font-weight: 600;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--c-brand-green);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.76rem 1.18rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 650;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.header-cta,
.button-dark {
  background: var(--c-dark-green);
  color: var(--c-white);
  box-shadow: 0 9px 22px rgba(31, 58, 46, 0.18);
}

.header-cta:hover,
.button-dark:hover,
.header-cta:focus-visible,
.button-dark:focus-visible {
  background: var(--c-brand-green);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(79, 138, 61, 0.22);
}

.button-light {
  background: var(--c-white);
  color: var(--c-dark-green);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--c-mist);
  transform: translateY(-2px);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--c-white);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--c-white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background: var(--c-dark-green);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height) - 52px);
  display: flex;
  align-items: center;
  padding: clamp(2.15rem, 4vw, 3.4rem) var(--section-x);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(18, 35, 28, 0.9), rgba(23, 48, 38, 0.72) 48%, rgba(29, 29, 31, 0.54)),
    url("assets/hero-lawn.png") center / cover;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(14, 26, 21, 0.44), transparent);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content {
  width: min(800px, 100%);
}

.eyebrow,
.section-kicker {
  margin-bottom: 1rem;
  color: var(--c-brand-green);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--c-soft-green);
}

.hero-copy {
  max-width: 660px;
  margin-top: 1.05rem;
  color: var(--c-soft-green);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.55rem;
}

.split-section,
.services,
.process-section,
.estimate-section,
.faq-section,
.contact {
  padding: var(--section-y) var(--section-x);
}

.split-section,
.estimate-section,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.split-content p:not(.section-kicker),
.estimate-copy p,
.contact-content > p {
  margin-top: 1.4rem;
  max-width: 640px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.metric-row div,
.process-grid article,
.hours-card,
.estimate-form,
.faq-list details {
  border: 1px solid var(--c-line);
  border-radius: 8px;
  background: var(--c-white);
}

.metric-row div {
  padding: 1.2rem;
}

.metric-row strong {
  display: block;
  color: var(--c-dark-green);
  font-size: 1rem;
}

.metric-row span {
  display: block;
  margin-top: 0.2rem;
  color: var(--c-muted);
  font-size: 0.92rem;
}

.image-frame {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(31, 58, 46, 0.12);
}

.split-image,
.service-image {
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
}

.section-band {
  background: #f7f8f6;
}

.section-header {
  width: min(760px, 100%);
  margin: 0 auto clamp(2.4rem, 5vw, 4.2rem);
  text-align: center;
}

.section-header p:not(.section-kicker) {
  margin-top: 1rem;
}

.section-header.align-left {
  margin: 0;
  text-align: left;
}

.process-section .section-header {
  width: min(920px, 100%);
  margin: 0 auto clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
}

.process-section .section-kicker {
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  margin-bottom: 1.15rem;
}

.process-section .section-header p:not(.section-kicker) {
  max-width: 680px;
  margin: 1rem auto 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  max-width: var(--max-width);
  margin: 0 auto;
}

.service-card {
  min-width: 0;
}

.service-card img {
  margin-bottom: 1.6rem;
  border: 1px solid rgba(31, 58, 46, 0.08);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(31, 58, 46, 0.08);
}

.service-category {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--c-brand-green);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.service-card p {
  margin-top: 0.85rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  max-width: var(--max-width);
  margin: 0 auto;
}

.process-grid article {
  min-height: 196px;
  padding: clamp(1.35rem, 2.5vw, 2rem);
}

.process-grid span {
  display: block;
  margin-bottom: 1.6rem;
  color: var(--c-brand-green);
  font-weight: 750;
}

.process-grid p {
  margin-top: 0.85rem;
}

.values {
  padding: var(--section-y) var(--section-x);
  background: #183327;
  color: var(--c-bg-light);
}

.values-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section-kicker-light {
  color: var(--c-soft-green);
}

.values h2,
.values h3 {
  color: var(--c-white);
}

.values-subtitle {
  max-width: 760px;
  margin-top: 1.2rem;
  color: var(--c-soft-green);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.7rem, 4vw, 3.5rem);
  margin-top: clamp(2.6rem, 5vw, 4rem);
}

.value-card h3 {
  position: relative;
  padding-bottom: 0.8rem;
}

.value-card h3::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 2px;
  background: var(--c-brand-green);
  content: "";
}

.value-card p {
  margin-top: 1rem;
  color: var(--c-soft-green);
}

.estimate-section {
  align-items: start;
  background: var(--c-bg-light);
}

.contact-stack {
  display: grid;
  gap: 0.65rem;
  margin-top: 2rem;
}

.contact-stack a {
  color: var(--c-dark-green);
  font-weight: 650;
}

.contact-stack a:hover,
.contact-stack a:focus-visible {
  color: var(--c-brand-green);
}

.estimate-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 14px 34px rgba(31, 58, 46, 0.06);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label,
legend {
  color: var(--c-dark-green);
  font-size: 0.86rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.86rem 0.92rem;
  border: 1px solid rgba(31, 58, 46, 0.14);
  border-radius: 8px;
  background: var(--c-white);
  color: var(--c-charcoal);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(79, 138, 61, 0.18);
  border-color: var(--c-brand-green);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 1rem;
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(31, 58, 46, 0.14);
  border-radius: 8px;
  background: rgba(251, 251, 250, 0.7);
}

fieldset label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--c-muted);
  font-weight: 500;
}

fieldset input {
  width: auto;
  margin: 0;
  accent-color: var(--c-brand-green);
}

.form-status {
  min-height: 1.5rem;
  color: var(--c-brand-green);
  font-size: 0.95rem;
  font-weight: 650;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
  width: min(880px, 100%);
  margin: 0 auto;
}

.faq-list details {
  padding: 1.2rem 1.3rem;
}

.faq-list summary {
  cursor: pointer;
  color: var(--c-dark-green);
  font-weight: 700;
}

.faq-list p {
  margin-top: 0.8rem;
}

.contact {
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

.contact-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--c-soft-green);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.contact-value {
  color: var(--c-charcoal);
  font-size: 1.22rem;
  font-weight: 650;
}

a.contact-value:hover,
a.contact-value:focus-visible {
  color: var(--c-brand-green);
}

.hours-card {
  padding: clamp(1.35rem, 3vw, 2rem);
  box-shadow: 0 14px 34px rgba(31, 58, 46, 0.05);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem 1rem;
  margin-top: 1.6rem;
  color: var(--c-charcoal);
  font-size: 1rem;
}

.hours-grid span:nth-child(even) {
  color: var(--c-muted);
  text-align: right;
}

.closed {
  color: var(--c-soft-green) !important;
  font-style: italic;
}

footer {
  display: grid;
  justify-items: center;
  gap: 1.25rem;
  padding: clamp(3.25rem, 6vw, 5rem) var(--section-x);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background: var(--c-white);
  text-align: center;
}

.footer-logo-prominent {
  width: min(190px, 70vw);
}

.footer-logo-prominent img {
  width: 100%;
  mix-blend-mode: multiply;
}

.footer-title {
  color: var(--c-charcoal);
  font-size: 1rem;
  font-weight: 700;
}

.footer-text {
  margin-top: 0.45rem;
  color: #7a7d82;
  font-size: 0.92rem;
}

@media (max-width: 1080px) {
  :root {
    --header-height: 104px;
  }

  .site-header {
    grid-template-columns: minmax(170px, 230px) auto auto;
  }

  .main-nav {
    gap: 1rem;
  }

  .header-cta {
    display: none;
  }

  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .process-grid article {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 92px;
  }

  .site-header {
    grid-template-columns: minmax(150px, 210px) auto;
    gap: 1rem;
  }

  .site-header.is-scrolled {
    min-height: var(--header-height);
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    justify-content: stretch;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem var(--section-x) 1rem;
    background: var(--c-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 22px 35px rgba(31, 58, 46, 0.1);
    transform: translateY(-125%);
    transition: transform 180ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav a {
    display: block;
    padding: 1rem 0;
    border-top: 1px solid rgba(31, 58, 46, 0.08);
    font-size: 1rem;
  }

  .logo {
    width: min(205px, 100%);
  }

  .hero {
    min-height: calc(100svh - var(--header-height) - 72px);
    padding-top: 2rem;
  }

  .split-section,
  .estimate-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .values-grid,
  .metric-row,
  .field-row {
    grid-template-columns: 1fr;
  }

  .hours-grid {
    grid-template-columns: 1fr;
  }

  .hours-grid span:nth-child(even) {
    text-align: left;
    margin-bottom: 0.25rem;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(2.3rem, 10vw, 3rem);
  }

  .hero-actions {
    display: grid;
  }

  fieldset {
    grid-template-columns: 1fr;
  }

  .contact-value {
    font-size: 1.05rem;
  }
}

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