:root {
  --green-950: #10251a;
  --green-850: #193b28;
  --green-700: #27613c;
  --green-500: #4f8f36;
  --leaf: #8fbf49;
  --gold: #d1a342;
  --soil: #6d4a2f;
  --stone: #dfe5d8;
  --mist: #f6f8f1;
  --white: #ffffff;
  --ink: #132017;
  --muted: #657264;
  --line: rgba(16, 37, 26, 0.14);
  --shadow: 0 24px 60px rgba(16, 37, 26, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--mist);
}

body::selection {
  color: var(--white);
  background: var(--green-700);
}

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

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

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 248, 241, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
  font-weight: 900;
  font-size: 0.9rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green-950), var(--green-500));
  box-shadow: 0 12px 30px rgba(16, 37, 26, 0.2);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: auto -20% 8px -20%;
  height: 8px;
  background: rgba(255, 255, 255, 0.28);
  transform: rotate(-15deg);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  color: var(--green-950);
  font-size: 1rem;
}

.brand-text span {
  color: var(--green-700);
  font-size: 0.86rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.primary-nav a {
  padding: 10px 12px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 6px;
  transition: color 180ms ease, background-color 180ms ease;
}

.primary-nav a:hover {
  color: var(--green-950);
  background: rgba(79, 143, 54, 0.1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  font-weight: 800;
  border-radius: 6px;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.nav-cta,
.button-primary {
  color: var(--white);
  background: var(--green-700);
  box-shadow: 0 14px 34px rgba(39, 97, 60, 0.24);
}

.nav-cta:hover,
.button-primary:hover {
  transform: translateY(-2px);
  background: var(--green-850);
  box-shadow: 0 18px 40px rgba(39, 97, 60, 0.3);
}

.button-secondary {
  color: var(--green-950);
  border: 1px solid rgba(16, 37, 26, 0.18);
  background: rgba(255, 255, 255, 0.8);
}

.button-secondary:hover {
  transform: translateY(-2px);
  background: var(--white);
  box-shadow: 0 14px 28px rgba(16, 37, 26, 0.1);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 70px;
  background:
    linear-gradient(120deg, rgba(246, 248, 241, 0.95), rgba(224, 232, 215, 0.88)),
    repeating-linear-gradient(
      90deg,
      rgba(79, 143, 54, 0.08) 0,
      rgba(79, 143, 54, 0.08) 16px,
      transparent 16px,
      transparent 54px
    );
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(145deg, transparent 0 56%, rgba(209, 163, 66, 0.16) 56% 57%, transparent 57%),
    linear-gradient(25deg, transparent 0 64%, rgba(16, 37, 26, 0.08) 64% 65%, transparent 65%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  color: var(--green-700);
  font-weight: 900;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 14px;
}

.hero h1 {
  max-width: 720px;
  color: var(--green-950);
  font-size: 4.7rem;
  line-height: 0.95;
  margin-bottom: 24px;
}

.hero-copy {
  max-width: 600px;
  font-size: 1.18rem;
  color: #465345;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
  margin: 0;
}

.hero-proof div {
  padding: 14px;
  border-left: 3px solid var(--leaf);
  background: rgba(255, 255, 255, 0.58);
  border-radius: var(--radius);
}

.hero-proof dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-proof dd {
  margin: 4px 0 0;
  color: var(--green-950);
  font-size: 0.98rem;
  font-weight: 900;
}

.hero-visual {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.visual-topline,
.visual-metrics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--green-950);
  font-size: 0.84rem;
  font-weight: 900;
}

.visual-topline span:last-child,
.visual-metrics span {
  color: var(--green-700);
}

.property-scene {
  position: relative;
  min-height: 430px;
  margin: 16px 0;
  overflow: hidden;
  border: 1px solid rgba(16, 37, 26, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #dbe6cd, #eef4e4 46%, #c9d8bd);
}

.scene-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  padding: 9px 12px;
  color: var(--green-950);
  font-size: 0.82rem;
  font-weight: 900;
  border: 1px solid rgba(16, 37, 26, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.76);
}

.lawn-stripes {
  position: absolute;
  inset: 78px 32px 32px 32px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 48%),
    repeating-linear-gradient(
      114deg,
      #477f32 0,
      #477f32 20px,
      #5f9f3e 20px,
      #5f9f3e 42px
    );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.26);
}

.walkway {
  position: absolute;
  right: 0;
  bottom: -28px;
  width: 58%;
  height: 160px;
  background:
    repeating-linear-gradient(90deg, rgba(16, 37, 26, 0.09) 0 1px, transparent 1px 42px),
    linear-gradient(135deg, #d9d5c6, #f2efe2);
  clip-path: polygon(33% 0, 100% 0, 100% 100%, 0 100%);
}

.mulch-bed {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52%;
  height: 144px;
  border-top-right-radius: 90px;
  background:
    radial-gradient(circle at 28% 50%, rgba(255, 255, 255, 0.16), transparent 26%),
    linear-gradient(135deg, #5d3927, var(--soil));
}

.mulch-bed span {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-850), var(--leaf));
  box-shadow: 0 8px 18px rgba(16, 37, 26, 0.18);
}

.mulch-bed span:nth-child(1) {
  left: 34px;
  top: 38px;
}

.mulch-bed span:nth-child(2) {
  left: 98px;
  top: 22px;
}

.mulch-bed span:nth-child(3) {
  left: 164px;
  top: 54px;
}

.curb-line {
  position: absolute;
  left: 38px;
  right: 42px;
  bottom: 154px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 8px 16px rgba(109, 74, 47, 0.18);
}

.service-note {
  position: absolute;
  right: 18px;
  top: 92px;
  z-index: 4;
  width: min(210px, calc(100% - 36px));
  padding: 14px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(16, 37, 26, 0.88);
  box-shadow: 0 16px 36px rgba(16, 37, 26, 0.24);
}

.service-note strong,
.service-note span {
  display: block;
  color: var(--white);
}

.service-note span {
  margin-top: 5px;
  font-size: 0.84rem;
  line-height: 1.5;
  opacity: 0.84;
}

.visual-metrics {
  flex-wrap: wrap;
}

.trust-section {
  padding: 38px 0 80px;
  background: var(--white);
}

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

.trust-card {
  min-height: 160px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(16, 37, 26, 0.1);
}

.trust-number {
  display: block;
  color: var(--green-950);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 14px;
}

.trust-card p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.review-card {
  background: var(--green-950);
}

.review-card p,
.review-card span {
  color: var(--white);
}

.review-card span {
  display: block;
  margin-top: 14px;
  opacity: 0.7;
  font-size: 0.84rem;
  font-weight: 800;
}

.section {
  padding: 94px 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-header h2,
.why-copy h2,
.cta-section h2 {
  color: var(--green-950);
  font-size: 2.9rem;
  line-height: 1.05;
  margin-bottom: 18px;
}

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

.service-card {
  position: relative;
  min-height: 260px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--green-700), var(--leaf), var(--gold));
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(39, 97, 60, 0.32);
  box-shadow: 0 20px 42px rgba(16, 37, 26, 0.11);
}

