/* ============================================================================
 * KeyNow Locksmith — public site stylesheet.
 *
 * Mobile-first, token-driven design system with a chamfered brand language.
 * Meets WCAG 2.1 AA contrast and keyboard-focus requirements and is tuned
 * for Core Web Vitals (short critical CSS, clamp-based fluid spacing,
 * GPU-friendly animations that respect `prefers-reduced-motion`).
 *
 * High-level outline:
 *   1. Design tokens + reset
 *   2. Typography, layout, section headers, skip link
 *   3. Buttons, utility classes, responsive grid
 *   4. Card primitives (.card base + modifiers + .card-service)
 *   5. Header, side navigation, breadcrumbs
 *   6. Hero variants (home, inner, city, guide, guide-index)
 *   7. Site sections (trust bars, services, how-it-works, fleet, why-us,
 *      testimonials, contact, FAQ, guides, city pages)
 *   8. CTA band, footer, 404, mobile CTA bar
 *   9. Scroll animations, responsive breakpoints, reduced-motion, print
 * ============================================================================ */

/* --- Design tokens ------------------------------------------------------- */
:root {
    --primary:       #0e8043;
    --primary-hover: #0a6634;
    --accent:        #0e8043;
    --accent-light:  #b6d881;
    --navy:          #101222;
    --navy-mid:      #1a1e36;
    --white:         #ffffff;
    --bg-alt:        #F5F7FA;
    --text:          #101222;
    --text-muted:    #596066;
    --text-on-dark:  #D4E1EF;
    --gold:          #B8860B;
    --border:        #929497;
    --border-strong: #6c7078;
    --danger:        #b91c1c;
    --border-on-dark:      rgba(255,255,255,.15);
    --text-on-dark-muted:  rgba(255,255,255,.82);
    --text-on-dark-subtle: rgba(255,255,255,.65);
    --text-on-dark-faint:  rgba(255,255,255,.45);
    --bg-on-dark-subtle:   rgba(255,255,255,.06);
    --bg-on-dark-hover:    rgba(255,255,255,.10);
    --border-on-dark-soft: rgba(255,255,255,.08);
    --border-on-dark-med:  rgba(255,255,255,.12);
    --shadow-sm:     0 1px 4px rgba(0,0,0,.07);
    --shadow-md:     0 4px 16px rgba(0,0,0,.10);
    --shadow-lg:     0 8px 28px rgba(0,0,0,.13);
    --chamfer-outline: drop-shadow(0 0 0.5px rgba(0,0,0,.22)) drop-shadow(0 0 0.5px rgba(0,0,0,.22));
    --header-h:      64px;
    --nav-w:         300px;
    --container:     1220px;
    --font-h:        'Montserrat', system-ui, sans-serif;
    --font-b:        'Inter', system-ui, -apple-system, sans-serif;
    --sp-1:  8px;  --sp-2: 16px; --sp-3: 24px; --sp-4: 32px;
    --sp-5: 40px; --sp-6: 48px; --sp-8: 64px; --sp-10: 80px; --sp-12: 96px;
    /* Fluid section padding — scales smoothly from mobile to desktop.
       Exact matches at original breakpoints: 56px@mobile → 72px@768px → 96px@1024px */
    --section-py:    clamp(56px, 9.375vw, 96px);
    --section-py-md: clamp(48px, 6.25vw + 8px, 72px);
    --section-py-sm: clamp(40px, 3.125vw + 24px, 56px);
    --t-fast: 0.16s ease;
    --t-base: 0.24s ease;
    --chamfer: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
body {
    font-family: var(--font-b);
    background: var(--white);
    color: var(--text);
    line-height: 1.75;
    padding-top: var(--header-h);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--primary); }
a:focus-visible, button:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
    border-radius: 1px;
}
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
abbr[title] { text-decoration: none; color: #dc2626; margin-left: 2px; }
button { cursor: pointer; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-h);
    font-weight: 800;
    line-height: 1.2;
    color: var(--navy);
}
h1 { font-size: clamp(1.7rem, 5vw, 3rem); }
h2 { font-size: clamp(1.4rem, 4vw, 2.2rem); margin-bottom: var(--sp-2); }
h3 { font-size: clamp(1rem, 3vw, 1.3rem); }
h4 { font-size: 1.05rem; }
p  { margin-bottom: 0; }

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-2); }
section    { scroll-margin-top: var(--header-h); }

.section-pad     { padding: var(--section-py) 0; }
.section-pad-md  { padding: var(--section-py-md) 0; }
.section-pad-sm  { padding: var(--section-py-sm) 0; }
.section-pad-xs  { padding: var(--sp-5) 0; }
.section-pad-cta { padding: var(--sp-8) 0; }

/* ── Section Labels & Headers ───────────────────────────────── */
.section-label {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary);
    border-left: 3px solid var(--primary);
    padding: 4px var(--sp-2) 4px var(--sp-1);
    background: rgba(14,128,67,.06);
    margin-bottom: var(--sp-2);
    clip-path: var(--chamfer);
}
.section-label--light  { color: var(--accent-light); border-color: var(--accent-light); background: rgba(182,216,129,.08); }
.section-label--urgent { color: var(--danger); border-color: var(--danger); background: rgba(185,28,28,.07); }
.section-label--info   { color: #0a4f91; border-color: #0a4f91; background: rgba(10,79,145,.07); }

.section-title        { color: var(--navy); margin-bottom: var(--sp-2); }
.section-title--white { color: #fff; }
.section-subtitle     { font-size: 1rem; color: var(--text-muted); line-height: 1.75; }
.section-subtitle--white { color: var(--text-on-dark-muted); }
.section-header       { text-align: center; margin-bottom: var(--sp-5); }
.section-header .section-subtitle { max-width: 640px; margin: 0 auto; }
.section-header.text-left .section-subtitle { margin-left: 0; margin-right: 0; }

/* ── Skip Link ──────────────────────────────────────────────── */
.skip-to-content {
    position: absolute; left: -999px; width: 1px; height: 1px; overflow: hidden;
}
.skip-to-content:focus {
    position: fixed; top: 8px; left: 8px; width: auto; height: auto;
    overflow: visible; z-index: 9999; background: var(--primary); color: #fff;
    padding: var(--sp-1) var(--sp-2); font-weight: 700; font-size: 0.9rem;
    border: 2px solid #fff; clip-path: var(--chamfer);
}

/* ── Buttons ────────────────────────────────────────────────── */
/* All buttons use a pseudo-element border system so clip-path chamfer
   works seamlessly with borders, shadows, and outlines.
   ::before = outer shape (border/fill color), ::after = inner fill.
   The gap between ::before and ::after IS the visible border.
   Focus outlines use filter: drop-shadow() which respects clip-path. */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-1);
    font-family: var(--font-b);
    font-weight: 700;
    font-size: 0.95rem;
    padding: var(--sp-2) var(--sp-3);
    border: none;
    background: transparent;
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap;
    min-height: 48px;
    clip-path: var(--chamfer);
    isolation: isolate;
    transition: filter var(--t-fast), color var(--t-fast);
}
.btn::before,
.btn::after {
    content: '';
    position: absolute;
    pointer-events: none;
    clip-path: var(--chamfer);
}
.btn::before {
    inset: 0;
    z-index: -2;
    transition: background var(--t-fast);
}
.btn::after {
    inset: 0;
    z-index: -1;
    transition: background var(--t-fast);
}
.btn:focus-visible {
    outline: none;
    filter: drop-shadow(0 0 0 3px var(--primary)) drop-shadow(0 0 6px rgba(14,128,67,.75));
}

