:root {
  --fir: #1f3b2c;
  --fir-deep: #142a1f;
  --slate: #3c5160;
  --mist: #eef2f0;
  --paper: #ffffff;
  --ink: #17211c;
  --muted: #56655d;
  --line: #cfd9d3;
  --signal: #f2c230;
  --signal-ink: #1d1a0a;
  --focus: #2f6fd6;
  --radius-sm: 4px;
  --radius-lg: 14px;
  --measure: 68ch;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--mist);
  color: var(--ink);
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Barlow Condensed", "Barlow", sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.005em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.3rem, 5.5vw, 3.9rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-top: 1.6em; }
h3 { font-size: 1.35rem; margin-top: 1.4em; }
p, ul, ol { margin: 0 0 1em; }
ul, ol { padding-left: 1.2em; }
li { margin-bottom: 0.35em; }

a { color: var(--fir); text-underline-offset: 3px; }
a:hover { color: var(--slate); }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }

.wrap { width: min(1120px, 100% - 32px); margin-inline: auto; }
.prose { max-width: var(--measure); }

/* Header */
.site-header {
  background: var(--fir-deep);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 64px;
}
.logo {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.logo svg { flex: none; }
.logo:hover { color: #fff; }
.nav { display: flex; gap: 20px; }
.nav a { color: #dfe8e2; text-decoration: none; font-weight: 500; }
.nav a:hover, .nav a[aria-current="page"] { color: #fff; text-decoration: underline; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
}
.btn-call { background: var(--signal); color: var(--signal-ink); }
.btn-call:hover { background: #ffd24d; color: var(--signal-ink); }
.btn-outline { border-color: currentColor; color: inherit; background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,0.08); color: inherit; }

/* Hero */
.hero {
  background: var(--fir);
  color: #fff;
  padding: 56px 0 0;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: end;
}
.hero p.lede { font-size: 1.2rem; color: #d9e4dd; max-width: 34ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 48px; }
.hero-art { align-self: stretch; display: flex; align-items: flex-end; }
.hero-art svg { width: 100%; height: auto; display: block; }

.page-hero {
  background: var(--fir);
  color: #fff;
  padding: 44px 0 36px;
}
.page-hero p { color: #d9e4dd; max-width: 60ch; font-size: 1.15rem; margin: 0; }
.crumbs { font-size: 0.95rem; margin-bottom: 12px; color: #b9cabf; }
.crumbs a { color: #d9e4dd; }

/* Sections */
main section { padding: 48px 0; }
.band { background: var(--paper); border-block: 1px solid var(--line); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 48px;
  align-items: start;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  border-top: 2px solid var(--fir);
}
.service-list li { margin: 0; border-bottom: 1px solid var(--line); }
.service-list a {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 18px 4px;
  text-decoration: none;
  color: var(--ink);
}
.service-list a:hover { background: #f5f8f6; }
.service-list strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.4rem;
  color: var(--fir);
}
.service-list span { color: var(--muted); }

.steps { counter-reset: step; list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 24px; }
.steps li { counter-increment: step; margin: 0; }
.steps li::before {
  content: counter(step);
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--fir);
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}
.steps h3 { margin-top: 0; }

.areas { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin-top: 16px; }
.areas li { margin: 0; }
.areas a {
  display: inline-block;
  padding: 8px 14px;
  border: 1.5px solid var(--fir);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}
.areas a:hover { background: var(--fir); color: #fff; }

.signs { columns: 2; column-gap: 40px; }
.signs li { break-inside: avoid; }

.faq details { border-bottom: 1px solid var(--line); padding: 14px 0; max-width: var(--measure); }
.faq summary { cursor: pointer; font-weight: 700; font-size: 1.1rem; }
.faq details p { margin: 10px 0 0; }

.note {
  border-left: 4px solid var(--signal);
  background: #fffbea;
  padding: 14px 18px;
  max-width: var(--measure);
  margin: 1.4em 0;
}

/* Quote card */
.quote-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 6px solid var(--signal);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 88px;
}
.quote-card h2 { margin-top: 0; font-size: 1.7rem; }
.quote-card .btn { width: 100%; }
.quote-card .or { text-align: center; color: var(--muted); margin: 14px 0; font-size: 0.95rem; }

form.quote label { display: block; font-weight: 600; margin: 12px 0 4px; font-size: 0.97rem; }
form.quote input, form.quote select, form.quote textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1.5px solid #aebcb3;
  border-radius: var(--radius-sm);
  font: inherit;
  background: #fff;
  color: var(--ink);
}
form.quote textarea { min-height: 96px; resize: vertical; }
form.quote .btn { margin-top: 16px; }
form.quote .fine { font-size: 0.85rem; color: var(--muted); margin-top: 10px; }
.form-status { margin-top: 12px; font-weight: 600; }
.form-status[data-state="error"] { color: #a12d1c; }
.form-status[data-state="ok"] { color: var(--fir); }
.hp { position: absolute; left: -9999px; }

.cta-band { background: var(--slate); color: #fff; padding: 40px 0; }
.cta-band .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.cta-band h2 { margin: 0; }
.cta-band p { margin: 6px 0 0; color: #dce4e8; }

/* Footer */
.site-footer { background: var(--fir-deep); color: #c3d1c8; padding: 40px 0 96px; font-size: 0.95rem; }
.site-footer a { color: #e6eee9; }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 32px; }
.site-footer h3 { color: #fff; margin-top: 0; font-size: 1.15rem; }
.site-footer ul { list-style: none; padding: 0; }
.disclosure { margin-top: 28px; border-top: 1px solid #2f4a3b; padding-top: 18px; max-width: 90ch; }

/* Mobile call bar */
.call-bar {
  position: fixed;
  inset: auto 0 0 0;
  display: none;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: var(--fir-deep);
  z-index: 30;
}
.call-bar .btn { width: 100%; }

@media (max-width: 900px) {
  .hero-grid, .split, .foot-grid { grid-template-columns: 1fr; }
  .hero-art { margin-top: -12px; }
  .quote-card { position: static; }
  .steps { grid-template-columns: 1fr; }
  .nav { display: none; }
  .signs { columns: 1; }
  .service-list a { grid-template-columns: 1fr; gap: 4px; }
  .call-bar { display: block; }
  .site-header .btn-call { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
