:root {
  --green-950: #092013;
  --green-900: #10351f;
  --green-800: #17492b;
  --green-700: #245c2f;
  --green-500: #4f9d5d;
  --green-100: #eaf6ec;
  --gold-500: #f4bd3f;
  --cream: #fff9ec;
  --sand: #f4ecd8;
  --white: #ffffff;
  --text: #18231c;
  --muted: #657166;
  --border: #dce8dd;
  --shadow-soft: 0 20px 60px rgba(9, 32, 19, 0.12);
  --shadow-card: 0 16px 38px rgba(9, 32, 19, 0.1);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green-900);
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 20px;
}

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

.section {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 249, 236, 0.92);
  border-bottom: 1px solid rgba(220, 232, 221, 0.86);
  backdrop-filter: blur(16px);
}

.top-bar {
  color: var(--white);
  background: var(--green-900);
  font-size: 0.9rem;
}

.top-bar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.top-bar p {
  margin: 0;
}

.top-bar a {
  font-weight: 800;
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--green-700), var(--green-900));
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  font-weight: 900;
}

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

.brand strong {
  color: var(--green-950);
  font-size: 1.06rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--green-900);
  font-size: 0.95rem;
  font-weight: 800;
}

.nav-links a:not(.nav-cta) {
  padding: 10px 0;
}

.nav-links a:hover {
  color: var(--green-500);
}

.nav-cta {
  padding: 12px 18px;
  color: var(--white);
  background: var(--green-700);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(31, 91, 52, 0.18);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: var(--green-100);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  overflow: hidden;
  min-height: 760px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 18% 16%, rgba(244, 189, 63, 0.34), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(63, 138, 82, 0.2), transparent 30%),
    linear-gradient(120deg, rgba(255, 249, 236, 0.96), rgba(234, 246, 236, 0.9));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.78fr);
  align-items: center;
  gap: 58px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--green-700);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--green-950);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7.4vw, 6.4rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.7vw, 4rem);
}

h3 {
  margin-bottom: 10px;
  color: var(--green-950);
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.2rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--green-700);
  box-shadow: 0 16px 32px rgba(31, 91, 52, 0.22);
}

.button.primary:hover {
  background: var(--green-900);
}

