/* ==========================================================================
   Bobs Water Damage Restoration — design system
   Tokens are shared with the future WordPress theme (see /wordpress/).
   ========================================================================== */
:root {
  --color-primary: #0b2a6b;        /* deep navy, from the "Bob" wordmark */
  --color-primary-dark: #071b47;
  --color-secondary: #1466c6;      /* water blue */
  --color-cyan: #22a7f0;           /* splash cyan, decorative only */
  --color-tint: #e8f3fd;           /* pale water */
  --color-accent: #3d8a1e;         /* recovery green, used sparingly */
  --color-call: #c2410c;           /* warm call-to-action */
  --color-call-dark: #9a330a;
  --color-text: #14213d;
  --color-muted: #4a5872;
  --color-line: #d6e0ec;
  --color-background: #f4f7fb;
  --color-white: #ffffff;

  --font-display: "Archivo", "Arial Narrow", Arial, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --step--1: 0.875rem;
  --step-0: 1.0625rem;
  --step-1: 1.25rem;
  --step-2: 1.5rem;
  --step-3: clamp(1.75rem, 1.4rem + 1.4vw, 2.25rem);
  --step-4: clamp(2.1rem, 1.5rem + 2.6vw, 3.4rem);

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: clamp(3rem, 2rem + 4vw, 5.5rem);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 22px;
  --shadow-card: 0 1px 2px rgba(11, 42, 107, .08), 0 8px 24px -12px rgba(11, 42, 107, .25);
  --container: 1200px;
  --header-h: 76px;
  --callbar-h: 64px;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--color-secondary); text-underline-offset: 3px; }
a:hover { color: var(--color-primary); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-primary);
  line-height: 1.12;
  margin: 0 0 var(--space-2);
  letter-spacing: -0.01em;
}
h1 { font-size: var(--step-4); font-weight: 800; font-stretch: 88%; }
h2 { font-size: var(--step-3); font-weight: 800; font-stretch: 92%; }
h3 { font-size: var(--step-1); font-weight: 700; }
p { margin: 0 0 var(--space-2); }
ul, ol { padding-left: 1.2em; margin: 0 0 var(--space-2); }
li { margin-bottom: .4em; }
:focus-visible { outline: 3px solid var(--color-cyan); outline-offset: 3px; border-radius: 4px; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; margin: -1px;
}
.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 200;
  background: var(--color-white); color: var(--color-primary); padding: .75rem 1rem;
  border-radius: var(--radius-sm); font-weight: 700;
}
.skip-link:focus { top: 1rem; }
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.narrow { max-width: 72ch; }
.icon { width: 1.25em; height: 1.25em; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 52px; padding: .8rem 1.5rem;
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; letter-spacing: .01em;
  border-radius: 999px; border: 2px solid transparent; text-decoration: none;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
  cursor: pointer;
}
.btn-call { background: var(--color-call); color: var(--color-white); }
.btn-call:hover { background: var(--color-call-dark); color: var(--color-white); }
.btn-outline { border-color: currentColor; color: var(--color-white); background: transparent; }
.btn-outline:hover { background: var(--color-white); color: var(--color-primary); border-color: var(--color-white); }
.btn-ghost { border-color: var(--color-primary); color: var(--color-primary); background: transparent; }
.btn-ghost:hover { background: var(--color-primary); color: var(--color-white); }
.btn-lg { min-height: 60px; font-size: 1.2rem; padding-inline: 1.9rem; }
.btn .icon { width: 1.15em; height: 1.15em; }

