/* Elite Garage Experts — premium local-service theme */
:root {
  --navy: #0a1a2f;
  --navy-2: #102a4a;
  --navy-3: #173a63;
  --ink: #1a2433;
  --muted: #5b6676;
  --line: #e3e8ee;
  --bg: #ffffff;
  --bg-soft: #f3f6f9;
  --accent: #ff8a00;
  --accent-2: #ffb13b;
  --accent-dark: #d96f00;
  --green: #22c55e;
  --star: #fbbc04;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(10, 26, 47, .12);
  --shadow-lg: 0 24px 60px rgba(10, 26, 47, .22);
  --max: 1200px;
  --head: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px; line-height: 1.7; color: var(--ink); background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
svg { display: block; }
a { color: var(--navy-3); }
a:hover { color: var(--accent-dark); }
h1, h2, h3 { font-family: var(--head); line-height: 1.18; color: var(--navy); margin: 0 0 .55em; font-weight: 700; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); letter-spacing: -.015em; }
h3 { font-size: 1.22rem; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.2em; }
li { margin-bottom: .4em; }
.hl { color: var(--accent); }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.skip { position: absolute; left: -999px; top: 0; background: var(--accent); color: #111; padding: 8px 14px; z-index: 100; }
.skip:focus { left: 10px; top: 10px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .95em 1.5em; border-radius: 999px; font-family: var(--head); font-weight: 700; text-decoration: none;
  border: 2px solid transparent; transition: transform .15s, box-shadow .15s, background .15s, color .15s;
  font-size: 1rem; line-height: 1.15; cursor: pointer; white-space: nowrap;
}
.btn svg { width: 1.2em; height: 1.2em; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(180deg, var(--accent-2), var(--accent)); color: #1b1000; box-shadow: 0 8px 22px rgba(255,138,0,.38); }
.btn-primary:hover { color: #1b1000; box-shadow: 0 12px 28px rgba(255,138,0,.5); }
.btn-ghost { border-color: rgba(255,255,255,.6); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--navy); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-3); color: #fff; }
.btn-outline { border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-lg { font-size: 1.15rem; padding: 1.05em 1.8em; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- 24/7 badge ---------- */
.badge-247 {
  display: inline-flex; align-items: center; gap: 10px; padding: 7px 16px 7px 12px; border-radius: 999px;
  background: rgba(34,197,94,.14); border: 1px solid rgba(34,197,94,.45); color: #d7ffe6;
  font-family: var(--head); font-weight: 600; font-size: .9rem; letter-spacing: .02em; margin-bottom: 18px;
}
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(34,197,94,.7); animation: pulse 1.8s infinite; flex: none; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,.7); } 70% { box-shadow: 0 0 0 10px rgba(34,197,94,0); } 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); } }
@media (prefers-reduced-motion: reduce) { .dot { animation: none; } .btn:hover { transform: none; } }