/* ── Solid buttons — ::before fills the full shape, ::after unused ── */
.btn-primary::before  { background: var(--primary); }
.btn-primary          { color: #fff; }
.btn-primary:hover::before { background: var(--primary-hover); }
.btn-primary:hover    { color: #fff; }

.btn-secondary::before,
.btn-secondary-lg::before { background: var(--navy); }
.btn-secondary,
.btn-secondary-lg    { color: #fff; }
.btn-secondary:hover::before,
.btn-secondary-lg:hover::before { background: var(--navy-mid); }
.btn-secondary:hover,
.btn-secondary-lg:hover { color: #fff; }

/* ── Outlined / ghost buttons — ::before = border, ::after = inner fill ── */
.btn-outline,
.btn-ghost-white { color: #fff; }

.btn-outline::before      { background: rgba(255,255,255,.45); }
.btn-outline::after       { inset: 2px; background: transparent; }
.btn-outline:hover::before { background: #fff; }
.btn-outline:hover::after  { background: #fff; }
.btn-outline:hover         { color: var(--navy); }

.btn-ghost-white::before       { background: rgba(255,255,255,.45); }
.btn-ghost-white::after        { inset: 2px; background: rgba(255,255,255,.08); }
.btn-ghost-white:hover::before { background: rgba(255,255,255,.6); }
.btn-ghost-white:hover::after  { background: rgba(255,255,255,.14); }
.btn-ghost-white:hover         { color: #fff; }
.btn-ghost-white               { font-weight: 600; }

/* Light-background outlined button variant */
.btn-outline-dark { color: var(--text); }
.btn-outline-dark::before { background: var(--border); }
.btn-outline-dark::after  { inset: 2px; background: var(--white); }
.btn-outline-dark:hover::before { background: var(--primary); }
.btn-outline-dark:hover::after  { background: var(--primary); }
.btn-outline-dark:hover         { color: #fff; }

.btn--lg,
.btn-secondary-lg { font-size: 1.05rem; padding: var(--sp-2) var(--sp-4); }
.btn--xl          { font-size: 1.1rem;  padding: var(--sp-2) var(--sp-4); }
.btn--full { width: 100%; }
.btn-sm    { font-size: 0.83rem; padding: var(--sp-1) var(--sp-2); min-height: 44px; }
.btn-xs       { font-size: 0.78rem; padding: var(--sp-1) var(--sp-2);  min-height: 40px; }
.btn-sm-text  { font-size: 0.83rem; }

/* ── Utility Classes ────────────────────────────────────────── */
.flex            { display: flex; }
.flex-col        { flex-direction: column; }
.flex-wrap       { flex-wrap: wrap; }
.items-center    { align-items: center; }
.items-start     { align-items: flex-start; }
.justify-center  { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-1          { flex: 1; }
.flex-grow       { flex-grow: 1; }
.flex-shrink-0   { flex-shrink: 0; }
.gap-sm  { gap: var(--sp-1); }
.gap-md  { gap: var(--sp-2); }
.gap-lg  { gap: var(--sp-3); }
.gap-xl  { gap: var(--sp-4); }
.grid { display: grid; }
/* Unified responsive grid columns — canonical names */
.grid-2 { display: grid; gap: var(--sp-3); grid-template-columns: 1fr; }
.grid-3 { display: grid; gap: var(--sp-3); grid-template-columns: 1fr; }
.grid-4 { display: grid; gap: var(--sp-3); grid-template-columns: repeat(2, 1fr); }
.grid-auto-300 { grid-template-columns: 1fr; }
.grid-auto-260 { grid-template-columns: 1fr; }
.m-auto   { margin: auto; }
.mx-auto  { margin-left: auto; margin-right: auto; }
.mt-auto  { margin-top: auto; }
/* Spacing utilities mapped strictly to CSS design-token vars.
   Replaces all arbitrary px-value margin classes (mt-8/16/32, mb-16/20/32 etc.)
   Map: sp-1=8px  sp-2=16px  sp-3=24px  sp-4=32px  sp-5=40px */
.mt-sp-1 { margin-top: var(--sp-1); }  .mt-sp-2 { margin-top: var(--sp-2); }
.mt-sp-3 { margin-top: var(--sp-3); }  .mt-sp-4 { margin-top: var(--sp-4); }
.mt-sp-5 { margin-top: var(--sp-5); }
.mb-sp-1 { margin-bottom: var(--sp-1); } .mb-sp-2 { margin-bottom: var(--sp-2); }
.mb-sp-3 { margin-bottom: var(--sp-3); } .mb-sp-4 { margin-bottom: var(--sp-4); }
.w-full { width: 100%; }
.max-w-600 { max-width: 600px; }
.max-w-700 { max-width: 700px; }
.max-w-800 { max-width: 800px; }
.max-w-820 { max-width: 820px; }
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-muted   { color: var(--text-muted); }
.text-primary { color: var(--primary); }
.text-white   { color: #fff; }
.text-sm      { font-size: 0.875rem; }
.text-lg      { font-size: 1.1rem; }
.font-bold    { font-weight: 700; }
.font-semibold { font-weight: 600; }
.leading-relaxed { line-height: 1.75; }
.bg-light { background-color: var(--bg-alt); }
.bg-white { background-color: var(--white); }
.bg-navy  { background-color: var(--navy); }
.border   { border: 1px solid var(--border); }
.shadow-sm { filter: drop-shadow(var(--shadow-sm)); }
.shadow-md { filter: drop-shadow(var(--shadow-md)); }
.shadow-lg { filter: drop-shadow(var(--shadow-lg)); }
.link-primary { color: var(--primary); font-weight: 600; transition: var(--t-fast); }
.link-primary:hover { text-decoration: underline; }
.link-underlined { color: var(--primary); text-decoration: underline; font-weight: 600; }
.link-underlined:hover { color: var(--primary-hover); }
.icon-svg {
    stroke: currentColor; fill: none; stroke-width: 1.5;
    width: 1em; height: 1em; display: inline-block;
    vertical-align: middle; flex-shrink: 0;
}

/* ── Card Component — unified base ──────────────────────────── */
/* Pseudo-element border system: ::before = border fill, ::after = card bg.
   The 1px gap between them renders as a chamfer-safe border.
   Shadows use filter: drop-shadow() which respects clip-path. */
.card {
    position: relative;
    background: transparent;
    clip-path: var(--chamfer);
    filter: drop-shadow(0 1px 4px rgba(0,0,0,.07));
    transition: filter var(--t-base), transform var(--t-base);
}
.card::before,
.card::after {
    content: '';
    position: absolute;
    pointer-events: none;
}
.card::before {
    inset: 0;
    background: rgba(0,0,0,.12);
    z-index: -2;
}
.card::after {
    inset: 1px;
    background: var(--white);
    clip-path: var(--chamfer);
    z-index: -1;
}
.card:hover {
    filter: drop-shadow(0 5px 16px rgba(0,0,0,.11));
    transform: translateY(-4px);
}
/* Border-accent modifiers — pseudo-element overrides */
.card--primary-top::before  { background: linear-gradient(180deg, var(--primary) 3px, rgba(0,0,0,.12) 3px); }
.card--primary-top::after   { inset: 3px 1px 1px 1px; }
.card--navy-top::before     { background: linear-gradient(180deg, var(--navy) 3px, rgba(0,0,0,.12) 3px); }
.card--navy-top::after      { inset: 3px 1px 1px 1px; }
.card--gold-top::before     { background: linear-gradient(180deg, var(--gold) 3px, rgba(0,0,0,.12) 3px); }
.card--gold-top::after      { inset: 3px 1px 1px 1px; }
.card--2-navy-top::before   { background: linear-gradient(180deg, var(--navy) 2px, rgba(0,0,0,.12) 2px); }
.card--2-navy-top::after    { inset: 2px 1px 1px 1px; }
.card--primary-left::before { background: linear-gradient(90deg, var(--primary) 4px, rgba(0,0,0,.12) 4px); }
.card--primary-left::after  { inset: 1px 1px 1px 4px; }
.card--navy-left::before    { background: linear-gradient(90deg, var(--navy) 4px, rgba(0,0,0,.12) 4px); }
.card--navy-left::after     { inset: 1px 1px 1px 4px; }
/* Layout modifiers */
.card--flex-col     { display: flex; flex-direction: column; }
/* Padding modifiers */
.card--pad-sm  { padding: var(--sp-3) var(--sp-3); }
.card--pad-md  { padding: var(--sp-3) var(--sp-3); }
.card--pad-lg  { padding: var(--sp-4) var(--sp-4); }
.card--pad-xl  { padding: var(--sp-4) var(--sp-4); }
.u-chamfer { clip-path: var(--chamfer); }
.card > .btn { margin-top: var(--sp-3); }
.card > :has(+ .btn) { margin-bottom: 0; }
.card-service > .btn:not(.mt-auto) { margin-top: var(--sp-3); }
.card-service > :has(+ .btn) { margin-bottom: 0; }

/* ── Card: semantic type modifiers (pair with .card base) ────── */
/* Guide-type card — pseudo-element accent set in Guide Cards section below */
.card--guide {
    padding: 0;
    display: flex; flex-direction: column;
    overflow: hidden;
    color: var(--text); text-decoration: none;
}
.card--guide:hover { color: var(--text); }
.card--guide:hover .guide-card__img img { transform: scale(1.04); }
/* City primary emphasis block — automotive (2-col grid on desktop) */
.card--highlight-auto {
    display: grid; grid-template-columns: 1fr; gap: 28px;
    padding: var(--sp-4) var(--sp-3);
}
/* City primary emphasis block — residential/commercial */
.card--highlight { padding: var(--sp-4) var(--sp-3); }
/* Service-detail / info card. Rendered by `render_card()` at default opts. */
.card--detail::before { background: linear-gradient(180deg, var(--navy) 2px, rgba(0,0,0,.12) 2px); }
.card--detail::after  { inset: 2px 1px 1px 1px; }

/* ── Card: Service — unified BEM block ──────────────────────── */
/* Pseudo-element border system matching .card approach */
.card-service {
    position: relative;
    background: transparent;
    padding: var(--sp-4) var(--sp-3);
    display: flex; flex-direction: column;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.06));
    clip-path: var(--chamfer);
    transition: filter var(--t-base), transform var(--t-base);
}
.card-service::before,
.card-service::after {
    content: '';
    position: absolute;
    pointer-events: none;
}
.card-service::before {
    inset: 0;
    background: linear-gradient(180deg, var(--primary) 3px, var(--border) 3px);
    z-index: -2;
}
.card-service::after {
    inset: 3px 1px 1px 1px;
    background: var(--white);
    clip-path: var(--chamfer);
    z-index: -1;
}
.card-service:hover {
    filter: drop-shadow(0 6px 20px rgba(0,0,0,.13));
    transform: translateY(-4px);
}
/* City all-services variant */
.card-service--city {
    padding: var(--sp-4) var(--sp-3);
    filter: drop-shadow(0 1px 3px rgba(0,0,0,.05));
}
.card-service--city::before {
    background: linear-gradient(180deg, var(--primary) 3px, rgba(0,0,0,.12) 3px);
}
.card-service--city:hover {
    filter: drop-shadow(0 5px 16px rgba(0,0,0,.11));
}
/* Compact variant */
.card-service--compact {
    padding: var(--sp-3); margin-bottom: var(--sp-2);
    filter: drop-shadow(0 1px 3px rgba(0,0,0,.04));
}
.card-service--compact::before {
    background: rgba(0,0,0,.12);
}
.card-service--compact::after {
    inset: 1px;
}
/* Sub-elements — canonical BEM class selectors plus descendant-selector
 * fallbacks so both `<h3 class="card-service__title">` and bare `<h3>`
 * descendants pick up the same style. */
.card-service__icon,
.card-service .icon {
    width: 48px; height: 48px;
    background: rgba(14,128,67,.08);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: var(--sp-3); font-size: 1.4rem; color: var(--primary);
}
.card-service--city .card-service__icon { font-size: 1.25rem; margin-bottom: var(--sp-2); }
.card-service__title,
.card-service h3      { font-size: 1.15rem; color: var(--text); margin-bottom: var(--sp-1); }
.card-service--city .card-service__title { font-size: 1.05rem; margin-bottom: var(--sp-1); }
.card-service__desc,
.card-service p.description { color: var(--text-muted); margin-bottom: var(--sp-3); flex-grow: 1; line-height: 1.75; }
.card-service--city .card-service__desc { font-size: 0.9rem; margin-bottom: var(--sp-3); }
.card-service__list,
.card-service ul      { list-style: none; padding: 0; margin-bottom: var(--sp-4); }
.card-service--city .card-service__list { margin-bottom: var(--sp-3); }
.card-service__list li,
.card-service ul li {
    color: var(--text-muted); font-size: 0.88rem; padding: var(--sp-1) 0;
    display: flex; align-items: center; gap: var(--sp-1);
    border-bottom: 1px solid var(--border);
}
.card-service--city .card-service__list li { font-size: 0.87rem; padding: var(--sp-1) 0; }
.card-service__list li:last-child,
.card-service ul li:last-child { border-bottom: none; }
.card-service__list li i,
.card-service ul li i { color: var(--primary); flex-shrink: 0; }

/* ── Typography Display Utility ─────────────────────────────── */
.text-display { font-size: clamp(1.4rem, 4vw, 2.2rem); }

/* ── Header ─────────────────────────────────────────────────── */
.header {
    background: var(--white);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 900;
    border-bottom: 2px solid var(--navy);
    height: var(--header-h);
    display: flex;
    align-items: center;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--sp-2);
    height: 100%;
    width: 100%;
}
.logo-area       { flex-shrink: 0; display: flex; align-items: center; }
.logo-area .logo { display: flex; align-items: center; }
.logo-img        { height: 44px; width: auto; display: block; }
.logo-img:hover  { opacity: 0.85; }
.desktop-nav     { display: none; }
.header-actions  { display: none; }
.nav-menu        { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; align-items: center; }
.nav-item        { position: relative; }
.nav-link {
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
    padding: var(--sp-1) var(--sp-2);
    display: flex;
    align-items: center;
    gap: 5px;
    min-height: 48px;
    border-bottom: 2px solid transparent;
    transition: color var(--t-fast), border-color var(--t-fast);
}
.nav-link:hover,
.nav-link.active        { color: var(--primary); border-bottom-color: var(--primary); }
.nav-link:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

.mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--navy);
    font-size: 1.6rem;
    padding: var(--sp-1);
    min-width: 48px;
    min-height: 48px;
    transition: color var(--t-fast);
}
.mobile-nav-toggle:hover         { color: var(--primary); }
.mobile-nav-toggle:focus-visible { outline: 3px solid var(--primary); outline-offset: 4px; box-shadow: 0 0 0 6px rgba(14,128,67,.25); }

/* ── Side Navigation ────────────────────────────────────────── */
.menu-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 998;
    opacity: 0; visibility: hidden;
    transition: opacity var(--t-base), visibility var(--t-base);
}
.menu-overlay.active { opacity: 1; visibility: visible; }

.side-nav {
    position: fixed; top: 0; left: 0;
    width: var(--nav-w); height: 100%;
    background: var(--white);
    z-index: 999;
    border-right: 2px solid var(--navy);
    transform: translateX(-100%);
    visibility: hidden;
    transition: transform var(--t-base), visibility var(--t-base);
    overflow-y: auto;
    display: flex; flex-direction: column;
}
.side-nav.active { transform: translateX(0); visibility: visible; }

.side-nav-header {
    height: var(--header-h);
    padding: 0 var(--sp-2);
    border-bottom: 1px solid var(--border-on-dark-med);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--navy);
    color: #fff;
}
.side-nav-logo { height: 40px; width: auto; display: block; }

.side-nav-close {
    background: none; border: none; color: #fff;
    font-size: 1.6rem; padding: var(--sp-1);
    min-width: 48px; min-height: 48px;
    display: flex; align-items: center; justify-content: center;
    transition: color var(--t-fast), background var(--t-fast);
}
.side-nav-close:hover         { color: #fff; background: rgba(255,255,255,.22); }
.side-nav-close:focus-visible { outline: 3px solid var(--primary); outline-offset: 4px; box-shadow: 0 0 0 6px rgba(14,128,67,.25); }
body.nav-open { overflow: hidden; }
body.nav-open .mobile-nav-toggle { opacity: 0; visibility: hidden; pointer-events: none; }

.side-nav-menu { list-style: none; padding: 0; margin: 0; flex: 1; }
.side-nav-item { border-bottom: 1px solid var(--border); }
.side-nav-link {
    display: flex; justify-content: space-between; align-items: center;
    padding: var(--sp-2) var(--sp-2); color: var(--text); font-weight: 600; font-size: 0.95rem;
    min-height: 56px;
    transition: color var(--t-fast), background var(--t-fast);
}
.side-nav-link:hover         { color: var(--primary); background: var(--bg-alt); }
.side-nav-link:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.side-nav-sub-link:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.side-nav-dropdown { list-style: none; padding: 0; background: var(--bg-alt); display: none; }
.has-dropdown.active .side-nav-dropdown { display: block; }
.side-nav-dropdown-item { border-top: 1px solid var(--border); }
.side-nav-sub-link {
    display: flex; align-items: center;
    padding: var(--sp-1) var(--sp-2) var(--sp-1) var(--sp-4);
    color: var(--text-muted); font-size: 0.9rem; min-height: 48px;
    transition: color var(--t-fast);
}
.side-nav-sub-link:hover { color: var(--primary); }
.side-nav-cta-wrap { padding: var(--sp-2); border-top: 1px solid var(--border); }
.side-nav-license  { font-size: 0.73rem; color: var(--text-muted); margin-top: var(--sp-1); text-align: center; }

/* ── Breadcrumbs ────────────────────────────────────────────── */
.breadcrumbs {
    background: var(--bg-alt);
    padding: var(--sp-1) 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.83rem;
}
.breadcrumb-list {
    display: flex; flex-wrap: wrap; align-items: center;
    list-style: none; padding: 0; margin: 0; gap: 4px;
}
.breadcrumb-item a           { color: var(--primary); }
.breadcrumb-item a:hover     { text-decoration: underline; }
.breadcrumb-item.active span { color: var(--text-muted); font-weight: 600; }
.breadcrumb-separator        { color: #bbb; margin: 0 2px; }

/* ── Hero — Base Component ─────────────────────────────────── */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    color: #fff;
}
.hero .container { position: relative; z-index: 2; }

/* Hero BEM modifier classes — canonical padding source */
.hero--home        { padding: var(--sp-8) 0; text-align: center; }
.hero--inner       { padding: var(--section-py) 0; text-align: center; }
.hero--city        { padding: var(--sp-8) 0; text-align: center; }
.hero--guide-index { padding: var(--section-py) 0 var(--sp-5); text-align: center; }

/* ── Hero — Homepage ────────────────────────────────────────── */
/* Padding is owned by .hero--home modifier; only layout rules stay here */
.hero-inner {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-5);
    align-items: center;
}
.hero-visual { display: none; }
.hero-content { display: flex; flex-direction: column; }

.hero-trust-bar {
    display: inline-flex; align-items: center; gap: var(--sp-1);
    font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,.78); margin-bottom: var(--sp-2);
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.15);
    border-left: 3px solid var(--accent);
    padding: var(--sp-1) var(--sp-2);
    clip-path: var(--chamfer);
}
.hero-trust-bar::before {
    content: ''; width: 6px; height: 6px;
    background: var(--accent-light); flex-shrink: 0;
}
.hero-title    { font-size: clamp(1.7rem, 5vw, 2.9rem); line-height: 1.15; margin-bottom: var(--sp-2); color: #fff; }
.hero-title .accent { color: var(--accent-light); }
.hero-subtitle { font-size: 1rem; line-height: 1.8; color: var(--text-on-dark-muted); margin-bottom: var(--sp-4); }
.hero-subtitle a { color: var(--accent-light); font-weight: 500; }
.hero-subtitle a:hover { text-decoration: underline; }
.hero-actions  { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: var(--sp-4); }
.hero-checklist {
    display: flex; flex-wrap: wrap; gap: 12px;
    list-style: none; padding: 0; margin: 0;
    font-size: 0.88rem; color: rgba(255,255,255,.88);
}
.hero-checklist li   { display: flex; align-items: center; gap: var(--sp-1); }
.hero-checklist li i { color: var(--accent-light); font-size: 0.9rem; }

/* ── Image Placeholder — unified base + contextual modifiers ─── */
.img-placeholder {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; position: relative; overflow: hidden;
    clip-path: var(--chamfer);
}
.img-placeholder img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Hero variant — dark */
.img-placeholder--hero {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.1);
    aspect-ratio: 4/3;
    color: rgba(255,255,255,.55); font-size: 0.85rem; padding: var(--sp-4);
}
.img-placeholder--hero .placeholder-icon  { font-size: 3rem; margin-bottom: var(--sp-1); opacity: 0.35; }
.img-placeholder--hero .placeholder-label { color: rgba(255,255,255,.4); font-size: 0.85rem; }
.img-placeholder--hero .placeholder-hint  { color: rgba(255,255,255,.28); font-size: 0.75rem; margin: 0; max-width: 200px; line-height: 1.5; }
.img-placeholder--hero .placeholder-code  { background: rgba(255,255,255,.08); padding: 1px var(--sp-1); }

/* ── Hero — Homepage (Full BG) ─────────────────────────────── */
/* Padding and text-align delegated to .hero--home modifier */
.hero-home__bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    opacity: 0.85; z-index: 0;
}
.hero-home__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(16,18,34,.40) 0%, rgba(16,18,34,.65) 100%);
    z-index: 1;
}
.hero-home__inner {
    position: relative; z-index: 2;
    display: flex; flex-direction: column;
    align-items: center;
    max-width: 760px; margin: 0 auto;
}
.hero-home__title {
    font-size: clamp(1.7rem, 5vw, 3rem);
    line-height: 1.15; margin-bottom: var(--sp-2); color: #fff;
}
.hero-home__title .accent { color: var(--accent-light); }
.hero-home__subtitle {
    font-size: 1rem; line-height: 1.8;
    color: rgba(255,255,255,.82); margin-bottom: var(--sp-4);
    max-width: 620px;
}
.hero-home__subtitle a { color: var(--accent-light); font-weight: 500; }
.hero-home__subtitle a:hover { text-decoration: underline; }
.hero-home__actions {
    display: flex; flex-wrap: wrap; gap: 12px;
    justify-content: center; margin-bottom: var(--sp-4);
}
.hero-home__checklist {
    display: flex; flex-wrap: wrap; gap: 12px;
    justify-content: center;
    list-style: none; padding: 0; margin: 0;
    font-size: 0.88rem; color: rgba(255,255,255,.88);
}
.hero-home__checklist li   { display: flex; align-items: center; gap: var(--sp-1); }
.hero-home__checklist li i { color: var(--accent-light); font-size: 0.9rem; }

