* {
  box-sizing: border-box;
}

:root {
  --green: #003f25;
  --green-light: #0c6b35;
  --lime: #a8cf45;
  --cream: #f8f4e7;
  --white: #ffffff;
  --dark: #101f15;
  --muted: #4d5c50;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px 6vw;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  color: var(--green);
  font-size: 1.1rem;
}

.logo-link img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: white;
  border-radius: 12px;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 800;
}

nav a {
  text-decoration: none;
  color: var(--green);
}

.nav-button {
  background: var(--green);
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
}

.hero {
  min-height: 88vh;
  background:
    linear-gradient(90deg, rgba(0, 63, 37, 0.88) 0%, rgba(0, 63, 37, 0.70) 46%, rgba(0, 63, 37, 0.46) 100%),
    url("assets/hero-lawn.jpg");
  background-size: cover;
  background-position: center;
  color: white;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 90px 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 46px;
  align-items: center;
}

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

.eyebrow.dark {
  color: var(--green-light);
}

h1,
h2 {
  line-height: 0.98;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  max-width: 780px;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  color: var(--green);
  margin-bottom: 24px;
}

.lead {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--lime);
  margin: 24px 0 6px;
}

.sublead {
  font-size: 1.15rem;
  max-width: 640px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button,
button {
  display: inline-block;
  border: none;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 900;
  padding: 15px 22px;
  border-radius: 12px;
  cursor: pointer;
}

.primary,
button {
  background: var(--lime);
  color: var(--dark);
}

.secondary {
  background: white;
  color: var(--green);
}

.brand-card {
  background: white;
  padding: 18px;
  border-radius: 28px;
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.28);
}

.brand-card img {
  display: block;
  width: 100%;
  border-radius: 18px;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--green);
  color: white;
  text-align: center;
  font-weight: 900;
}

.trust-bar div {
  padding: 18px 12px;
  border-right: 1px solid rgba(255,255,255,0.16);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 76px 24px;
}

.intro-strip {
  text-align: center;
}

.intro-strip p {
  font-size: 1.2rem;
  margin: 0;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-grid article {
  background: white;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
  border-top: 6px solid var(--lime);
}

.service-grid span {
  color: var(--lime);
  font-weight: 1000;
  font-size: 1.25rem;
}

.service-grid h3 {
  color: var(--green);
  margin: 10px 0 8px;
  font-size: 1.35rem;
}

.service-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

figure {
  margin: 0;
  background: white;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

figure img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

figcaption {
  padding: 18px 20px;
  color: var(--green);
  font-weight: 900;
}

.reviews {
  text-align: center;
}

.review-card {
  max-width: 760px;
  margin: 0 auto;
  background: white;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0,0,0,.07);
}

.stars {
  color: var(--green-light);
  font-size: 1.8rem;
  letter-spacing: .08em;
  font-weight: 900;
}

.about {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 36px;
  align-items: center;
}

.about p {
  font-size: 1.1rem;
  color: var(--muted);
}

.about-card {
  background: white;
  padding: 24px;
  border-radius: 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.about-card img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.service-area-section {
  text-align: center;
}

.service-area {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.service-area strong {
  background: white;
  color: var(--green);
  border-radius: 999px;
  padding: 14px 22px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.contact {
  background: var(--green);
  color: white;
  text-align: center;
  max-width: none;
  padding-left: 24px;
  padding-right: 24px;
}

.contact h2 {
  color: white;
}

.phone-large {
  display: inline-block;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 1;
  color: var(--lime);
  font-weight: 1000;
  text-decoration: none;
  margin: 10px 0 18px;
}

.contact-line {
  margin: 6px 0;
  font-size: 1.1rem;
}

form {
  display: grid;
  gap: 14px;
  width: min(720px, 100%);
  margin: 34px auto 0;
  background: white;
  padding: 24px;
  border-radius: 20px;
}

input,
textarea {
  width: 100%;
  border: 1px solid #d6ddd4;
  border-radius: 12px;
  padding: 15px 16px;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 130px;
}

.form-note {
  font-size: .9rem;
  opacity: .82;
  margin-top: 14px;
}

.floating-call {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  background: var(--lime);
  color: var(--dark);
  text-align: center;
  text-decoration: none;
  font-weight: 1000;
  padding: 15px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

footer {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 30px 20px;
}

footer p {
  margin: 4px 0;
}

@media (max-width: 900px) {
  .site-header {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero-inner,
  .service-grid,
  .about,
  .gallery-grid,
  .trust-bar {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 58px;
  }

  .brand-card {
    max-width: 560px;
  }

  figure img {
    height: 280px;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 76px;
  }

  nav a:not(.nav-button) {
    display: none;
  }

  .logo-link span {
    font-size: 1rem;
  }

  .logo-link img {
    width: 46px;
    height: 46px;
  }

  .section {
    padding: 56px 18px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    text-align: center;
  }

  .floating-call {
    display: block;
  }
}
