:root {
  --green: #6fcf3f;
  --green-dark: #2d7a2f;
  --ink: #132018;
  --cream: #f7f5ed;
  --white: #ffffff;
  --muted: #647068;
  --border: #dfe5df;
  --shadow: 0 20px 50px rgba(18, 32, 24, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 88px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(19,32,24,.08);
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--green); color: var(--ink);
  font-family: "Archivo Black"; font-size: 16px;
  transform: skew(-6deg);
}
.brand strong { display: block; font-family: "Archivo Black"; font-size: 21px; line-height: 1; }
.brand small { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.nav-links { display: flex; align-items: center; gap: 28px; font-weight: 600; font-size: 14px; }
.nav-links a:hover { color: var(--green-dark); }
.nav-call {
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: white !important;
}
.menu-toggle { display: none; border: 0; background: none; font-size: 28px; }

.hero {
  min-height: 720px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(90deg, rgba(10,21,13,.92) 0%, rgba(10,21,13,.72) 55%, rgba(10,21,13,.35) 100%),
    url("https://images.unsplash.com/photo-1558904541-efa843a96f01?auto=format&fit=crop&w=1800&q=85") center/cover;
}
.hero::after {
  content: "";
  position: absolute;
  right: -130px; bottom: -160px;
  width: 460px; height: 460px; border-radius: 50%;
  border: 70px solid rgba(111,207,63,.18);
}
.hero-content { position: relative; z-index: 2; padding: 120px 0; }
.eyebrow {
  margin: 0 0 16px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--green);
}
.eyebrow.dark { color: var(--green-dark); }
h1, h2, h3 { margin-top: 0; line-height: 1.1; }
h1 {
  max-width: 760px;
  font-family: "Archivo Black";
  font-size: clamp(54px, 9vw, 104px);
  letter-spacing: -.04em;
  margin-bottom: 24px;
}
h2 { font-family: "Archivo Black"; font-size: clamp(34px, 5vw, 58px); letter-spacing: -.035em; }
h3 { font-size: 21px; margin-bottom: 10px; }
.hero-copy { max-width: 650px; font-size: 20px; color: rgba(255,255,255,.84); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 22px;
  border: 0; border-radius: 10px;
  font: inherit; font-weight: 800; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,0,0,.18); }
.btn-primary { background: var(--green); color: var(--ink); }
.btn-secondary { border: 1px solid rgba(255,255,255,.55); color: white; background: rgba(255,255,255,.08); }
.btn-dark { background: var(--ink); color: white; }
.hero-points { display: flex; flex-wrap: wrap; gap: 24px; font-weight: 600; color: rgba(255,255,255,.9); }

.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading > p:last-child { color: var(--muted); font-size: 18px; }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.service-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: white;
  box-shadow: 0 10px 30px rgba(19,32,24,.04);
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); transition: .25s ease; }
.icon { font-size: 34px; margin-bottom: 20px; }
.service-card p { color: var(--muted); margin-bottom: 0; }

.about { background: var(--ink); color: white; }
.about-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: center; }
.about-panel p:not(.eyebrow) { color: rgba(255,255,255,.75); font-size: 18px; }
.text-link { display: inline-block; margin-top: 12px; color: var(--green); font-weight: 800; }
.stats { display: grid; gap: 16px; }
.stats div {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.05);
}
.stats strong { display: block; color: var(--green); font-family: "Archivo Black"; font-size: 28px; }
.stats span { color: rgba(255,255,255,.68); }

.service-area { background: var(--cream); }
.service-area-box {
  display: flex; align-items: center; justify-content: space-between; gap: 36px;
  padding: 46px;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.service-area-box div { max-width: 720px; }
.service-area-box p { color: var(--muted); }

.quote { background: linear-gradient(135deg, #1a2e20, #0d1811); color: white; }
.quote-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; }
.quote-grid > div > p { color: rgba(255,255,255,.7); font-size: 18px; }
.contact-card {
  margin-top: 28px; padding: 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; background: rgba(255,255,255,.06);
}
.contact-card span { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .14em; color: var(--green); }
.contact-card a { font-size: 29px; font-weight: 800; }
.quote-form {
  padding: 32px;
  border-radius: 18px;
  background: white;
  color: var(--ink);
}
.quote-form label { display: block; margin-bottom: 16px; font-weight: 700; font-size: 14px; }
input, select, textarea {
  width: 100%; margin-top: 7px; padding: 14px;
  border: 1px solid var(--border); border-radius: 10px;
  font: inherit; color: var(--ink); background: #fbfcfb;
}
input:focus, select:focus, textarea:focus { outline: 2px solid rgba(111,207,63,.45); border-color: var(--green); }
.quote-form .btn { width: 100%; }
.form-note { color: var(--muted); font-size: 13px; text-align: center; margin-bottom: 0; }

footer { padding: 34px 0; background: #09110c; color: white; }
.footer-wrap { display: flex; justify-content: space-between; gap: 28px; }
footer p, footer span { color: rgba(255,255,255,.55); margin: 4px 0 0; }
.footer-contact { display: flex; flex-direction: column; align-items: flex-end; }
.footer-contact a { color: var(--green); font-weight: 800; }

@media (max-width: 850px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    padding: 20px; background: white; flex-direction: column; align-items: stretch;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid, .quote-grid { grid-template-columns: 1fr; }
  .service-area-box { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 580px) {
  .container { width: min(100% - 26px, 1120px); }
  .section { padding: 68px 0; }
  .hero { min-height: 650px; }
  h1 { font-size: 56px; }
  .hero-copy { font-size: 17px; }
  .hero-actions, .hero-points { flex-direction: column; align-items: stretch; }
  .hero-points { gap: 10px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-area-box, .quote-form { padding: 24px; }
  .footer-wrap { flex-direction: column; }
  .footer-contact { align-items: flex-start; }
}