/* ── Hero — Inner Pages ─────────────────────────────────────── */
/* Padding and text-align delegated to .hero--inner modifier */
.hero-bg-img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    z-index: 0;
}
.hero-license {
    display: inline-block; font-size: 0.68rem; letter-spacing: 0.14em;
    text-transform: uppercase; color: rgba(255,255,255,.72);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.15);
    border-left: 3px solid var(--accent);
    padding: 4px var(--sp-2) 4px var(--sp-1); margin-bottom: var(--sp-2);
    clip-path: var(--chamfer);
}
.hero--inner h1 { color: #fff; margin-bottom: var(--sp-2); }
.intro-text { font-size: 1rem; color: rgba(255,255,255,.82); max-width: 620px; margin: 0 auto var(--sp-3); line-height: 1.8; }
.hero--inner .hero-trust-bar {
    display: inline-flex; flex-wrap: wrap; align-items: center;
    gap: 6px var(--sp-2); justify-content: center; font-size: 0.85rem;
    color: rgba(255,255,255,.88); background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14); padding: var(--sp-1) var(--sp-3);
    list-style: none; clip-path: var(--chamfer);
}
.hero--inner .hero-trust-bar::before     { display: none; }
.hero--inner .hero-trust-bar .separator  { color: rgba(255,255,255,.3); }
.hero-bg-eyebrow { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.72; margin-bottom: var(--sp-1); }
.hero-bg-title   { font-family: var(--font-h); font-size: clamp(1.7rem, 4vw, 2.7rem); font-weight: 800; line-height: 1.2; margin-bottom: var(--sp-2); }
.hero-bg-desc,
.intro-text      { font-size: 1rem; max-width: 620px; margin: 0 auto var(--sp-3); color: rgba(255,255,255,.85); line-height: 1.8; }
.hero-bg-fine    { font-size: 0.77rem; color: rgba(255,255,255,.5); margin-top: var(--sp-2); }
.hero-badge-row  { margin-bottom: var(--sp-2); }
.hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(182,216,129,.12); color: var(--accent-light);
    border: 1px solid rgba(182,216,129,.25); font-weight: 700;
    font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 5px var(--sp-2); clip-path: var(--chamfer);
}
.hero--alt-dark {
    background: var(--navy); color: #fff; padding: var(--sp-8) 0 var(--sp-5); text-align: center;
}
.hero--alt-dark h1 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.9rem); margin-bottom: var(--sp-2); }
.hero--alt-dark .hero-trust-bar {
    display: inline-flex; flex-wrap: wrap; align-items: center; gap: 6px var(--sp-2);
    justify-content: center; font-size: 0.85rem; color: rgba(255,255,255,.88);
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
    padding: var(--sp-1) var(--sp-3); list-style: none; clip-path: var(--chamfer);
}
.hero--alt-dark .hero-trust-bar::before    { display: none; }
.hero--alt-dark .hero-trust-bar .separator { color: rgba(255,255,255,.3); }

