/* ==========================================================================
   LEAD ROOFERS — Design System
   --------------------------------------------------------------------------
   Structure:
     1. Tokens          6. Buttons
     2. Reset / base    7. Components (cards, trust, steps, FAQ, forms)
     3. Layout          8. Sections
     4. Header / nav    9. Footer + mobile call bar
     5. Typography     10. Utilities / motion / print
   Edit tokens in section 1 to re-skin the whole site.
   ========================================================================== */

/* Self-hosted so the site makes no third-party requests and the heading font
   is not gated behind two extra DNS/TLS handshakes. Archivo, SIL OFL 1.1,
   latin subset, variable weight 400-800. */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 800;
  font-stretch: 100%;
  font-display: swap;
  src: url('/assets/fonts/archivo-latin-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

/* 1. TOKENS ============================================================== */
:root {
  /* Brand */
  --navy-900: #0a1622;
  --navy-800: #0f2133;
  --navy-700: #16304a;
  --navy-600: #1e4066;
  --slate-600: #45596f;
  --slate-500: #64788d;
  --slate-400: #8b9cad;

  --accent: #c74504;          /* primary CTA — 4.90:1 with white text (WCAG AA) */
  --accent-dark: #a83a03;
  --accent-light: #fdeee6;
  --copper: #b4763a;          /* metal roofing accent */

  --bg: #ffffff;
  --bg-alt: #f5f7f9;
  --bg-deep: var(--navy-900);
  --line: #e2e8ee;
  --line-strong: #ccd6e0;

  --text: #14212e;
  --text-muted: #4d6070;
  --text-invert: #ffffff;
  --text-invert-muted: #b6c4d2;

  --success: #1c7c4a;
  --danger: #b3261e;

  /* Type */
  --font-display: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --fs-hero: clamp(1.95rem, 1.45rem + 2.35vw, 3.35rem);
  --fs-h1: clamp(2rem, 1.35rem + 2.7vw, 3.25rem);
  --fs-h2: clamp(1.625rem, 1.25rem + 1.6vw, 2.5rem);
  --fs-h3: clamp(1.1875rem, 1.05rem + 0.6vw, 1.5rem);
  --fs-lead: clamp(1.0625rem, 1rem + 0.35vw, 1.25rem);
  --fs-body: 1.0625rem;
  --fs-sm: 0.9375rem;
  --fs-xs: 0.8125rem;

  /* Space */
  --sp-1: 0.25rem; --sp-2: 0.5rem;  --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.5rem;  --sp-6: 2rem;    --sp-7: 3rem;    --sp-8: 4rem;
  --sp-9: 5.5rem;

  --section-y: clamp(3.25rem, 2rem + 5vw, 6rem);
  --wrap: 1180px;
  --wrap-narrow: 760px;

  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(10, 22, 34, 0.06), 0 2px 8px rgba(10, 22, 34, 0.05);
  --shadow-md: 0 4px 12px rgba(10, 22, 34, 0.08), 0 12px 32px rgba(10, 22, 34, 0.07);
  --shadow-lg: 0 12px 28px rgba(10, 22, 34, 0.12), 0 24px 60px rgba(10, 22, 34, 0.12);

  --header-h: 72px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* 2. RESET / BASE ======================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  /* room for the mobile click-to-call bar */
  padding-bottom: env(safe-area-inset-bottom);
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-600); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--accent-dark); }
ul, ol { margin: 0; padding: 0; }
button { font: inherit; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}

.skip-link {
  position: absolute; left: var(--sp-4); top: -100px; z-index: 200;
  background: var(--navy-900); color: #fff; padding: var(--sp-3) var(--sp-5);
  border-radius: 0 0 var(--radius) var(--radius); font-weight: 600;
  transition: top 0.18s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* 3. LAYOUT ============================================================== */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--sp-5); }
.wrap--narrow { max-width: var(--wrap-narrow); }
.section { padding-block: var(--section-y); }
.section--alt { background: var(--bg-alt); }
.section--deep { background: var(--bg-deep); color: var(--text-invert); }
.section--tight { padding-block: clamp(2.5rem, 2rem + 3vw, 4rem); }

