/* =====================================================
   Up & Auto — site styles (dark default, light theme)
   ===================================================== */

:root,
:root[data-theme="dark"] {
  --bg: #0a0e1a;
  --bg-soft: #0d1322;
  --header-bg: #0b101d;
  --card: rgba(17, 24, 39, 0.65);
  --card-solid: #111827;
  --border: rgba(148, 163, 184, 0.14);
  --border-strong: rgba(148, 163, 184, 0.25);
  --text: #e5e9f0;
  --heading: #f4f6fb;
  --muted: #94a3b8;
  --accent: #f97316;
  --accent-2: #ea580c;
  --accent-soft: rgba(249, 115, 22, 0.12);
  --accent-border: rgba(249, 115, 22, 0.4);
  --accent-glow: rgba(249, 115, 22, 0.35);
  --blue: #93c5fd;
  --blue-border: rgba(96, 165, 250, 0.4);
  --blue-soft: rgba(59, 130, 246, 0.1);
  --green: #4ade80;
  --band: linear-gradient(135deg, rgba(120, 53, 15, 0.55), rgba(67, 20, 7, 0.65));
  --input-bg: #0d1322;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

:root[data-theme="light"] {
  --bg: #f6f8fb;
  --bg-soft: #eef2f7;
  --header-bg: #ffffff;
  --card: #ffffff;
  --card-solid: #ffffff;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --text: #334155;
  --heading: #0f172a;
  --muted: #64748b;
  --accent: #ea580c;
  --accent-2: #c2410c;
  --accent-soft: rgba(234, 88, 12, 0.08);
  --accent-border: rgba(234, 88, 12, 0.35);
  --accent-glow: rgba(234, 88, 12, 0.22);
  --blue: #1d4ed8;
  --blue-border: rgba(37, 99, 235, 0.35);
  --blue-soft: rgba(59, 130, 246, 0.07);
  --green: #16a34a;
  --band: linear-gradient(135deg, rgba(255, 237, 213, 0.9), rgba(254, 215, 170, 0.55));
  --input-bg: #f8fafc;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }

h1, h2, h3, h4 {
  color: var(--heading);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }

p { margin: 0 0 1rem; }

a { color: inherit; text-decoration: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }
.container--narrow { max-width: 780px; }
.center { text-align: center; }
.measure { max-width: 46rem; margin-left: auto; margin-right: auto; }
.muted { color: var(--muted); }
.small { font-size: 0.85rem; }
.accent { color: var(--accent); font-weight: 600; }
.accent:hover { text-decoration: underline; }
.accent-strong { color: var(--accent); font-weight: 700; }
.lead { color: var(--muted); font-size: 1.1rem; }
.dot { opacity: 0.4; margin: 0 0.5rem; }
.ico { width: 1.1em; height: 1.1em; vertical-align: -0.18em; flex: none; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: #fff; padding: 0.5rem 1rem; z-index: 100;
}
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */
.site-header {
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-top: 0.7rem; padding-bottom: 0.7rem;
}

.brand { display: flex; align-items: center; }
.brand-logo { height: 52px; width: auto; display: block; }
:root[data-theme="dark"] .brand-logo--light { display: none; }
:root[data-theme="light"] .brand-logo--dark { display: none; }
.footer-logo { height: 84px; margin-bottom: 0.75rem; }
.intake-logo-img { height: 76px; flex: none; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.site-nav { display: flex; align-items: center; gap: 1.1rem; }
.site-nav > a:not(.btn) { color: var(--text); font-weight: 500; }
.site-nav > a:not(.btn):hover { color: var(--accent); }

.nav-phone { display: flex; flex-direction: column; align-items: center; gap: 0.15rem; }
.nav-local { font-size: 0.75rem; color: var(--muted); }
.nav-local:hover { color: var(--accent); }

.header-phone-mobile { display: none; }
@media (max-width: 720px) {
  .header-phone-mobile {
    display: inline-flex; align-items: center; gap: 0.4rem;
    margin-left: auto;
    background: var(--accent-soft); border: 1px solid var(--accent-border); color: var(--accent);
    border-radius: 10px; padding: 0.45rem 0.75rem;
    font-weight: 700; font-size: 0.9rem; white-space: nowrap;
    opacity: 0; transform: translateY(-6px); pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
  }
  .header-phone-mobile.show { opacity: 1; transform: none; pointer-events: auto; }
}

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 0.5rem; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; margin: 5px 0;
  background: var(--heading); border-radius: 2px; transition: 0.2s;
}

.theme-toggle {
  background: none; border: 1px solid var(--border-strong); color: var(--muted);
  border-radius: 10px; width: 40px; height: 40px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.theme-toggle:hover { color: var(--accent); border-color: var(--accent-border); }
.theme-toggle .ico { width: 1.25em; height: 1.25em; }
:root[data-theme="dark"] .ico-sun { display: none; }
:root[data-theme="light"] .ico-moon { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 700; font-size: 0.95rem; line-height: 1.2;
  border-radius: 12px; padding: 0.75rem 1.4rem;
  border: 1px solid transparent; cursor: pointer; transition: 0.18s;
  white-space: nowrap;
}
.btn--lg { padding: 0.95rem 1.8rem; font-size: 1.05rem; border-radius: 14px; }
.btn--sm { padding: 0.45rem 0.9rem; font-size: 0.85rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 6px 22px var(--accent-glow);
}
.btn--primary:hover { filter: brightness(1.08); transform: translateY(-1px); }

.btn--ghost {
  background: var(--card);
  border-color: var(--border-strong);
  color: var(--heading);
}
.btn--ghost:hover { border-color: var(--accent-border); color: var(--accent); }

.btn--phone {
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  padding: 0.55rem 1.1rem;
}
.btn--phone:hover { background: var(--accent); color: #fff; }

.btn-row {
  display: flex; flex-wrap: wrap; gap: 0.9rem;
  justify-content: center; margin-top: 1.5rem;
}
.btn-row--left { justify-content: flex-start; }

.text-link { color: var(--accent); font-weight: 600; display: inline-block; }
.text-link:hover { text-decoration: underline; }

/* ---------- Hours banner ---------- */
.hours-banner {
  margin-top: 1.1rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--band);
  border: 1px solid var(--accent-border);
  border-radius: 16px;
  padding: 0.85rem 1.25rem;
  color: var(--heading);
  box-shadow: 0 0 30px rgba(249, 115, 22, 0.08);
}
.hours-banner .ico { color: var(--accent); }
.hours-banner--intake { margin: 1.5rem auto 0; max-width: 720px; }

/* ---------- Pills ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.85rem; font-weight: 600;
  border-radius: 999px; padding: 0.4rem 1rem; margin-bottom: 1.25rem;
}
.pill svg { width: 1em; height: 1em; }
.pill--blue { color: var(--blue); border: 1px solid var(--blue-border); background: var(--blue-soft); }
.pill--orange { color: var(--accent); border: 1px solid var(--accent-border); background: var(--accent-soft); }
.pill--mini { font-size: 0.65rem; padding: 0.1rem 0.55rem; margin: 0 0 0 0.4rem; vertical-align: middle; color: var(--accent); border: 1px solid var(--accent-border); background: var(--accent-soft); }

/* ---------- Hero ---------- */
.hero { padding: 4.5rem 0 3.5rem; }
.hero--sub { padding: 3.5rem 0 2.5rem; }

.hero-title { font-size: clamp(3rem, 8vw, 5.5rem); margin-bottom: 0.25rem; }
.hero-sub { font-size: clamp(1.4rem, 3vw, 2rem); color: var(--muted); margin-bottom: 0.75rem; }
.hero-tagline { color: var(--accent); font-size: clamp(1.1rem, 2.4vw, 1.5rem); font-weight: 700; margin-bottom: 1.5rem; }
.hero-heading { margin-bottom: 1rem; }

/* ---------- Sections ---------- */
.section { padding: 3.25rem 0; }
.section--tight { padding: 1.75rem 0; }
.section .center > .lead { margin-bottom: 2.25rem; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--muted); }

a.card { display: block; transition: 0.18s; }
a.card:hover { border-color: var(--accent-border); transform: translateY(-3px); }

.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--accent-soft); border: 1px solid var(--accent-border);
  color: var(--accent); margin-bottom: 1.1rem;
}
.card-icon svg { width: 26px; height: 26px; }