/* ── Trust Stats Bar ────────────────────────────────────────── */
.trust-stats-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: var(--sp-2) 0;
}
.trust-stats-bar .container {
    display: flex; flex-wrap: wrap;
    justify-content: space-around; align-items: center;
    gap: var(--sp-2); text-align: center;
}
.trust-stat-item strong { display: block; font-size: 1.35rem; font-weight: 800; color: var(--primary); line-height: 1.1; margin-bottom: 3px; }
.trust-stat-item span   { font-size: 0.76rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0.03em; }

/* ── Trust Badges ───────────────────────────────────────────── */
.trust-badges-section { background: var(--bg-alt); padding: var(--sp-4) 0; border-bottom: 1px solid var(--border); }
.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-2);
}
.trust-badge {
    background: var(--white);
    border: none;
    border-top: 3px solid var(--navy);
    padding: var(--sp-2) var(--sp-3);
    display: flex; flex-direction: column; align-items: center; gap: var(--sp-1);
    text-align: center; min-width: 0;
    filter: var(--chamfer-outline);
    transition: border-top-color var(--t-base), filter var(--t-base), transform var(--t-base);
    clip-path: var(--chamfer);
}
.trust-badge:hover { border-top-color: var(--primary); filter: var(--chamfer-outline) drop-shadow(0 4px 12px rgba(0,0,0,.10)); transform: translateY(-4px); }
.trust-badge-icon {
    width: 40px; height: 40px;
    background: rgba(14,128,67,.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.1rem;
}
.trust-badge strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text); line-height: 1.25; }
.trust-badge span   { font-size: 0.72rem; color: var(--text-muted); }

/* ── Service Areas ─────────────────────────────────────────── */
.areas-section { padding: var(--section-py) 0; background: var(--white); }

/* ── Services Grid ──────────────────────────────────────────── */
.services-section { padding: var(--section-py) 0; background: var(--white); }
/* Service cards use .card-service — see Card Service section above */