/* ---------- top bar + header ---------- */
.topbar { background: var(--color-primary-dark); color: #d9e6fb; font-size: var(--step--1); }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 38px; }
.topbar a { color: var(--color-white); font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: .4rem; min-height: 38px; }
.topbar .icon { width: 1em; height: 1em; }
.topbar a:hover { text-decoration: underline; color: var(--color-white); }
@media (max-width: 640px) { .topbar .area-note { display: none; } .topbar .container { justify-content: center; } }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--color-white); border-bottom: 1px solid var(--color-line);
}
.header-inner { display: flex; align-items: center; gap: 1rem; min-height: var(--header-h); }
.brand { display: block; flex: none; }
.brand img { width: 150px; height: auto; aspect-ratio: 1837 / 814; }
.header-call { margin-left: auto; display: none; }
.header-call .btn { min-height: 48px; padding: .55rem 1.2rem; }
.header-call .call-label { display: block; font-size: .72rem; font-weight: 600; line-height: 1; opacity: .9; }
.header-call .call-number { display: block; line-height: 1.15; }
.nav-toggle {
  margin-left: auto; display: inline-flex; align-items: center; gap: .5rem;
  min-height: 48px; padding: .5rem .9rem; border: 2px solid var(--color-primary);
  background: var(--color-white); color: var(--color-primary); border-radius: var(--radius-sm);
  font: 700 1rem var(--font-body); cursor: pointer;
}
.nav-toggle .bars, .nav-toggle .bars::before, .nav-toggle .bars::after {
  display: block; width: 20px; height: 2px; background: currentColor; position: relative; transition: transform .2s;
}
.nav-toggle .bars::before, .nav-toggle .bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle .bars::before { top: -6px; } .nav-toggle .bars::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars::after { transform: translateY(-6px) rotate(-45deg); }

/* mobile navigation (default) */
.primary-nav {
  position: fixed; inset: calc(var(--header-h) + 38px) 0 0 0; z-index: 99;
  background: var(--color-white); overflow-y: auto; padding: 1rem 1.25rem calc(var(--callbar-h) + 2rem);
  display: none;
}
.primary-nav.is-open { display: block; }
.nav-list, .sub-list, .subsub-list { list-style: none; margin: 0; padding: 0; }
.nav-list > li { border-bottom: 1px solid var(--color-line); margin: 0; }
.nav-link, .sub-toggle {
  display: flex; width: 100%; align-items: center; justify-content: space-between;
  min-height: 52px; padding: .5rem .25rem; background: none; border: 0;
  font: 700 1.1rem var(--font-display); color: var(--color-primary); text-decoration: none; text-align: left; cursor: pointer;
}
.sub-toggle .chev { width: 12px; height: 12px; border-right: 2.5px solid currentColor; border-bottom: 2.5px solid currentColor; transform: rotate(45deg); transition: transform .2s; margin-right: 6px; }
.sub-toggle[aria-expanded="true"] .chev { transform: rotate(-135deg); }
.submenu { display: none; padding: 0 0 1rem .5rem; }
.submenu.is-open { display: block; }
.sub-group { margin-bottom: .5rem; }
.sub-group-toggle {
  display: flex; width: 100%; justify-content: space-between; align-items: center; min-height: 46px;
  background: var(--color-background); border: 0; border-radius: var(--radius-sm); padding: .4rem .75rem;
  font: 700 1rem var(--font-body); color: var(--color-text); cursor: pointer; text-align: left;
}
.sub-group-toggle .chev { width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform .2s; }
.sub-group-toggle[aria-expanded="true"] .chev { transform: rotate(-135deg); }
.subsub-list { display: none; padding: .25rem 0 .25rem .75rem; }
.subsub-list.is-open { display: block; }
.subsub-list a, .sub-feature a {
  display: flex; align-items: center; min-height: 44px; padding: .3rem .5rem; color: var(--color-text); text-decoration: none; font-weight: 500;
}
.subsub-list a:hover, .sub-feature a:hover { color: var(--color-secondary); text-decoration: underline; }
.sub-feature { margin-bottom: .5rem; }
.sub-feature a { font-weight: 700; color: var(--color-primary); }
.sub-group-title { display: none; }
.nav-call { padding-top: 1.25rem; border-bottom: 0 !important; }
.nav-call .btn { width: 100%; }

