:root {
  --brand: #1F3B23;
  --brand-darker: #122116;
  --cta: #D9601C;
  --cta-darker: #B84F14;
  --text-main: #1A1A1A;
  --muted: #6B6B6B;
  --soft-line: #d6d3cc;
  --bg-page: #ffffff;
  --bg-alt: #F5F1E9;
  --on-brand: #ffffff;
  --on-cta: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-main);
  background: var(--bg-page);
  padding-top: 44px; /* sticky bar */
}
a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--cta); }
img { max-width: 100%; height: auto; display: block; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: 760px; }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--text-main); }
h1 { font-size: 36px; }
h2 { font-size: 28px; margin-bottom: 18px; }
h3 { font-size: 20px; margin: 22px 0 10px; }
p { margin-bottom: 14px; }
ul, ol { padding-left: 22px; margin-bottom: 14px; }
li { margin-bottom: 6px; }

/* === Sticky call bar === */
.sticky-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--brand);
  color: var(--on-brand);
  height: 44px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.15);
}
.sticky-bar-inner { max-width: 1120px; margin: 0 auto; padding: 0 16px; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.sticky-brand { display: flex; align-items: center; gap: 10px; color: var(--on-brand); text-decoration: none; }
.sticky-logo { height: 36px; width: auto; max-width: 280px; display: block; filter: brightness(0) invert(1); }

.sticky-cta { display: flex; align-items: center; gap: 12px; }
.sticky-cta-lbl { color: var(--on-brand); opacity: 0.85; font-size: 12px; }
.sticky-call {
  background: var(--cta); color: var(--on-cta);
  padding: 8px 16px; border-radius: 4px;
  font-weight: 700; font-size: 15px;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.sticky-call:hover { background: var(--cta-darker); color: var(--on-cta); }
@media (max-width: 540px) {
  .sticky-cta-lbl { display: none; }
  .sticky-brand-name { display: none; }
  .sticky-call { padding: 7px 12px; font-size: 14px; }
}

/* === Site header === */
.site-header {
  background: var(--bg-page);
  border-bottom: 1px solid var(--soft-line);
}
.site-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; padding-bottom: 16px; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text-main); }
.brand img { width: 44px; height: 44px; }
.brand-name { font-weight: 700; font-size: 19px; color: var(--brand); }

/* === CTA buttons === */
.cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cta); color: var(--on-cta);
  padding: 14px 22px; border-radius: 6px;
  font-weight: 700; font-size: 17px;
  text-decoration: none;
  border: none; cursor: pointer;
  line-height: 1.1;
  box-shadow: 0 2px 0 var(--cta-darker);
}
.cta:hover { background: var(--cta-darker); color: var(--on-cta); }
.cta--call .cta-icon { font-size: 18px; }
.cta-inline { color: var(--cta); font-weight: 700; text-decoration: underline; }

/* === Hero === */
.hero { position: relative; color: var(--on-brand); overflow: hidden; background: var(--brand); }
.hero--home .hero-image, .hero--page .hero-image { position: absolute; inset: 0; }
.hero--home .hero-image img, .hero--page .hero-image img { width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(31,59,35,0.55), rgba(18,33,22,0.85)); }
.hero-content { position: relative; padding: 72px 24px 72px; color: var(--on-brand); }
.hero--home .hero-content { padding: 96px 24px; }
.hero-eyebrow { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.85; margin-bottom: 12px; }
.hero-h1 { font-size: 42px; line-height: 1.15; margin-bottom: 16px; color: var(--on-brand); max-width: 760px; }
.hero-sub { font-size: 18px; line-height: 1.55; max-width: 680px; margin-bottom: 28px; opacity: 0.95; }
.hero-cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.hero-cta-meta { font-size: 14px; opacity: 0.85; margin: 0; }
.hero--page .hero-content { padding: 56px 24px; }
.hero--page .hero-h1 { font-size: 36px; }
@media (max-width: 640px) {
  .hero-h1 { font-size: 30px; }
  .hero--home .hero-content { padding: 56px 24px; }
}