/* ── How It Works ───────────────────────────────────────────── */
.how-it-works-section { padding: var(--section-py) 0; background: var(--bg-alt); }
.how-it-works-grid {
    display: grid; grid-template-columns: 1fr;
    gap: var(--sp-3); max-width: 920px; margin: 0 auto;
}
.how-step {
    text-align: center; padding: var(--sp-4) var(--sp-3);
}
.how-step::before { background: linear-gradient(180deg, var(--primary) 3px, rgba(0,0,0,.12) 3px); }
.how-step::after  { inset: 3px 1px 1px 1px; }
.how-step-number {
    width: 48px; height: 48px; background: var(--navy); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; font-weight: 800; font-family: var(--font-h);
    margin: 0 auto var(--sp-3);
}
.how-step h3 { font-size: 1.05rem; margin-bottom: var(--sp-1); color: var(--text); }
.how-step p  { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* ── Fleet Section ──────────────────────────────────────────── */
.fleet-section  { padding: var(--section-py) 0; background: var(--navy); }
.fleet-header   { text-align: center; margin-bottom: var(--sp-5); }
.fleet-subtitle { color: var(--text-on-dark-muted); font-size: 1rem; max-width: 560px; margin: 0 auto; line-height: 1.75; }
.fleet-grid     { display: grid; grid-template-columns: 1fr; gap: var(--sp-3); }
.fleet-card     { border: none; overflow: hidden; clip-path: var(--chamfer); filter: drop-shadow(0 0 0.5px rgba(255,255,255,.18)) drop-shadow(0 0 0.5px rgba(255,255,255,.18)); transition: filter var(--t-base), transform var(--t-base); }
.fleet-card:hover { filter: drop-shadow(0 0 0.5px rgba(255,255,255,.18)) drop-shadow(0 0 0.5px rgba(255,255,255,.18)) drop-shadow(0 10px 32px rgba(0,0,0,.45)); transform: translateY(-4px); }
.fleet-img-placeholder {
    width: 100%; aspect-ratio: 16/10;
    background: var(--bg-on-dark-subtle);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: rgba(255,255,255,.4); font-size: 0.8rem; gap: 10px; position: relative;
}
.fleet-img-placeholder .van-icon { font-size: 2.8rem; opacity: 0.4; }
.fleet-img-placeholder img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fleet-card-caption {
    background: rgba(0,0,0,.65); padding: var(--sp-2) var(--sp-2);
    border-top: 1px solid var(--border-on-dark-soft);
}
.fleet-card-caption strong { display: block; font-size: 0.88rem; color: #fff; margin-bottom: 3px; }
.fleet-card-caption span   { font-size: 0.78rem; color: var(--text-on-dark); }
.fleet-note { text-align: center; margin-top: var(--sp-4); color: var(--text-on-dark-subtle); font-size: 0.83rem; font-style: italic; }

/* ── Why Us / Feature Items ─────────────────────────────────── */
.why-us-section { padding: var(--section-py) 0; background: var(--bg-alt); }
.why-us-grid    { display: grid; grid-template-columns: 1fr; gap: var(--sp-3); }
.feature-item {
    display: flex; gap: var(--sp-2); align-items: flex-start;
    padding: var(--sp-3);
}
.feature-item::before { background: linear-gradient(90deg, var(--primary) 3px, rgba(0,0,0,.12) 3px); }
.feature-item::after  { inset: 1px 1px 1px 3px; }
.feature-item .icon-wrap,
.feature-item .icon {
    width: 50px; height: 50px; flex-shrink: 0;
    background: rgba(14,128,67,.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.3rem;
}
.feature-item-body h3 { font-size: 1rem; color: var(--text); margin-bottom: var(--sp-1); }
.feature-item-body p  { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; }
.feature-item-body a  { color: var(--primary); }
.contact-highlight-phone a,
.contact-highlight-email a { color: var(--primary); font-weight: 700; font-size: 1.05rem; }
.contact-emergency-alert   { font-weight: 700; color: var(--danger); margin-bottom: var(--sp-1); }
.contact-hours-section     { font-weight: 600; margin-bottom: 4px; }

/* ── Section Utilities ──────────────────────────────────────── */
.section-lead  {
    text-align: center; color: var(--text-muted); font-size: 1rem;
    margin: calc(var(--sp-2) * -1) auto var(--sp-4); max-width: 640px;
}

/* ── Service Detail Cards (pair with .card base) ────────────── */
.service-detail {
    padding: var(--sp-3) var(--sp-3);
}
.service-detail h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: var(--sp-1); }
.service-detail p  { color: var(--text-muted); line-height: 1.8; font-size: 0.93rem; }
.service-detail--featured {
    padding: var(--sp-4) var(--sp-4);
    margin-bottom: var(--sp-3);
}
.service-detail--featured h3           { color: var(--primary); font-size: 1.2rem; margin-bottom: var(--sp-1); }
.service-detail--featured p            { color: var(--text-muted); line-height: 1.8; margin-bottom: var(--sp-3); }
.service-detail--featured p:last-child { margin-bottom: 0; }
.service-detail--featured a            { color: var(--primary); }
.service-detail--featured.featured--alt::before { background: linear-gradient(90deg, var(--navy) 4px, rgba(0,0,0,.12) 4px); }
.service-detail--featured.featured--alt::after  { inset: 1px 1px 1px 4px; }
.service-detail--flex  { display: flex; gap: var(--sp-4); flex-wrap: wrap; align-items: flex-start; }
.service-detail-note   { font-size: 0.84rem; color: var(--text-muted); border-top: 1px solid var(--border); margin-top: var(--sp-2); padding-top: var(--sp-1); font-style: italic; }
.featured-body  { flex: 1; min-width: 240px; }
.stat-box       { display: flex; flex-direction: column; align-items: center; background: var(--navy); color: #fff; padding: var(--sp-3) var(--sp-3); min-width: 136px; clip-path: var(--chamfer); }
.stat-number    { font-family: var(--font-h); font-size: 2rem; font-weight: 800; line-height: 1.1; }
.stat-label     { font-size: 0.78rem; color: rgba(255,255,255,.7); text-align: center; }
.stat-label--mb { margin-bottom: var(--sp-2); }

/* ── Vehicle / Brand Cloud ──────────────────────────────────── */
.vehicle-make-section { padding: var(--section-py) 0; background: var(--white); }
.vehicle-make-desc    { color: var(--text-muted); max-width: 640px; margin: 0 auto var(--sp-3); line-height: 1.75; }
.vehicle-make-cloud   { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.vehicle-make-tag     { background: var(--bg-alt); padding: var(--sp-1) var(--sp-2); font-size: 0.87rem; color: var(--text); border: 1px solid var(--border); font-weight: 500; }
.vehicle-make-note    { text-align: center; color: var(--text-muted); font-size: 0.82rem; margin-top: var(--sp-3); font-style: italic; }

/* ── CTA Sections — unified .section-cta ────────────────────── */
/* Primary green background with subtle depth for high contrast against navy footer */
.section-cta {
    padding: var(--section-py) 0;
    background: var(--primary);
    color: #fff;
    text-align: center;
    position: relative;
    border-top: 4px solid var(--primary-hover);
}
.section-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.06) 0%, transparent 30%, rgba(0,0,0,.15) 100%);
    pointer-events: none;
}
.section-cta .container { position: relative; z-index: 2; }
.section-cta h2 {
    color: #fff; margin-bottom: var(--sp-1);
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    text-shadow: 0 1px 3px rgba(0,0,0,.15);
}
.section-cta p { margin-bottom: var(--sp-3); }
.section-cta .hero-actions { justify-content: center; }
.section-cta__desc {
    color: rgba(255,255,255,.92); font-size: 1.05rem;
    margin-bottom: var(--sp-4); max-width: 540px;
    margin-left: auto; margin-right: auto; line-height: 1.75;
}
.section-cta .btn-primary::before { background: var(--navy); }
.section-cta .btn-primary         { color: #fff; }
.section-cta .btn-primary:hover::before { background: var(--navy-mid); }
.section-cta .btn-ghost-white::before { background: rgba(255,255,255,.5); }
.section-cta__fine {
    color: rgba(255,255,255,.7); font-size: 0.78rem;
    margin-top: var(--sp-3); margin-bottom: 0;
    letter-spacing: 0.02em;
}
.section-cta__actions {
    display: flex; flex-wrap: wrap; gap: var(--sp-2);
    justify-content: center; margin-top: var(--sp-4);
}
.trust-indicators { margin-top: var(--sp-3); color: rgba(255,255,255,.5); font-size: 0.8rem; margin-bottom: 0; }
.contact-action-wrapper { margin-top: var(--sp-4); }

/* ── Testimonials ───────────────────────────────────────────── */
.reviews-section      { padding: var(--section-py) 0; background: var(--bg-alt); }
.testimonials-section { padding: var(--section-py) 0; background: var(--white); }
.aggregate-rating-bar { padding: var(--sp-3) 0; border-bottom: 1px solid var(--border); }
.rating-summary-card {
    display: flex; flex-direction: column; align-items: center; gap: 20px;
    background: var(--white); border: none;
    border-top: 3px solid var(--gold); padding: var(--sp-3) var(--sp-3);
    max-width: 540px; margin: 0 auto; text-align: center;
    filter: var(--chamfer-outline);
    clip-path: var(--chamfer);
}
.rating-score   { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.rating-number  { font-size: 3rem; font-weight: 800; color: var(--text); line-height: 1; }
.rating-stars   { font-size: 1.3rem; color: var(--gold); letter-spacing: 3px; line-height: 1; }
.rating-details { display: flex; flex-direction: column; gap: 4px; }
.rating-platforms { display: flex; gap: var(--sp-2); margin-top: var(--sp-1); }
.rating-platform { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); }
.rating-platform i { font-size: 1rem; }
.rating-count   { font-size: 0.93rem; color: var(--text); font-weight: 500; }
.rating-label   { font-size: 0.82rem; color: var(--text-muted); }
.testimonial-card {
    padding: var(--sp-3);
    display: flex; flex-direction: column;
}
.testimonial-card::before { background: linear-gradient(180deg, var(--navy) 3px, rgba(0,0,0,.12) 3px); }
.testimonial-card::after  { inset: 3px 1px 1px 1px; }
.testimonial-card:nth-child(3n+2)::before { background: linear-gradient(180deg, var(--gold) 3px, rgba(0,0,0,.12) 3px); }
.review-stars    { font-size: 1.05rem; color: var(--gold); letter-spacing: 2px; margin-bottom: var(--sp-2); line-height: 1; }
.review-text     { font-size: 0.93rem; line-height: 1.8; color: var(--text); font-style: italic; flex-grow: 1; margin: 0 0 var(--sp-3); }
.review-author   { display: flex; flex-direction: column; gap: 3px; padding-top: var(--sp-2); border-top: 1px solid var(--border); margin-top: auto; }
.review-author strong    { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.review-meta             { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
.testimonial-card blockquote {
    font-size: 0.93rem; line-height: 1.8; color: var(--text);
    font-style: italic; flex-grow: 1; margin: 0 0 var(--sp-3);
}
.testimonial-card figcaption {
    padding-top: var(--sp-2); border-top: 1px solid var(--border); margin-top: auto;
}
.testimonial-author      { font-weight: 700; color: var(--text); font-size: 0.9rem; }
.testimonial-location    { color: var(--text-muted); font-size: 0.82rem; margin-top: 2px; }
.stars-row     { display: flex; gap: 3px; margin-bottom: var(--sp-2); color: var(--gold); }
.stars-row svg { width: 18px; height: 18px; fill: currentColor; stroke: none; }

/* ── Contact ────────────────────────────────────────────────── */
.contact-info-section { padding: var(--section-py) 0; background: var(--white); }
.contact-form-section { padding: var(--section-py) 0; background: var(--bg-alt); }
.contact-form-intro   { font-size: 1rem; color: var(--text-muted); max-width: 640px; margin: 0 auto var(--sp-4); text-align: center; }
.contact-layout { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); max-width: 1080px; margin: 0 auto; }
.form-container {
    position: relative;
    background: transparent; padding: var(--sp-4) var(--sp-3);
    clip-path: var(--chamfer);
}
.form-container::before,
.form-container::after {
    content: '';
    position: absolute;
    pointer-events: none;
}
.form-container::before {
    inset: 0;
    background: linear-gradient(180deg, var(--primary) 3px, rgba(0,0,0,.12) 3px);
    z-index: -2;
}
.form-container::after {
    inset: 3px 1px 1px 1px;
    background: var(--white);
    clip-path: var(--chamfer);
    z-index: -1;
}
.form-row { display: grid; grid-template-columns: 1fr; gap: var(--sp-3); }
.contact-map-side { display: flex; flex-direction: column; gap: var(--sp-2); min-width: 0; overflow: hidden; }
.contact-map-side .contact-map-wrap { clip-path: var(--chamfer); overflow: hidden; aspect-ratio: 16/9; max-width: 100%; }
.contact-map-side .contact-map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-overlay-info { background: var(--white); padding: var(--sp-2) var(--sp-3); clip-path: var(--chamfer); filter: drop-shadow(0 1px 4px rgba(0,0,0,.07)); }
.map-overlay-info p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: var(--sp-1); display: flex; align-items: center; gap: var(--sp-1); }
.map-overlay-info p:last-child { margin-bottom: 0; }
.map-overlay-info p strong { color: var(--text); }
.map-overlay-info p i { color: var(--primary); font-size: 0.85rem; }
.map-overlay-info a { color: var(--primary); font-weight: 600; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: var(--sp-3); }
.form-group:last-of-type { margin-bottom: 0; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
/* Form fields — drop-shadow border system (respects clip-path chamfer) */
.form-container input[type="text"],
.form-container input[type="email"],
.form-container input[type="tel"],
.form-container select,
.form-container textarea {
    width: 100%; padding: var(--sp-2) var(--sp-2);
    font-family: var(--font-b); font-size: 1rem; color: var(--text);
    background: var(--bg-alt); border: none;
    outline: none; appearance: none; -webkit-appearance: none;
    min-height: 48px;
    clip-path: var(--chamfer);
    filter: drop-shadow(0 0 0 1.5px var(--border));
    transition: filter var(--t-fast), background var(--t-fast);
}
.form-container input[type="text"]:focus,
.form-container input[type="email"]:focus,
.form-container input[type="tel"]:focus,
.form-container select:focus,
.form-container textarea:focus {
    background: var(--white);
    filter: drop-shadow(0 0 0 1.5px var(--primary)) drop-shadow(0 0 3px rgba(14,128,67,.22));
    outline: none;
}
.form-container textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.form-container select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 20px center; padding-right: var(--sp-6); cursor: pointer;
}
.form-container .btn { margin-top: var(--sp-3); }
.form-container input::placeholder,
.form-container textarea::placeholder {
    color: var(--text-muted); opacity: 0.6;
}
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; pointer-events: none; }
.alert {
    display: flex; align-items: flex-start; gap: 12px;
    padding: var(--sp-2) var(--sp-2); margin-bottom: var(--sp-3);
    font-size: 0.92rem; line-height: 1.6;
    border: 1px solid; border-left: 4px solid;
    clip-path: var(--chamfer);
}
.alert i { flex-shrink: 0; margin-top: 1px; }
.alert-success { background: rgba(14,128,67,.06); border-color: rgba(14,128,67,.25); border-left-color: var(--primary); color: #065726; }
.alert-error   { background: rgba(185,28,28,.06); border-color: rgba(185,28,28,.2); border-left-color: var(--danger); color: #991b1b; }
.contact-map-wrap { aspect-ratio: 16/9; overflow: hidden; }
.contact-map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-section        { padding: var(--section-py) 0; background: var(--white); }
.faq-section--light { background: var(--bg-alt); padding: var(--section-py) 0; }
.faq-grid,
.faq-container,
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: none;
    border-left: 3px solid var(--border);
    transition: border-left-color var(--t-fast);
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item.is-active  { border-left-color: var(--primary); }
.faq-heading         { font-size: 1rem; margin: 0; line-height: 1; }
.faq-question {
    width: 100%; text-align: left; background: none; border: none;
    display: flex; justify-content: space-between; align-items: center;
    padding: var(--sp-2); gap: var(--sp-2); font-family: var(--font-b);
    font-weight: 600; font-size: 0.95rem; color: var(--text);
    min-height: 56px;
    transition: background var(--t-fast);
    -webkit-user-select: none; user-select: none;
}
.faq-question:hover               { background: var(--bg-alt); }
.faq-question:focus-visible       { outline: 2px solid var(--primary); outline-offset: 2px; }
.faq-question[aria-expanded="true"],
.faq-item.is-active .faq-question { color: var(--primary); background: rgba(14,128,67,.03); }
.faq-icon { color: var(--text-muted); transition: transform var(--t-base); flex-shrink: 0; }
.faq-question[aria-expanded="true"] .faq-icon,
.faq-item.is-active .faq-icon     { transform: rotate(180deg); color: var(--primary); }
.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 300ms ease;
}
.faq-item.is-active .faq-answer {
    max-height: 600px;
}
.faq-answer p {
    padding: var(--sp-2) var(--sp-2) var(--sp-3);
    color: var(--text-muted); line-height: 1.8; font-size: 0.93rem;
    border-top: 1px solid var(--border); margin: 0;
}

/* ── Guides Index ───────────────────────────────────────────── */
/* Padding delegated to .hero--guide-index modifier */
.hero--guide-index h1 { font-size: clamp(1.7rem, 4vw, 2.8rem); margin-bottom: var(--sp-2); color: #fff; }
.hero--guide-index .guide-index-desc { font-size: 1rem; max-width: 640px; margin: 0 auto var(--sp-4); color: rgba(255,255,255,.86); line-height: 1.75; }
.guide-index-cards { padding: var(--section-py) 0; background: var(--bg-alt); }
.guide-index-grid  { max-width: 1040px; margin: 0 auto; }
.guide-index-cta   { background: var(--navy); padding: var(--section-py) 0; color: #fff; text-align: center; }

/* ── Guide Cards ────────────────────────────────────────────── */
/* .card--guide uses the .card pseudo-element border system */
.card--guide,
.guide-card {
    padding: 0;
    display: flex; flex-direction: column;
    color: var(--text); text-decoration: none;
    overflow: hidden;
}
.guide-card { border-top: 3px solid var(--navy); filter: var(--chamfer-outline); clip-path: var(--chamfer); }
.card--guide::before { background: linear-gradient(180deg, var(--navy) 3px, rgba(0,0,0,.12) 3px); }
.card--guide::after  { inset: 3px 1px 1px 1px; }
.card--guide:hover,
.guide-card:hover { color: var(--text); }
.guide-card:hover { filter: var(--chamfer-outline) drop-shadow(0 4px 16px rgba(0,0,0,.10)); }
.guide-card__img { overflow: hidden; line-height: 0; aspect-ratio: 1200 / 630; }
.guide-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-base); }
.card--guide:hover .guide-card__img img,
.guide-card:hover .guide-card__img img { transform: scale(1.04); }
.guide-card__body { padding: var(--sp-3); display: flex; flex-direction: column; gap: var(--sp-1); flex: 1; }
.guide-card-label {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--primary);
    display: flex; align-items: center; gap: 6px;
}
.card--guide h3,
.guide-card h3    { font-size: 1.05rem; color: var(--navy); margin-bottom: 4px; line-height: 1.3; }
.card--guide p,
.guide-card p     { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; flex-grow: 1; }
.guide-card-cta   { font-size: 0.85rem; font-weight: 700; color: var(--primary); margin-top: auto; }

/* ── Guide Detail ───────────────────────────────────────────── */

.guide-featured-image { overflow: hidden; margin-bottom: 0; }
.guide-featured-img   { width: 100%; height: auto; display: block; }
/* Guide featured image — light */
.img-placeholder--guide {
    background: linear-gradient(145deg, #f0f4f8, #e8eff5);
    border: 2px dashed #c5d3df; border-top: none;
    min-height: 180px;
}
.img-placeholder--guide .placeholder-inner {
    display: flex; flex-direction: column; align-items: center;
    gap: 12px; color: #8aa4b8; font-size: 0.82rem; padding: var(--sp-3);
}
.img-placeholder--guide .placeholder-inner i { font-size: 2rem; opacity: 0.4; }

/* Guide section image — light, compact */
.img-placeholder--guide-section {
    background: linear-gradient(145deg, #f5f8fa, #edf2f7);
    border: 2px dashed #d0dce6;
    min-height: 140px; margin: var(--sp-3) 0 var(--sp-2);
}
.img-placeholder--guide-section .placeholder-inner {
    display: flex; flex-direction: column; align-items: center;
    gap: 10px; color: #8aacbf; font-size: 0.8rem; padding: var(--sp-2);
}
.guide-body-section { padding: var(--section-py) 0; background: var(--white); overflow: hidden; }
.guide-body         { max-width: 860px; overflow-wrap: break-word; word-break: break-word; }
.guide-section      { margin-bottom: var(--sp-5); }
.guide-section-heading {
    font-size: 1.3rem; color: var(--text); margin-bottom: var(--sp-2);
    padding-bottom: var(--sp-1); border-bottom: 2px solid var(--border);
}
.guide-content       { max-width: 800px; margin: 0 auto; overflow: hidden; }
.guide-content h2    { font-size: clamp(1.2rem, 3vw, 1.7rem); margin: var(--sp-5) 0 var(--sp-2); color: var(--text); border-bottom: 1px solid var(--border); padding-bottom: var(--sp-1); }
.guide-content h3    { font-size: 1.1rem; margin: var(--sp-3) 0 var(--sp-1); color: var(--text); }
.guide-content p     { color: var(--text-muted); line-height: 1.85; margin-bottom: var(--sp-2); }
.guide-content ul    { color: var(--text-muted); line-height: 1.85; padding-left: var(--sp-3); margin-bottom: var(--sp-2); list-style: disc; }
.guide-content li    { margin-bottom: var(--sp-1); }
.guide-content strong { color: var(--text); }
.guide-content a:not(.btn) { color: var(--primary); }
.guide-table-wrap    { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: var(--sp-3) 0; }
.guide-content .price-table         { width: 100%; border-collapse: collapse; min-width: 400px; }
.guide-content .price-table th      { background: var(--navy); color: #fff; padding: var(--sp-2); text-align: left; font-size: 0.85rem; }
.guide-content .price-table td      { padding: var(--sp-2); border-bottom: 1px solid var(--border); font-size: 0.88rem; background: var(--white); }
.guide-content .price-table tr:last-child td    { border-bottom: none; }
.guide-content .price-table tr:nth-child(even) td { background: var(--bg-alt); }
.guide-callout {
    background: rgba(14,128,67,.05); border: 1px solid rgba(14,128,67,.2);
    border-left: 4px solid var(--primary); padding: var(--sp-2) var(--sp-3); margin: var(--sp-3) 0;
    clip-path: var(--chamfer);
}
.guide-callout strong { color: var(--primary); }
.guide-summary-box {
    position: relative;
    background: transparent;
    padding: var(--sp-4);
    clip-path: var(--chamfer);
    filter: drop-shadow(0 1px 4px rgba(0,0,0,.07));
}
.guide-summary-box::before,
.guide-summary-box::after {
    content: '';
    position: absolute;
    pointer-events: none;
    clip-path: var(--chamfer);
}
.guide-summary-box::before {
    inset: 0;
    background: linear-gradient(180deg, var(--primary) 3px, rgba(0,0,0,.12) 3px);
    z-index: -2;
}
.guide-summary-box::after {
    inset: 3px 1px 1px 1px;
    background: var(--white);
    z-index: -1;
}
.guide-summary-label {
    display: flex; align-items: center; gap: var(--sp-1);
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--primary); margin-bottom: var(--sp-1);
}
.guide-summary-text { font-size: 1rem; color: var(--text); line-height: 1.75; margin: 0 0 var(--sp-3); }
.guide-summary-box .btn { margin-top: 0; }
.guide-related-section { padding: var(--sp-5) 0; }
.guide-related-pills   { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--sp-2); }
.guide-related-grid    { display: grid; grid-template-columns: 1fr; gap: var(--sp-3); }
.guide-back-link {
    display: inline-flex; align-items: center; gap: var(--sp-1);
    color: var(--primary); font-weight: 600; font-size: 0.92rem;
    margin-bottom: var(--sp-4); min-height: 44px;
}
.guide-back-link:hover { text-decoration: underline; }
.guide-city-pill {
    display: inline-flex; align-items: center;
    padding: var(--sp-1) var(--sp-2);
    background: var(--white); border: 1px solid var(--border);
    font-size: 0.87rem; color: var(--text);
    transition: border-color var(--t-fast), color var(--t-fast);
    min-height: 44px;
}
.guide-city-pill:hover         { border-color: var(--primary); color: var(--primary); }
.guide-city-pill:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; }

/* ── Guide Promo Strip ──────────────────────────────────────── */
.guide-promo-section        { padding: var(--section-py) 0; background: var(--bg-alt); }
.guide-promo-section--white { background: var(--white); }
.guide-promo-inner          { text-align: center; max-width: 960px; margin: 0 auto; }
.guide-promo-heading        { font-size: clamp(1.2rem, 3vw, 1.85rem); color: var(--navy); margin-bottom: var(--sp-2); }
.guide-promo-desc           { color: var(--text-muted); margin-bottom: var(--sp-4); }
.guide-promo-grid           { display: grid; grid-template-columns: 1fr; gap: var(--sp-2); text-align: left; }
.guide-see-all              { display: inline-flex; align-items: center; margin-top: var(--sp-4); font-weight: 700; color: var(--primary); font-size: 0.9rem; min-height: 44px; }
.guide-see-all:hover        { text-decoration: underline; }
.guide-promo-link {
    display: block; background: var(--white); border: none;
    padding: var(--sp-2) var(--sp-3); color: var(--text);
    filter: var(--chamfer-outline);
    transition: filter var(--t-fast), transform var(--t-fast);
    clip-path: var(--chamfer);
}
.guide-promo-link:hover { filter: var(--chamfer-outline) drop-shadow(0 4px 12px rgba(0,0,0,.08)); transform: translateY(-4px); }

/* ── City Pages ─────────────────────────────────────────────── */
.city-hero__eyebrow { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-on-dark-subtle); margin-bottom: var(--sp-1); }

