:root {
  --forest: #052f27;
  --forest-dark: #02221c;
  --forest-soft: #0d4a3d;
  --orange: #f05a16;
  --orange-dark: #cf4308;
  --lime: #b8cf3d;
  --cream: #f7f2e8;
  --paper: #fffdf8;
  --ink: #10231e;
  --muted: #58635f;
  --line: #d9d3c7;
  --white: #fff;
  --shadow: 0 18px 50px rgba(2, 34, 28, 0.14);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-dark);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 3px; background: var(--orange); }
h1, h2, h3 {
  margin: 0;
  color: var(--forest-dark);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 800;
  letter-spacing: .01em;
  line-height: .98;
}
h1 { font-size: clamp(3.3rem, 7vw, 6.9rem); }
h2 { font-size: clamp(2.45rem, 5vw, 4.5rem); }
h3 { font-size: 1.65rem; line-height: 1.05; }
p { margin: 0; }
.lead { color: var(--muted); font-size: clamp(1.05rem, 1.8vw, 1.28rem); line-height: 1.55; }
.section { padding: 92px 0; }
.section-head { display: grid; gap: 16px; max-width: 760px; margin-bottom: 42px; }
.section-head p { max-width: 660px; }
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 2px solid transparent;
  border-radius: 9px;
  cursor: pointer;
  font-weight: 850;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 9px 22px rgba(0,0,0,.14); }
.btn:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-outline { border-color: var(--forest); color: var(--forest); background: transparent; }
.btn-light { background: var(--white); color: var(--forest-dark); }
.btn-outline-light { border-color: var(--white); color: var(--white); }
.action-gap { margin-top: 28px; }

.topbar {
  padding: 8px 0;
  color: #eaf4f0;
  background: var(--forest-dark);
  font-size: .82rem;
}
.topbar .container { display: flex; justify-content: space-between; gap: 20px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: white;
  background: rgba(5, 47, 39, .98);
  box-shadow: 0 5px 20px rgba(0,0,0,.12);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark {
  width: 48px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--lime), #829d27);
  clip-path: polygon(50% 0, 94% 16%, 85% 76%, 50% 100%, 15% 76%, 6% 16%);
  font: 900 1.45rem Impact, sans-serif;
}
.brand-copy { display: grid; line-height: .9; letter-spacing: .06em; text-transform: uppercase; }
.brand-copy strong { font: 900 1.27rem Impact, sans-serif; }
.brand-copy span { font-size: .72rem; font-weight: 850; letter-spacing: .19em; }
.nav-links { display: flex; align-items: center; gap: 25px; font-size: .85rem; font-weight: 800; text-transform: uppercase; }
.nav-links a:hover { color: var(--lime); }
.nav-phone { font-weight: 900; white-space: nowrap; }
.menu-toggle {
  display: none;
  width: 48px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 8px;
  color: #fff;
  background: transparent;
  font-size: 1.35rem;
}