.card-price {
  display: inline-block; color: var(--accent); font-weight: 700;
  border-top: 1px solid var(--border); padding-top: 0.85rem; margin-top: 0.35rem;
}
.card--service { display: flex; flex-direction: column; }
.card--service .card-price { margin-top: auto; }

/* language cards */
.lang-grid { max-width: 900px; margin: 2rem auto 1.5rem; }
.card--lang { text-align: center; padding: 1.5rem; }
.card--lang h3 { margin: 0; font-size: 1.05rem; }
.card--lang-asl { border-color: var(--accent-border); }
.card--lang-asl h3 { color: var(--accent); }
.lang-flag { font-size: 1.8rem; display: block; margin-bottom: 0.6rem; }

/* coverage */
.card--coverage { max-width: 900px; margin: 0 auto; }
.coverage-title { display: flex; align-items: center; gap: 0.5rem; }
.coverage-title svg { width: 1.2em; height: 1.2em; color: var(--accent); }
.coverage-list {
  list-style: none; margin: 1.25rem 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.85rem 1.5rem;
}
.coverage-list a { display: flex; align-items: center; gap: 0.6rem; color: var(--text); font-weight: 500; }
.coverage-list a:hover { color: var(--accent); }
.check { color: var(--green); display: inline-flex; }
.check svg, .coverage-list .check svg { width: 1.2em; height: 1.2em; }
.coverage-note { margin: 0.5rem 0 0; }