.city-trust-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: var(--sp-2) 0; }
.city-trust-bar .container { display: flex; flex-wrap: wrap; gap: 12px var(--sp-3); align-items: center; justify-content: center; }
.city-trust-bar__inner     { display: flex; flex-wrap: wrap; gap: 12px var(--sp-3); align-items: center; justify-content: center; font-size: 0.82rem; color: var(--text-muted); }
.city-trust-bar__rating strong { color: var(--text); }
.city-trust-bar__license       { font-size: 0.72rem; color: var(--text-muted); }

.city-intro           { padding: var(--section-py) 0; background: var(--bg-alt); }
.city-intro__wrap     { max-width: 820px; }
.city-intro__wrap .section-header { margin-bottom: var(--sp-4); }
.city-intro__text     { color: var(--text-muted); line-height: 1.8; margin-bottom: var(--sp-3); font-size: 1rem; }
.city-intro__text:last-child { margin-bottom: 0; }
.city-intro__text a   { color: var(--primary); font-weight: 600; }
.city-intro__text a:hover { text-decoration: underline; }
.city-services-pad,
.city-services-pad-t   { padding: var(--section-py) 0; }
.city-section-heading--sm  { font-size: 1.05rem; margin-bottom: var(--sp-2); }

/* ── City Emphasis Blocks — shared rules ──────────────────── */
.card-primary__title { font-size: 1.15rem; color: var(--navy); margin-bottom: var(--sp-2); }