.service-index {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 32px;
  color: var(--green-950);
  font-weight: 900;
  border-radius: 6px;
  background: rgba(143, 191, 73, 0.18);
}

.service-card h3 {
  color: var(--green-950);
  font-size: 1.28rem;
  margin-bottom: 12px;
}

.service-card p {
  margin-bottom: 0;
}

.why-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 37, 26, 0.96), rgba(25, 59, 40, 0.98)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 2px,
      transparent 2px,
      transparent 22px
    );
}

.why-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: start;
}

.why-section .eyebrow {
  color: var(--leaf);
}

.why-copy h2,
.why-copy p {
  color: var(--white);
}

.why-copy p,
.why-list p {
  opacity: 0.8;
}

.why-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.why-list article {
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.why-list h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.why-list p {
  margin-bottom: 0;
  color: var(--white);
}

.process-section {
  background: var(--white);
}

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

.process-list li {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--white), var(--mist));
}

.process-list span {
  display: block;
  color: var(--green-700);
  font-size: 0.9rem;
  font-weight: 900;
  margin-bottom: 38px;
}

.process-list h3 {
  color: var(--green-950);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.process-list p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.work-section {
  background:
    linear-gradient(180deg, var(--mist), #edf3e6);
}

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

.work-item {
  min-height: 248px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 37, 26, 0.12);
  border-radius: var(--radius);
  background: #dce6d2;
  box-shadow: 0 14px 34px rgba(16, 37, 26, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.work-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(16, 37, 26, 0.13);
}

.work-item::before {
  content: "";
  position: absolute;
  inset: 0;
}

.work-item span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 10px 12px;
  color: var(--green-950);
  font-weight: 900;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 37, 26, 0.1);
}

