:root {
  --green: #12351b;
  --green-2: #24552b;
  --green-3: #e6eee2;
  --clay: #a64225;
  --clay-dark: #83331f;
  --cream: #fbfaf6;
  --sage: #eef4eb;
  --text: #20251f;
  --muted: #657064;
  --white: #ffffff;
  --line: rgba(18, 53, 27, 0.12);
  --shadow: 0 14px 34px rgba(18, 53, 27, 0.10);
  --shadow-soft: 0 8px 22px rgba(18, 53, 27, 0.07);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; color: var(--green); }
.brand img { width: 50px; height: 50px; object-fit: contain; border-radius: 50%; box-shadow: 0 6px 18px rgba(23, 59, 29, .12); }
.nav-links { display: flex; align-items: center; gap: 22px; font-weight: 800; color: var(--green); }
.nav-links a:hover { color: var(--clay); }
.nav-cta { padding: 9px 14px; border-radius: 999px; background: var(--green); color: var(--white) !important; }
.nav-cta:hover { background: var(--clay); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  transition: transform .18s ease, opacity .18s ease;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 10px 22px 18px;
}
.mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid rgba(18, 53, 27, 0.08);
  color: var(--green);
  font-weight: 900;
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu-cta {
  justify-content: center;
  min-height: 48px;
  margin-top: 10px;
  border-radius: 8px;
  background: var(--clay);
  color: var(--white) !important;
}

.mobile-action-bar {
  display: none;
  position: sticky;
  top: 79px;
  z-index: 9;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.mobile-action-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 900;
  color: var(--white);
  background: var(--green);
}
.mobile-action-bar a:last-child { background: var(--clay); }

.hero {
  max-width: none;
  margin: 0 auto;
  padding: 78px max(22px, calc((100vw - 1120px) / 2 + 22px)) 70px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  min-height: 680px;
  background: var(--green);
  border-bottom: 10px solid var(--clay);
}