.auto-primary__icon,
.city-res-primary__icon,
.city-comm-primary__icon  { font-size: 2rem; margin-bottom: var(--sp-2); }
.auto-primary__icon,
.city-res-primary__icon   { color: var(--primary); }
.city-comm-primary__icon  { color: var(--navy); }

.auto-primary__desc,
.city-res-primary__desc,
.city-comm-primary__desc  { color: var(--text-muted); line-height: 1.8; font-size: 0.95rem; margin-bottom: var(--sp-3); }

.auto-primary__list,
.city-res-primary__list,
.city-comm-primary__list  { list-style: none; padding: 0; }
.auto-primary__list       { margin-top: var(--sp-2); display: flex; flex-direction: column; }
.city-res-primary__list,
.city-comm-primary__list  { margin-bottom: var(--sp-4); }

.auto-primary__list li,
.city-res-primary__list li,
.city-comm-primary__list li {
    display: flex; align-items: center; gap: var(--sp-1);
    padding: var(--sp-1) 0; border-bottom: 1px solid var(--border);
    font-size: 0.9rem; color: var(--text);
}
.auto-primary__list li     { align-items: flex-start; }
.auto-primary__list li:last-child,
.city-res-primary__list li:last-child,
.city-comm-primary__list li:last-child { border-bottom: none; }
.auto-primary__list li.has-divider { border-bottom: none; padding-top: var(--sp-2); color: var(--primary); font-weight: 600; }

.auto-primary__list li i,
.city-res-primary__list li i,
.city-comm-primary__list li i { color: var(--primary); flex-shrink: 0; }
.auto-primary__list li i { margin-top: 2px; }

.list-detail { color: var(--text-muted); font-weight: 400; font-size: 0.85rem; display: block; margin-top: 2px; }

/* Layout-specific overrides */
.city-res-layout,
.city-comm-layout  { align-items: flex-start; }
.city-comm-layout  { margin-top: var(--sp-4); }

.city-res-aside,
.city-comm-aside { display: flex; flex-direction: column; gap: var(--sp-3); }