@media (min-width: 1080px) {
  .nav-toggle { display: none; }
  .header-call { display: block; margin-left: 0; }
  .brand img { width: 170px; }
  .primary-nav {
    position: static; display: block; padding: 0; overflow: visible; background: none; margin-left: auto;
  }
  .nav-list { display: flex; align-items: center; gap: .25rem; }
  .nav-list > li { border: 0; position: relative; }
  .nav-link, .sub-toggle { min-height: 44px; padding: .4rem .8rem; font-size: 1rem; border-radius: var(--radius-sm); justify-content: flex-start; gap: .5rem; }
  .nav-link:hover, .sub-toggle:hover, .nav-link[aria-current="page"] { background: var(--color-tint); }
  .sub-toggle .chev { width: 8px; height: 8px; border-width: 2px; margin: -4px 0 0 2px; }
  .nav-call { display: none; }
  .submenu {
    position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
    background: var(--color-white); border: 1px solid var(--color-line); border-radius: var(--radius-md);
    box-shadow: 0 20px 50px -20px rgba(7, 27, 71, .35); padding: 1.25rem; width: max-content; max-width: min(92vw, 860px);
  }
  .submenu::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
  .has-sub:hover > .submenu, .has-sub:focus-within > .submenu { display: block; }
  .submenu-grid { display: grid; grid-template-columns: repeat(var(--cols, 3), minmax(190px, 1fr)); gap: .75rem 1.5rem; }
  .sub-group-toggle { display: none; }
  .sub-group-title { display: block; font: 700 .85rem var(--font-body); color: var(--color-muted); margin: 0 0 .25rem .5rem; }
  .subsub-list { display: block; padding: 0; }
  .subsub-list a, .sub-feature a { min-height: 38px; border-radius: var(--radius-sm); }
  .subsub-list a:hover, .sub-feature a:hover { background: var(--color-tint); text-decoration: none; }
  .sub-feature { border-bottom: 1px solid var(--color-line); padding-bottom: .5rem; margin-bottom: .75rem; }
  .sub-feature .all-link { font-weight: 600; color: var(--color-secondary); }
}

/* ---------- hero ---------- */
.hero {
  position: relative; background: var(--color-primary); color: #e3ecfa;
  padding: var(--space-4) 0 calc(var(--space-5) + 30px); overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0 34c120-20 240-26 360-14s240 30 360 26 240-28 360-30 240 16 360 20v24H0z' fill='%2322a7f0' opacity='.55'/%3E%3Cpath d='M0 44c160-18 300-18 440-6s260 20 400 12 280-26 400-26 150 10 200 16v20H0z' fill='%23ffffff'/%3E%3C/svg%3E") bottom/100% 100% no-repeat;
}
.hero-grid { display: grid; gap: var(--space-4); align-items: center; position: relative; z-index: 1; }
.hero h1 { color: var(--color-white); max-width: 20ch; }
.hero .lede { font-size: var(--step-1); line-height: 1.5; max-width: 56ch; color: #dbe7fa; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: var(--space-3) 0 var(--space-2); }
.hero-note { font-size: var(--step--1); color: #b7c9ea; margin: 0; }
.hero-card {
  background: var(--color-white); color: var(--color-text); border-radius: var(--radius-lg);
  padding: var(--space-3); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .5);
  border-top: 6px solid var(--color-cyan);
}
.hero-card h2 { font-size: var(--step-2); margin-bottom: .5rem; }
.hero-card .card-phone { display: block; font: 800 var(--step-3) var(--font-display); color: var(--color-call); text-decoration: none; margin: .25rem 0 1rem; }
.hero-card .card-phone:hover { color: var(--color-call-dark); }
.first-steps { counter-reset: fs; list-style: none; padding: 0; margin: 1rem 0 0; border-top: 1px solid var(--color-line); padding-top: 1rem; }
.first-steps li { counter-increment: fs; position: relative; padding-left: 2.4rem; margin-bottom: .75rem; font-size: .98rem; }
.first-steps li::before {
  content: counter(fs); position: absolute; left: 0; top: 0; width: 1.7rem; height: 1.7rem; border-radius: 50%;
  background: var(--color-tint); color: var(--color-primary); font: 800 .9rem/1.7rem var(--font-display); text-align: center;
}
.page-hero { padding-bottom: calc(var(--space-4) + 40px); }
.page-hero h1 { max-width: 22ch; }
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.25fr .85fr; }
  .hero { padding-top: var(--space-5); }
}