/* stat cards (services hero) */
.stat-grid { margin-top: 2.5rem; }
.card--stat {
  text-align: center; padding: 1.4rem 1rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-weight: 600; color: var(--heading);
}
.card--stat svg { width: 28px; height: 28px; color: var(--accent); }

/* service detail cards */
.card--detail { display: flex; flex-direction: column; }
.detail-head { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
.detail-emoji { font-size: 2rem; line-height: 1; }
.detail-head h3 { margin-bottom: 0.25rem; }
.detail-head .card-price { border: 0; padding: 0; margin: 0; }
.feature-list { list-style: none; margin: 0 0 1.25rem; padding: 0; }
.feature-list li { display: flex; gap: 0.6rem; align-items: flex-start; padding: 0.35rem 0; }
.feature-list .check { margin-top: 0.2rem; }
.card--detail .text-link { margin-top: auto; }

/* area cards */
.card--area h3 { display: flex; align-items: center; gap: 0.45rem; font-size: 1.05rem; }
.card--area h3 .ico { color: var(--accent); }
.card--area p { font-size: 0.92rem; margin-bottom: 0.75rem; }
.card--area-slim p { margin-bottom: 0; }
.area-grid { margin-bottom: 1.75rem; }

/* mini cards (intake) */
.card--mini { text-align: center; }
.card--mini p { margin: 0; font-size: 0.92rem; }
.mini-emoji { font-size: 1.6rem; display: block; margin-bottom: 0.5rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--band);
  border: 1px solid var(--accent-border);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 0 50px rgba(249, 115, 22, 0.07);
}
.cta-band .lead { max-width: 40rem; margin-left: auto; margin-right: auto; }

