:root {
  --leaf: #123f25;
  --leaf-dark: #092b18;
  --moss: #4f7b3c;
  --mint: #dff2d1;
  --cream: #f7f3ea;
  --paper: #fffdf8;
  --ink: #152016;
  --muted: #5f6c61;
  --line: rgba(18, 63, 37, 0.16);
  --shadow: 0 18px 50px rgba(8, 32, 18, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: white;
  background: var(--leaf);
  border-radius: 50%;
  font-size: 13px;
}

.nav-links {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.nav-links a,
.header-cta,
.button,
.phone-link,
.email-link,
.site-footer a {
  text-decoration: none;
}

.header-cta {
  padding: 11px 16px;
  color: white;
  background: var(--leaf);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--leaf-dark);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 32, 16, 0.88) 0%, rgba(5, 32, 16, 0.64) 46%, rgba(5, 32, 16, 0.12) 100%),
    linear-gradient(0deg, rgba(5, 32, 16, 0.72), rgba(5, 32, 16, 0.04) 55%),
    url("assets/images/garden-after.jpeg") center / cover;
}

.hero-content {
  position: relative;
  max-width: 780px;
  padding: 110px clamp(20px, 7vw, 84px) 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--moss);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(42px, 8vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
}

.button-primary {
  color: white;
  background: #1e7f3f;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.button-secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
}

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

.trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
}

.intro-strip {
  padding: 24px clamp(20px, 7vw, 84px);
  color: white;
  background: #1e7f3f;
}

.intro-strip p {
  max-width: 960px;
  margin: 0 auto;
  font-size: clamp(18px, 2.5vw, 26px);
  line-height: 1.4;
  text-align: center;
  font-weight: 800;
}

.section,
.about-quote,
.flyer-section {
  padding: 82px clamp(20px, 7vw, 84px);
}

.section-heading {
  max-width: 730px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading h2,
.about-copy h2,
.quote-panel h2,
.flyer-section h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p,
.about-copy p,
.flyer-section p,
.quote-panel p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.services-section {
  background: var(--cream);
}

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

.service-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 30px rgba(25, 54, 28, 0.06);
}

.service-icon {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 65% 35%, #f8d37b 0 12%, transparent 13%),
    linear-gradient(135deg, var(--leaf), var(--moss));
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.work-section {
  background: white;
}

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

.before-after article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.before-after img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.before-after div {
  padding: 18px;
}

.before-after span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--leaf);
  font-weight: 800;
}

.before-after p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.about-quote {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
  background: var(--leaf);
  color: white;
}

.about-copy {
  max-width: 760px;
}

.about-copy .eyebrow,
.about-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.quote-panel {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.quote-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.full {
  width: 100%;
  margin: 10px 0 18px;
}

.phone-link,
.email-link {
  display: block;
  padding: 10px 0;
  color: white;
  font-size: 20px;
  font-weight: 800;
}

.email-link {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
}

.flyer-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 440px);
  gap: clamp(28px, 7vw, 80px);
  align-items: start;
  background: var(--cream);
}

.flyer-section img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 7vw, 84px);
  color: rgba(255, 255, 255, 0.84);
  background: var(--leaf-dark);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: white;
  font-weight: 800;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .services-grid,
  .before-after,
  .about-quote,
  .flyer-section {
    grid-template-columns: 1fr 1fr;
  }

  .about-quote {
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: stretch;
    gap: 12px;
  }

  .brand span:last-child {
    max-width: 90px;
  }

  .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-inline: 12px;
  }

  .hero {
    min-height: 84vh;
  }

  .hero-media {
    background:
      linear-gradient(0deg, rgba(5, 32, 16, 0.9) 0%, rgba(5, 32, 16, 0.68) 58%, rgba(5, 32, 16, 0.28) 100%),
      url("assets/images/garden-after.jpeg") center / cover;
  }

  .hero-content {
    padding: 92px 20px 42px;
  }

  .hero-actions,
  .button,
  .site-footer {
    width: 100%;
  }

  .section,
  .about-quote,
  .flyer-section {
    padding: 58px 20px;
  }

  .services-grid,
  .before-after,
  .about-quote,
  .flyer-section {
    grid-template-columns: 1fr;
  }

  .section-heading.compact {
    display: block;
  }

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

  .quote-panel {
    padding: 24px;
  }

  .site-footer {
    flex-direction: column;
  }
}