/* === Strip 3-pillar === */
.band--strip { background: var(--bg-alt); border-top: 3px solid var(--cta); padding: 28px 0; }
.strip { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.strip li { display: flex; flex-direction: column; gap: 4px; }
.strip strong { color: var(--brand); font-size: 17px; }
.strip span { color: var(--muted); font-size: 14px; }
@media (max-width: 720px) { .strip { grid-template-columns: 1fr; } }

/* === Bands === */
.band { padding: 56px 0; }
.band--alt { background: var(--bg-alt); }
.band--read .wrap { max-width: 800px; }
.section-image { margin: 24px 0; }
.section-image img { width: 100%; border-radius: 8px; }

.steps { list-style: decimal; padding-left: 28px; margin: 18px 0; counter-reset: step; }
.steps li { margin-bottom: 18px; }
.steps li strong { display: block; color: var(--brand); margin-bottom: 4px; font-size: 18px; }
.steps li span { display: block; color: var(--text-main); }

.reasons { list-style: none; padding-left: 0; }
.reasons li { position: relative; padding-left: 28px; margin-bottom: 10px; }
.reasons li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  color: var(--cta); font-weight: 700;
}

/* === CTA band (mid-page repeated) === */
.cta-band {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  text-align: center;
}
.cta-band-lbl { font-size: 20px; font-weight: 700; color: var(--brand); margin: 0; }

/* === Final CTA band === */
.band--cta { background: var(--brand); color: var(--on-brand); padding: 64px 0; text-align: center; }
.band--cta h2 { color: var(--on-brand); margin-bottom: 14px; }
.band--cta p { color: var(--on-brand); opacity: 0.92; margin-bottom: 22px; }
.band--cta .cta { background: var(--cta); }

/* === FAQ block === */
.faq-block { background: var(--bg-page); }
.faq-block details {
  border-bottom: 1px solid var(--soft-line);
  padding: 16px 0;
}
.faq-block details:first-of-type { border-top: 1px solid var(--soft-line); }
.faq-block summary {
  font-weight: 700; font-size: 17px;
  cursor: pointer; color: var(--brand);
  list-style: none; padding-right: 20px; position: relative;
}
.faq-block summary::after {
  content: "+"; position: absolute; right: 0; top: 0;
  font-size: 22px; font-weight: 700; color: var(--cta);
}
.faq-block details[open] summary::after { content: "×"; }
.faq-block details p { margin-top: 10px; color: var(--text-main); }

/* === Footer === */
.site-footer { background: var(--brand-darker); color: var(--on-brand); padding: 48px 0 24px; }
.site-footer-inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: 36px; align-items: start; }
.footer-brand { font-size: 24px; font-weight: 700; color: var(--on-brand); margin-bottom: 8px; }
.footer-sub { color: var(--on-brand); opacity: 0.85; font-size: 14px; }
.footer-call-lbl { font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.85; margin-bottom: 6px; }
.footer-call-num { display: inline-block; color: var(--cta); font-size: 26px; font-weight: 700; text-decoration: none; margin-bottom: 6px; }
.footer-call-num:hover { color: var(--cta); text-decoration: underline; }
.footer-call-meta { font-size: 13px; opacity: 0.8; }
.site-footer-legal { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 28px; padding-top: 20px; font-size: 12px; opacity: 0.7; }
@media (max-width: 720px) { .site-footer-inner { grid-template-columns: 1fr; } }

/* === Geo stat block (rendered by geous_stat_block()) === */
.srm-stat-block {
  background: var(--bg-alt);
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
  padding: 22px 24px;
}
.srm-stat-dl { display: flex; flex-wrap: wrap; gap: 18px 32px; max-width: 1080px; margin: 0 auto; }
.srm-stat-item { display: flex; flex-direction: column; min-width: 140px; }
.srm-stat-item dt { font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); font-weight: 400; margin-bottom: 2px; }
.srm-stat-item dd { font-size: 16px; font-weight: 700; color: var(--text-main); margin: 0; }
.srm-stat-extra { max-width: 1080px; margin: 14px auto 0; font-size: 14px; color: var(--text-main); line-height: 1.55; }
@media (max-width: 640px) { .srm-stat-dl { gap: 14px 22px; } .srm-stat-item { min-width: 120px; } }

/* === Geo maillage (rendered by GeoUS_Maillage) === */
.srm-maillage-block { margin: 24px 0; }
.srm-maillage-title { font-size: 20px; color: var(--brand); margin-bottom: 14px; }
.srm-maillage-list { list-style: none; padding: 0; margin: 0; column-count: 3; column-gap: 28px; }
.srm-maillage-list li { break-inside: avoid; margin-bottom: 6px; font-size: 14px; line-height: 1.45; }
.srm-maillage-list a { color: var(--text-main); text-decoration: none; }
.srm-maillage-list a:hover { color: var(--cta); text-decoration: underline; }
.srm-maillage-meta { color: var(--muted); font-size: 12px; }
@media (max-width: 800px) { .srm-maillage-list { column-count: 2; } }
@media (max-width: 480px) { .srm-maillage-list { column-count: 1; } }
