/* =================================================================
   San Jose Bathtub Reglazing Co. — style.css
   Persona: Modern 2024, minimal/tech
   Palette: teal #0F766E · accent #14B8A6 · ink #0B1220 · bg #F8FAFC · border #E2E8F0
   Fonts: Sora (headings) + Inter (body)
   Mobile-first. Vanilla CSS, no framework.
   ================================================================= */

/* ---------- Design tokens ---------- */
:root {
  --teal: #0F766E;
  --teal-dark: #0B5C55;
  --accent: #14B8A6;
  --accent-soft: #CCFBF1;
  --ink: #0B1220;
  --ink-soft: #334155;
  --muted: #64748B;
  --bg: #F8FAFC;
  --surface: #FFFFFF;
  --border: #E2E8F0;
  --border-strong: #CBD5E1;

  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(11, 18, 32, 0.06);
  --shadow: 0 6px 24px rgba(11, 18, 32, 0.08);
  --shadow-lg: 0 18px 48px rgba(11, 18, 32, 0.14);

  --maxw: 1120px;
  --gap: clamp(1rem, 2.5vw, 1.75rem);

  --font-head: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 0.5em;
  letter-spacing: -0.015em;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 6vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.6vw, 2.15rem); }
h3 { font-size: clamp(1.12rem, 2.2vw, 1.35rem); font-weight: 600; }
p { margin: 0 0 1rem; }

ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }
li { margin-bottom: 0.4rem; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }

section { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
section .wrap > h2 { margin-bottom: 0.35em; }

.section-intro { color: var(--muted); max-width: 65ch; margin-bottom: 2rem; font-size: 1.05rem; }

.divider { border: 0; border-top: 1px solid var(--border); margin: 0; }

.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: #fff; padding: 0.75rem 1rem; z-index: 200; border-radius: 0 0 var(--radius) 0;
}
.skip:focus { left: 0; color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease, color .15s ease;
  text-decoration: none;
  line-height: 1.1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--teal-dark); color: #fff; box-shadow: var(--shadow); }

.btn-ghost {
  background: transparent;
  color: var(--teal);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--surface); border-color: var(--teal); color: var(--teal-dark); }

.btn-lg { padding: 1rem 1.75rem; font-size: 1.06rem; }

