
:root {
  --primary-950: #08251d;
  --primary-900: #0b3529;
  --primary-800: #124838;
  --primary-700: #176249;
  --accent-500: #a85c16;
  --accent-400: #bd7428;
  --lime-300: #b9d96a;
  --ink: #13201b;
  --muted: #5c6963;
  --line: #dfe8e1;
  --bg: #f4f7f1;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(8,37,29,.14);
  --radius: 8px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
html, body { max-width:100%; overflow-x:hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.skip { position:absolute; left:-999px; top:8px; background:#fff; padding:8px 12px; z-index:999; }
.skip:focus { left:8px; }
.container { width: calc(100% - 32px); max-width:1160px; margin: 0 auto; }
.topbar {
  background: var(--primary-950);
  color: #eaf4ee;
  font-size: 14px;
}
.topbar .container { display:flex; justify-content:space-between; gap:16px; padding:8px 0; flex-wrap:wrap; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 22px rgba(8,37,29,.08);
  backdrop-filter: blur(12px);
}
.nav { display:flex; align-items:center; justify-content:space-between; gap:18px; min-height:74px; }
.brand { display:flex; align-items:center; gap:12px; color:var(--primary-900); letter-spacing:0; min-width:0; }
.logo-mark {
  width:48px; height:48px; flex:0 0 48px; border-radius:10px;
  background:linear-gradient(145deg, var(--primary-900), #114f3b);
  display:grid; place-items:center; box-shadow:0 8px 18px rgba(8,37,29,.18);
  border:1px solid rgba(255,255,255,.5);
}
.logo-mark svg { width:36px; height:36px; display:block; }
.wordmark { display:flex; flex-direction:column; line-height:1.02; min-width:0; }
.wordmark-main { font-weight:900; font-size:18px; color:var(--primary-950); white-space:nowrap; }
.wordmark-sub { margin-top:4px; font-size:10px; font-weight:900; letter-spacing:.04em; text-transform:uppercase; color:#5e2f08; white-space:nowrap; }
.footer .wordmark-main { color:#fff; }
.footer .wordmark-sub { color:var(--lime-300); }
.nav-links { display:flex; align-items:center; gap:18px; font-size:15px; color:#203a31; }
.nav-links a { padding:10px 0; }
.nav-links a:hover { color:var(--primary-700); }
.mobile-nav { display:none; }
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  min-height:44px; padding:11px 17px; border-radius:6px; font-weight:800;
  background: var(--accent-500); color:#fff; border:1px solid transparent;
  box-shadow: 0 8px 22px rgba(212,135,48,.22);
}
.btn:hover { background:#bd7428; }
.btn.secondary { background:#fff; color:var(--primary-900); border-color:rgba(255,255,255,.35); box-shadow:none; }
.btn.ghost { background:transparent; color:var(--primary-900); border-color:var(--line); box-shadow:none; }
.hero { position:relative; overflow:hidden; background:var(--primary-900); color:#fff; }
.hero-grid { display:grid; grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr); gap:34px; align-items:center; padding:72px 0; min-height:620px; }
.eyebrow { color: var(--lime-300); text-transform:uppercase; font-size:13px; font-weight:900; letter-spacing:.08em; margin:0 0 10px; }
.section .eyebrow, .decision-panel .eyebrow, .callout-card .eyebrow { color:var(--primary-700); }
.hero .eyebrow, .page-hero .eyebrow, .section.dark .eyebrow { color:var(--lime-300); }
h1,h2,h3,p { overflow-wrap:anywhere; }
h1 { font-size: clamp(40px, 6vw, 72px); line-height:.98; margin:0 0 18px; letter-spacing:0; }
h2 { font-size: clamp(28px, 4vw, 46px); line-height:1.08; margin:0 0 14px; letter-spacing:0; }
h3 { font-size: 22px; line-height:1.15; margin:0 0 10px; }
.lead { font-size:20px; line-height:1.55; color:#e7f1eb; margin:0 0 18px; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; margin-top:24px; }
.hero-media { position:relative; align-self:stretch; min-height:420px; }
.hero-grid > div, .content-grid > *, .decision-grid > *, .card, .trust-pill, .proof-item { min-width:0; }
.hero-card {
  position:absolute; inset:0; border-radius:8px; overflow:hidden; box-shadow:var(--shadow);
  border:1px solid rgba(255,255,255,.18);
}
.hero-card img { width:100%; height:100%; object-fit:cover; filter:saturate(.95) contrast(1.03); }
.hero-card:after { content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(8,37,29,.02), rgba(8,37,29,.28)); }
.trust-row { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:28px; }
.trust-pill { border:1px solid rgba(255,255,255,.18); border-radius:8px; padding:14px; background:rgba(255,255,255,.07); }
.trust-pill strong { display:block; font-size:18px; }
.decision-grid { display:grid; grid-template-columns:1.05fr .95fr; gap:22px; align-items:stretch; }
.decision-panel {
  background:#fff; border:1px solid var(--line); border-radius:8px; padding:26px;
  box-shadow:0 10px 28px rgba(8,37,29,.06);
}
.issue-list { display:grid; gap:10px; margin-top:18px; }
.issue-link {
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  border:1px solid var(--line); border-radius:8px; padding:14px 16px; background:#fff;
  font-weight:850; color:var(--primary-900);
}
.issue-link span { display:block; }
.issue-link small { display:block; color:var(--muted); font-weight:650; margin-top:2px; }
.issue-link:hover { border-color:var(--accent-500); box-shadow:0 8px 20px rgba(8,37,29,.08); }
.callout-card {
  background:#fff8ef; border:1px solid #efd7b9; border-radius:8px; padding:24px;
  box-shadow:0 10px 28px rgba(212,135,48,.08);
}
.callout-card h2 { font-size:28px; line-height:1.12; }
.callout-card .btn { margin-top:10px; }
.local-proof { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.proof-item { background:#fff; border:1px solid var(--line); border-radius:8px; padding:22px; }
.proof-item strong { display:block; color:var(--primary-900); font-size:18px; margin-bottom:6px; }
.stats { background:var(--primary-950); color:#fff; border-top:1px solid rgba(255,255,255,.1); border-bottom:1px solid rgba(255,255,255,.1); }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; }
.stat { padding:24px 18px; text-align:center; }
.stat strong { display:block; font-size:26px; color:var(--lime-300); }
.section { padding:72px 0; }
.section.white { background:#fff; }
.section.dark { background:var(--primary-900); color:#fff; }
.section-head { max-width:760px; margin-bottom:30px; }
.section-head p { color:var(--muted); font-size:18px; margin:0; }
.dark .section-head p, .dark .muted { color:#dce9e2; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.card {
  background:#fff; border:1px solid var(--line); border-radius:8px; padding:24px; box-shadow:0 10px 28px rgba(8,37,29,.06);
}
.card img { width:100%; aspect-ratio: 4/3; object-fit:cover; border-radius:6px; margin-bottom:18px; }
.service-card { padding:0; overflow:hidden; }
.service-card .card-body { padding:22px; }
.tag { display:inline-flex; margin-bottom:10px; color:var(--primary-700); font-weight:900; font-size:13px; text-transform:uppercase; letter-spacing:.06em; }
.link-arrow { color:var(--primary-700); font-weight:900; }
.problem-list { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.problem { border-left:4px solid var(--accent-500); background:#fff; padding:18px; border-radius:6px; }
.process { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; counter-reset:steps; }
.step { position:relative; padding-top:54px; }
.step:before { counter-increment:steps; content:counter(steps); position:absolute; top:0; left:24px; width:38px; height:38px; border-radius:50%; display:grid; place-items:center; background:var(--accent-500); color:#fff; font-weight:900; }
.cta-band { background:var(--accent-500); color:#fff; padding:50px 0; }
.cta-flex { display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; }
.faq { border-top:1px solid var(--line); }
.faq-item { border-bottom:1px solid var(--line); padding:18px 0; }
.faq-item h3 { font-size:18px; }
.footer { background:var(--primary-950); color:#eaf4ee; padding:54px 0 24px; }
.footer-grid { display:grid; grid-template-columns:1.3fr 1fr 1fr 1fr; gap:28px; }
.footer a { color:#eaf4ee; display:block; margin:7px 0; }
.subfooter { border-top:1px solid rgba(255,255,255,.14); margin-top:36px; padding-top:20px; font-size:14px; color:#c4d2ca; }
.page-hero { background:var(--primary-900); color:#fff; padding:64px 0; }
.page-hero .lead { max-width:820px; }
.content-grid { display:grid; grid-template-columns: 2fr .8fr; gap:30px; align-items:start; }
.sidebar { position:sticky; top:96px; }
.check-list { padding-left:0; list-style:none; }
.check-list li { margin:10px 0; padding-left:28px; position:relative; }
.check-list li:before { content:""; width:9px; height:9px; border-radius:50%; background:var(--accent-500); position:absolute; left:5px; top:.7em; }
.mini-links { display:flex; flex-wrap:wrap; gap:10px; }
.mini-links a { border:1px solid var(--line); border-radius:999px; padding:8px 12px; background:#fff; color:var(--primary-900); font-weight:700; }
.page-callout { margin-top:30px; }
.sidebar .btn { width:100%; }
.mobile-call { display:none; position:fixed; left:12px; right:12px; bottom:12px; z-index:80; }
@media (max-width: 960px) {
  .hero-grid, .content-grid, .decision-grid { grid-template-columns:1fr; }
  .hero-grid { padding:46px 0; }
  .hero-media { min-height:340px; }
  .grid-3, .grid-4, .process, .footer-grid, .local-proof { grid-template-columns:1fr 1fr; }
  .stats-grid { grid-template-columns:1fr 1fr; }
  .nav-links { display:none; }
  .mobile-nav { display:block; position:sticky; top:74px; z-index:49; background:rgba(255,255,255,.98); border-bottom:1px solid var(--line); box-shadow:0 4px 18px rgba(8,37,29,.06); }
  .mobile-nav .container { display:grid; grid-template-columns:repeat(5,1fr); gap:6px; padding:8px 0; }
  .mobile-nav a { display:flex; align-items:center; justify-content:center; min-height:38px; border:1px solid var(--line); border-radius:6px; color:var(--primary-900); font-weight:850; font-size:14px; background:#fff; }
  .mobile-nav a.call-tab { background:var(--accent-500); color:#fff; border-color:var(--accent-500); }
}
@media (max-width: 620px) {
  .topbar { display:none; }
  .container { width:calc(100% - 24px); max-width:366px; margin-left:12px; margin-right:12px; }
  h1 { font-size:32px; line-height:1.08; }
  .grid-3, .grid-4, .process, .footer-grid, .trust-row, .problem-list, .stats-grid, .local-proof { grid-template-columns:1fr; }
  .hero-media { min-height:270px; }
  .section { padding:52px 0; }
  .btn { width:100%; }
  body { padding-bottom:0; }
  .nav { min-height:66px; }
  .logo-mark { width:40px; height:40px; flex-basis:40px; border-radius:8px; }
  .logo-mark svg { width:30px; height:30px; }
  .wordmark-main { font-size:15px; }
  .wordmark-sub { font-size:8px; letter-spacing:.03em; }
  .hero-actions .btn:first-child { display:none; }
  .mobile-nav { top:66px; }
  .mobile-nav .container { width:100%; max-width:390px; margin-left:0; margin-right:0; grid-template-columns:repeat(5,minmax(0,1fr)); gap:0; padding:0; }
  .mobile-nav a { border-radius:0; border-left:0; border-bottom:0; min-height:42px; font-size:11px; }
  .issue-link { align-items:flex-start; }
}
