:root {
  --bg: #f3f9f1;
  --bg2: #e7f4e3;
  --card: #ffffff;
  --muted: #5f7d5a;
  --text: #1c2b1c;
  --line: rgba(0, 0, 0, .08);
  --brand: #adcf72;
  --brand2: #a0b874;


  --shadow: 0 18px 40px rgba(0, 0, 0, .12);
  --shadow2: 0 8px 20px rgba(0, 0, 0, .10);

  --radius: 18px;
  --radius2: 26px;

  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

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

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

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
}

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

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


.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #e9f5e6;
  border: 1px solid var(--line);
}

.brand-name {
  font-size: 18px;
}

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

.nav-link {
  color: #2a3b2a;
  font-weight: 650;
  padding: 10px;
  border-radius: 12px;
}

.nav-link:hover {
  background: rgba(0, 0, 0, .05);
}

.nav-link.is-active {
  background: rgba(95, 191, 58, .18);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand2) 100%);
  box-shadow: 0 8px 18px rgba(95, 191, 58, .35);
  font-weight: 900;
  color: #0d2b0d;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #2a3b2a;
  margin: 6px 0;
}

.hero {
  padding: 56px 0 28px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
}

.hero h1 {
  font-size: 52px;
}

.hero-sub {
  margin-top: 14px;
  color: #4f6a4f;
  font-size: 18px;
  max-width: 52ch;
}

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

.hero-areas,
.hero-proof,
.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.pill,
.badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef6ea;
  font-weight: 700;
  font-size: 14px;
}

.proof {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  min-width: 140px;
}

.proof-num {
  font-size: 20px;
  font-weight: 900;
}

.proof-label {
  font-size: 13px;
  color: #5f7d5a;
}

.hero-media {
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 420px;
  background: url("../images/Mulching3.png");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.btn {
  padding: 12px 16px;
  border-radius: 16px;
  font-weight: 900;
  background: #eef6ea;
}

.btn-primary {
  background: linear-gradient(180deg, var(--brand), var(--brand2));
  color: #0d2b0d;
}

.btn-secondary {
  background: #ffffff;
}

.site-footer {
  padding: 34px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 16px;
}

.footer-brand {
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #2f4a2f;
}

.footer-meta {
  text-align: right;
  color: #5f7d5a;
}

@media (max-width:980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

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

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

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

  .footer-meta {
    text-align: left;
  }
}

@media (max-width:720px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

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