.grid { display: grid; gap: var(--sp-5); }
@media (min-width: 700px)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 700px)  { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px)  { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

/* 4. HEADER / NAV ======================================================== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(1.6) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4); min-height: var(--header-h);
}
.logo { display: inline-flex; align-items: center; gap: var(--sp-3); text-decoration: none; color: var(--navy-900); }
.logo:hover { color: var(--navy-900); }
.logo__mark { flex: none; width: 38px; height: 38px; }
.logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.logo__name {
  font-family: var(--font-display); font-weight: 800; font-size: 1.2rem;
  letter-spacing: -0.015em; text-transform: uppercase;
}
.logo__tag { font-size: 0.6875rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--slate-500); font-weight: 600; }

.nav { display: none; }
@media (min-width: 1000px) {
  .nav { display: flex; align-items: center; gap: var(--sp-2); }
  .nav__link {
    display: inline-block; padding: var(--sp-2) var(--sp-3); border-radius: var(--radius);
    font-size: var(--fs-sm); font-weight: 600; color: var(--navy-800); text-decoration: none;
    transition: background 0.15s var(--ease), color 0.15s var(--ease);
  }
  .nav__link:hover { background: var(--bg-alt); color: var(--navy-900); }
  .nav__link[aria-current="page"] { color: var(--accent-dark); background: var(--accent-light); }
}
.header__actions { display: flex; align-items: center; gap: var(--sp-3); }
.header__phone { display: none; }
@media (min-width: 620px) {
  .header__phone {
    display: inline-flex; flex-direction: column; text-decoration: none;
    line-height: 1.1; text-align: right;
  }
  .header__phone-label { font-size: var(--fs-xs); color: var(--slate-500); font-weight: 600; }
  .header__phone-number { font-family: var(--font-display); font-weight: 700; font-size: 1.0625rem; color: var(--navy-900); }
  .header__phone:hover .header__phone-number { color: var(--accent-dark); }
}
.header .btn--sm { display: none; }
@media (min-width: 1000px) { .header .btn--sm { display: inline-flex; } }

/* Mobile nav */
/* Small-screen tap-to-call in the header (the number also sits in the hero,
   the sticky call bar, the footer and the contact page). */
.header__call {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 44px; flex: none;
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  background: var(--accent); color: #fff; text-decoration: none; border-color: var(--accent);
}
.header__call:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; }
@media (min-width: 620px) { .header__call { display: none; } }

/* Give the logo room on narrow screens */
@media (max-width: 460px) {
  .logo__tag { display: none; }
  .logo__name { font-size: 1.05rem; }
  .logo__mark { width: 32px; height: 32px; }
  .header__inner { gap: var(--sp-3); }
}

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  width: 46px; height: 44px; padding: 0; border: 1px solid var(--line-strong);
  background: #fff; border-radius: var(--radius); cursor: pointer; color: var(--navy-900);
}
@media (min-width: 1000px) { .nav-toggle { display: none; } }
.nav-toggle__bars { display: block; width: 20px; height: 2px; background: currentColor; position: relative; }
.nav-toggle__bars::before, .nav-toggle__bars::after {
  content: ''; position: absolute; left: 0; width: 20px; height: 2px; background: currentColor;
  transition: transform 0.2s var(--ease), top 0.2s var(--ease);
}
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { top: 0; transform: rotate(-45deg); }

