:root {
  --green-dark: #2d5016;
  --green-accent: #6b8f3e;
  --white: #ffffff;
  --black: #111111;
  --soft: #f5f7f2;
  --warm: #fbfaf6;
  --line: #dfe8d6;
  --text: #30362d;
  --shadow: 0 18px 44px rgba(17, 17, 17, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  background: var(--warm);
}

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

a {
  color: inherit;
}

h1,
h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

p {
  overflow-wrap: anywhere;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 96px;
  padding: 20px clamp(18px, 5vw, 64px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.52), transparent);
}

.logo-link {
  display: block;
  width: min(250px, 60vw);
  text-decoration: none;
}

.logo-link img {
  width: 100%;
  max-height: 64px;
  height: auto;
  object-fit: contain;
}

.header-phone {
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: clamp(72px, 9vw, 118px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.86), rgba(17, 17, 17, 0.48) 56%, rgba(17, 17, 17, 0.16)),
    linear-gradient(180deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.74)),
    url("assets/stock-hero/hero-lawn.jpg") center / cover;
}

.hero-logo {
  display: none;
}

.hero-copy {
  width: min(860px, 100%);
}

.service-area,
.eyebrow {
  margin: 0 0 13px;
  color: var(--green-accent);
  font-weight: 900;
  text-transform: uppercase;
}

.hero .service-area {
  color: #dff0c2;
}

.hero p:not(.service-area) {
  max-width: 650px;
  color: #eef4e9;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 700;
}

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

.button,
.mobile-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  border: 2px solid transparent;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary,
.mobile-call {
  color: var(--white);
  background: var(--green-dark);
  border-color: var(--green-dark);
}

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

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) 0;
}

.intro-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(45, 80, 22, 0.98), rgba(17, 17, 17, 0.96)),
    var(--green-dark);
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: clamp(24px, 6vw, 70px);
  align-items: center;
}

.intro p {
  max-width: 780px;
  margin: 0;
  color: #eef4e9;
  font-size: clamp(1.16rem, 2vw, 1.45rem);
  font-weight: 900;
}

.intro-points {
  display: grid;
  gap: 8px;
  min-width: min(320px, 100%);
}

.intro-points span {
  padding: 12px 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-weight: 900;
}

.local-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.8fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.local-photo {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.local-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.local-copy p:not(.eyebrow) {
  color: var(--text);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading p:not(.eyebrow) {
  max-width: 740px;
  color: var(--text);
  font-size: 1.05rem;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  min-height: 74px;
  padding: 17px 18px 17px 22px;
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.045);
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 4px;
  background: var(--green-accent);
  border-radius: 0 4px 4px 0;
}

.reviews {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.reviews-inner {
  padding-top: clamp(46px, 7vw, 76px);
  padding-bottom: clamp(46px, 7vw, 76px);
}

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

.review-list article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--warm);
}

.stars {
  margin-bottom: 12px;
  color: #fbbc04;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.review-list p {
  margin: 0 0 14px;
  color: var(--black);
  font-size: 1.05rem;
  font-weight: 900;
}

.review-list span {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.google-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid var(--green-accent);
}

.work {
  background: linear-gradient(180deg, #111111, #16220f);
  color: var(--white);
}

.work .eyebrow {
  color: #dff0c2;
}

.work .section-heading p:not(.eyebrow) {
  color: #d9e5d1;
}

.photo-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 430px);
  gap: 14px;
  overflow-x: auto;
  padding: 4px 0 18px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--green-accent) rgba(255, 255, 255, 0.16);
}

.photo-row figure {
  position: relative;
  height: 360px;
  margin: 0;
  overflow: hidden;
  background: var(--green-dark);
  border-radius: 8px;
  scroll-snap-align: start;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.3);
}

.photo-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services,
.contact {
  position: relative;
}

.services::before,
.contact::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 6vw, 76px);
}

.contact-copy {
  align-self: center;
}

.contact-copy p {
  color: var(--text);
  font-size: 1.08rem;
}

.phone-big {
  display: block;
  margin: 24px 0 6px;
  color: var(--green-dark);
  font-size: clamp(2.1rem, 5vw, 4.3rem);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.email-link {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
}

.contact-form {
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
  color: var(--black);
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 12px;
  border: 1px solid #b9c5b0;
  border-radius: 4px;
  color: var(--black);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(107, 143, 62, 0.3);
  border-color: var(--green-dark);
}

.hidden {
  display: none;
}

.site-footer {
  padding: 34px clamp(18px, 5vw, 64px);
  color: var(--white);
  background: var(--black);
}

.site-footer img {
  width: min(300px, 76vw);
  margin-bottom: 16px;
}

.site-footer p {
  max-width: 780px;
  margin: 8px 0;
  color: #d9e5d1;
}

.site-footer a {
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.mobile-call {
  display: none;
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .header-phone {
    display: none;
  }

  .hero {
    min-height: 760px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 132px;
  }

  .hero-logo {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    display: block;
    width: min(210px, 54vw);
  }

  .hero-logo img {
    width: 100%;
    height: auto;
  }

  h1 {
    font-size: clamp(3rem, 13vw, 4rem);
  }

  .service-list,
  .contact,
  .intro,
  .local-proof,
  .review-list {
    grid-template-columns: 1fr;
  }

  .intro-points {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 68px;
  }

  .logo-link {
    width: min(220px, 66vw);
  }

  .hero-actions {
    display: grid;
  }

  .section {
    width: min(100% - 32px, 1120px);
    padding: 48px 0;
  }

  .local-proof {
    gap: 22px;
  }

  .local-photo {
    order: -1;
  }

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

  .service-list li {
    min-height: 0;
    padding: 12px 12px 12px 15px;
    font-size: 0.88rem;
    line-height: 1.25;
  }

  .service-list li::before {
    top: 12px;
    bottom: 12px;
  }

  .review-list article {
    padding: 16px;
  }

  .photo-row {
    grid-auto-columns: 82vw;
  }

  .photo-row figure {
    height: 310px;
  }

  .mobile-call {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 20;
    display: flex;
    box-shadow: 0 16px 36px rgba(17, 17, 17, 0.22);
  }
}
