:root {
  --fern: #2f6b3f;
  --moss: #6f8d4e;
  --lime-stone: #d7c9a3;
  --bone: #f5f0e4;
  --charcoal: #17201a;
  --ink: #101510;
  --rust: #a45d37;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(16, 21, 16, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  align-items: center;
  background: rgba(16, 21, 16, 0.7);
  color: var(--white);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 18px clamp(18px, 4vw, 54px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, box-shadow 180ms ease;
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(16, 21, 16, 0.94);
  box-shadow: 0 12px 30px rgba(16, 21, 16, 0.2);
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 210px;
}

.brand-logo {
  height: 52px;
  object-fit: contain;
  width: 52px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  letter-spacing: 0;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.73rem;
  margin-top: 1px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 6px;
}

.site-nav a {
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 10px 13px;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.site-nav .nav-cta {
  background: var(--lime-stone);
  color: var(--charcoal);
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 40px;
  padding: 8px;
  width: 44px;
}

.nav-toggle span {
  background: var(--white);
  display: block;
  height: 2px;
  margin: 7px 0;
  width: 100%;
}

.hero {
  align-items: end;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  position: relative;
}

.hero img,
.hero-overlay {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 21, 16, 0.86), rgba(16, 21, 16, 0.5) 42%, rgba(16, 21, 16, 0.1)),
    linear-gradient(0deg, rgba(16, 21, 16, 0.58), rgba(16, 21, 16, 0.04) 52%);
}

.hero-content {
  color: var(--white);
  max-width: 780px;
  padding: 155px clamp(18px, 5vw, 72px) 86px;
  position: relative;
  z-index: 1;
}

.lawn-hero {
  align-items: center;
  display: grid;
  min-height: 90vh;
  overflow: hidden;
  position: relative;
}

.lawn-hero img,
.lawn-hero-overlay {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.lawn-hero img {
  object-fit: cover;
}

.lawn-hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 21, 16, 0.92), rgba(16, 21, 16, 0.62) 48%, rgba(16, 21, 16, 0.1)),
    linear-gradient(0deg, rgba(16, 21, 16, 0.42), rgba(16, 21, 16, 0.08));
}

.lawn-hero-content {
  color: var(--white);
  max-width: 760px;
  padding: 160px clamp(24px, 5vw, 78px) 84px;
  position: relative;
  z-index: 1;
}

.lawn-hero h1 {
  font-size: clamp(3.6rem, 8vw, 7.7rem);
  line-height: 1.04;
  margin-bottom: 28px;
}

.lawn-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.62;
  max-width: 620px;
}

.lawn-price {
  align-items: start;
  background: rgba(245, 240, 228, 0.95);
  border-left: 6px solid var(--lime-stone);
  box-shadow: var(--shadow);
  color: var(--charcoal);
  display: inline-grid;
  gap: 10px;
  margin: 36px 0 0;
  min-width: 260px;
  padding: 24px 28px 24px;
}

.lawn-price span,
.lawn-price small {
  font-weight: 800;
  text-transform: uppercase;
}

.lawn-price span {
  color: var(--rust);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.lawn-price strong {
    font-size: clamp(3.15rem, 6vw, 4.6rem);
    line-height: 0.9;
    margin: 0;
}

.lawn-price small {
  color: #526052;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  margin-top: 8px;
}

.eyebrow {
  color: var(--rust);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--lime-stone);
}

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

h1,
h2 {
  font-family: 'Libre Baskerville', serif;
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  font-size: clamp(4rem, 11vw, 9.5rem);
  margin-bottom: 22px;
  max-width: 900px;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 5rem);
  margin-bottom: 20px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  max-width: 610px;
}

.hero-actions,
.button {
  align-items: center;
  display: flex;
}

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

.button {
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
}

.button.primary {
  background: var(--fern);
  color: var(--white);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
}

