:root {
  --ink: #071411;
  --ink-2: #0d2420;
  --paper: #f4f7f3;
  --paper-2: #e9eee9;
  --line: rgba(7, 20, 17, 0.16);
  --muted: #52615d;
  --green: #17d6a3;
  --green-deep: #078264;
  --warm: #d9ff5f;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(2, 20, 15, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, select { font: inherit; }
.shell { width: min(1180px, calc(100% - 44px)); margin-inline: auto; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 16px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--green);
  color: var(--ink);
  font-weight: 800;
  border-radius: 8px;
}
.skip-link:focus { position: fixed; left: 16px; }

.site-header {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 48px;
  color: var(--ink);
  background: var(--green);
  clip-path: polygon(50% 0, 92% 19%, 84% 75%, 50% 100%, 16% 75%, 8% 19%);
}
.mark::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(7, 20, 17, 0.42);
  clip-path: inherit;
}
.mark span { position: relative; z-index: 1; font-size: 11px; font-weight: 900; letter-spacing: 0.05em; }
.brand-copy { display: flex; flex-direction: column; gap: 3px; }
.brand-copy strong { font-size: 14px; letter-spacing: 0.12em; }
.brand-copy small { color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: 0.17em; }
nav { display: flex; align-items: center; gap: 30px; }
nav a { text-decoration: none; font-size: 13px; font-weight: 750; }
nav a:not(.nav-contact) { color: #334640; }
.nav-contact { border-bottom: 2px solid var(--ink); padding: 8px 0; }

.hero {
  min-height: 670px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 76px;
  padding-block: 62px 96px;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -290px;
  top: 50px;
  border: 1px solid rgba(7, 130, 100, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(7, 130, 100, 0.025), 0 0 0 140px rgba(7, 130, 100, 0.02);
  pointer-events: none;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.17em;
}
.signal {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(23, 214, 163, 0.16);
}
h1, h2, h3, p { text-wrap: pretty; }
h1 {
  margin: 0;
  font-size: clamp(50px, 5.4vw, 78px);
  line-height: 0.99;
  letter-spacing: -0.055em;
  font-weight: 760;
  max-width: 760px;
}
h1 span { color: var(--green-deep); }
.hero-intro {
  max-width: 690px;
  margin: 28px 0 0;
  color: #43534f;
  font-size: 18px;
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 34px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 19px;
  border: 1px solid transparent;
  border-radius: 7px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 850;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button svg, .service-select svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.button:hover, .service-select:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: var(--white); box-shadow: 0 10px 22px rgba(7, 20, 17, .17); }
.button-primary:hover { background: var(--ink-2); }
.button-quiet { color: var(--ink); border-color: var(--line); }
.button-outline { border-color: rgba(255,255,255,.28); color: white; }
.trust-list { display: flex; flex-wrap: wrap; gap: 11px 24px; padding: 0; margin: 26px 0 0; list-style: none; }
.trust-list li { color: var(--muted); font-size: 11px; font-weight: 750; }
.trust-list li::before { content: "✓"; color: var(--green-deep); margin-right: 7px; font-weight: 900; }

.response-map {
  position: relative;
  overflow: hidden;
  padding: 30px;
  color: white;
  background: var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.response-map::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -130px;
  bottom: -160px;
  border-radius: 50%;
  border: 1px solid rgba(23, 214, 163, .32);
  box-shadow: 0 0 0 44px rgba(23, 214, 163, .035), 0 0 0 88px rgba(23, 214, 163, .025);
}
.map-heading { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; padding-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,.13); }
.map-kicker { color: var(--green); font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.map-heading h2 { margin: 8px 0 0; font-size: 25px; letter-spacing: -.03em; }
.status-pill { padding: 7px 9px; color: var(--warm); background: rgba(217,255,95,.08); border: 1px solid rgba(217,255,95,.28); border-radius: 999px; font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.response-map ol { position: relative; margin: 0; padding: 14px 0 4px; list-style: none; }
.response-map ol::before { content: ""; position: absolute; left: 7px; top: 37px; bottom: 31px; width: 1px; background: linear-gradient(var(--green), rgba(23,214,163,.14)); }
.response-map li { position: relative; z-index: 1; display: grid; grid-template-columns: 16px 1fr auto; gap: 14px; align-items: center; padding: 16px 0; }
.step-dot { width: 15px; height: 15px; border: 4px solid var(--ink); background: var(--green); border-radius: 50%; box-shadow: 0 0 0 1px rgba(23,214,163,.55); }
.response-map li div { display: flex; flex-direction: column; gap: 4px; }
.response-map li strong { font-size: 14px; }
.response-map li small { color: #9baaa6; font-size: 11px; line-height: 1.45; }
.step-time { color: #7f918c; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 8px; font-weight: 800; letter-spacing: .09em; }
.map-note { margin: 19px 0 0; color: #869792; font-size: 10px; line-height: 1.55; }

.services-section { padding: 100px 0 110px; background: var(--white); }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 90px; align-items: end; margin-bottom: 43px; }
.section-heading h2, .estimator-intro h2 { max-width: 650px; margin: 0; font-size: clamp(38px, 4vw, 56px); line-height: 1.05; letter-spacing: -.045em; }
.section-heading > p { max-width: 480px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.service-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.service-card {
  grid-column: span 2;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: 10px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.service-card:nth-child(4) { grid-column: 2 / span 2; }
.service-card:hover { transform: translateY(-4px); border-color: rgba(7,130,100,.27); box-shadow: 0 16px 44px rgba(7,20,17,.08); }
.service-topline { display: flex; align-items: center; gap: 12px; color: var(--green-deep); font: 800 10px ui-monospace, monospace; }
.service-rule { height: 1px; flex: 1; background: var(--line); }
.service-card h3 { margin: 34px 0 9px; font-size: 24px; letter-spacing: -.035em; }
.service-short { margin: 0; color: var(--ink); font-size: 13px; font-weight: 720; line-height: 1.5; }
.service-detail { margin: 14px 0 22px; color: var(--muted); font-size: 12px; line-height: 1.65; }
.service-outcome { display: flex; flex-direction: column; gap: 4px; padding: 14px 0; margin-top: auto; border-top: 1px solid var(--line); }
.service-outcome small { color: var(--green-deep); font-size: 8px; font-weight: 900; letter-spacing: .13em; }
.service-outcome strong { font-size: 11px; }
.service-select { display: inline-flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 15px; text-decoration: none; font-size: 11px; font-weight: 850; transition: transform .2s ease; }

.estimator-section { padding: 105px 0; color: white; background: var(--ink); }
.estimator-layout { display: grid; grid-template-columns: .76fr 1.24fr; gap: 74px; align-items: start; }
.estimator-intro .eyebrow { color: var(--green); }
.estimator-intro h2 { color: white; }
.estimator-intro > p:not(.eyebrow) { margin: 23px 0 0; color: #9caaa6; font-size: 14px; line-height: 1.72; }
.boundary-card { display: grid; grid-template-columns: 36px 1fr; gap: 14px; padding: 18px; margin-top: 34px; background: rgba(23,214,163,.06); border: 1px solid rgba(23,214,163,.19); border-radius: 8px; }
.boundary-icon { display: grid; place-items: center; width: 34px; height: 34px; background: var(--green); color: var(--ink); border-radius: 50%; font-family: Georgia, serif; font-weight: 900; }
.boundary-card strong { font-size: 11px; }
.boundary-card p { margin: 7px 0 0; color: #9fb0ab; font-size: 10px; line-height: 1.55; }
.estimator-card { padding: 30px; background: #10251f; border: 1px solid rgba(255,255,255,.11); border-radius: 12px; box-shadow: 0 28px 80px rgba(0,0,0,.25); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field > span { color: #acbbb6; font-size: 9px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.field select { width: 100%; height: 48px; padding: 0 42px 0 14px; color: white; background-color: #0b1d18; border: 1px solid rgba(255,255,255,.14); border-radius: 6px; outline: 0; }
.field select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(23,214,163,.13); }
.estimate-result { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; padding: 24px 0 20px; margin-top: 26px; border-top: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
.estimate-result > div { display: flex; flex-direction: column; gap: 8px; }
.estimate-result span { color: var(--green); font: 900 9px ui-monospace, monospace; letter-spacing: .11em; }
.estimate-result strong { color: white; font-size: clamp(27px, 3vw, 39px); letter-spacing: -.035em; }
.estimate-result strong i { color: #61716c; font-style: normal; font-weight: 400; }
.estimate-result .estimate-code { color: #74847f; font-size: 8px; }
.estimate-note { margin: 16px 0 0; color: #83938e; font-size: 10px; line-height: 1.55; }
.estimate-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 23px; }
.estimator-card .button-primary { background: var(--green); color: var(--ink); box-shadow: none; }
.estimator-card .button-primary:hover { background: #40e6b9; }

.site-footer { color: #b7c3bf; background: #04100d; border-top: 1px solid rgba(255,255,255,.08); }
.footer-inner { min-height: 120px; display: grid; grid-template-columns: 1fr auto; gap: 22px 60px; align-items: center; padding-block: 24px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .mark { width: 32px; height: 37px; }
.footer-brand > div { display: flex; flex-direction: column; gap: 4px; }
.footer-brand strong { color: white; font-size: 12px; }
.footer-brand span { color: #6f817b; font-size: 9px; letter-spacing: .08em; }
.footer-contact { display: flex; gap: 20px; }
.footer-contact a { color: white; text-decoration: none; font-size: 11px; font-weight: 700; }
.footer-inner > p { grid-column: 1 / -1; margin: -20px 0 0 44px; color: #53655f; font-size: 9px; }

a:focus-visible, select:focus-visible { outline: 3px solid var(--warm); outline-offset: 3px; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; gap: 46px; padding-top: 60px; }
  .hero-copy { max-width: 760px; }
  .response-map { max-width: 700px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card, .service-card:nth-child(4) { grid-column: auto; }
  .service-card:last-child { grid-column: 1 / -1; min-height: 300px; }
  .estimator-layout { grid-template-columns: 1fr; gap: 46px; }
  .estimator-intro { max-width: 700px; }
}

@media (max-width: 680px) {
  .shell { width: min(100% - 28px, 1180px); }
  .site-header { height: 78px; }
  nav a:not(.nav-contact) { display: none; }
  .nav-contact { font-size: 12px; }
  .brand-copy small { display: none; }
  .hero { min-height: auto; padding: 55px 0 72px; }
  h1 { font-size: clamp(44px, 13vw, 62px); }
  .hero-intro { font-size: 16px; }
  .hero-actions, .hero-actions .button { width: 100%; }
  .trust-list { display: grid; gap: 10px; }
  .response-map { padding: 22px; }
  .step-time { display: none; }
  .response-map li { grid-template-columns: 16px 1fr; }
  .services-section, .estimator-section { padding-block: 74px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:last-child { grid-column: auto; min-height: 320px; }
  .estimator-card { padding: 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .estimate-result { flex-direction: column; }
  .estimate-actions, .estimate-actions .button { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-contact { flex-direction: column; gap: 8px; }
  .footer-inner > p { grid-column: 1; margin: 0; }
}

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