/* Commercial callout banner */
.city-comm-callout { display: flex; gap: var(--sp-2); align-items: flex-start; background: rgba(14,128,67,.04); border: 1px solid rgba(14,128,67,.18); padding: var(--sp-2) var(--sp-3); margin-bottom: var(--sp-3); clip-path: var(--chamfer); }
.city-comm-callout__icon { font-size: 1.5rem; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.city-comm-callout__text { font-size: 0.9rem; color: var(--text); line-height: 1.7; }

/* City local-area — clean responsive coverage grid */
.city-local-area          { padding: var(--section-py) 0; background: var(--bg-alt); }
.city-local-area__wrap    { max-width: 960px; margin: 0 auto; }
.city-local-area__wrap h3 { font-size: 1rem; margin-bottom: var(--sp-2); padding-bottom: var(--sp-1); border-bottom: 2px solid var(--primary); display: inline-block; }
.city-local-area__wrap > .grid-2 > div { background: var(--white); padding: var(--sp-4); clip-path: var(--chamfer); filter: drop-shadow(0 1px 4px rgba(0,0,0,.07)); }
.city-local-area__list    { list-style: none; padding: 0; margin-top: var(--sp-1); display: grid; grid-template-columns: 1fr; gap: 0; }
.city-local-area__list li {
    display: flex; align-items: center; gap: var(--sp-1);
    padding: var(--sp-1) var(--sp-1); font-size: 0.88rem; color: var(--text);
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.city-local-area__list li::before { content: '\f3c5'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--primary); font-size: 0.7rem; flex-shrink: 0; }
.city-local-area__list li:last-child,
.city-local-area__list li:nth-last-child(2):nth-child(odd) { border-bottom: none; }
.city-local-area__text { font-size: 0.9rem; color: var(--text-muted); margin-top: var(--sp-2); line-height: 1.7; }

/* City Nearby */
.city-nearby        { padding: var(--section-py) 0; background: var(--bg-alt); }
.city-nearby__chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* City Chips — chamfer pseudo-element border system (matches .btn-outline) */
.chip {
    position: relative;
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.83rem; background: transparent;
    color: var(--text); padding: var(--sp-1) var(--sp-2); font-weight: 500; min-height: 44px;
    clip-path: var(--chamfer);
    transition: color var(--t-fast);
}
.chip::before,
.chip::after {
    content: '';
    position: absolute;
    pointer-events: none;
    clip-path: var(--chamfer);
}
.chip::before {
    inset: 0;
    background: var(--border);
    z-index: -2;
}
.chip::after {
    inset: 1px;
    background: var(--bg-alt);
    z-index: -1;
    transition: background var(--t-fast);
}
.chip:hover          { color: #fff; }
.chip:hover::before  { background: var(--primary); }
.chip:hover::after   { background: var(--primary); }
.chip:focus-visible  { outline: 3px solid var(--primary); outline-offset: 2px; }
.chip--primary       { color: #fff; font-weight: 600; }
.chip--primary::before { background: var(--primary); }
.chip--primary::after  { background: var(--primary); }
.chip--primary:hover::before { background: var(--primary-hover); }
.chip--primary:hover::after  { background: var(--primary-hover); }

/* City Guides Promo */
.city-guides-promo        { padding: var(--section-py) 0; background: var(--white); }
.city-guides-promo__wrap .section-header { margin-bottom: var(--sp-5); }
.city-guides-promo__title { font-size: clamp(1.15rem, 3vw, 1.65rem); margin-bottom: var(--sp-1); }
.city-guides-promo__sub   { color: var(--text-muted); margin-bottom: 0; font-size: 0.95rem; }
.city-guides-promo__grid  { display: grid; grid-template-columns: 1fr; gap: var(--sp-3); }
.city-guides-promo__more  { margin-top: var(--sp-4); font-size: 0.9rem; }
.city-guides-promo__more a { color: var(--primary); font-weight: 500; }

.city-badges-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-1);
    margin-top: var(--sp-4);
    margin-bottom: var(--sp-4);
}
.city-badge {
    position: relative;
    display: flex; align-items: center; justify-content: center; gap: 6px;
    font-size: 0.82rem; background: transparent; border: none;
    color: var(--text); padding: var(--sp-1) var(--sp-2); font-weight: 600; min-height: 44px;
    text-align: center;
    clip-path: var(--chamfer);
    transition: color var(--t-fast);
}
.city-badge::before,
.city-badge::after {
    content: '';
    position: absolute;
    pointer-events: none;
    clip-path: var(--chamfer);
}
.city-badge::before {
    inset: 0;
    background: var(--border);
    z-index: -2;
}
.city-badge::after {
    inset: 1px;
    background: var(--white);
    z-index: -1;
    transition: background var(--t-fast);
}
.city-badge:hover         { color: #fff; }
.city-badge:hover::before { background: var(--primary); }
.city-badge:hover::after  { background: var(--primary); }

.city-service-aside   { padding: var(--section-py-sm) 0; }



/* ── Service Pages ──────────────────────────────────────────── */
.intro-section   { padding: var(--section-py) 0; }
.intro-section .intro-inner         { max-width: 820px; margin: 0 auto; }
.intro-section .intro-inner--center { max-width: 820px; margin: 0 auto; text-align: center; }
.page-intro-text { font-size: 1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: var(--sp-3); }

/* ── Content Pages ──────────────────────────────────────────── */
.content-section    { padding: var(--section-py) 0; }
.content-section h2 { font-size: 1.35rem; margin: var(--sp-4) 0 var(--sp-2); border-bottom: 1px solid var(--border); padding-bottom: var(--sp-1); }
.content-section h3 { font-size: 1.05rem; margin: var(--sp-3) 0 var(--sp-1); }
.content-section p,
.content-section li { color: var(--text-muted); line-height: 1.85; margin-bottom: var(--sp-2); }
.content-section ul { padding-left: var(--sp-3); list-style: disc; }
.content-section a  { color: var(--primary); }
.styled-list        { list-style: none; padding: 0; margin: 0 0 var(--sp-3); }
.styled-list li {
    padding: var(--sp-1) 0 var(--sp-1) var(--sp-3); position: relative;
    color: var(--text-muted); font-size: 0.95rem; line-height: 1.75;
}
.styled-list li::before { content: 'âœ“'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.info-box { background: rgba(14,128,67,.05); border-left: 4px solid var(--primary); padding: var(--sp-3); margin: var(--sp-3) 0; color: var(--text); font-size: 0.95rem; line-height: 1.75; clip-path: var(--chamfer); }
.info-box strong { color: var(--primary); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: var(--sp-1); justify-content: center; margin-top: var(--sp-3); }
/* .card base is defined in the Card Component section above */
/* Any content-page usage of .card inherits the unified base */
.tag-pill     { background: var(--bg-alt); padding: var(--sp-1) var(--sp-2); font-size: 0.875rem; color: var(--text); border: 1px solid var(--border); line-height: 1.4; }
.tag-pill--lg { padding: var(--sp-1) var(--sp-2); }

/* ── 404 Error Page ─────────────────────────────────────────── */
.error-404-number   { font-family: var(--font-h); font-size: clamp(5rem, 20vw, 10rem); font-weight: 800; color: var(--border-strong); line-height: 1; margin-bottom: var(--sp-2); }
.error-body-text    { font-size: 1rem; color: var(--text-muted); max-width: 520px; margin: 0 auto var(--sp-4); line-height: 1.8; }
.error-cta-group    { display: flex; flex-wrap: wrap; gap: var(--sp-2); justify-content: center; margin-bottom: var(--sp-4); }
.error-services-label { font-size: 0.9rem; color: var(--text-muted); margin-bottom: var(--sp-2); }
.error-services-group { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ── Mobile CTA Bar ─────────────────────────────────────────── */
.mobile-cta-bar {
    display: flex;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 980;
    background: var(--navy);
    border-top: 3px solid var(--primary);
    padding: var(--sp-1) var(--sp-2); gap: 12px;
    align-items: center; justify-content: space-between;
    transform: translateY(100%);
    transition: transform var(--t-base);
    box-shadow: 0 -4px 16px rgba(0,0,0,.25);
}
.mobile-cta-bar.is-visible       { transform: translateY(0); }
.mobile-cta-bar .cta-text        { color: var(--text-on-dark-muted); font-size: 0.82rem; line-height: 1.35; flex: 1; }
.mobile-cta-bar .cta-text strong { color: #fff; display: block; font-size: 0.88rem; }
.mobile-cta-bar .btn             { white-space: nowrap; flex-shrink: 0; font-size: 0.88rem; padding: var(--sp-1) var(--sp-2); }
@media (max-width: 767px) {
    body.cta-bar-visible { padding-bottom: var(--sp-5); }
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,.78);
}

/* Footer CTA Band */
.footer-cta {
    background: var(--primary);
    padding: var(--section-py) 0;
    text-align: center;
}
.footer-cta__inner {
    max-width: 640px; margin: 0 auto;
}
.footer-cta__title {
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    color: #fff; margin-bottom: var(--sp-2);
}
.footer-cta__desc {
    color: rgba(255,255,255,.88);
    font-size: 1rem; line-height: 1.75;
    margin-bottom: var(--sp-4);
}
.footer-cta__actions {
    display: flex; flex-wrap: wrap; gap: var(--sp-2);
    justify-content: center; margin-bottom: var(--sp-2);
}
.footer-cta .btn-primary::before { background: var(--navy); }
.footer-cta .btn-primary         { color: #fff; }
.footer-cta .btn-primary:hover::before { background: var(--navy-mid); }
.footer-cta .btn-ghost-white::before { background: rgba(255,255,255,.45); }
.footer-cta__fine {
    font-size: 0.78rem; color: rgba(255,255,255,.6);
}

/* Footer Main Grid */
.footer-main {
    padding: var(--sp-8) 0 var(--sp-5);
    border-top: 1px solid var(--border-on-dark-soft);
}
.footer-main__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-4);
}
.footer-logo { display: inline-block; margin-bottom: var(--sp-2); }
.footer-logo img { height: 36px; width: auto; display: block; }
.footer-about-text {
    font-size: 0.88rem; color: rgba(255,255,255,.65);
    line-height: 1.75; max-width: 320px;
}

/* Footer Columns */
.footer-col__heading {
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,.45); margin-bottom: var(--sp-2);
    padding-bottom: var(--sp-1);
    border-bottom: 1px solid var(--border-on-dark-soft);
}
.footer-col__list {
    list-style: none; padding: 0; margin: 0;
}
.footer-col__list li {
    margin-bottom: var(--sp-1);
}
.footer-col__list a,
.footer-col__list span {
    color: rgba(255,255,255,.72);
    font-size: 0.88rem;
    transition: color var(--t-fast);
    display: inline-flex; align-items: center;
    min-height: 32px;
}
.footer-col__list a:hover { color: #fff; }
.footer-col__list--contact li {
    display: flex; align-items: center; gap: 10px;
}
.footer-col__list--contact li i {
    color: var(--accent-light); font-size: 0.85rem;
    width: 18px; text-align: center; flex-shrink: 0;
}

.footer-social {
    display: flex; gap: 12px; margin-top: var(--sp-2);
}
.footer-social a {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.08); color: rgba(255,255,255,.6);
    font-size: 1rem; transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--accent); color: #fff; }
.footer-social a[aria-label="BBB Accredited Business"],
.footer-social a[aria-label="BBB Accredited Business"]:hover {
    background: transparent; width: auto; height: auto; padding: 0;
}
.footer-social a[aria-label="BBB Accredited Business"] svg {
    height: 36px; width: auto; display: block;
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid var(--border-on-dark-soft);
    padding: var(--sp-3) 0;
}
.footer-bottom__inner {
    display: flex; flex-wrap: wrap;
    justify-content: space-between;
    align-items: center; gap: var(--sp-1);
    font-size: 0.78rem;
    color: rgba(255,255,255,.38);
}
.footer-bottom__inner p { margin: 0; }

/* ── Scroll Animations ──────────────────────────────────────── */
.js-enabled [data-animate] { opacity: 0; transition: opacity 0.5s ease, transform 0.5s ease; }
.js-enabled [data-animate="fade-up"]    { transform: translateY(22px); }
.js-enabled [data-animate="fade-left"]  { transform: translateX(-22px); }
.js-enabled [data-animate="fade-right"] { transform: translateX(22px); }
.js-enabled [data-animate="scale-up"]   { transform: scale(0.96); }
[data-animate].is-visible { opacity: 1; transform: none; }

/* ── Responsive — min-width: 640px ─────────────────────────── */
@media (min-width: 640px) {
    .container { padding: 0 var(--sp-3); }
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr 1fr; }
    .fleet-grid          { grid-template-columns: repeat(2, 1fr); }
    .grid-auto-300       { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
    .grid-auto-260       { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
    .how-it-works-grid   { grid-template-columns: repeat(2, 1fr); }
    .city-guides-promo__grid { grid-template-columns: repeat(2, 1fr); }
    .guide-promo-grid    { grid-template-columns: repeat(2, 1fr); }
    .guide-related-grid  { grid-template-columns: repeat(2, 1fr); }

    .rating-summary-card { flex-direction: row; text-align: left; }
    .city-badges-wrap    { grid-template-columns: repeat(3, 1fr); }
}

/* ── Responsive — min-width: 768px ─────────────────────────── */
@media (min-width: 768px) {
    :root { --header-h: 76px; }
    .logo-img  { width: 180px; height: 60px; }
    .form-container { padding: var(--sp-5); }
    .contact-layout { grid-template-columns: 1fr 1fr; }
    .section-header { margin-bottom: var(--sp-6); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
    .fleet-grid      { grid-template-columns: repeat(3, 1fr); }
    .how-it-works-grid { grid-template-columns: repeat(3, 1fr); }
    .why-us-grid     { grid-template-columns: repeat(2, 1fr); }
    .city-res-layout { grid-template-columns: 1fr 300px; }
    .city-comm-layout { grid-template-columns: 1fr 260px; }
    .auto-primary,
    .card--highlight-auto { grid-template-columns: 1fr 1fr; padding: var(--sp-5) var(--sp-5); }
    .card--highlight { padding: var(--sp-5) var(--sp-4); }

    .city-badges-wrap { grid-template-columns: repeat(4, 1fr); }
    .city-guides-promo__grid { grid-template-columns: repeat(3, 1fr); }
    .guide-promo-grid { grid-template-columns: repeat(3, 1fr); }
    .service-detail--featured { padding: var(--sp-5) var(--sp-5); }
    /* Hero padding — BEM modifiers */
    .hero--home  { padding: var(--sp-8) 0; }
    .hero--inner { padding: var(--section-py) 0; }
    .hero--city  { padding: var(--sp-8) 0; }
    .mobile-cta-bar  { display: none !important; }
    .trust-badges-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-main__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Responsive — min-width: 1024px ────────────────────────── */
@media (min-width: 1024px) {
    .desktop-nav    { display: flex; flex: 1; justify-content: flex-end; }
    .header-actions { display: flex; flex-shrink: 0; }
    .mobile-nav-toggle { display: none; }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .why-us-grid     { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
    .trust-badges-grid { grid-template-columns: repeat(6, 1fr); }
    .hero-inner      { grid-template-columns: 1fr 1fr; gap: 56px; }
    .hero-visual     { display: block; }
    /* Hero padding — BEM modifiers */
    .hero--home  { padding: var(--sp-12) 0; }
    .hero--inner { padding: var(--section-py) 0; }
    .hero--city  { padding: var(--sp-12) 0; }
    .hero-subtitle   { max-width: 560px; }
    .city-res-layout { grid-template-columns: 1fr 340px; }
    .city-comm-layout { grid-template-columns: 1fr 300px; }
    .guide-body      { display: grid; grid-template-columns: 1fr; }
    .form-container  { padding: var(--sp-6); }
    .section-header  { margin-bottom: var(--sp-8); }

    .city-badges-wrap { grid-template-columns: repeat(6, 1fr); }

    .stat-box        { flex-direction: column; }
    .service-detail--flex { flex-direction: row; }
}

/* ── Responsive — min-width: 1280px ────────────────────────── */
@media (min-width: 1280px) {
    .container { padding: 0 var(--sp-4); }
    .footer-main__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--sp-5); }
}

/* ── Reduced Motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ── Form Hints & Validation States ────────────────────────── */
.form-hint {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 4px;
}
.form-group input:user-invalid,
.form-group textarea:user-invalid {
    border-color: var(--danger);
}
.form-group input:user-valid,
.form-group textarea:user-valid {
    border-color: var(--primary);
}

/* ── Print ──────────────────────────────────────────────────── */
@media print {
    .header, .mobile-cta-bar, .side-nav, .menu-overlay,
    .mobile-nav-toggle, .skip-to-content { display: none; }
    body { padding-top: 0; }
    a    { color: var(--text); }
    * { clip-path: none; filter: none; }
    .hero, .fleet-section,
    .section-cta { background: #fff; color: var(--text); }
    h1, h2, h3 { page-break-after: avoid; }
    p { orphans: 3; widows: 3; }
    .form-container { border: 1px solid #000; page-break-inside: avoid; }
}