.mobile-nav {
  display: none; border-top: 1px solid var(--line); background: #fff;
  max-height: calc(100vh - var(--header-h)); overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
@media (min-width: 1000px) { .mobile-nav, .mobile-nav.is-open { display: none; } }
.mobile-nav__list { list-style: none; padding: var(--sp-3) 0 var(--sp-5); }
.mobile-nav__link {
  display: block; padding: var(--sp-3) var(--sp-5); font-weight: 600; color: var(--navy-800);
  text-decoration: none; border-bottom: 1px solid var(--line);
}
.mobile-nav__link--sub { padding-left: calc(var(--sp-5) + var(--sp-5)); font-weight: 500; font-size: var(--fs-sm); color: var(--text-muted); }
.mobile-nav__link[aria-current="page"] { color: var(--accent-dark); }
.mobile-nav__cta { padding: var(--sp-5) var(--sp-5) 0; display: grid; gap: var(--sp-3); }

/* 5. TYPOGRAPHY ========================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display); font-weight: 800; line-height: 1.12;
  letter-spacing: -0.022em; color: var(--navy-900); margin: 0 0 var(--sp-4);
  text-wrap: balance;
}
.section--deep h1, .section--deep h2, .section--deep h3 { color: var(--text-invert); }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 700; }
h4 { font-size: 1.0625rem; font-weight: 700; margin-bottom: var(--sp-2); }
p { margin: 0 0 var(--sp-4); max-width: 68ch; }
p:last-child { margin-bottom: 0; }
.lead { font-size: var(--fs-lead); color: var(--text-muted); line-height: 1.6; }
.section--deep .lead { color: var(--text-invert-muted); }

.eyebrow {
  display: inline-block; font-family: var(--font-display); font-size: var(--fs-xs);
  font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-dark); margin-bottom: var(--sp-3);
}
.section--deep .eyebrow { color: #ff8b45; }

.section-head { max-width: 720px; margin-bottom: var(--sp-7); }
.section-head--center { margin-inline: auto; text-align: center; }

/* Bulleted benefit lists */
.checklist { list-style: none; display: grid; gap: var(--sp-3); }
.checklist li { position: relative; padding-left: 2rem; color: var(--text-muted); }
.checklist li strong { color: var(--text); font-weight: 650; }
.checklist li::before {
  content: ''; position: absolute; left: 0; top: 0.42em; width: 1.15rem; height: 1.15rem;
  border-radius: 50%; background: var(--accent-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23a83a03' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 10.5l3.6 3.6L15.5 6.5'/%3E%3C/svg%3E") center/0.85rem no-repeat;
}
.section--deep .checklist li { color: var(--text-invert-muted); }
.section--deep .checklist li strong { color: #fff; }
.section--deep .checklist li::before { background-color: rgba(255, 139, 69, 0.18); }

/* 6. BUTTONS ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  padding: 0.9rem 1.5rem; min-height: 52px;
  font-family: var(--font-display); font-size: 1.0625rem; font-weight: 700;
  border-radius: var(--radius); border: 2px solid transparent; cursor: pointer;
  text-decoration: none; text-align: center; line-height: 1.2;
  transition: background 0.16s var(--ease), border-color 0.16s var(--ease),
              color 0.16s var(--ease), transform 0.16s var(--ease), box-shadow 0.16s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { flex: none; }

.btn--primary { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; box-shadow: var(--shadow-md); }

.btn--secondary { background: #fff; border-color: var(--line-strong); color: var(--navy-900); }
.btn--secondary:hover { border-color: var(--navy-700); background: #fff; color: var(--navy-900); }

.btn--ghost { background: transparent; border-color: rgba(255, 255, 255, 0.4); color: #fff; }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; color: #fff; }

.btn--sm { min-height: 44px; padding: 0.55rem 1.05rem; font-size: var(--fs-sm); }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
@media (max-width: 460px) { .btn-row .btn { width: 100%; } }

/* 7. COMPONENTS ========================================================== */

/* --- Hero --- */
.hero { position: relative; background: var(--navy-900); color: #fff; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 78% 8%, rgba(199, 69, 4, 0.26) 0%, transparent 58%),
    linear-gradient(178deg, #0f2133 0%, #0a1622 68%);
}
.hero__pattern { position: absolute; inset: 0; opacity: 0.16; pointer-events: none; }
.hero__inner {
  position: relative; display: grid; gap: var(--sp-7);
  padding-block: clamp(2.75rem, 2rem + 4.5vw, 5.25rem);
}
@media (min-width: 980px) {
  .hero__inner { grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: var(--sp-8); }
}
.hero h1 { font-size: var(--fs-hero); color: #fff; margin-bottom: var(--sp-5); max-width: 16ch; }
.hero h1 .hero__accent {
  display: block; color: #ff8b45; font-size: 0.56em; line-height: 1.2;
  margin-top: 0.42em; letter-spacing: -0.012em; font-weight: 700;
}
.hero__sub { font-size: var(--fs-lead); color: #cfdae5; margin-bottom: var(--sp-6); max-width: 54ch; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: rgba(255, 255, 255, 0.09); border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.4rem 0.85rem; border-radius: 100px; margin-bottom: var(--sp-5);
  font-size: var(--fs-xs); font-weight: 650; letter-spacing: 0.06em;
  text-transform: uppercase; color: #e3ecf4;
}
.hero__eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #ff8b45; }
.hero__trust {
  list-style: none; display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-5);
  margin-top: var(--sp-6); padding-top: var(--sp-5); border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.hero__trust li {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: var(--fs-sm); font-weight: 600; color: #dbe5ee;
}
.hero__trust svg { flex: none; color: #ff8b45; }

/* --- Hero lead form card --- */
.lead-card {
  background: #fff; color: var(--text); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.lead-card__head { background: var(--bg-alt); padding: var(--sp-5); border-bottom: 1px solid var(--line); }
.lead-card__head h2 { font-size: 1.3rem; margin-bottom: var(--sp-1); }
.lead-card__head p { font-size: var(--fs-sm); color: var(--text-muted); margin: 0; }
.lead-card__body { padding: var(--sp-5); }
.lead-card__foot {
  padding: var(--sp-4) var(--sp-5); background: var(--bg-alt);
  border-top: 1px solid var(--line); font-size: var(--fs-xs); color: var(--text-muted); text-align: center;
}
.lead-card__foot a { display: inline-block; padding: 0.6rem 0.35rem; font-weight: 700; }

/* --- Trust bar --- */
.trust-bar { background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.trust-bar__list {
  list-style: none; display: grid; gap: var(--sp-4);
  grid-template-columns: repeat(2, 1fr); padding-block: var(--sp-5);
}
@media (min-width: 860px) { .trust-bar__list { grid-template-columns: repeat(4, 1fr); } }
.trust-bar__item { display: flex; align-items: center; gap: var(--sp-3); }
.trust-bar__icon {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line-strong);
  display: grid; place-items: center; color: var(--accent-dark);
}
.trust-bar__label { display: block; font-family: var(--font-display); font-weight: 700; font-size: var(--fs-sm); line-height: 1.25; }
.trust-bar__note { display: block; font-size: var(--fs-xs); color: var(--text-muted); line-height: 1.35; margin-top: 2px; }

/* --- Cards --- */
.card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--sp-5);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease), transform 0.18s var(--ease);
}
.card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card__icon {
  width: 48px; height: 48px; border-radius: var(--radius); background: var(--accent-light);
  color: var(--accent-dark); display: grid; place-items: center; margin-bottom: var(--sp-4);
}
.card h3 { margin-bottom: var(--sp-2); }
.card p { font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: var(--sp-4); }
.card__link {
  margin-top: auto; align-self: flex-start; font-family: var(--font-display); font-weight: 700;
  font-size: var(--fs-sm); color: var(--accent-dark); text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.4rem;
  min-height: 44px; /* comfortable thumb target */
}
.card__link::after { content: '→'; transition: transform 0.16s var(--ease); }
.card:hover .card__link::after { transform: translateX(3px); }

/* Featured (priority) service card */
.card--featured { border-color: var(--navy-800); border-width: 2px; position: relative; }
.card--featured::before {
  content: attr(data-badge); position: absolute; top: -0.72rem; left: var(--sp-5);
  background: var(--navy-900); color: #fff; font-family: var(--font-display);
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 0.6rem; border-radius: 4px;
}
.card--compact { padding: var(--sp-4) var(--sp-5); }
.card--compact .card__icon { width: 38px; height: 38px; margin-bottom: var(--sp-3); }
.card--compact h3 { font-size: 1.0625rem; }

/* --- Steps / process --- */
.steps { list-style: none; counter-reset: step; display: grid; gap: var(--sp-5); }
@media (min-width: 760px)  { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.steps li { counter-increment: step; position: relative; padding-top: var(--sp-5); }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-size: 2.25rem; font-weight: 800;
  color: var(--accent); opacity: 0.28; line-height: 1; display: block; margin-bottom: var(--sp-2);
}
.steps li::after {
  content: ''; position: absolute; top: 0; left: 0; width: 44px; height: 3px; background: var(--accent);
}
.steps h3 { font-size: 1.0625rem; margin-bottom: var(--sp-2); }
.steps p { font-size: var(--fs-sm); color: var(--text-muted); margin: 0; }
.section--deep .steps p { color: var(--text-invert-muted); }


/* --- Service area map --- */
.area-map {
  margin: 0; background: var(--navy-900); border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-5) var(--sp-4); overflow: hidden;
}
.area-map svg { width: 100%; height: auto; display: block; }
.area-map__legend {
  display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-5);
  margin-top: var(--sp-4); padding-top: var(--sp-4);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.area-map__key {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: var(--fs-xs); font-weight: 600; color: var(--text-invert-muted);
}
.area-map__key::before {
  content: ''; width: 12px; height: 12px; border-radius: 50%;
  background: var(--navy-800); border: 2px solid var(--slate-400);
}
.area-map__key--priority { color: #fff; }
.area-map__key--priority::before { background: #e8752f; border-color: #fff; }

/* --- Service area section --- */
/* --- Service area --- */
.areas { list-style: none; display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.areas__item {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: #fff; border: 1px solid var(--line-strong); border-radius: 100px;
  padding: 0.55rem 1.1rem; font-weight: 650; font-size: var(--fs-sm); color: var(--navy-800);
}
.areas__item--priority { border-color: var(--navy-800); background: var(--navy-900); color: #fff; }
.areas__item svg { flex: none; color: var(--accent); }
.areas__item--priority svg { color: #ff8b45; }

/* --- FAQ --- */
.faq { display: grid; gap: var(--sp-3); }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; }
.faq__item[open] { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.faq__q {
  display: flex; align-items: flex-start; justify-content: space-between; gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5); cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 700; font-size: 1.0625rem; color: var(--navy-900);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { background: var(--bg-alt); }
.faq__q::after {
  content: ''; flex: none; width: 12px; height: 12px; margin-top: 0.42em;
  border-right: 2.5px solid var(--accent); border-bottom: 2.5px solid var(--accent);
  transform: rotate(45deg); transition: transform 0.2s var(--ease);
}
.faq__item[open] .faq__q::after { transform: rotate(-135deg); }
.faq__a { padding: 0 var(--sp-5) var(--sp-5); }
.faq__a p { font-size: var(--fs-sm); color: var(--text-muted); }

/* --- Forms --- */
.form { display: grid; gap: var(--sp-4); }
.form__row { display: grid; gap: var(--sp-4); }
@media (min-width: 560px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: var(--sp-2); }
.field__label { font-weight: 650; font-size: var(--fs-sm); color: var(--navy-900); }
.field__req { color: var(--accent-dark); }
.field__hint { font-size: var(--fs-xs); color: var(--text-muted); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.75rem 0.9rem; min-height: 50px;
  font-family: inherit; font-size: 1rem; color: var(--text);
  background: #fff; border: 1.5px solid var(--line-strong); border-radius: var(--radius);
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; line-height: 1.55; }
.field select { appearance: none; padding-right: 2.4rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%2345596f' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M5 7.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.85rem center; background-size: 1.1rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(199, 69, 4, 0.18);
}
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] {
  border-color: var(--danger);
}
.field__error { font-size: var(--fs-xs); font-weight: 600; color: var(--danger); }
.field__error:empty { display: none; }
.field input[type="file"] { padding: 0.6rem; background: var(--bg-alt); }

.radio-group { display: flex; flex-wrap: wrap; gap: var(--sp-3); border: 0; padding: 0; margin: 0; }
.radio-group legend { font-weight: 650; font-size: var(--fs-sm); color: var(--navy-900); margin-bottom: var(--sp-2); padding: 0; }
.radio {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: 0.6rem 1rem; border: 1.5px solid var(--line-strong); border-radius: var(--radius);
  cursor: pointer; font-size: var(--fs-sm); font-weight: 600; background: #fff;
}
.radio:hover { border-color: var(--slate-400); }
.radio input { accent-color: var(--accent); width: 1.05rem; height: 1.05rem; margin: 0; }
.radio:has(input:checked) { border-color: var(--accent); background: var(--accent-light); color: var(--accent-dark); }

.form__consent { font-size: var(--fs-xs); color: var(--text-muted); }
.form__status {
  padding: var(--sp-4); border-radius: var(--radius); font-size: var(--fs-sm); font-weight: 600;
  border: 1.5px solid; display: none;
}
.form__status.is-visible { display: block; }
.form__status--error { background: #fdf3f2; border-color: #eccac7; color: var(--danger); }
.form__status--ok { background: #f0f8f3; border-color: #bfe0cd; color: var(--success); }

/* Honeypot */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* --- Split content --- */
.split { display: grid; gap: var(--sp-7); align-items: start; }
@media (min-width: 940px) { .split { grid-template-columns: 1.15fr 0.85fr; gap: var(--sp-8); } }
@media (min-width: 940px) { .split--even { grid-template-columns: 1fr 1fr; } }

.panel {
  background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: var(--sp-6);
}
.panel--accent { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.panel--accent h3 { color: #fff; }
.panel--accent p { color: var(--text-invert-muted); }
.panel--sticky { position: static; }
@media (min-width: 940px) { .panel--sticky { position: sticky; top: calc(var(--header-h) + var(--sp-5)); } }

/* --- Quote / differentiator --- */
.quote {
  border-left: 4px solid var(--accent); padding: var(--sp-2) 0 var(--sp-2) var(--sp-5);
  font-family: var(--font-display); font-size: clamp(1.15rem, 1rem + 0.9vw, 1.6rem);
  font-weight: 600; line-height: 1.4; color: var(--navy-900); letter-spacing: -0.015em;
}
.section--deep .quote { color: #fff; }
.quote__attr { display: block; margin-top: var(--sp-4); font-family: var(--font-body); font-size: var(--fs-sm); font-weight: 600; color: var(--text-muted); letter-spacing: 0; }
.section--deep .quote__attr { color: var(--text-invert-muted); }

/* --- Page header (interior pages) --- */
.page-head { background: var(--navy-900); color: #fff; position: relative; overflow: hidden; }
.page-head::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(110% 100% at 88% 0%, rgba(199, 69, 4, 0.24) 0%, transparent 60%);
}
.page-head__inner { position: relative; padding-block: clamp(2.5rem, 2rem + 3.4vw, 4.5rem); }
.page-head h1 { color: #fff; max-width: 20ch; }
.page-head .lead { color: #cfdae5; max-width: 60ch; }
.page-head__cta { margin-top: var(--sp-6); }

/* Breadcrumbs */
.crumbs { padding-block: var(--sp-3); font-size: var(--fs-xs); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-2); }
.crumbs li { display: flex; align-items: center; gap: var(--sp-2); color: rgba(255, 255, 255, 0.65); }
.crumbs li + li::before { content: '/'; color: rgba(255, 255, 255, 0.35); }
.crumbs a { color: rgba(255, 255, 255, 0.82); text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs [aria-current="page"] { color: #fff; font-weight: 600; }

/* --- CTA band --- */
.cta-band { background: var(--navy-900); color: #fff; position: relative; overflow: hidden; }
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(90% 130% at 12% 50%, rgba(199, 69, 4, 0.3) 0%, transparent 62%);
}
.cta-band__inner { position: relative; display: grid; gap: var(--sp-6); align-items: center; }
@media (min-width: 900px) { .cta-band__inner { grid-template-columns: 1.25fr 0.75fr; gap: var(--sp-8); } }
.cta-band h2 { color: #fff; margin-bottom: var(--sp-3); }
.cta-band p { color: #cfdae5; }
.cta-band__phone {
  display: inline-flex; flex-direction: column; text-decoration: none; color: #fff;
  background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg); padding: var(--sp-5);
}
.cta-band__phone:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
.cta-band__phone-label { font-size: var(--fs-xs); letter-spacing: 0.1em; text-transform: uppercase; color: #b6c4d2; font-weight: 700; }
.cta-band__phone-number {
  font-family: var(--font-display); font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.1rem);
  font-weight: 800; letter-spacing: -0.02em; margin-top: var(--sp-1);
}

/* 8. SECTION HELPERS ===================================================== */
.stat-note { font-size: var(--fs-sm); color: var(--text-muted); }
.divider { height: 1px; background: var(--line); border: 0; margin-block: var(--sp-6); }

/* 9. FOOTER + MOBILE CALL BAR ============================================ */
.footer { background: var(--navy-900); color: var(--text-invert-muted); padding-block: var(--sp-8) var(--sp-6); font-size: var(--fs-sm); }
.footer__grid { display: grid; gap: var(--sp-6); }
@media (min-width: 720px)  { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1020px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: var(--sp-7); } }
.footer h2, .footer h3 {
  font-size: var(--fs-xs); letter-spacing: 0.13em; text-transform: uppercase;
  color: #fff; margin-bottom: var(--sp-4); font-weight: 700;
}
.footer__logo { color: #fff; }
.footer__logo .logo__name { color: #fff; }
.footer__logo .logo__tag { color: var(--slate-400); }
.footer__blurb { margin-top: var(--sp-4); color: var(--text-invert-muted); max-width: 34ch; }
.footer__list { list-style: none; display: grid; gap: var(--sp-3); }
.footer__list a { color: var(--text-invert-muted); text-decoration: none; }
.footer__list a:hover { color: #fff; text-decoration: underline; }
.footer__contact { display: grid; gap: var(--sp-4); }
.footer__contact-item { display: flex; gap: var(--sp-3); align-items: flex-start; }
.footer__contact-item svg { flex: none; color: #ff8b45; margin-top: 0.15rem; }
.footer__contact-value { color: #fff; font-weight: 700; font-family: var(--font-display); font-size: 1.05rem; text-decoration: none; }
a.footer__contact-value:hover { color: #ff8b45; }
.footer__bottom {
  margin-top: var(--sp-7); padding-top: var(--sp-5);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-5); justify-content: space-between;
  font-size: var(--fs-xs); color: var(--slate-400);
}
.footer__badges { display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-4); }

/* Mobile persistent click-to-call */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line-strong);
  box-shadow: 0 -4px 20px rgba(10, 22, 34, 0.16);
  padding-bottom: env(safe-area-inset-bottom);
}
@media (min-width: 1000px) { .callbar { display: none; } }
.callbar__btn {
  display: flex; align-items: center; justify-content: center; gap: var(--sp-2);
  min-height: 58px; padding: var(--sp-3); text-decoration: none;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
}
.callbar__btn--call { background: var(--accent); color: #fff; }
.callbar__btn--call:hover { color: #fff; }
.callbar__btn--quote { background: #fff; color: var(--navy-900); }
.callbar__btn--quote:hover { color: var(--navy-900); }
.callbar__btn svg { flex: none; }
@media (max-width: 999px) { body { padding-bottom: 58px; } }

/* 10. UTILITIES / MOTION ================================================= */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }


@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important; scroll-behavior: auto !important;
  }
  .btn:hover, .card:hover { transform: none; }
}

@media print {
  .header, .callbar, .cta-band, .nav-toggle, .mobile-nav { display: none !important; }
  body { padding-bottom: 0; }
  .hero, .page-head, .footer { background: #fff !important; color: #000 !important; }
}