/* ---------- Image placeholder ---------- */
.ph {
  background:
    repeating-linear-gradient(45deg, #EEF2F6 0 12px, #E6ECF2 12px 24px);
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-height: 160px;
  position: relative;
}
.ph::after {
  content: attr(data-img);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.04em;
  color: #94A3B8; text-transform: uppercase;
  padding: 0.5rem; text-align: center;
}

/* ===================================================================
   HEADER — sticky slim bar; logo left, nav right, teal phone pill
   =================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap {
  display: flex; align-items: center; gap: 1rem;
  min-height: 62px;
}
.brand {
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  color: var(--ink); letter-spacing: -0.02em; line-height: 1.1;
  display: inline-flex; align-items: center; gap: 0.55rem;
  margin-right: auto;
}
.brand:hover { color: var(--teal); text-decoration: none; }
.brand .mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), var(--accent));
  display: inline-grid; place-items: center; color: #fff; font-size: 0.95rem; font-weight: 700;
  flex: none;
}

.nav { display: none; }
.nav a {
  font-family: var(--font-body); font-weight: 500; font-size: 0.95rem;
  color: var(--ink-soft); padding: 0.4rem 0.2rem;
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--teal); border-bottom-color: var(--accent); text-decoration: none; }

.header-cta { display: none; align-items: center; gap: 0.6rem; }
.cta-call {
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  background: var(--teal); color: #fff;
  padding: 0.5rem 1rem; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.cta-call:hover { background: var(--teal-dark); color: #fff; text-decoration: none; }
.cta-book {
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  color: var(--teal); padding: 0.5rem 0.9rem; border: 2px solid var(--border-strong);
  border-radius: 999px;
}
.cta-book:hover { border-color: var(--teal); text-decoration: none; }

.nav-toggle {
  margin-left: auto;
  width: 44px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--radius);
  font-size: 1.3rem; color: var(--ink); cursor: pointer; line-height: 1;
}
.nav-toggle .x { display: none; }
.nav-toggle[aria-expanded="true"] .bars { display: none; }
.nav-toggle[aria-expanded="true"] .x { display: inline; }

/* Mobile drawer */
.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 0.75rem 0 1rem;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 0.7rem clamp(1rem, 4vw, 2rem);
  font-weight: 500; color: var(--ink-soft); border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { background: var(--bg); color: var(--teal); text-decoration: none; }
.mobile-nav .mobile-actions { display: flex; gap: 0.6rem; padding: 0.9rem clamp(1rem, 4vw, 2rem) 0; }
.mobile-nav .mobile-actions .btn { flex: 1; }

/* ===================================================================
   HERO — full-bleed image + dark overlay, large H1, two CTAs
   =================================================================== */
.hero {
  position: relative;
  color: #fff;
  padding-block: clamp(3.5rem, 11vw, 7rem);
  isolation: isolate;
  overflow: hidden;
}
.hero .hero-bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  border: 0; border-radius: 0;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(11, 18, 32, 0.88) 0%, rgba(11, 18, 32, 0.62) 55%, rgba(15, 118, 110, 0.55) 100%);
}
.hero .wrap { position: relative; }
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-head); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(20, 184, 166, 0.18); color: #99F6E4;
  border: 1px solid rgba(20, 184, 166, 0.4);
  padding: 0.35rem 0.8rem; border-radius: 999px; margin-bottom: 1.1rem;
}
.hero h1 { color: #fff; max-width: 16ch; }
.hero .sub {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: #E2E8F0; max-width: 52ch; margin-bottom: 1.6rem;
}
.hero .quick-answer {
  font-size: clamp(1.05rem, 2.1vw, 1.25rem);
  color: #fff; max-width: 56ch; margin: 0 0 1.1rem;
  padding-left: 0.9rem; border-left: 3px solid var(--accent);
}
.hero .quick-answer strong { color: #fff; font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.45); }
.hero-cta .btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }
.hero .hours { margin-top: 1.1rem; font-size: 0.95rem; color: #CBD5E1; }
.hero .hours strong { color: #fff; }

/* ===================================================================
   STATS ROW — signature big numeric row
   =================================================================== */
.stats {
  background: var(--ink);
  color: #fff;
  padding-block: clamp(1.75rem, 4vw, 2.5rem);
}
.stats .stat-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem; text-align: center;
}
.stat .num {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 2.6rem); color: #fff; line-height: 1; display: block;
}
.stat .num .accent { color: var(--accent); }
.stat .label { font-size: 0.85rem; color: #94A3B8; margin-top: 0.4rem; letter-spacing: 0.02em; }

/* ===================================================================
   DIRECT ANSWER
   =================================================================== */
.direct-answer { background: var(--surface); }
.direct-answer .da-card {
  border: 1px solid var(--border);
  border-left: 5px solid var(--teal);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3.5vw, 2.4rem);
  box-shadow: var(--shadow);
  background: var(--surface);
}
.direct-answer h3 {
  margin-top: 1.4rem; color: var(--teal-dark); font-size: 1.18rem;
}
.direct-answer h3:first-of-type { margin-top: 0.6rem; }
.direct-answer p { color: var(--ink-soft); max-width: 70ch; margin-bottom: 0; }
.direct-answer p + h3 { margin-top: 1.5rem; }

/* ===================================================================
   CITABLE FACTS
   =================================================================== */
.citable-facts ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0.9rem;
}
.citable-facts li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem 1rem 2.8rem;
  position: relative; box-shadow: var(--shadow-sm);
  margin: 0; font-size: 1rem; color: var(--ink-soft);
}
.citable-facts li::before {
  content: ""; position: absolute; left: 1rem; top: 1.25rem;
  width: 14px; height: 8px; border-left: 3px solid var(--accent); border-bottom: 3px solid var(--accent);
  transform: rotate(-45deg);
}

/* ===================================================================
   SERVICES grid — soft-shadow cards
   =================================================================== */
