:root {
  --green: #1f6f3d;
  --green-dark: #164d2c;
  --lime: #c6df5a;
  --ink: #17211b;
  --muted: #59655e;
  --paper: #f8f7f0;
  --white: #ffffff;
  --line: #d9dfd1;
  --shadow: 0 18px 50px rgba(20, 37, 27, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

.skip-link {
  left: 16px;
  position: absolute;
  top: -48px;
  z-index: 20;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 247, 240, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(31, 111, 61, 0.16);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 76px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--green);
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 900;
}

.brand span:last-child {
  font-size: 1.08rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 800;
  padding: 10px 12px;
  border-radius: 6px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--green-dark);
  background: rgba(31, 111, 61, 0.1);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 6px;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 6px;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
}

.button.secondary {
  background: var(--ink);
}

.section {
  padding: 76px 22px;
}

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

.container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(12, 28, 18, 0.9), rgba(12, 28, 18, 0.62), rgba(12, 28, 18, 0.18)),
    linear-gradient(0deg, rgba(12, 28, 18, 0.46), rgba(12, 28, 18, 0) 44%),
    url("/images/hero-lawn.webp") center / cover;
  color: var(--white);
}

.hero-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 72px 22px 48px;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(280px, 360px);
  gap: 48px;
  align-items: end;
}

.hero-copy {
  position: relative;
  padding-left: 24px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: calc(100% - 16px);
  border-radius: 999px;
  background: var(--lime);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #eff8e8;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.82rem;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.6rem, 6.6vw, 5.2rem);
  margin: 0;
  max-width: 900px;
  text-wrap: balance;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0 0 18px;
}

h3 {
  font-size: 1.25rem;
  margin: 0 0 10px;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 760px;
  color: #eef5ea;
  margin-bottom: 0;
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-services span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 900;
}

.hero-quote {
  border-radius: 8px;
  padding: 24px;
  background: rgba(248, 247, 240, 0.92);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.hero-quote p {
  margin: 0 0 6px;
  color: var(--green-dark);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-quote strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero-quote span {
  display: block;
  color: var(--muted);
  margin-bottom: 18px;
}

.hero-quote a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--green-dark);
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
}

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

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  background: var(--white);
  padding: 22px;
  text-align: center;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.copy p {
  color: var(--muted);
}

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

.photo-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.card img.icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
}

.card p,
.service-list li,
.footer p {
  color: var(--muted);
}

.service-list {
  padding-left: 20px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-stack {
  display: grid;
  gap: 18px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: start;
}

.contact-details {
  background: var(--green-dark);
  color: var(--white);
  border-radius: 8px;
  padding: 28px;
}

.contact-details a {
  color: var(--white);
  font-weight: 900;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cbd4c5;
  border-radius: 6px;
  padding: 11px 12px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}

input.invalid,
textarea.invalid {
  border-color: #b00020;
}

.error-message {
  color: #b00020;
  font-size: 0.875rem;
  margin-top: 0.35rem;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.option-group {
  border: 0;
  padding: 0;
}

.option-group legend {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 900;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.choice-grid-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 44px;
  margin: 0;
  padding: 0.75rem;
  border: 1px solid #cbd4c5;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  background: #fff;
}

.choice-option:has(input:checked) {
  border-color: var(--green);
  background: #f2fbf3;
}

.option-group.invalid .choice-option {
  border-color: #b00020;
}

.choice-option input {
  width: 1rem;
  height: 1rem;
  min-height: auto;
  accent-color: var(--green);
  flex: 0 0 auto;
}

.choice-option span {
  line-height: 1.3;
}

.submit-button {
  margin-top: 0.25rem;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  font-weight: 800;
}

.form-status.success {
  color: var(--green-dark);
}

.form-status.error {
  color: #9b1c1c;
}

.footer {
  background: #101812;
  color: var(--white);
  padding: 36px 22px;
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer a {
  color: var(--white);
}

.footer-credit {
  width: min(1180px, 100%);
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer-credit a {
  font-weight: 900;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 12px 22px 18px;
    flex-direction: column;
    align-items: stretch;
  }

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

  .split,
  .contact-panel,
  .gallery,
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: end;
    gap: 28px;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 56px 18px;
  }

  .hero-inner {
    padding: 64px 18px 42px;
  }

  .hero-copy {
    padding-left: 16px;
  }

  .hero-kicker {
    border-radius: 6px;
  }

  .hero-quote {
    display: none;
  }

  .grid {
    grid-template-columns: 1fr;
  }

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