.hero { background: var(--cream); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); min-height: 680px; }
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 70px max(40px, calc((100vw - var(--max))/2)) 70px max(24px, calc((100vw - var(--max))/2));
  background:
    linear-gradient(rgba(247,242,232,.96), rgba(247,242,232,.96)),
    repeating-linear-gradient(45deg, #000 0 1px, transparent 1px 7px);
}
.hero-copy h1 span { display: block; }
.hero-copy .lead { max-width: 570px; color: #454d4a; font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; font-size: .88rem; font-weight: 750; color: #46514d; }
.trust-row span::before { content: "✓"; color: var(--orange); margin-right: 7px; font-weight: 1000; }
.hero-media { position: relative; min-height: 580px; background: var(--forest-soft); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  max-width: 260px;
  padding: 18px 20px;
  color: white;
  background: rgba(2,34,28,.94);
  border-left: 5px solid var(--orange);
  box-shadow: var(--shadow);
}
.hero-badge strong { display: block; font-size: 1.05rem; }
.hero-badge span { color: #d4e2dd; font-size: .86rem; }

.service-strip { position: relative; z-index: 2; margin-top: -1px; background: var(--paper); border-bottom: 1px solid var(--line); }
.service-strip-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.service-mini { min-height: 118px; padding: 25px 18px; border-right: 1px solid var(--line); font-weight: 850; }
.service-mini:first-child { border-left: 1px solid var(--line); }
.service-mini span { display: block; margin-bottom: 8px; color: var(--orange); font-size: 1.25rem; }
.service-mini:hover { color: var(--orange-dark); background: var(--cream); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(2,34,28,.06);
}
.card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: #e9f0c8;
  font-size: 1.4rem;
}
.card p { color: var(--muted); }
.card-link { margin-top: auto; color: var(--orange-dark); font-weight: 850; }

.how { color: white; background: var(--forest); }
.how h2, .how h3 { color: white; }
.how .section-head p { color: #c9d9d3; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step { position: relative; padding: 30px 26px; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); }
.step-num { color: var(--lime); font: 900 3.5rem Impact, sans-serif; line-height: 1; }
.step p { margin-top: 12px; color: #cbd8d4; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.panel { padding: 44px; border-radius: var(--radius); background: var(--cream); }
.checklist { display: grid; gap: 14px; margin: 28px 0; padding: 0; list-style: none; }
.checklist li { position: relative; padding-left: 30px; color: var(--muted); }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 1000; }

.service-area { background: #edf1de; }
.area-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.pill { padding: 9px 14px; border: 1px solid #b8c09f; border-radius: 999px; background: rgba(255,255,255,.65); font-weight: 750; }

.cta-band { padding: 50px 0; color: white; background: var(--orange); }
.cta-band .container { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.cta-band h2 { color: white; font-size: clamp(2.4rem, 5vw, 4rem); }
.cta-band p { color: #fff2e9; }

.page-hero { padding: 95px 0 70px; color: white; background: linear-gradient(120deg, var(--forest-dark), var(--forest-soft)); }
.page-hero h1 { max-width: 900px; color: white; font-size: clamp(3.1rem, 7vw, 6rem); }
.page-hero p { max-width: 700px; margin-top: 24px; color: #d8e5e0; }
.breadcrumb { margin-bottom: 20px; color: var(--lime); font-size: .84rem; font-weight: 800; text-transform: uppercase; }
.content { max-width: 820px; }
.content h2 { margin: 50px 0 18px; font-size: clamp(2rem, 4vw, 3.2rem); }
.content h3 { margin: 32px 0 12px; }
.content p, .content li { color: var(--muted); }
.content ul { padding-left: 21px; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 38px; }
.contact-card { padding: 34px; background: var(--forest); color: white; border-radius: var(--radius); }
.contact-card h2, .contact-card h3 { color: white; }
.contact-card a { color: var(--lime); font-weight: 800; }
.contact-lines { display: grid; gap: 20px; margin-top: 30px; }
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { font-size: .88rem; font-weight: 800; }
input, textarea, select {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: white;
  border: 1px solid #bfc6c2;
  border-radius: 8px;
}
textarea { min-height: 130px; resize: vertical; }
.form-note { grid-column: 1 / -1; color: var(--muted); font-size: .82rem; }

.site-footer { padding: 62px 0 26px; color: #c9d7d2; background: var(--forest-dark); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 45px; }
.site-footer .brand { display: inline-flex; color: white; margin-bottom: 20px; }
.site-footer h3 { margin-bottom: 16px; color: white; font-family: inherit; font-size: .95rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: grid; gap: 8px; }
.footer-links a:hover { color: var(--lime); }
.footer-bottom { margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; }
.mobile-cta { display: none; }

@media (max-width: 980px) {
  .nav-links, .nav-wrap > .nav-phone, .nav-wrap > .btn { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 20px 20px;
    background: var(--forest);
    box-shadow: 0 10px 20px rgba(0,0,0,.2);
  }
  .nav-links.open a { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 72px max(24px, calc((100vw - var(--max))/2)); }
  .hero-media { min-height: 460px; }
  .service-strip-grid { grid-template-columns: repeat(3, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 680px) {
  body { padding-bottom: 68px; }
  .topbar { display: none; }
  .nav-wrap { min-height: 68px; }
  .brand-mark { width: 39px; height: 44px; }
  .brand-copy strong { font-size: 1.03rem; }
  .brand-copy span { font-size: .58rem; }
  .nav-links.open { top: 68px; }
  .section { padding: 68px 0; }
  .hero-copy { padding: 64px 20px; }
  h1 { font-size: clamp(3.15rem, 16vw, 4.7rem); }
  .hero-actions .btn { width: 100%; }
  .hero-media { min-height: 350px; }
  .service-strip-grid { grid-template-columns: 1fr 1fr; }
  .service-mini { min-height: 90px; padding: 18px 14px; }
  .cards, .steps, .footer-grid { grid-template-columns: 1fr; }
  .panel { padding: 28px 22px; }
  .cta-band .container { align-items: flex-start; flex-direction: column; }
  .quote-form { grid-template-columns: 1fr; }
  .field.full, .form-note { grid-column: auto; }
  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    padding: 7px;
    background: var(--forest-dark);
  }
  .mobile-cta .btn { min-height: 52px; padding: 12px; border-radius: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