.eyebrow {
  color: var(--clay);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 900;
  font-size: 0.78rem;
}
.eyebrow.light { color: #ffc9b9; }

h1, h2, h3 { line-height: 1.08; margin: 0 0 16px; color: var(--green); }
h1 { font-size: clamp(2.55rem, 7vw, 5.25rem); letter-spacing: 0; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: 0; }
h3 { font-size: 1.28rem; }

.hero h1 { color: var(--white); }
.hero .eyebrow { color: #f3b29f; }
.hero .hero-text { color: #dce8d8; }
.hero .fine-print { color: #cbd8c7; }
.hero-text { font-size: 1.18rem; color: var(--muted); max-width: 650px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 900;
  border: 2px solid var(--green);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(18, 53, 27, .14); }
.primary { background: var(--clay); color: var(--white); border-color: var(--clay); }
.primary:hover { background: var(--clay-dark); border-color: var(--clay-dark); }
.secondary { color: var(--green); background: var(--white); border-color: var(--line); }
.secondary:hover { border-color: rgba(166,66,37,.35); }
.light-button { background: var(--white); color: var(--green); border-color: var(--white); margin-top: 12px; }

.offer-banner {
  margin-top: 26px;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid rgba(166, 66, 37, .18);
  background: var(--white);
  border-left: 6px solid var(--clay);
  padding: 14px 18px;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}
.offer-banner span { color: var(--clay); font-size: .78rem; text-transform: uppercase; font-weight: 900; letter-spacing: .12em; }
.offer-banner strong { color: var(--green); }
.fine-print { color: var(--muted); font-size: .93rem; margin-top: 18px; }

.hero-card {
  position: relative;
  min-height: 470px;
  background:
    linear-gradient(rgba(18, 53, 27, .10), rgba(18, 53, 27, .28)),
    url("assets/lawn-showcase-1.jpg") center/cover;
  border-radius: 8px;
  padding: 34px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.18);
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .20);
  right: -110px;
  bottom: -120px;
}
.logo-ring {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  height: 100%;
  animation: float 8s ease-in-out infinite;
}
.logo-ring img {
  width: 78%;
  max-width: 330px;
  display: block;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  padding: 10px;
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
}
.floating-note {
  position: absolute;
  z-index: 2;
  background: var(--white);
  color: var(--green);
  border-left: 5px solid var(--clay);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}
.note-one { top: 42px; left: 24px; }
.note-two { right: 24px; top: 170px; animation-delay: .7s; }
.note-three { left: 48px; bottom: 48px; animation-delay: 1.2s; }

.trust-strip {
  max-width: 1120px;
  margin: 0 auto;
  padding: 34px 22px 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.trust-strip div {
  background: rgba(255,255,255,.82);
  border-left: 5px solid var(--clay);
  padding: 18px;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}
.trust-strip strong { display: block; color: var(--green); }
.trust-strip span { color: var(--muted); font-size: 0.95rem; }

.section { max-width: 1120px; margin: 0 auto; padding: 72px 22px; }
.section-head { max-width: 760px; }
.section-head p { color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 30px; }
.card {
  background: rgba(255,255,255,.86);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  border-top: 6px solid var(--green);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-top-color: var(--clay); }
.icon { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--green-3); color: var(--clay); font-weight: 900; margin-bottom: 16px; }
.card p, .split p, .accent-panel p, .steps p, .quote-section p { color: var(--muted); }
.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--clay);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.text-link:hover { color: var(--green); }

.split { display: grid; grid-template-columns: 1fr 0.78fr; gap: 38px; align-items: center; }
.checklist { list-style: none; padding: 0; margin: 24px 0 0; }
.checklist li { margin: 10px 0; padding-left: 28px; position: relative; font-weight: 800; }
.checklist li::before { content: "✓"; color: var(--clay); position: absolute; left: 0; font-weight: 900; }
.accent-panel {
  background:
    linear-gradient(rgba(18,53,27,.88), rgba(18,53,27,.88)),
    url("assets/lawn-showcase-2.jpg") center/cover;
  color: var(--white);
  padding: 36px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.accent-panel h3 { color: var(--white); }
.accent-panel p { color: #dbe6d7; }


.lawn-showcase {
  position: relative;
  max-width: none;
  padding-left: max(22px, calc((100vw - 1120px) / 2 + 22px));
  padding-right: max(22px, calc((100vw - 1120px) / 2 + 22px));
  background: var(--cream);
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
  margin-top: 30px;
}
.showcase-card {
  margin: 0;
  min-height: 280px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  background: var(--green);
}
.showcase-card:first-child {
  grid-row: span 2;
}
.showcase-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .45s ease, filter .45s ease;
}
.showcase-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.04);
}
.showcase-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(255,255,255,.9);
  color: var(--green);
  border-left: 5px solid var(--clay);
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(23,59,29,.16);
}

.service-area {
  max-width: none;
  padding-left: max(22px, calc((100vw - 1120px) / 2 + 22px));
  padding-right: max(22px, calc((100vw - 1120px) / 2 + 22px));
  background: var(--sage);
  border-radius: 0;
}
.area-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.area-grid span { background: var(--white); color: var(--green); border: 1px solid var(--line); border-radius: 999px; padding: 10px 15px; font-weight: 800; box-shadow: var(--shadow-soft); }
.area-note { color: var(--muted); font-weight: 800; margin-top: 22px; }

.local-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.local-seo {
  max-width: none;
  padding-left: max(22px, calc((100vw - 1120px) / 2 + 22px));
  padding-right: max(22px, calc((100vw - 1120px) / 2 + 22px));
  background: var(--white);
}
.local-item {
  background: rgba(255,255,255,.86);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.local-item p { color: var(--muted); margin-bottom: 0; }

.service-hero { min-height: 620px; }
.about-hero { min-height: 650px; }
.owner-photo {
  margin: 0;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 500px;
  box-shadow: 0 22px 54px rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.18);
  background: var(--green);
}
.owner-photo img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center 28%;
  display: block;
  filter: brightness(1.14) saturate(1.03);
}
.owner-photo figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 2px;
  background: rgba(255,255,255,.92);
  border-left: 6px solid var(--clay);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--green);
  box-shadow: var(--shadow-soft);
}
.owner-photo figcaption strong { font-size: 1.05rem; }
.owner-photo figcaption span { color: var(--muted); font-weight: 900; }
.content-section p { color: var(--muted); font-size: 1.04rem; }
.two-column {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 28px;
  align-items: start;
  margin-top: 26px;
}
.link-card {
  background: rgba(255,255,255,.88);
  border-left: 5px solid var(--clay);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.compact-list { margin-top: 14px; }
.compact-list li { font-weight: 800; }
.narrow-copy { max-width: 860px; }

.process { text-align: center; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; text-align: left; }
.steps div { background: rgba(255,255,255,.86); border-radius: 8px; padding: 26px; box-shadow: var(--shadow-soft); border: 1px solid var(--line); }
.steps span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--clay);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 18px;
}

