:root {
  --bg: #07110c;
  --bg-soft: #0d1811;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --text: #f4f7f4;
  --muted: #c9d2cb;
  --line: rgba(255, 255, 255, 0.12);
  --green: #16c215;
  --green-dark: #0a8e09;
  --gold: #f3bd00;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --radius-sm: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top right, rgba(22, 194, 21, 0.16), transparent 28%),
    linear-gradient(180deg, #050806 0%, #0a110d 50%, #07110c 100%);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(5, 10, 7, 0.78);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
}

.brand-logo {
  height: 150px;
  width: auto;
}

.footer-logo {
  height: 62px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.site-nav a {
  font-weight: 600;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--white);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nav-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #ffdb58);
  color: #101010;
  box-shadow: 0 12px 30px rgba(243, 189, 0, 0.18);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
}

.btn:hover,
.nav-cta:hover { transform: translateY(-2px); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4.75rem;
  background:
    linear-gradient(90deg, rgba(5, 8, 6, 0.72) 0%, rgba(5, 8, 6, 0.48) 42%, rgba(5, 8, 6, 0.30) 100%),
    url('assets/lawn-bg.jpg') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.32) 42%, rgba(0, 0, 0, 0.1) 100%),
    radial-gradient(circle at center right, rgba(22, 194, 21, 0.16), transparent 32%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero h1,
.section-heading h2,
.about-single h2,
.cta-box h2,
.contact-grid h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.1rem);
  max-width: 11ch;
}

.hero-text,
.section-heading p,
.about-single p,
.contact-grid p,
.service-card p,
.hero-highlights span,
.footer-wrap p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 56ch;
  margin: 1.25rem 0 1.75rem;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero-highlights div,
.hero-card-inner,
.service-card,
.contact-form,
.cta-box,
.about-single {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-highlights div { padding: 1rem; }

.hero-highlights strong,
.card-label,
.section-heading h2,
.service-card h3,
.footer-title,
.contact-list a { color: var(--white); }

.hero-card-inner { padding: 1.5rem; }
.hero-card ul {
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.85;
}

.text-link { color: var(--gold); font-weight: 700; }

.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

.section { padding: 5rem 0; }

.alt-section {
  background: rgba(255, 255, 255, 0.02);
}

.mulch-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(7, 12, 9, 0.75), rgba(7, 12, 9, 0.82)),
    url('assets/mulch-bg.jpg') center center / cover no-repeat;
}

.section-heading {
  max-width: 60rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.about-single h2,
.cta-box h2,
.contact-grid h2 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  margin-bottom: 1rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-card { padding: 1.5rem; }
.service-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.about-single {
  max-width: 880px;
  padding: 2rem;
}

.contact-grid,
.footer-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.cta-box {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.contact-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.contact-form {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ead9f;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2rem;
}

.footer-wrap {
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }

@media (max-width: 960px) {
  .hero-grid,
  .contact-grid,
  .cards-grid,
  .footer-wrap,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(7, 17, 12, 0.97);
    border: 1px solid var(--line);
    border-radius: 18px;
  }

  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-highlights { grid-template-columns: 1fr; }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-logo { height: 82px; }
}

@media (max-width: 640px) {
  .hero { padding-top: 4.5rem; }
  .brand-logo { height: 70px; }
  .footer-logo { height: 52px; }
  .section { padding: 4rem 0; }
}


.contact-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.contact-list a {
  width: fit-content;
}

.form-status {
  display: none;
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  font-weight: 600;
}

.form-status.success {
  display: block;
  background: rgba(22, 194, 21, 0.14);
  border: 1px solid rgba(22, 194, 21, 0.35);
  color: var(--white);
}

.form-status.error {
  display: block;
  background: rgba(255, 80, 80, 0.12);
  border: 1px solid rgba(255, 80, 80, 0.35);
  color: var(--white);
}