.work-lawn::before {
  background:
    linear-gradient(180deg, transparent 0 56%, rgba(16, 37, 26, 0.22) 100%),
    repeating-linear-gradient(112deg, #4f8f36 0 22px, #6aa146 22px 44px);
}

.work-before::before {
  background:
    linear-gradient(90deg, rgba(109, 74, 47, 0.92) 0 50%, rgba(79, 143, 54, 0.9) 50% 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.16) 0 2px, transparent 2px 26px);
}

.work-team::before {
  background:
    linear-gradient(135deg, rgba(16, 37, 26, 0.14), rgba(255, 255, 255, 0.18)),
    linear-gradient(90deg, #d9e0d3 0 25%, #f3f1e7 25% 50%, #b9cfaa 50% 75%, #d1a342 75% 100%);
}

.work-mulch::before {
  background:
    radial-gradient(circle at 28% 42%, rgba(143, 191, 73, 0.88) 0 12%, transparent 13%),
    radial-gradient(circle at 62% 34%, rgba(143, 191, 73, 0.82) 0 10%, transparent 11%),
    linear-gradient(135deg, #4b2f21, #805638);
}

.work-service::before {
  background:
    linear-gradient(145deg, transparent 0 62%, #d1a342 62% 64%, transparent 64%),
    repeating-linear-gradient(90deg, #dfe5d8 0 34px, #c7d6bd 34px 68px);
}

.work-result::before {
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.38), transparent 24%),
    repeating-linear-gradient(115deg, #27613c 0 18px, #4f8f36 18px 40px);
}

.cta-section {
  padding: 86px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 37, 26, 0.96), rgba(39, 97, 60, 0.94)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 18px,
      transparent 18px,
      transparent 56px
    );
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: center;
}

.cta-section .eyebrow {
  color: var(--leaf);
}

.cta-section h2,
.cta-section p {
  color: var(--white);
}

.cta-section p {
  opacity: 0.82;
}

.contact-panel {
  display: grid;
  gap: 12px;
}

.contact-panel .button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
}

.contact-panel p {
  margin: 4px 0 0;
  font-size: 0.88rem;
}

.site-footer {
  padding: 52px 0;
  color: rgba(255, 255, 255, 0.82);
  background: #0b1711;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr 1fr;
  gap: 32px;
}

.footer-brand {
  display: inline-block;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.site-footer h2 {
  color: var(--white);
  font-size: 1rem;
  margin: 0 0 14px;
}

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

.site-footer a:not(.footer-brand) {
  display: block;
  width: fit-content;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 9px;
  transition: color 180ms ease;
}

.site-footer a:hover {
  color: var(--leaf);
}

@media (max-width: 980px) {
  .nav-shell {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .primary-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    padding: 68px 0 58px;
  }

  .hero-grid,
  .why-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 3.7rem;
  }

  .hero-visual {
    max-width: 620px;
  }

  .trust-grid,
  .service-grid,
  .process-list,
  .work-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    position: static;
  }

  .nav-shell {
    gap: 12px;
  }

  .brand {
    width: 100%;
  }

  .nav-cta {
    width: 100%;
  }

  .primary-nav {
    gap: 4px;
  }

  .primary-nav a {
    padding: 9px 10px;
    font-size: 0.88rem;
  }

  .hero {
    padding: 54px 0 42px;
  }

  .hero h1 {
    font-size: 2.7rem;
    line-height: 1;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

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

  .hero-proof,
  .trust-grid,
  .service-grid,
  .process-list,
  .work-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    padding: 12px;
  }

  .property-scene {
    min-height: 360px;
  }

  .visual-topline,
  .visual-metrics {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-note {
    top: auto;
    right: 12px;
    bottom: 18px;
  }

  .mulch-bed span:nth-child(3) {
    display: none;
  }

  .section {
    padding: 68px 0;
  }

  .section-header h2,
  .why-copy h2,
  .cta-section h2 {
    font-size: 2.15rem;
  }

  .service-card,
  .process-list li,
  .trust-card {
    min-height: auto;
  }

  .cta-section {
    padding: 66px 0;
  }
}

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