.button.secondary,
.price-button {
  color: var(--green-950);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 12px 26px rgba(9, 32, 19, 0.08);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(220, 232, 221, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.trust-strip div {
  padding: 18px;
}

.trust-strip div + div {
  border-left: 1px solid var(--border);
}

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

.trust-strip strong {
  color: var(--green-900);
  font-size: 1.35rem;
  line-height: 1;
}

.trust-strip span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 700;
}

.hero-panel {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(220, 232, 221, 0.92);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.yard-illustration {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(180deg, #b8e4ff 0%, #eaf6ec 100%);
}

.sun {
  position: absolute;
  top: 36px;
  right: 52px;
  width: 70px;
  height: 70px;
  background: var(--gold-500);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(244, 189, 63, 0.18);
}

.cloud {
  position: absolute;
  width: 90px;
  height: 28px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  bottom: 8px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}

.cloud::before {
  left: 18px;
  width: 32px;
  height: 32px;
}

.cloud::after {
  right: 16px;
  width: 42px;
  height: 42px;
}

.cloud-one {
  left: 42px;
  top: 46px;
}

.cloud-two {
  left: 150px;
  top: 84px;
  transform: scale(0.75);
}

.hill {
  position: absolute;
  left: -8%;
  width: 116%;
  border-radius: 50% 50% 0 0;
}

.hill-back {
  bottom: 34px;
  height: 130px;
  background: #8ecf8b;
}

.hill-front {
  bottom: -22px;
  height: 150px;
  background: linear-gradient(140deg, var(--green-700), #60a35d);
}

.mower {
  position: absolute;
  left: 90px;
  bottom: 46px;
  width: 170px;
  height: 80px;
}

.mower-body {
  position: absolute;
  left: 20px;
  bottom: 18px;
  width: 90px;
  height: 38px;
  background: var(--gold-500);
  border-radius: 12px 16px 10px 10px;
  box-shadow: inset -14px 0 0 rgba(0, 0, 0, 0.08);
}

.mower-handle {
  position: absolute;
  left: 90px;
  bottom: 50px;
  width: 80px;
  height: 40px;
  border-top: 6px solid var(--green-950);
  border-right: 6px solid var(--green-950);
  transform: skewY(-18deg);
}

.wheel {
  position: absolute;
  bottom: 8px;
  width: 28px;
  height: 28px;
  background: var(--green-950);
  border: 5px solid var(--white);
  border-radius: 50%;
}

.wheel-left {
  left: 24px;
}

.wheel-right {
  left: 88px;
}

.panel-content {
  padding: 30px;
}

.panel-label {
  margin-bottom: 8px;
  color: var(--green-500);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-content h2 {
  margin-bottom: 18px;
  font-size: 2rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green-700);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

.price-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  background: var(--green-100);
  border-radius: var(--radius-md);
}

.price-callout span {
  color: var(--muted);
  font-weight: 800;
}

.price-callout strong {
  color: var(--green-900);
  font-size: 2rem;
  line-height: 1;
}

.quick-quote-bar {
  color: var(--white);
  background: var(--green-900);
}

.quick-quote-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.quick-quote-inner p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.quick-quote-inner a {
  min-width: max-content;
  padding: 12px 18px;
  color: var(--green-950);
  background: var(--gold-500);
  border-radius: 999px;
  font-weight: 900;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p,
.area-grid p,
.faq-grid > div > p,
.quote-copy > p {
  color: var(--muted);
  font-size: 1.06rem;
}

.card-grid {
  display: grid;
  gap: 22px;
}

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

.service-card,
.price-card,
.review-card,
.quote-form,
.contact-card,
.faq-list details {
  background: var(--white);
  border: 1px solid rgba(220, 232, 221, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.service-card {
  min-height: 250px;
  padding: 30px;
}

.featured-service {
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(244, 189, 63, 0.28), transparent 34%),
    linear-gradient(145deg, var(--green-700), var(--green-900));
}

.featured-service h3,
.featured-service p {
  color: var(--white);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: var(--green-100);
  border-radius: 18px;
  font-size: 1.7rem;
}

.featured-service .service-icon {
  background: rgba(255, 255, 255, 0.16);
}

.service-card p,
.price-note,
.review-card p,
.faq-list p,
.step p,
.site-footer p {
  color: var(--muted);
}

.muted-section {
  background: linear-gradient(180deg, var(--sand), #fbf4e4);
}

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

.price-card {
  position: relative;
  padding: 32px;
}

.price-card.popular {
  transform: translateY(-14px);
  border: 2px solid var(--green-700);
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 12px;
  color: var(--green-950);
  background: var(--gold-500);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  margin-bottom: 8px;
  color: var(--green-900);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 700;
}

.price-button {
  width: 100%;
}

.split-grid,
.area-grid,
.faq-grid,
.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 58px;
}

.photo-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 36px;
  color: var(--white);
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  background:
    linear-gradient(180deg, rgba(9, 32, 19, 0.04), rgba(9, 32, 19, 0.75)),
    repeating-linear-gradient(
      115deg,
      #4f9d5d 0,
      #4f9d5d 18px,
      #408a4d 18px,
      #408a4d 36px
    );
}

.photo-card p {
  margin-bottom: 12px;
  color: var(--gold-500);
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.photo-card h2 {
  margin-bottom: 0;
  color: var(--white);
}

.steps {
  display: grid;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.step span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green-700);
  border-radius: 18px;
  font-weight: 900;
}

.step p {
  margin-bottom: 0;
}

.area-section {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 10%, rgba(244, 189, 63, 0.22), transparent 32%),
    linear-gradient(145deg, var(--green-900), var(--green-950));
}

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

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.area-list span {
  padding: 14px 18px;
  color: var(--green-950);
  background: var(--white);
  border-radius: 999px;
  font-weight: 900;
}

.review-card {
  padding: 30px;
}

.stars {
  margin-bottom: 16px;
  color: var(--gold-500);
  letter-spacing: 0.1em;
  font-weight: 900;
}

.review-card strong,
.review-card span {
  display: block;
}

.review-card span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.faq-section {
  background: var(--green-100);
}

.faq-grid {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  color: var(--green-950);
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 12px 0 0;
}

.quote-section {
  background:
    radial-gradient(circle at 82% 12%, rgba(244, 189, 63, 0.28), transparent 26%),
    var(--cream);
}

.quote-grid {
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding: 24px;
}

.contact-card a {
  color: var(--green-900);
  font-size: 1.2rem;
  font-weight: 900;
}

.contact-card span {
  color: var(--muted);
  font-weight: 800;
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: 32px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  color: var(--green-950);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--text);
  background: #fbfdfb;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(63, 138, 82, 0.14);
}

textarea {
  resize: vertical;
}

.form-button {
  width: 100%;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer {
  padding: 58px 0 24px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--green-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr;
  gap: 40px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-brand strong,
.site-footer h2 {
  color: var(--white);
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer h2 {
  margin-bottom: 14px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
}

.site-footer a {
  display: block;
  margin-bottom: 9px;
  font-weight: 800;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

@media (max-width: 920px) {
  .top-bar-inner {
    justify-content: center;
    text-align: center;
  }

  .top-bar p {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    inset: 117px 20px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 12px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split-grid,
  .area-grid,
  .faq-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .pricing-grid,
  .review-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .price-card.popular {
    transform: none;
  }
}

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

  .section {
    padding: 72px 0;
  }

  .navbar {
    min-height: 74px;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.3rem);
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .hero-actions,
  .quick-quote-inner,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .quick-quote-inner a {
    width: 100%;
  }

  .trust-strip,
  .services-grid,
  .pricing-grid,
  .review-grid,
  .footer-grid,
  .form-row.two-column {
    grid-template-columns: 1fr;
  }

  .trust-strip div + div {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .yard-illustration {
    height: 220px;
  }

  .mower {
    left: 48px;
  }

  .service-card,
  .price-card,
  .review-card,
  .quote-form {
    padding: 24px;
  }

  .photo-card {
    min-height: 420px;
  }
}