/* ---------- Top bar + header ---------- */
.topbar { background: #06111f; color: #c6d2e0; font-size: .88rem; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-top: 8px; padding-bottom: 8px; }
.topbar .live { display: inline-flex; align-items: center; gap: 8px; }
.topbar .live .dot { width: 8px; height: 8px; }
.topbar a { color: #fff; font-weight: 700; text-decoration: none; }

.site-header { background: rgba(255,255,255,.97); backdrop-filter: saturate(1.4) blur(8px); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 78px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--navy); font-family: var(--head); font-weight: 800; font-size: 1.18rem; line-height: 1.1; }
.brand svg { width: 44px; height: 44px; }
.brand small { display: block; font-weight: 600; font-size: .7rem; color: var(--accent-dark); letter-spacing: .12em; text-transform: uppercase; margin-top: 3px; }

.nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 2px; }
.nav li { margin: 0; }
.nav a { display: block; padding: 10px 11px; text-decoration: none; color: var(--ink); font-family: var(--head); font-weight: 600; border-radius: 8px; font-size: .93rem; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--accent-dark); }
.nav .nav-call { margin-left: 10px; display: flex; align-items: center; gap: 10px; background: var(--navy); color: #fff; padding: 9px 18px 9px 10px; border-radius: 999px; line-height: 1.1; }
.nav .nav-call:hover { background: var(--navy-3); color: #fff; }
.nav .nav-call .ic { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(180deg, var(--accent-2), var(--accent)); display: grid; place-items: center; color: #1b1000; }
.nav .nav-call .ic svg { width: 18px; height: 18px; }
.nav .nav-call small { display: block; font-size: .68rem; color: #9fb3c9; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }
.nav .nav-call strong { font-size: 1.02rem; }
.nav-toggle { display: none; background: none; border: 2px solid var(--line); border-radius: 10px; padding: 9px 11px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 4px 0; }

@media (max-width: 1080px) {
  .nav-toggle { display: block; }
  .js .nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .js .nav.open { display: block; }
  .nav ul { flex-direction: column; align-items: stretch; padding: 8px 20px 20px; }
  .nav .nav-call { margin: 10px 0 0; justify-content: center; }
  html:not(.js) .nav ul { flex-wrap: wrap; flex-direction: row; }
}

/* ---------- Hero (photo) ---------- */
.hero { position: relative; color: #e6edf6; background: var(--navy); overflow: hidden; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(6,17,31,.93) 0%, rgba(10,26,47,.8) 40%, rgba(10,26,47,.4) 72%, rgba(10,26,47,.2) 100%); }
.hero-home h1 { font-size: clamp(2.1rem, 4.4vw, 3.3rem); }
.hero h1 { color: #fff; }
.hero .lead { font-size: 1.2rem; max-width: 36em; color: #d3deea; }
.hero-home { padding: 80px 0 90px; }
.hero-grid { display: grid; grid-template-columns: 1.35fr .9fr; gap: 50px; align-items: center; }
.checks { list-style: none; padding: 0; margin: 22px 0 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; }
.checks li { position: relative; padding-left: 30px; margin: 0; font-weight: 500; }
.checks li::before { content: ""; position: absolute; left: 0; top: .3em; width: 20px; height: 20px; border-radius: 50%; background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%231b1000' stroke-width='3.5' d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center/13px no-repeat; }
.hero-rating { display: flex; align-items: center; gap: 10px; margin-top: 26px; font-size: .95rem; color: #c6d2e0; }
.stars { color: var(--star); letter-spacing: 2px; font-size: 1.05rem; }

.call-card { background: #fff; color: var(--ink); border-radius: 20px; padding: 30px; box-shadow: var(--shadow-lg); border-top: 6px solid var(--accent); }
.call-card h2 { font-size: 1.45rem; margin-bottom: .3em; }
.call-card .phone-xl { display: block; font-family: var(--head); font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.2rem); color: var(--navy); text-decoration: none; margin: 10px 0 18px; letter-spacing: -.01em; }
.call-card .btn { width: 100%; margin-bottom: 10px; }
.call-card ul { list-style: none; padding: 16px 0 0; margin: 10px 0 0; border-top: 1px solid var(--line); font-size: .95rem; color: var(--muted); }
.call-card li { display: flex; gap: 10px; align-items: center; margin-bottom: 6px; }
.call-card li svg { width: 18px; height: 18px; color: var(--green); flex: none; }
.open-now { display: inline-flex; align-items: center; gap: 8px; font-family: var(--head); font-weight: 700; color: #15803d; font-size: .88rem; text-transform: uppercase; letter-spacing: .06em; }

.page-hero { padding: 64px 0 70px; }
.page-hero .lead { font-size: 1.12rem; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-home { padding: 52px 0 60px; }
  .hero::before { background: linear-gradient(180deg, rgba(6,17,31,.82) 0%, rgba(10,26,47,.62) 45%, rgba(10,26,47,.85) 100%); }
  .checks { grid-template-columns: 1fr; }
}

/* Breadcrumbs */
.crumbs { font-size: .88rem; color: #aebccb; margin-bottom: 16px; }
.crumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs li { margin: 0; }
.crumbs li + li::before { content: "›"; margin-right: 6px; color: #7f91a5; }
.crumbs a { color: #d5deea; }

/* ---------- Trust strip ---------- */
.trust { background: #fff; border-bottom: 1px solid var(--line); position: relative; z-index: 2; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 24px 18px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item .ti { width: 50px; height: 50px; border-radius: 12px; background: #fff4e5; color: var(--accent-dark); display: grid; place-items: center; flex: none; }
.trust-item .ti svg { width: 26px; height: 26px; }
.trust-item strong { display: block; font-family: var(--head); color: var(--navy); font-size: 1.02rem; line-height: 1.2; }
.trust-item span { font-size: .88rem; color: var(--muted); line-height: 1.3; display: block; }
@media (max-width: 900px) { .trust-grid { grid-template-columns: 1fr 1fr; } .trust-item:nth-child(2) { border-right: 0; } .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); } }
@media (max-width: 480px) { .trust-item { padding: 18px 10px; gap: 10px; } .trust-item .ti { width: 40px; height: 40px; } }

/* ---------- Sections ---------- */
section.block { padding: 84px 0; }
section.alt { background: var(--bg-soft); }
section.dark { background: var(--navy); color: #cfdae6; }
section.dark h2, section.dark h3 { color: #fff; }
.section-head { max-width: 780px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
section.dark .section-head p { color: #b5c4d5; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--head); font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 10px; }
.eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 3px; background: var(--accent); }
.hero .eyebrow, section.dark .eyebrow { color: var(--accent-2); }

.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; } }

/* Service cards with photos */
.svc { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.svc-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #dfe6ee; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.svc:hover .svc-img img { transform: scale(1.05); }
.svc-tag { position: absolute; left: 14px; top: 14px; background: var(--navy); color: #fff; font-family: var(--head); font-size: .74rem; font-weight: 700; padding: 5px 11px; border-radius: 999px; letter-spacing: .04em; }
.svc-tag.hot { background: #dc2626; }
.svc-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.svc-body h3 a { text-decoration: none; color: var(--navy); }
.svc-body h3 a:hover { color: var(--accent-dark); }
.svc-body p { color: var(--muted); font-size: .98rem; }
.svc-links { margin-top: auto; display: flex; justify-content: space-between; align-items: center; gap: 10px; padding-top: 12px; border-top: 1px solid var(--line); }
.svc-links a { font-family: var(--head); font-weight: 700; text-decoration: none; font-size: .95rem; }
.svc-links .call { color: var(--accent-dark); }

/* Split image/text */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.rev > :first-child { order: 2; }
.split-img { position: relative; }
.split-img img { border-radius: 18px; box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; }
.float-card { position: absolute; right: -18px; bottom: -22px; background: var(--navy); color: #fff; border-radius: 16px; padding: 18px 22px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px; }
.float-card b { font-family: var(--head); font-size: 2.1rem; color: var(--accent-2); line-height: 1; }
.float-card span { font-size: .9rem; line-height: 1.3; color: #cfdae6; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 40px; } .split.rev > :first-child { order: 0; } .float-card { right: 12px; bottom: -18px; } }

.feature-list { list-style: none; padding: 0; margin: 20px 0 28px; display: grid; gap: 16px; }
.feature-list li { display: flex; gap: 14px; margin: 0; }
.feature-list .fi { width: 42px; height: 42px; border-radius: 10px; background: #fff4e5; color: var(--accent-dark); display: grid; place-items: center; flex: none; }
.feature-list .fi svg { width: 22px; height: 22px; }
.feature-list strong { display: block; font-family: var(--head); color: var(--navy); }
.feature-list span { color: var(--muted); font-size: .96rem; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 10px; }
.stat { text-align: center; padding: 26px 12px; border-radius: var(--radius); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); }
.stat b { display: block; font-family: var(--head); font-size: 2.3rem; color: var(--accent-2); line-height: 1.1; }
.stat span { font-size: .92rem; color: #b5c4d5; }
@media (max-width: 760px) { .stats { grid-template-columns: 1fr 1fr; } }

/* 24/7 emergency band with photo */
.night { position: relative; isolation: isolate; color: #dbe5f0; padding: 96px 0; overflow: hidden; }
.night > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.night::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(4,10,20,.92) 0%, rgba(6,17,31,.72) 55%, rgba(6,17,31,.35) 100%); }
.night h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); }
.night .big-phone { display: inline-block; font-family: var(--head); font-weight: 800; font-size: clamp(2rem, 5vw, 3.2rem); color: var(--accent-2); text-decoration: none; margin: 6px 0 22px; }
.night ul { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 26px; max-width: 640px; margin: 0 0 30px; }
.night li { margin: 0; padding-left: 26px; position: relative; }
.night li::before { content: ""; position: absolute; left: 0; top: .55em; width: 12px; height: 12px; border-radius: 3px; background: var(--accent); transform: rotate(45deg); }
@media (max-width: 620px) { .night ul { grid-template-columns: 1fr; } }

/* Steps */
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; display: grid; gap: 22px; grid-template-columns: repeat(4, 1fr); }
.steps li { counter-increment: step; background: #fff; border-radius: var(--radius); padding: 28px 24px; margin: 0; box-shadow: var(--shadow); position: relative; }
.steps li::before { content: "0" counter(step); display: block; font-family: var(--head); font-weight: 800; font-size: 2.4rem; color: var(--accent); line-height: 1; margin-bottom: 14px; }
.steps strong { display: block; font-family: var(--head); color: var(--navy); font-size: 1.1rem; margin-bottom: 6px; }
.steps span { color: var(--muted); font-size: .96rem; }
@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 14px; }
.gallery figure { margin: 0; position: relative; overflow: hidden; border-radius: 14px; background: #dfe6ee; }
.gallery figure.wide { grid-column: span 2; }
.gallery figure.tall { grid-row: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 14px 12px; background: linear-gradient(transparent, rgba(6,17,31,.85)); color: #fff; font-family: var(--head); font-weight: 600; font-size: .92rem; }
@media (max-width: 860px) { .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; } }
@media (max-width: 480px) { .gallery figure.wide { grid-column: span 2; } .gallery figure.tall { grid-row: span 1; } }

/* Reviews */
.review { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.review blockquote { margin: 12px 0 18px; font-size: 1.03rem; color: var(--ink); }
.review footer { margin-top: auto; display: flex; align-items: center; gap: 12px; font-size: .92rem; color: var(--muted); }
.review .av { width: 42px; height: 42px; border-radius: 50%; background: var(--navy-3); color: #fff; display: grid; place-items: center; font-family: var(--head); font-weight: 700; }
.review footer strong { color: var(--navy); display: block; }
.g-badge { display: inline-flex; align-items: center; gap: 12px; background: #fff; border-radius: 999px; padding: 10px 20px; box-shadow: var(--shadow); font-weight: 600; color: var(--navy); text-decoration: none; }
.g-badge b { font-family: var(--head); font-size: 1.3rem; }

/* Towns */
.towns { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.towns li { margin: 0; }
.towns a, .towns span { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; font-weight: 600; text-decoration: none; color: var(--navy); transition: border-color .15s, box-shadow .15s; }
.towns a:hover { border-color: var(--accent); box-shadow: var(--shadow); color: var(--navy); }
.towns svg { width: 18px; height: 18px; color: var(--accent-dark); flex: none; }
@media (max-width: 800px) { .towns { grid-template-columns: repeat(2, 1fr); } }

.area-list { display: grid; gap: 16px; }
.area-list article { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: 12px; padding: 22px 24px; scroll-margin-top: 110px; }
.area-list h2, .area-list h3 { font-size: 1.25rem; margin-bottom: .35em; }
.area-list p { margin: 0; color: var(--muted); }

/* Content layout (inner pages) */
.two-col { display: grid; grid-template-columns: 1.55fr 1fr; gap: 54px; align-items: start; }
@media (max-width: 960px) { .two-col { grid-template-columns: 1fr; } }
.prose h2 { margin-top: 1.5em; }
.prose > :first-child { margin-top: 0; }
.prose h3 { margin-top: 1.3em; }
.prose figure { margin: 28px 0; }
.prose figure img { border-radius: 16px; box-shadow: var(--shadow); width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.prose figcaption { font-size: .88rem; color: var(--muted); margin-top: 8px; }
.prose ul li::marker { color: var(--accent-dark); }
.callout { background: #fff8ee; border: 1px solid #ffd9a8; border-left: 5px solid var(--accent); border-radius: 12px; padding: 18px 22px; margin: 24px 0; }
.callout p:last-child { margin: 0; }
.inline-cta { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; background: var(--navy); color: #cfdae6; border-radius: 16px; padding: 24px 26px; margin: 34px 0; }
.inline-cta strong { color: #fff; font-family: var(--head); font-size: 1.2rem; display: block; }

.sidebar { position: sticky; top: 100px; display: grid; gap: 20px; }
.side-card { background: var(--navy); color: #cfdae6; border-radius: 18px; padding: 28px; box-shadow: var(--shadow-lg); overflow: hidden; }
.side-card h2, .side-card h3 { color: #fff; }
.side-card .phone-big { display: block; font-family: var(--head); font-size: 1.85rem; font-weight: 800; color: var(--accent-2); text-decoration: none; margin: 4px 0 18px; }
.side-card .btn { width: 100%; margin-bottom: 10px; }
.side-card img { border-radius: 12px; margin: -6px 0 18px; aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.side-links { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px 24px; }
.side-links h3 { font-size: 1.05rem; }
.side-links ul { list-style: none; padding: 0; margin: 0; }
.side-links li { border-bottom: 1px solid var(--line); margin: 0; }
.side-links li:last-child { border: 0; }
.side-links a { display: flex; justify-content: space-between; padding: 10px 0; text-decoration: none; font-weight: 600; color: var(--navy); }
.side-links a:hover { color: var(--accent-dark); }

/* FAQ */
.faq details { border: 1px solid var(--line); border-radius: 12px; background: #fff; margin-bottom: 12px; box-shadow: 0 2px 6px rgba(10,26,47,.04); }
.faq summary { cursor: pointer; padding: 20px 56px 20px 22px; font-family: var(--head); font-weight: 600; color: var(--navy); list-style: none; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; border-radius: 50%; background: #fff4e5; color: var(--accent-dark); display: grid; place-items: center; font-size: 1.2rem; line-height: 28px; text-align: center; }
.faq details[open] summary::after { content: "–"; }
.faq details > div { padding: 0 22px 18px; color: var(--muted); }

/* Contact cards */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.contact-card { background: #fff; border-radius: 18px; padding: 32px 28px; box-shadow: var(--shadow); text-align: center; display: flex; flex-direction: column; align-items: center; }
.contact-card .ci { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(180deg, var(--accent-2), var(--accent)); color: #1b1000; display: grid; place-items: center; margin-bottom: 16px; }
.contact-card .ci svg { width: 30px; height: 30px; }
.contact-card p { color: var(--muted); }
.contact-card .btn { margin-top: auto; }
@media (max-width: 860px) { .contact-cards { grid-template-columns: 1fr; } }
.map-wrap iframe { width: 100%; border: 0; border-radius: 18px; box-shadow: var(--shadow); display: block; }

/* CTA band */
.cta-band { background: linear-gradient(110deg, var(--accent-2), var(--accent) 60%, #ff7300); color: #1b1000; padding: 50px 0; }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-band h2 { color: #1b1000; margin: 0 0 .2em; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.cta-band p { margin: 0; font-weight: 500; }
.cta-band .btn-dark { box-shadow: 0 10px 24px rgba(0,0,0,.25); }
.cta-band .btn-outline { border-color: #1b1000; color: #1b1000; }
.cta-band .btn-outline:hover { background: #1b1000; color: #fff; }

/* Footer */
.site-footer { background: #06111f; color: #9fb0c3; padding: 64px 0 96px; font-size: .95rem; }
.site-footer h2 { color: #fff; font-size: 1.05rem; margin-bottom: 16px; }
.site-footer a { color: #d0dbe7; text-decoration: none; }
.site-footer a:hover { color: var(--accent-2); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer-phone { display: inline-block; font-family: var(--head); font-size: 1.5rem; font-weight: 800; color: var(--accent-2) !important; margin: 6px 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .86rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* Sticky mobile call bar */
.callbar { display: none; }
@media (max-width: 760px) {
  .callbar { display: grid; grid-template-columns: 1.4fr 1fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; box-shadow: 0 -6px 20px rgba(0,0,0,.2); }
  .callbar a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 8px; font-family: var(--head); font-weight: 700; text-decoration: none; line-height: 1.1; }
  .callbar small { display: block; font-size: .68rem; font-weight: 600; opacity: .8; letter-spacing: .05em; text-transform: uppercase; }
  .callbar svg { width: 22px; height: 22px; flex: none; }
  .callbar .call { background: linear-gradient(180deg, var(--accent-2), var(--accent)); color: #1b1000; }
  .callbar .text { background: var(--navy); color: #fff; }
  .topbar .hide-sm { display: none; }
}

/* Gallery inside article content */
.prose .gallery figure { margin: 0; }
.prose .gallery img { aspect-ratio: auto; height: 100%; border-radius: 0; box-shadow: none; }
.prose .gallery figcaption { color: #fff; margin: 0; }

/* Town cards (service areas hub) */
.town-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.town-card { display: flex; flex-direction: column; gap: 4px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 20px 22px; text-decoration: none; color: var(--muted); transition: border-color .15s, box-shadow .15s, transform .15s; }
.town-card strong { font-family: var(--head); font-size: 1.15rem; color: var(--navy); }
.town-card span { font-size: .92rem; line-height: 1.45; }
.town-card em { font-style: normal; font-family: var(--head); font-weight: 700; font-size: .92rem; color: var(--accent-dark); margin-top: 6px; }
.town-card:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-2px); color: var(--muted); }
@media (max-width: 900px) { .town-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .town-grid { grid-template-columns: 1fr; } }
.footer-grid ul.cols-2 { columns: 2; column-gap: 18px; }