.cta-band {
  max-width: 1120px;
  margin: 40px auto 20px;
  padding: 38px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background:
    linear-gradient(rgba(18,53,27,.90), rgba(18,53,27,.90)),
    url("assets/lawn-showcase-3.jpg") center/cover;
  color: var(--white);
  box-shadow: var(--shadow);
}
.cta-band h2, .cta-band p { color: var(--white); margin-bottom: 6px; }
.cta-band p:last-child { color: #dbe6d7; }

.faq-section { padding-top: 60px; }
.faq-section {
  max-width: none;
  padding-left: max(22px, calc((100vw - 1120px) / 2 + 22px));
  padding-right: max(22px, calc((100vw - 1120px) / 2 + 22px));
  background: var(--cream);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}
details {
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
}
summary {
  cursor: pointer;
  color: var(--green);
  font-weight: 900;
  line-height: 1.25;
}
details p {
  color: var(--muted);
  margin: 12px 0 0;
}

.quote-section {
  max-width: 1120px;
  margin: 76px auto 88px;
  padding: 48px;
  background: var(--white);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 36px;
  box-shadow: var(--shadow);
}
.contact-card { display: grid; gap: 5px; background: var(--green-3); border-radius: 8px; padding: 18px; margin-top: 20px; color: var(--green); font-weight: 800; }
.contact-card span { color: var(--muted); font-weight: 700; }
.contact-card a { color: var(--clay); }
.quote-form { display: grid; gap: 14px; }
.quote-form label { font-weight: 900; color: var(--green); }
input, textarea, select {
  width: 100%;
  display: block;
  margin-top: 6px;
  border: 1px solid rgba(23, 59, 29, 0.22);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  background: #fbfaf7;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--clay); box-shadow: 0 0 0 4px rgba(164,61,36,.12); }
textarea { resize: vertical; }
.hidden-field { display: none; }
.form-note { font-size: .86rem; margin: 0; }

.footer {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 38px 22px;
}
.footer img { width: 92px; height: 92px; object-fit: contain; border-radius: 50%; background: var(--white); }
.footer p { margin: 8px 0; color: #dbe6d7; }
.footer strong { color: var(--white); }

.reveal { opacity: 0; transform: translateY(22px); animation: reveal .8s ease forwards; }
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; }
.pulse { animation: pulse 2.5s ease-in-out infinite; }

@keyframes reveal { to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-12px) rotate(1deg); } }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(164,61,36,.34); } 50% { box-shadow: 0 0 0 12px rgba(164,61,36,0); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-card:first-child { grid-row: auto; }
  .nav { align-items: center; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .mobile-menu.is-open { display: block; }
  .mobile-action-bar { display: grid; }
  .hero, .split, .quote-section, .two-column { grid-template-columns: 1fr; }
  .trust-strip, .grid, .local-grid, .steps, .faq-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; min-height: auto; }
  .hero-card { min-height: 380px; }
  .owner-photo, .owner-photo img { min-height: 430px; }
  .cta-band { margin-left: 22px; margin-right: 22px; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .brand span { font-size: .95rem; }
  .hero-card { min-height: 330px; padding: 20px; }
  .owner-photo, .owner-photo img { min-height: 390px; }
  .floating-note { font-size: .78rem; }
  .note-two { top: 140px; }
  .quote-section { margin-left: 12px; margin-right: 12px; }
}