.trust-band {
  background: var(--charcoal);
  color: var(--white);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.trust-band div {
  background: rgba(255, 255, 255, 0.045);
  padding: 24px clamp(18px, 4vw, 54px);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  color: var(--lime-stone);
}

.trust-band span {
  color: rgba(255, 255, 255, 0.74);
  margin-top: 3px;
}

.lawn-band {
  background: var(--fern);
  color: var(--white);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.lawn-band div {
  background: rgba(16, 21, 16, 0.18);
  padding: 32px clamp(24px, 4vw, 60px);
}

.lawn-band strong,
.lawn-band span {
  display: block;
}

.lawn-band strong {
  color: var(--bone);
  font-size: 1.18rem;
}

.lawn-band span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  margin-top: 8px;
}

.section {
  padding: clamp(72px, 9vw, 124px) clamp(24px, 5vw, 76px);
}

.intro {
  align-items: end;
  display: grid;
  gap: clamp(28px, 5vw, 80px);
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.intro p:last-child,
.work-copy p {
  color: #3f4b40;
  font-size: 1.08rem;
}

.section-heading {
  margin-bottom: 32px;
  max-width: 820px;
}

.lawn-intro {
  align-items: start;
  display: grid;
  gap: clamp(34px, 5vw, 78px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
}

.included-list {
  display: grid;
  gap: 18px;
}

.included-list article {
  background: var(--white);
  border: 1px solid rgba(23, 32, 26, 0.1);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(16, 21, 16, 0.08);
  padding: 30px;
}

.included-list span {
  color: var(--rust);
  font-weight: 800;
}

.included-list h3 {
  font-size: 1.35rem;
  margin: 18px 0 10px;
}

.included-list p {
  color: #526052;
  line-height: 1.62;
  margin-bottom: 0;
}

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

.service-card {
  background: var(--white);
  border: 1px solid rgba(23, 32, 26, 0.1);
  border-radius: 8px;
  min-height: 270px;
  padding: 24px;
  box-shadow: 0 12px 34px rgba(16, 21, 16, 0.08);
}

.service-card span {
  color: var(--rust);
  font-weight: 800;
}

.service-card h3 {
  font-size: 1.35rem;
  margin: 48px 0 12px;
}

.service-card p,
.steps p,
.quote p,
.site-footer p {
  color: #526052;
}

.work {
  align-items: stretch;
  background: var(--charcoal);
  color: var(--white);
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.work-copy {
  align-self: center;
  max-width: 780px;
}

.work-copy p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 640px;
}

.work-panel {
  background:
    linear-gradient(135deg, rgba(215, 201, 163, 0.2), rgba(47, 107, 63, 0.34)),
    var(--fern);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1px;
  overflow: hidden;
}

.work-panel div {
  background: rgba(16, 21, 16, 0.34);
  padding: 32px;
}

.work-panel span,
.work-panel strong {
  display: block;
}

.work-panel span {
  color: rgba(255, 255, 255, 0.68);
}

.work-panel strong {
  font-size: clamp(1.6rem, 4vw, 3.4rem);
  line-height: 1;
  margin-top: 10px;
}

.steps {
  counter-reset: steps;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  border-top: 3px solid var(--fern);
  padding: 28px 22px 0 0;
}

.steps span {
  align-items: center;
  background: var(--charcoal);
  border-radius: 999px;
  color: var(--white);
  display: grid;
  font-weight: 800;
  height: 38px;
  margin-bottom: 22px;
  place-items: center;
  width: 38px;
}

.guarantee {
  align-items: center;
  background: var(--fern);
  color: var(--white);
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: auto minmax(0, 1fr);
  padding: clamp(64px, 8vw, 104px) clamp(24px, 5vw, 76px);
}

.guarantee-badge {
  align-items: center;
  aspect-ratio: 1;
  background: var(--lime-stone);
  border: 8px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: var(--charcoal);
  display: grid;
  font-size: clamp(2.4rem, 6vw, 4.75rem);
  font-weight: 800;
  line-height: 1;
  place-items: center;
  width: clamp(132px, 18vw, 210px);
}

.guarantee h2 {
  max-width: 830px;
}

.guarantee p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
  line-height: 1.68;
  margin: 26px 0 0;
  max-width: 690px;
}

.quote {
  align-items: start;
  background: #ebe2cc;
  display: grid;
  gap: clamp(28px, 5vw, 74px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  padding: clamp(72px, 9vw, 124px) clamp(24px, 5vw, 76px);
}

.quote h2 {
  margin-bottom: 28px;
}

.quote h2 + p {
  line-height: 1.72;
  max-width: 620px;
}

.jotform-section {
  display: flex;
  justify-content: center;
}

.lawn-pricing {
  align-items: center;
  background: var(--charcoal);
  color: var(--white);
  display: grid;
  gap: clamp(28px, 5vw, 74px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  padding: clamp(72px, 9vw, 124px) clamp(24px, 5vw, 76px);
}

.pricing-copy {
  max-width: 820px;
}

.pricing-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 650px;
}

.pricing-card {
  background: var(--bone);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--charcoal);
  padding: 34px;
}

.pricing-card span {
  color: var(--rust);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-card strong {
  display: block;
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(4rem, 11vw, 7rem);
  line-height: 0.92;
  margin-top: 6px;
  margin-bottom: 10px;
}

.pricing-card p {
  color: #526052;
  font-weight: 800;
  margin-bottom: 24px;
}

.quote-form {
  background: var(--white);
  border: 1px solid rgba(23, 32, 26, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 20px;
  padding: 30px;
}

.jotform-embed {
  background: var(--white);
  border: 1px solid rgba(23, 32, 26, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-height: 520px;
  overflow: hidden;
  padding: 10px;
  width: min(100%, 860px);
}

.jotform-embed iframe {
  display: block;
  width: 100%;
}

label {
  color: #354236;
  display: grid;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 7px;
}

input,
select,
textarea {
  border: 1px solid #cfc5ad;
  border-radius: 4px;
  color: var(--ink);
  font: inherit;
  min-height: 50px;
  padding: 13px 14px;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--fern);
  outline: 3px solid rgba(47, 107, 63, 0.16);
}

.quote-form .button {
  width: 100%;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 24px clamp(18px, 5vw, 72px);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.site-footer p:first-child {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    background: rgba(16, 21, 16, 0.98);
    display: none;
    left: 0;
    padding: 14px 24px 24px;
    position: absolute;
    right: 0;
    top: 78px;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 15px 16px;
  }

  .trust-band,
  .lawn-band,
  .intro,
  .lawn-intro,
  .service-grid,
  .work,
  .steps,
  .guarantee,
  .quote,
  .lawn-pricing {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 86vh;
  }

  .lawn-hero {
    min-height: 86vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(16, 21, 16, 0.88), rgba(16, 21, 16, 0.34)),
      linear-gradient(0deg, rgba(16, 21, 16, 0.7), rgba(16, 21, 16, 0.08) 55%);
  }

  .lawn-hero-overlay {
    background:
      linear-gradient(90deg, rgba(16, 21, 16, 0.9), rgba(16, 21, 16, 0.46)),
      linear-gradient(0deg, rgba(16, 21, 16, 0.7), rgba(16, 21, 16, 0.08) 55%);
  }

  .service-card {
    min-height: auto;
  }

  .service-card h3 {
    margin-top: 30px;
  }

  .steps li {
    padding-right: 0;
  }

  .guarantee-badge {
    width: 132px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    height: 44px;
    width: 44px;
  }

  .brand strong {
    font-size: 0.86rem;
  }

  .brand small {
    display: none;
  }

  .hero-content {
    padding: 132px 24px 58px;
  }

  .lawn-hero-content {
    padding: 134px 24px 62px;
  }

  h1 {
    font-size: clamp(3.05rem, 17vw, 4.85rem);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3.15rem);
    line-height: 1.08;
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .lawn-price {
    gap: 12px;
    min-width: 0;
    padding: 24px;
    width: 100%;
  }

  .lawn-price span,
  .lawn-price small {
    margin-left: 0;
  }

  .button {
    width: 100%;
  }

  .included-list article,
  .pricing-card,
  .quote-form,
  .jotform-embed {
    padding: 24px;
  }
}