.cta-band--info { text-align: left; padding: 2.5rem; }
.cta-band--info h2 { text-align: center; margin-bottom: 1.75rem; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.two-col p { color: var(--text); opacity: 0.9; }

/* ---------- Photos ---------- */
.photo-frame { margin: 0; }
.photo-frame img {
  display: block; width: 100%; height: auto;
  border-radius: 20px;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
}

.media-split {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem; align-items: center;
}
.media-split .lang-grid { margin: 1.5rem 0 1rem; }

.band-split {
  display: grid; grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem; align-items: center;
}
.band-split--right { grid-template-columns: 1.2fr 0.8fr; }

@media (max-width: 1000px) {
  .media-split, .band-split, .band-split--right { grid-template-columns: 1fr; }
  .band-split--right .photo-frame { order: -1; }
  .media-split .photo-frame, .band-split .photo-frame { max-width: 480px; margin: 0 auto; }
}

/* ---------- Area page ---------- */
.breadcrumbs { font-size: 0.9rem; color: var(--muted); margin-bottom: 2rem; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { margin: 0 0.35rem; }
.breadcrumbs [aria-current] { color: var(--text); }

.area-hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 2.5rem; align-items: start; }
.area-tagline { color: var(--accent); font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; }
.area-note {
  margin: 1.25rem 0; padding: 0.35rem 0 0.35rem 1.1rem;
  border-left: 3px solid var(--accent);
  color: var(--muted); font-style: italic;
}
.card--why h3 { margin-bottom: 1.1rem; }
.why-list { list-style: none; margin: 0; padding: 0; }
.why-list li { display: flex; gap: 0.7rem; align-items: flex-start; padding: 0.5rem 0; color: var(--text); }
.why-list .ico { color: var(--accent); margin-top: 0.25rem; }

/* ---------- Intake ---------- */
.intake-hero { padding: 1.25rem 0 0.25rem; }
.intake-head {
  display: flex; align-items: center; justify-content: center;
  gap: 1.25rem; text-align: left;
}
.intake-head-text h1 { font-size: clamp(1.35rem, 3.5vw, 1.9rem); margin-bottom: 0.25rem; }
.intake-head-text p { margin: 0; }
.intake-hero .hours-banner--intake { margin-top: 1rem; }
.intake-embed { border-radius: 18px; overflow: hidden; }
.intake-embed iframe { width: 100%; border: 0; min-height: 900px; border-radius: 18px; }
.intake-placeholder { padding: 3rem 2rem; }

/* ---------- Forms / dashboard ---------- */
label { display: block; font-weight: 600; color: var(--heading); margin: 1.1rem 0 0.4rem; }
input[type="text"], input[type="password"], textarea {
  width: 100%; font: inherit; color: var(--text);
  background: var(--input-bg);
  border: 1px solid var(--border-strong);
  border-radius: 12px; padding: 0.7rem 0.9rem;
}
input:focus, textarea:focus { outline: 2px solid var(--accent-border); border-color: var(--accent); }
textarea { resize: vertical; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.85rem; }
form .btn { margin-top: 1.4rem; }

.field-hint { font-size: 0.85rem; color: var(--muted); margin: 0.4rem 0 0; }

.form-error, .form-success {
  border-radius: 12px; padding: 0.8rem 1.1rem; font-weight: 600;
}
.form-error { background: rgba(239, 68, 68, 0.12); border: 1px solid rgba(239, 68, 68, 0.4); color: #f87171; }
:root[data-theme="light"] .form-error { color: #b91c1c; }
.form-success { background: rgba(74, 222, 128, 0.1); border: 1px solid rgba(74, 222, 128, 0.35); color: var(--green); }

.dash-card { margin-bottom: 1.75rem; }

.btn--danger {
  background: rgba(239, 68, 68, 0.12); border: 1px solid rgba(239, 68, 68, 0.4); color: #f87171;
}
:root[data-theme="light"] .btn--danger { color: #b91c1c; }
.btn--danger:hover { background: #dc2626; color: #fff; }

.provider-admin-list { list-style: none; margin: 1.25rem 0; padding: 0; }
.provider-admin-row {
  display: flex; align-items: center; gap: 0.9rem;
  border: 1px solid var(--border); border-radius: 14px;
  padding: 0.7rem 0.9rem; margin-bottom: 0.7rem;
}
.provider-logo--sm { width: 44px; height: 44px; border-radius: 10px; }
.provider-admin-name { flex: 1; min-width: 0; line-height: 1.3; }
.provider-admin-name strong { color: var(--heading); display: block; }
.provider-admin-name small { color: var(--muted); display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.provider-admin-actions { display: flex; align-items: center; gap: 0.45rem; flex: none; }
.provider-admin-actions form { display: flex; gap: 0.3rem; }
.provider-admin-actions .btn { margin-top: 0; }
.icon-btn {
  background: var(--card); border: 1px solid var(--border-strong); color: var(--muted);
  border-radius: 8px; width: 30px; height: 30px; cursor: pointer; font: inherit;
}
.icon-btn:hover:not(:disabled) { color: var(--accent); border-color: var(--accent-border); }
.icon-btn:disabled { opacity: 0.35; cursor: default; }
.provider-form-title { margin-top: 1.5rem; }
input[type="file"] {
  width: 100%; color: var(--muted); font: inherit;
  border: 1px dashed var(--border-strong); border-radius: 12px;
  padding: 0.7rem 0.9rem; background: var(--input-bg);
}

@media (max-width: 640px) {
  .provider-admin-row { flex-wrap: wrap; }
  .provider-admin-actions { width: 100%; justify-content: flex-end; }
}
.dash-card h2 { font-size: 1.35rem; }
.dash-title { font-size: 1.75rem; text-align: center; margin-bottom: 0.75rem; }
.dash-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.dash-head h1 { font-size: 2rem; margin: 0; }
.dash-head-links { display: flex; align-items: center; gap: 1.1rem; }

/* ---------- Roadside assistance widget (mobile only) ---------- */
.roadside-bar {
  display: none;
  width: 100%;
  border: 0; cursor: pointer;
  background: linear-gradient(180deg, #dc2626, #b91c1c);
  color: #fff; font: inherit; font-weight: 800; font-size: 1rem;
  padding: 0.8rem 1rem;
  align-items: center; justify-content: center; gap: 0.5rem;
}
.roadside-bar .ico { width: 1.2em; height: 1.2em; }

body.roadside-lock { overflow: hidden; }

.roadside-overlay[hidden] { display: none; }
.roadside-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(2, 6, 16, 0.75);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 1rem;
}
.roadside-sheet {
  background: var(--card-solid);
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  width: 100%; max-width: 460px;
  max-height: calc(100vh - 2rem);
  display: flex; flex-direction: column;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

.roadside-head {
  padding: 1rem 1.25rem 1.1rem;
  border-bottom: 1px solid var(--border);
  flex: none;
}
.roadside-head-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.roadside-head-title { font-weight: 600; color: var(--muted); font-size: 1.05rem; }
.roadside-close {
  background: none; border: 0; cursor: pointer;
  color: var(--muted); font-size: 1.9rem; line-height: 1; padding: 0 0.2rem;
}
.roadside-close:hover { color: var(--heading); }

.roadside-call {
  display: flex; align-items: center; justify-content: center; gap: 0.8rem;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  color: #fff; text-align: center;
  border-radius: 16px; padding: 0.85rem 1rem;
  box-shadow: 0 6px 24px var(--accent-glow);
  line-height: 1.3;
}
.roadside-call .ico { width: 1.6em; height: 1.6em; }
.roadside-call strong { font-size: 1.5rem; letter-spacing: 0.01em; }
.roadside-local { text-align: center; color: var(--muted); margin: 0.7rem 0 0; }
.roadside-local a { color: inherit; text-decoration: underline; }

.roadside-body { overflow-y: auto; padding: 1.4rem 1.25rem 1.6rem; }
.roadside-body h2 { font-size: 1.55rem; text-align: center; margin-bottom: 0.9rem; }
.roadside-body .center { text-align: center; }

.roadside-title-row { display: flex; align-items: center; justify-content: center; gap: 0.6rem; }
.roadside-title-row h2 { margin-bottom: 0; }
.warn-ico { width: 30px; height: 30px; color: var(--accent); flex: none; }
.roadside-title-row + .roadside-q { margin-top: 0.9rem; }
.roadside-q { text-align: center; font-size: 1.15rem; color: var(--heading); font-weight: 500; }
.roadside-body > section > .muted { text-align: center; }

.roadside-choices { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin: 1.2rem 0 0.8rem; }
.roadside-choice {
  background: var(--card); border: 1px solid var(--border-strong); color: var(--heading);
  font: inherit; font-weight: 700; font-size: 1.05rem;
  border-radius: 14px; padding: 1rem 0.75rem; cursor: pointer;
}
.roadside-choice:hover { border-color: var(--accent-border); color: var(--accent); }

.roadside-providers-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  width: 100%; cursor: pointer;
  background: var(--blue-soft); border: 1px solid var(--blue-border); color: var(--blue);
  font: inherit; font-weight: 700; font-size: 1.05rem;
  border-radius: 14px; padding: 1rem 0.75rem;
}
.roadside-providers-btn:hover { filter: brightness(1.15); }

.roadside-shield {
  width: 64px; height: 64px; margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--blue-soft); color: var(--blue);
  border: 1px solid var(--blue-border);
}
.roadside-shield svg { width: 30px; height: 30px; }

.roadside-card {
  border-radius: 16px; padding: 1.2rem 1rem; text-align: center; margin: 1.2rem 0;
}
.roadside-card h3 { margin-bottom: 0.5rem; }
.roadside-card .muted { margin-bottom: 0.5rem; }
.roadside-card p:last-child { margin-bottom: 0; }
.roadside-card-number { display: block; font-size: 1.7rem; font-weight: 800; margin: 0.4rem 0 0.6rem; }
.roadside-card--blue { background: var(--blue-soft); border: 1px solid var(--blue-border); }
.roadside-card--blue h3, .roadside-card--blue .roadside-card-number { color: var(--blue); }
.roadside-card--green { background: rgba(74, 222, 128, 0.08); border: 1px solid rgba(74, 222, 128, 0.35); }
.roadside-card--green h3, .roadside-card--green .roadside-card-number { color: var(--green); }

.roadside-back {
  display: block; margin: 1rem auto 0;
  background: none; border: 0; cursor: pointer;
  color: var(--muted); font: inherit; font-weight: 600;
}
.roadside-back:hover { color: var(--accent); }
.roadside-inline-link {
  background: none; border: 0; padding: 0; cursor: pointer;
  color: var(--accent); font: inherit; font-weight: 600; text-decoration: underline;
}

.provider-list { display: flex; flex-direction: column; gap: 0.8rem; margin: 1.2rem 0; }
.provider-row {
  display: flex; align-items: center; gap: 0.9rem;
  background: var(--card); border: 1px solid var(--border-strong);
  border-radius: 14px; padding: 0.8rem 0.9rem;
}
.provider-row:hover { border-color: var(--accent-border); }
.provider-logo {
  width: 54px; height: 54px; flex: none;
  background: #fff; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.provider-logo img { max-width: 80%; max-height: 80%; object-fit: contain; }
.provider-initial { font-weight: 800; font-size: 1.4rem; color: #334155; }
.provider-name { flex: 1; font-weight: 700; color: var(--heading); font-size: 1.1rem; line-height: 1.25; }
.provider-name small { display: block; font-weight: 400; color: var(--muted); font-size: 0.85rem; margin-top: 0.15rem; }
.provider-ext { color: var(--muted); width: 1.3em; height: 1.3em; }

@media (max-width: 720px) {
  .roadside-bar { display: flex; }
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  margin-top: 3rem;
  padding: 3rem 0 1.5rem;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
.footer-brand { font-size: 1.3rem; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { padding: 0.28rem 0; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--accent); }
.footer-phone { color: var(--accent); font-weight: 700; font-size: 1.05rem; }
.footer-local { color: var(--muted); }
.footer-local:hover, .footer-phone:hover { text-decoration: underline; }
.footer-hours-open { color: var(--accent); font-weight: 700; font-size: 1.05rem; margin-bottom: 0.25rem; }
.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 2.5rem; padding-top: 1.5rem;
  text-align: center; color: var(--muted); font-size: 0.9rem;
}
.footer-bottom p { margin-bottom: 0.5rem; }
.footer-bottom-links a:hover { color: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .area-hero-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .coverage-list { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 0; }

  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; text-align: center;
    background: var(--header-bg);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem 1.5rem; gap: 0.9rem;
  }
  .site-nav.open { display: flex; }
  .nav-phone { align-items: stretch; }
  .theme-toggle { align-self: center; }
}

@media (max-width: 520px) {
  .grid-4, .coverage-list { grid-template-columns: 1fr; }
  .hero { padding-top: 3rem; }
  .btn-row .btn { width: 100%; }
  .cta-band { padding: 2.25rem 1.25rem; }
}
