:root {
  --green-dark: #163C24;
  --green: #2E7D46;
  --green-light: #3F9C5A;
  --lime: #8BC34A;
  --cream: #F6F8F3;
  --text: #22301F;
  --text-light: #5C6B58;
  --white: #FFFFFF;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(22, 60, 36, 0.08);
  --shadow-lg: 0 20px 50px rgba(22, 60, 36, 0.14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--green-dark);
  line-height: 1.2;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.eyebrow {
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 10px;
}
.eyebrow.center { text-align: center; }
.center { text-align: center; }
.section-sub {
  color: var(--text-light);
  max-width: 620px;
  margin: 12px auto 0;
}
.section-sub.center { margin-left: auto; margin-right: auto; }
.disclaimer { font-style: italic; font-size: 0.85rem; opacity: 0.7; }

section { padding: 88px 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--green-light); transform: translateY(-2px); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-outline-light {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); }
.btn-lg { padding: 15px 28px; font-size: 1rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(22,60,36,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--green-dark);
}
.logo strong { color: var(--green); }
.main-nav { display: flex; gap: 28px; }
.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--green); }
.header-actions { display: flex; align-items: center; gap: 18px; }
.phone-link { font-weight: 600; font-size: 0.92rem; color: var(--green-dark); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--green-dark);
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,35,22,0.55) 0%, rgba(15,35,22,0.72) 60%, rgba(15,35,22,0.88) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 720px; padding-top: 60px; padding-bottom: 60px; }
.hero .eyebrow { color: var(--lime); }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Stats */
.stats {
  background: var(--green-dark);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 700; color: var(--lime); }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.75); }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-copy h2 { font-size: 2rem; margin-bottom: 18px; }
.about-copy p { color: var(--text-light); margin-bottom: 14px; }
.check-list { list-style: none; margin: 20px 0 26px; }
.check-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
  font-weight: 500;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* Services */
.services { background: var(--cream); }
.services h2 { font-size: 2rem; max-width: 700px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-icon { font-size: 1.8rem; margin-bottom: 14px; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.service-card p { color: var(--text-light); font-size: 0.95rem; }

/* Work */
.work h2 { font-size: 2rem; max-width: 700px; margin: 0 auto; }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.work-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3.2;
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.work-card:hover img { transform: scale(1.06); }
.work-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px 18px;
  background: linear-gradient(180deg, transparent, rgba(10,25,15,0.88));
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: var(--white);
}
.work-card .tag {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--lime);
  font-weight: 700;
}
.work-card strong { font-size: 1.02rem; font-family: 'Poppins', sans-serif; }
.work-card figcaption span:last-child { font-size: 0.82rem; color: rgba(255,255,255,0.75); }

/* Why */
.why { background: var(--green-dark); color: var(--white); }
.why h2 { color: var(--white); font-size: 2rem; max-width: 700px; margin: 0 auto; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 22px;
}
.why-num { font-family: 'Poppins', sans-serif; font-size: 1.6rem; color: var(--lime); font-weight: 700; }
.why-card h3 { color: var(--white); font-size: 1.05rem; margin: 12px 0 8px; }
.why-card p { color: rgba(255,255,255,0.72); font-size: 0.92rem; }

/* How */
.how h2 { font-size: 2rem; max-width: 700px; margin: 0 auto; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.how-step { text-align: center; padding: 0 10px; }
.how-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
}
.how-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.how-step p { color: var(--text-light); font-size: 0.92rem; }

/* Testimonials */
.testimonials { background: var(--cream); }
.testimonials h2 { font-size: 2rem; max-width: 700px; margin: 0 auto; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
}
.stars { color: var(--lime); letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-card p { color: var(--text); font-size: 0.95rem; margin-bottom: 20px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-person strong { display: block; font-size: 0.92rem; }
.testimonial-person span { font-size: 0.8rem; color: var(--text-light); }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  text-align: center;
}
.cta-inner h2 { color: var(--white); font-size: 2.1rem; margin-bottom: 12px; }
.cta-inner p { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 30px; }
.cta-inner .hero-ctas { justify-content: center; }

/* Footer */
.site-footer { background: var(--green-dark); color: rgba(255,255,255,0.7); padding: 50px 0 30px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: var(--white); margin-bottom: 10px; }
.footer-brand p { font-size: 0.88rem; max-width: 280px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; }
.footer-links a:hover { color: var(--lime); }
.footer-note { font-size: 0.85rem; }
.footer-inner + .footer-note,
.site-footer .footer-note { padding-top: 20px; text-align: center; font-size: 0.82rem; }

.site-credit {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  padding-top: 18px;
  margin-top: 4px;
}
.site-credit strong { color: rgba(255,255,255,0.85); }
.site-credit a { color: rgba(255,255,255,0.75); text-decoration: underline; text-underline-offset: 2px; }
.site-credit a:hover { color: var(--lime); }

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .services-grid, .work-grid, .why-grid, .how-grid, .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .phone-link { display: none; }
  .header-inner { position: relative; justify-content: center; }
  .header-actions { gap: 12px; position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
  .header-actions .btn-primary { display: none; }
  section { padding: 60px 0; }
  .about-grid, .services-grid, .work-grid, .why-grid, .how-grid, .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: auto; padding: 140px 0 70px; }
}

/* Mobile nav open state */
.main-nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 20px 24px;
  gap: 16px;
  box-shadow: var(--shadow);
}