.services { background: var(--bg); }
.svc-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr; gap: 1.1rem;
}
.svc-grid li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  margin: 0;
}
.svc-grid li:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--accent); }
.svc-grid h3 { margin: 0 0 0.4rem; }
.svc-grid h3 a { color: var(--ink); }
.svc-grid h3 a:hover { color: var(--teal); text-decoration: none; }
.svc-grid p { margin: 0 0 0.75rem; color: var(--muted); font-size: 0.97rem; }
.svc-grid .svc-price { font-family: var(--font-head); font-weight: 600; color: var(--teal); font-size: 0.95rem; }
.svc-grid .svc-icon {
  width: 42px; height: 42px; border-radius: 10px; margin-bottom: 0.9rem;
  background: var(--accent-soft); color: var(--teal-dark);
  display: grid; place-items: center; font-size: 1.3rem;
}

/* ===================================================================
   BEFORE / AFTER — JS drag slider
   =================================================================== */
.before-after { background: var(--surface); }
.ba-slider {
  position: relative; max-width: 800px; margin-inline: auto;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  aspect-ratio: 4 / 3; user-select: none; touch-action: pan-y;
  background: var(--bg);
}
.ba-slider img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; border-radius: 0; border: 0; pointer-events: none;
}
.ba-slider .ba-after { z-index: 1; }
.ba-slider .ba-before-wrap {
  position: absolute; inset: 0; z-index: 2; overflow: hidden;
  width: 50%; will-change: width;
}
.ba-slider .ba-before-wrap img { width: auto; min-width: 800px; max-width: none; }
.ba-tag {
  position: absolute; bottom: 0.85rem; z-index: 3;
  font-family: var(--font-head); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: #fff;
  background: rgba(11, 18, 32, 0.72); padding: 0.3rem 0.7rem; border-radius: 999px;
}
.ba-tag.before { left: 0.85rem; }
.ba-tag.after { right: 0.85rem; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; z-index: 4;
  left: 50%; width: 3px; background: #fff; transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(11,18,32,0.15);
}
.ba-handle .grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; box-shadow: var(--shadow);
  display: grid; place-items: center; color: var(--teal-dark);
  font-size: 1.1rem; cursor: ew-resize;
}
.ba-range {
  position: absolute; inset: 0; z-index: 5; width: 100%; height: 100%;
  margin: 0; opacity: 0; cursor: ew-resize;
}
.before-after figcaption,
.ba-caption { margin: 1rem auto 0; max-width: 800px; color: var(--muted); font-size: 0.95rem; text-align: center; }

/* ===================================================================
   PRICING table
   =================================================================== */
.pricing { background: var(--bg); }
.price-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--border); }
table.price-table, table.routing-table {
  width: 100%; border-collapse: collapse; background: var(--surface);
  font-size: 1rem; min-width: 460px;
}
table.price-table th, table.routing-table th {
  background: var(--ink); color: #fff; text-align: left;
  font-family: var(--font-head); font-weight: 600; font-size: 0.92rem;
  padding: 0.9rem 1.1rem; letter-spacing: 0.01em;
}
table.price-table td, table.routing-table td {
  padding: 0.85rem 1.1rem; border-top: 1px solid var(--border); color: var(--ink-soft);
}
table.price-table tbody tr:nth-child(even),
table.routing-table tbody tr:nth-child(even) { background: #FBFDFE; }
table.price-table td:last-child {
  font-family: var(--font-head); font-weight: 600; color: var(--teal-dark); white-space: nowrap;
}
.pricing .price-note, .routing .note-line { margin-top: 1rem; color: var(--muted); font-size: 0.97rem; }
.warranty-tag {
  display: inline-block; margin-top: 1rem;
  background: var(--accent-soft); color: var(--teal-dark);
  font-family: var(--font-head); font-weight: 600; font-size: 0.9rem;
  padding: 0.5rem 1rem; border-radius: 999px;
}

/* ===================================================================
   PROCESS — numbered list
   =================================================================== */
.process { background: var(--surface); }
.process ol {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 1rem; counter-reset: step;
}
.process ol li {
  position: relative; counter-increment: step;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.1rem 1.2rem 1.1rem 3.5rem; margin: 0;
}
.process ol li::before {
  content: counter(step);
  position: absolute; left: 0.9rem; top: 1rem;
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--teal); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  display: grid; place-items: center;
}
.process ol li strong { color: var(--ink); font-family: var(--font-head); }