/* breadcrumbs */
.breadcrumbs { font-size: var(--step--1); margin-bottom: var(--space-2); }
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .25rem; }
.breadcrumbs li { margin: 0; color: #b7c9ea; }
.breadcrumbs li + li::before { content: "/"; margin-right: .35rem; opacity: .6; }
.breadcrumbs a { color: var(--color-white); }
.breadcrumbs [aria-current] { color: #b7c9ea; }

/* ---------- sections ---------- */
.section { padding: var(--space-5) 0; }
.section-tint { background: var(--color-background); }
.section-navy { background: var(--color-primary); color: #dbe7fa; }
.section-navy h2, .section-navy h3 { color: var(--color-white); }
.section-head { max-width: 68ch; margin-bottom: var(--space-4); }
.section-head p { color: var(--color-muted); font-size: var(--step-1); line-height: 1.5; }
.section-navy .section-head p { color: #c3d4f0; }
.answer { font-size: var(--step-1); line-height: 1.55; color: var(--color-text); }
.two-col { display: grid; gap: var(--space-4); }
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1fr; align-items: start; } .two-col.wide-left { grid-template-columns: 1.4fr 1fr; } }
.prose { max-width: 72ch; }
.prose h2 { margin-top: var(--space-4); }
.prose h2:first-child { margin-top: 0; }

/* emergency band */
.urgent {
  background: var(--color-white); padding: var(--space-4) 0 var(--space-5);
}
.urgent-panel {
  display: grid; gap: var(--space-3); background: var(--color-tint); border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-3); border-left: 8px solid var(--color-call);
}
.urgent-list { display: grid; gap: .6rem 1.5rem; list-style: none; padding: 0; margin: 0; }
.urgent-list li { display: flex; gap: .6rem; align-items: flex-start; margin: 0; font-weight: 600; }
.urgent-list .icon { color: var(--color-secondary); margin-top: .2em; }
@media (min-width: 700px) { .urgent-list { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .urgent-panel { grid-template-columns: 1fr 1.15fr; align-items: center; gap: var(--space-4); padding: var(--space-4); } }
.urgent-panel .btn { margin-top: var(--space-3); }

/* service cards */
.card-grid { display: grid; gap: var(--space-3); grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); }
.service-card {
  display: flex; flex-direction: column; background: var(--color-white); border: 1px solid var(--color-line);
  border-radius: var(--radius-md); padding: var(--space-3); position: relative;
}
.service-card .card-icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--color-tint); color: var(--color-secondary);
  display: grid; place-items: center; margin-bottom: 1rem;
}
.service-card .card-icon .icon { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: .5rem; }
.service-card h3 a { color: inherit; text-decoration: none; }
.service-card h3 a::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.service-card p { color: var(--color-muted); font-size: 1rem; flex: 1; }
.service-card .more { font-weight: 700; color: var(--color-secondary); font-size: .98rem; }
.service-card:hover { border-color: var(--color-secondary); }
.service-card:hover .more { text-decoration: underline; }
.service-card:focus-within { outline: 3px solid var(--color-cyan); outline-offset: 2px; }
.service-card h3 a:focus-visible { outline: none; }
.card-feature { background: var(--color-primary); border-color: var(--color-primary); }
.card-feature h3 { color: var(--color-white); }
.card-feature p { color: #c7d7f2; }
.card-feature .more { color: #8fd3fb; }
.card-feature .card-icon { background: rgba(255,255,255,.12); color: #8fd3fb; }

/* "what happened?" triage — the signature section */
.triage { background: var(--color-primary); color: #dbe7fa; }
.triage h2 { color: var(--color-white); }
.triage .section-head p { color: #c3d4f0; }
.triage-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid rgba(255,255,255,.18); }
.triage-list li { margin: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.triage-list a {
  display: grid; grid-template-columns: 1fr; gap: .25rem; padding: 1.15rem .25rem; text-decoration: none; color: inherit;
}
.triage-list .said { font: 800 clamp(1.3rem, 1rem + 1.3vw, 1.9rem)/1.15 var(--font-display); font-stretch: 90%; color: var(--color-white); }
.triage-list .said::before { content: "\201C"; color: var(--color-cyan); }
.triage-list .said::after { content: "\201D"; color: var(--color-cyan); }
.triage-list .goes { color: #b7c9ea; font-size: 1rem; }
.triage-list .goes strong { color: #8fd3fb; }
.triage-list a:hover .said { text-decoration: underline; text-decoration-color: var(--color-cyan); text-underline-offset: 6px; }
@media (min-width: 820px) {
  .triage-list a { grid-template-columns: 1.2fr 1fr; align-items: center; gap: 2rem; }
}

/* process */
.process { counter-reset: step; list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-3); }
.process li { counter-increment: step; position: relative; margin: 0; padding: var(--space-3); padding-top: 4.4rem; background: var(--color-white); border-radius: var(--radius-md); border: 1px solid var(--color-line); }
.process li::before {
  content: counter(step); position: absolute; top: var(--space-3); left: var(--space-3);
  width: 2.3rem; height: 2.3rem; border-radius: 50%; background: var(--color-primary); color: var(--color-white);
  font: 800 1.1rem/2.3rem var(--font-display); text-align: center;
}
.process h3 { margin-bottom: .4rem; }
.process p { margin: 0; color: var(--color-muted); font-size: 1rem; }
@media (min-width: 760px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .process.five { grid-template-columns: repeat(5, 1fr); } .process.four { grid-template-columns: repeat(4, 1fr); } }

/* checklist + steps */
.check-list { list-style: none; padding: 0; }
.check-list li { position: relative; padding-left: 1.9rem; margin-bottom: .7rem; }
.check-list li::before {
  content: ""; position: absolute; left: .1rem; top: .45em; width: 1rem; height: .55rem;
  border-left: 3px solid var(--color-accent); border-bottom: 3px solid var(--color-accent); transform: rotate(-45deg);
}
.do-list { counter-reset: d; list-style: none; padding: 0; }
.do-list li { counter-increment: d; position: relative; padding-left: 2.6rem; margin-bottom: 1rem; }
.do-list li::before {
  content: counter(d); position: absolute; left: 0; top: .05rem; width: 1.8rem; height: 1.8rem; border-radius: 50%;
  border: 2px solid var(--color-secondary); color: var(--color-secondary); font: 800 .95rem/1.55rem var(--font-display); text-align: center;
}
.cause-grid { display: grid; gap: var(--space-2) var(--space-3); }
@media (min-width: 760px) { .cause-grid { grid-template-columns: 1fr 1fr; } }
.cause { border-top: 3px solid var(--color-cyan); padding-top: .9rem; }
.cause h3 { font-size: 1.12rem; margin-bottom: .35rem; }
.cause p { color: var(--color-muted); margin: 0; font-size: 1rem; }
.note {
  background: #fff7ed; border-left: 5px solid var(--color-call); padding: 1rem 1.25rem; border-radius: var(--radius-sm);
  font-size: 1rem; margin: var(--space-3) 0;
}
.note strong { color: var(--color-call-dark); }
.side-panel { background: var(--color-background); border-radius: var(--radius-md); padding: var(--space-3); }
.side-panel h2, .side-panel h3 { font-size: var(--step-1); }

/* call band */
.call-band { background: var(--color-secondary); color: var(--color-white); padding: var(--space-4) 0; }
.call-band .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-2) var(--space-4); }
.call-band h2 { color: var(--color-white); margin: 0 0 .25rem; font-size: var(--step-2); }
.call-band p { margin: 0; color: #dcebfb; }
.call-inline {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; padding: var(--space-3);
  background: var(--color-tint); border-radius: var(--radius-md); margin: var(--space-4) 0;
}
.section-tint .call-inline { background: var(--color-white); border: 1px solid var(--color-line); }
.call-inline p { margin: 0; font-weight: 600; flex: 1 1 260px; }

/* locations */
.loc-grid { display: grid; gap: .75rem; grid-template-columns: repeat(auto-fill, minmax(min(100%, 210px), 1fr)); list-style: none; padding: 0; margin: 0; }
.loc-grid li { margin: 0; }
.loc-grid a {
  display: flex; align-items: center; gap: .6rem; min-height: 60px; padding: .75rem 1rem;
  background: var(--color-white); border: 1px solid var(--color-line); border-radius: var(--radius-md);
  font: 700 1.05rem var(--font-display); color: var(--color-primary); text-decoration: none;
}
.loc-grid a:hover { border-color: var(--color-secondary); background: var(--color-tint); }
.loc-grid .icon { color: var(--color-secondary); }
.loc-grid small { display: block; font: 500 .82rem var(--font-body); color: var(--color-muted); }
.region { margin-bottom: var(--space-4); }
.region h3 { margin-bottom: .75rem; }
.loc-card { background: var(--color-white); border: 1px solid var(--color-line); border-radius: var(--radius-md); padding: var(--space-3); display: flex; flex-direction: column; }
.loc-card h3 a { text-decoration: none; color: inherit; }
.loc-card p { color: var(--color-muted); font-size: 1rem; flex: 1; }
.chip-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; }
.chip-list li { margin: 0; }
.chip-list a { display: inline-flex; align-items: center; min-height: 44px; padding: .4rem 1rem; border: 1px solid var(--color-line); border-radius: 999px; text-decoration: none; color: var(--color-primary); font-weight: 600; background: var(--color-white); }
.chip-list a:hover { border-color: var(--color-secondary); background: var(--color-tint); }

/* why / reasons */
.reason-list { display: grid; gap: var(--space-3); list-style: none; padding: 0; margin: 0; }
.reason-list li { margin: 0; }
.reason-list h3 { display: flex; gap: .6rem; align-items: center; }
.reason-list h3 .icon { color: var(--color-accent); width: 1.4em; height: 1.4em; }
.reason-list p { color: var(--color-muted); margin: 0; }
@media (min-width: 800px) { .reason-list { grid-template-columns: 1fr 1fr; } }
.stat-free { font-size: var(--step-1); line-height: 1.55; }

/* FAQ */
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--color-line); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 1rem; align-items: center;
  padding: 1.1rem 0; font: 700 1.15rem/1.3 var(--font-display); color: var(--color-primary); min-height: 52px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; flex: none; width: 12px; height: 12px; border-right: 2.5px solid var(--color-secondary);
  border-bottom: 2.5px solid var(--color-secondary); transform: rotate(45deg); transition: transform .2s; margin-top: -6px;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
.faq-answer { padding: 0 0 1.2rem; color: var(--color-text); max-width: 72ch; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-group { margin-bottom: var(--space-4); }

/* guides / blog cards */
.guide-list { display: grid; gap: var(--space-2); grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); list-style: none; padding: 0; margin: 0 0 var(--space-3); }
.guide-list li { margin: 0; background: var(--color-white); border-radius: var(--radius-md); padding: var(--space-3); border: 1px solid var(--color-line); }
.guide-list h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.guide-list h3 a { color: inherit; text-decoration: none; }
.guide-list h3 a:hover { text-decoration: underline; }
.guide-list p { margin: 0; color: var(--color-muted); font-size: .98rem; }

/* final CTA */
.final-cta { position: relative; background: var(--color-primary-dark); color: #dbe7fa; text-align: center; padding: calc(var(--space-5) + 20px) 0 var(--space-5); }
.final-cta::before {
  content: ""; position: absolute; left: 0; right: 0; top: -1px; height: 50px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50' preserveAspectRatio='none'%3E%3Cpath d='M0 0h1440v18c-150 18-300 26-460 18S700 10 540 14 220 40 0 30z' fill='%23ffffff'/%3E%3C/svg%3E") top/100% 100% no-repeat;
}
.section-tint + .final-cta::before, .triage + .final-cta::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50' preserveAspectRatio='none'%3E%3Cpath d='M0 0h1440v18c-150 18-300 26-460 18S700 10 540 14 220 40 0 30z' fill='%23f4f7fb'/%3E%3C/svg%3E");
}
.final-cta h2 { color: var(--color-white); font-size: var(--step-4); font-stretch: 88%; }
.final-cta p { max-width: 58ch; margin: 0 auto var(--space-3); font-size: var(--step-1); }
.final-cta .big-phone { display: block; font: 800 var(--step-3) var(--font-display); color: var(--color-white); text-decoration: none; margin-top: 1rem; }
.final-cta .big-phone:hover { color: #8fd3fb; }

/* ---------- footer ---------- */
.site-footer { background: #06163a; color: #b9c8e4; font-size: .98rem; padding: var(--space-5) 0 calc(var(--space-3) + var(--callbar-h)); }
.footer-grid { display: grid; gap: var(--space-4); }
.footer-brand .logo-plate { display: inline-block; background: var(--color-white); border-radius: var(--radius-md); padding: .75rem 1rem; }
.footer-brand img { width: 200px; height: auto; aspect-ratio: 1837 / 814; }
.footer-brand p { margin-top: 1rem; max-width: 40ch; }
.site-footer h2 { font: 700 1.05rem var(--font-display); color: var(--color-white); margin-bottom: .75rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 0; }
.site-footer a { color: #d6e2f7; text-decoration: none; display: inline-flex; min-height: 34px; align-items: center; }
.site-footer a:hover { color: var(--color-white); text-decoration: underline; }
.site-footer .btn-call { color: var(--color-white); margin-top: .5rem; }
.site-footer .btn-call:hover { text-decoration: none; }
.footer-phone { gap: .5rem; font: 800 1.4rem var(--font-display); color: var(--color-white) !important; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: var(--space-4); padding-top: var(--space-3); display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; font-size: .88rem; }
.footer-bottom p { margin: 0; max-width: 90ch; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
@media (min-width: 1100px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr .9fr .9fr; } .site-footer { padding-bottom: var(--space-3); } }

/* ---------- sticky mobile call bar ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120; height: var(--callbar-h);
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0px));
  background: rgba(255,255,255,.96); border-top: 1px solid var(--color-line);
  box-shadow: 0 -6px 20px -10px rgba(7,27,71,.35);
}
.callbar a {
  display: flex; align-items: center; justify-content: center; gap: .6rem; height: 100%;
  background: var(--color-call); color: var(--color-white); border-radius: 999px; text-decoration: none;
  font: 800 1.1rem var(--font-display);
}
.callbar a:active { background: var(--color-call-dark); }
body { padding-bottom: calc(var(--callbar-h) + env(safe-area-inset-bottom, 0px)); }
@media (min-width: 1080px) { .callbar { display: none; } body { padding-bottom: 0; } }
.nav-open { overflow: hidden; }

/* utilities */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.center { text-align: center; }
.muted { color: var(--color-muted); }
.lead-link { font-weight: 700; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
@media print { .callbar, .site-header, .topbar, .final-cta, .call-band { display: none; } }

/* call-readiness list (not a sequence) */
.ready-list { list-style: none; padding: 0; margin: .5rem 0 0; }
.ready-list li { position: relative; padding-left: 1.6rem; font-size: .98rem; margin-bottom: .55rem; }
.ready-list li::before { content: ""; position: absolute; left: .15rem; top: .55em; width: .5rem; height: .5rem; border-radius: 50%; background: var(--color-cyan); }
.hero-card .ready-intro { margin: 0; padding-top: 1rem; border-top: 1px solid var(--color-line); font-weight: 600; }
/* home region columns */
.regions-grid { display: grid; gap: var(--space-3); }
.regions-grid .region { margin: 0; background: var(--color-background); border-radius: var(--radius-lg); padding: var(--space-3); }
.regions-grid .loc-grid { grid-template-columns: 1fr; }
@media (min-width: 900px) { .regions-grid { grid-template-columns: repeat(3, 1fr); } }
/* narrow-screen safety */
.hero-grid > *, .two-col > *, .urgent-panel > * { min-width: 0; }
.card-phone, .big-phone, .footer-phone { overflow-wrap: anywhere; }
.btn { max-width: 100%; text-align: center; }
@media (max-width: 360px) { .btn-lg { font-size: 1.05rem; padding-inline: 1.1rem; } }
