:root {
  --green: #2f6f3e;
  --green-dark: #1f4e2c;
  --gold: #c69c3c;
  --ink: #1f2933;
  --muted: #5f6b76;
  --paper: #ffffff;
  --light: #f4f7f2;
  --border: #d9e0d4;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

/* ── Navigation ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.nav {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 22px;
  flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 800; letter-spacing: .03em; }
.brand img { width: 52px; height: 52px; object-fit: contain; border-radius: 50%; }
.nav-links { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; font-size: 13px; font-weight: 700; text-transform: uppercase; }
.nav-links a { text-decoration: none; color: var(--green-dark); }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.phone { padding: 8px 14px; border: 1px solid var(--green); border-radius: 999px; color: var(--green-dark); white-space: nowrap; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* ── Hero ── */
.hero {
  min-height: 76vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
  background:
    linear-gradient(160deg, rgba(16,44,22,.84), rgba(34,68,39,.54)),
    url('assets/hero.jpg') center/cover no-repeat;
  padding: 100px 22px;
}
.hero-inner { max-width: 1000px; }
.eyebrow { text-transform: uppercase; letter-spacing: .2em; font-weight: 800; color: #f0d084; margin-bottom: 14px; }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 18px; }
h1 {
  font-family: 'Archivo Black', Impact, sans-serif;
  font-size: clamp(34px, 6vw, 72px);
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0,0,0,.9), 0 6px 24px rgba(0,0,0,.6);
  letter-spacing: .02em;
}
h2 { font-size: clamp(26px, 4vw, 42px); text-transform: uppercase; color: var(--green-dark); text-align: center; }
h3 { font-size: 21px; color: var(--green-dark); }
h4 { font-size: 18px; color: var(--green-dark); }
.lead { font-size: clamp(17px, 2.5vw, 22px); max-width: 830px; margin: 0 auto 32px; opacity: .95; }
.btn {
  display: inline-block;
  background: var(--green);
  color: white;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: .04em;
}
.btn:hover { background: var(--green-dark); }
.btn.secondary { background: var(--gold); color: #1f2419; }
.btn.secondary:hover { background: #b88c2e; }
.btn.outline { background: transparent; border: 2px solid white; color: white; }
.btn.outline:hover { background: rgba(255,255,255,.15); }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Stats bar ── */
.stats-bar { background: var(--green-dark); color: white; padding: 22px; }
.stats-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number { font-size: 30px; font-weight: 900; color: #f0d084; line-height: 1; }
.stat-label { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; opacity: .8; margin-top: 5px; }

/* ── Sections ── */
.section { padding: 74px 22px; }
.section.alt { background: var(--light); }
.container { max-width: 1120px; margin: 0 auto; }
.grid { display: grid; gap: 30px; }
.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.section-intro { max-width: 680px; margin: 0 auto 44px; text-align: center; color: var(--muted); font-size: 17px; }

/* ── Cards ── */
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(22,50,24,.08);
}
.card-body { padding: 24px; }
.card img { width: 100%; height: 240px; object-fit: cover; }
.card-body p { color: var(--muted); margin: 0; }

/* ── Service cards ── */
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 30px 26px;
  box-shadow: 0 4px 18px rgba(22,50,24,.06);
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover { box-shadow: 0 12px 36px rgba(22,50,24,.14); transform: translateY(-2px); }
.service-icon { font-size: 38px; margin-bottom: 16px; }
.service-card h3 { font-size: 18px; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 15px; margin: 0; line-height: 1.65; }

/* ── Page hero (inner pages) ── */
.page-hero {
  background: linear-gradient(160deg, rgba(16,44,22,.88), rgba(34,68,39,.62)), url('assets/hero.jpg') center/cover no-repeat;
  padding: 72px 22px;
  color: white;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Archivo Black', Impact, sans-serif;
  font-size: clamp(28px, 4vw, 54px);
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0,0,0,.8), 0 6px 20px rgba(0,0,0,.5);
  margin: 0;
}
.page-hero p { font-size: 18px; opacity: .88; margin: 14px 0 0; }

/* ── Process steps ── */
.process { display: grid; gap: 26px; max-width: 760px; margin: 0 auto; }
.process-step { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-weight: 900;
  font-size: 17px;
  display: flex; align-items: center; justify-content: center;
}
.process-step h4 { margin-bottom: 6px; }
.process-step p { color: var(--muted); font-size: 15px; margin: 0; }

/* ── Values grid ── */
.values-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.value-card { background: white; border-left: 4px solid var(--green); padding: 24px 26px; border-radius: 0 6px 6px 0; box-shadow: 0 4px 18px rgba(22,50,24,.07); }
.value-card h4 { margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: 15px; margin: 0; }

/* ── Comparison list ── */
.compare-col h3 { margin-bottom: 14px; }
.compare-col ul { padding-left: 20px; line-height: 2.1; margin: 0; }
.compare-col.good ul { color: var(--green-dark); font-weight: 600; }
.compare-col.bad ul { color: var(--muted); }

/* ── CTA band ── */
.cta-band { background: var(--green); color: white; text-align: center; padding: 62px 22px; }
.cta-band h2 { color: white; margin-bottom: 14px; }
.cta-band p { font-size: 18px; opacity: .9; margin: 0 auto 30px; max-width: 600px; }

/* ── Text block ── */
.text-block { max-width: 900px; margin: 0 auto; font-size: 17px; }
.text-block p { margin: 0 0 18px; }
.text-block h2 { text-align: left; }

/* ── Address card ── */
.address-card { background: var(--green-dark); color: white; padding: 36px 40px; border-radius: 6px; max-width: 480px; margin: 0 auto; }
.address-card h4 { color: #f0d084; }
.address-card a { color: white; }

/* ── Downloads ── */
.downloads { display: grid; gap: 22px; max-width: 720px; margin: 0 auto; }
.download-item { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 22px; border: 1px solid var(--border); border-radius: 6px; background: white; }

/* ── Gallery ── */
.gallery { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px; }
.gallery a { display: block; background: white; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; box-shadow: 0 12px 30px rgba(22,50,24,.08); }
.gallery img { width: 100%; height: auto; }
.caption { padding: 14px 18px; font-weight: 700; color: var(--green-dark); }

/* ── Footer ── */
.footer { background: #17251b; color: #dfe7dc; text-align: center; padding: 28px 22px; font-size: 14px; }
.footer-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 12px; }
.footer-links a { color: #a8c4aa; text-decoration: none; font-size: 13px; text-transform: uppercase; letter-spacing: .07em; font-weight: 700; }
.footer-links a:hover { color: #f0d084; }

/* ── Responsive ── */
@media (max-width: 820px) {
  .nav { padding: 10px 18px; gap: 0; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px 0 14px;
    border-top: 1px solid var(--border);
    margin-top: 10px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 8px; border-bottom: 1px solid var(--border); text-align: left; }
  .nav-links a:last-child { border-bottom: 0; }
  .phone { border: none; padding: 13px 8px; border-radius: 0; }
  .nav-toggle { padding: 10px 8px; min-height: 44px; min-width: 44px; }
  .two, .three, .gallery, .values-grid { grid-template-columns: 1fr; }
  .hero { min-height: 60vh; }
  .download-item { flex-direction: column; align-items: flex-start; }
  .stats-inner { gap: 28px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .address-card { padding: 26px 24px; }
  .process-step { gap: 14px; }
}