/* ===================================================================
   ROUTING table
   =================================================================== */
.routing { background: var(--bg); }

/* ===================================================================
   AREAS
   =================================================================== */
.areas { background: var(--surface); }
.areas p { max-width: 75ch; }
.area-chips { list-style: none; padding: 0; margin: 1.25rem 0 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.area-chips li {
  margin: 0; font-size: 0.88rem; color: var(--teal-dark);
  background: var(--accent-soft); border-radius: 999px; padding: 0.35rem 0.85rem;
  font-weight: 500;
}

/* ===================================================================
   REVIEWS
   =================================================================== */
.reviews { background: var(--bg); }
.review-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.reviews blockquote {
  margin: 0; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem; box-shadow: var(--shadow-sm);
}
.reviews .stars { color: #F59E0B; font-size: 1rem; letter-spacing: 0.1em; margin-bottom: 0.6rem; }
.reviews blockquote p { font-size: 1.02rem; color: var(--ink-soft); margin-bottom: 0.8rem; }
.reviews cite {
  display: block; font-style: normal; font-family: var(--font-head);
  font-weight: 600; color: var(--ink); font-size: 0.92rem;
}

/* ===================================================================
   FAQ
   =================================================================== */
.faq { background: var(--surface); }
.faq .qa {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 0.85rem; background: var(--surface); overflow: hidden;
}
.faq .qa h3 {
  margin: 0; padding: 1.05rem 1.2rem;
  font-size: 1.08rem; color: var(--ink); background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.faq .qa p { margin: 0; padding: 1rem 1.2rem; color: var(--ink-soft); }

/* ===================================================================
   RELATED
   =================================================================== */
.related { background: var(--bg); }
.related .related-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.5rem; }
.related .related-grid a {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.8rem 1.1rem;
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; color: var(--ink);
}
.related .related-grid a:hover { border-color: var(--teal); color: var(--teal); text-decoration: none; }

/* ===================================================================
   FINAL CTA
   =================================================================== */
.final-cta {
  background: linear-gradient(120deg, var(--teal) 0%, var(--teal-dark) 70%, var(--ink) 100%);
  color: #fff; text-align: center;
}
.final-cta h2 { color: #fff; }
.final-cta p { color: #CCFBF1; max-width: 55ch; margin-inline: auto; }
.final-cta .cta-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 1.4rem; }
.final-cta .btn-primary { background: #fff; color: var(--teal-dark); }
.final-cta .btn-primary:hover { background: var(--accent-soft); color: var(--teal-dark); }
.final-cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.55); }
.final-cta .btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer {
  background: var(--ink); color: #94A3B8;
  padding-block: clamp(2.25rem, 5vw, 3.25rem); font-size: 0.95rem;
}
.site-footer .wrap { display: grid; gap: 1.5rem; }
.site-footer .nap strong { color: #fff; font-family: var(--font-head); font-size: 1.05rem; }
.site-footer .nap { color: #CBD5E1; line-height: 1.7; margin: 0; }
.site-footer a { color: #99F6E4; }
.site-footer a:hover { color: #fff; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 0.4rem 1.25rem; }
.footer-nav a { font-weight: 500; }
.site-footer .copyright { margin: 0; font-size: 0.85rem; color: #64748B; }
.site-footer .lic { color: #94A3B8; margin: 0; }

/* ===================================================================
   QUOTE FORM — persona-styled (contact + compact home)
   =================================================================== */
.quote-form-section { background: var(--bg); }
.quote-form {
  display: grid; gap: 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3.5vw, 2.2rem);
  box-shadow: var(--shadow);
  max-width: 640px;
}
.quote-form .field { display: grid; gap: 0.35rem; }
.quote-form label {
  font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; color: var(--ink);
}
.quote-form label .req { color: var(--teal); }
.quote-form .opt { color: var(--muted); font-weight: 500; font-size: 0.85rem; }
.quote-form input,
.quote-form select,
.quote-form textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 0.7rem 0.85rem;
  width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.quote-form textarea { resize: vertical; min-height: 120px; }
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.18);
}
.quote-form .form-note { margin: 0; color: var(--muted); font-size: 0.9rem; }
.quote-form .form-note a { font-weight: 600; }
.quote-form button[type="submit"] { width: 100%; }

/* Compact home form: name + phone side by side on wider screens */
.quote-form-compact { max-width: 560px; margin-inline: auto; text-align: left; }
.final-cta .quote-form-compact label { color: var(--ink); }
@media (min-width: 560px) {
  .quote-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
}

/* ===================================================================
   BOOKING PANEL — replaces the old quote forms (online scheduling CTA)
   =================================================================== */
.booking-panel {
  display: grid; gap: 1rem; justify-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3.5vw, 2.2rem);
  box-shadow: var(--shadow);
  max-width: 640px;
}
.booking-panel > p:first-child {
  margin: 0; font-family: var(--font-head); font-weight: 600;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem); color: var(--ink);
}
.booking-panel .hours { margin: 0; color: var(--muted); font-size: 0.92rem; }
.booking-panel .hours a { font-weight: 600; }
.contact-nap { margin-top: 1.6rem; }
.contact-nap h3 { font-family: var(--font-head); margin: 0 0 0.4rem; }
.contact-nap .nap { margin: 0; color: var(--muted); line-height: 1.6; }
.contact-nap .nap a { font-weight: 600; }

/* ===================================================================
   STICKY MOBILE CALL-BAR — two equal Call / Book buttons
   =================================================================== */
.mobile-callbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  display: flex;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 24px rgba(11, 18, 32, 0.12);
}
.mobile-callbar a {
  flex: 1 1 0;
  min-height: 56px;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  text-decoration: none; line-height: 1.1;
}
.mobile-callbar a:hover { text-decoration: none; }
.mobile-callbar .cb-call { background: var(--teal); color: #fff; }
.mobile-callbar .cb-call:hover { background: var(--teal-dark); color: #fff; }
.mobile-callbar .cb-book { background: var(--ink); color: #fff; }
.mobile-callbar .cb-book:hover { background: #1E293B; color: #fff; }
@media (min-width: 768px) {
  .mobile-callbar { display: none; }
}
@media (max-width: 767px) {
  body { padding-bottom: 64px; }
}

/* ===================================================================
   BREADCRUMB (inner pages)
   =================================================================== */
.breadcrumb { background: var(--bg); border-bottom: 1px solid var(--border); }
.breadcrumb ol {
  list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem;
  padding: 0.75rem 0; margin: 0; font-size: 0.88rem; color: var(--muted);
}
.breadcrumb li { margin: 0; display: flex; align-items: center; gap: 0.4rem; }
.breadcrumb li + li::before { content: "/"; color: var(--border-strong); }

/* ===================================================================
   RESPONSIVE BREAKPOINTS
   =================================================================== */
@media (min-width: 560px) {
  .stats .stat-grid { grid-template-columns: repeat(4, 1fr); }
  .citable-facts ul { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 760px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .process ol { grid-template-columns: 1fr 1fr; }
  .site-footer .wrap { grid-template-columns: 1.4fr 1fr; align-items: start; }
  .site-footer .footer-cols-span { grid-column: 1 / -1; }
}

@media (min-width: 980px) {
  .nav { display: flex; gap: 1.1rem; align-items: center; }
  .header-cta { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .review-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
/* Brand logo mark asset */
.brand-logo-mark{width:44px;height:44px;object-fit:contain;display:inline-block;vertical-align:middle;flex:0 0 44px;background:transparent!important;border:0!important;border-radius:0!important;box-shadow:none!important;padding:0!important;color:transparent!important;margin-right:.55rem;}
.footer-brand .brand-logo-mark{width:30px;height:30px;flex-basis:30px;margin-right:.35rem;}
@media (max-width:640px){.brand-logo-mark{width:38px;height:38px;flex-basis:38px;margin-right:.45rem;}}
