/* =====================================================================
   Redwood City Tub Refinishing — style.css
   Persona #10: Upscale modern 2022
   Palette: slate #334155 · copper #B87333 · white · bg #F8FAFC · ink #0F172A
   Fonts: Spectral (serif headings) + Manrope (body)
   Signature: transparent scroll-aware header, copper accents on slate,
              refined spacing, thin copper buttons, JS reveal slider.
   Mobile-first. Single file. No frameworks.
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --slate: #334155;
  --slate-dark: #283241;
  --copper: #B87333;
  --copper-dark: #9c5f27;
  --copper-soft: #e9d3bb;
  --ink: #0F172A;
  --bg: #F8FAFC;
  --bg-alt: #eef2f7;
  --white: #ffffff;
  --line: #dde3ec;
  --muted: #5b667a;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 4px 12px rgba(15, 23, 42, .05);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, .10);
  --radius: 6px;
  --maxw: 1140px;
  --gut: clamp(1.1rem, 4vw, 2rem);
  --serif: "Spectral", Georgia, "Times New Roman", serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --header-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--copper-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.18;
  color: var(--ink);
  margin: 0 0 .55em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.1rem, 6vw, 3.4rem); }
h2 { font-size: clamp(1.55rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.18rem, 2.6vw, 1.4rem); }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.3em; }
li { margin-bottom: .4em; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
section { padding-block: clamp(2.6rem, 6vw, 4.6rem); }
.section-alt { background: var(--bg-alt); }
.section-slate { background: var(--slate); color: #e8edf4; }
.section-slate h2, .section-slate h3 { color: #fff; }
.section-slate a { color: var(--copper-soft); }
.lead { font-size: 1.18rem; color: var(--muted); max-width: 62ch; }
.quick-answer {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  line-height: 1.4;
  max-width: 56ch;
  margin-bottom: 1.1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--copper);
}
.hero .quick-answer { color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.28); }
.page-head .quick-answer { color: var(--ink); }
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--copper-dark);
  margin-bottom: .8rem;
}
.section-slate .eyebrow { color: var(--copper-soft); }

/* ---------- Skip link ---------- */
.skip {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 var(--radius) 0;
}
.skip:focus { left: 0; }

/* ---------- Buttons (thin copper outline + solid) ---------- */
.btn {
  --btn-pad-y: .82rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--sans); font-weight: 700; font-size: .98rem;
  letter-spacing: .01em;
  padding: var(--btn-pad-y) 1.5rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .12s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--copper); color: #fff; border-color: var(--copper); }
.btn-primary:hover { background: var(--copper-dark); border-color: var(--copper-dark); color: #fff; }
.btn-ghost { background: transparent; color: var(--copper-dark); border-color: var(--copper); }
.btn-ghost:hover { background: var(--copper); color: #fff; }
.section-slate .btn-ghost { color: #fff; border-color: var(--copper-soft); }
.section-slate .btn-ghost:hover { background: var(--copper); border-color: var(--copper); }

/* ---------- Header (transparent over hero → solid on scroll) ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header .wrap {
  display: flex; align-items: center; gap: 1rem; width: 100%;
}
.brand {
  font-family: var(--serif); font-weight: 700; font-size: 1.18rem;
  color: #fff; text-decoration: none; line-height: 1.1; margin-right: auto;
  letter-spacing: -.01em;
}
.brand span { color: var(--copper-soft); display: block; font-family: var(--sans); font-weight: 600; font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; }
.site-header.solid {
  background: rgba(255,255,255,.97);
  -webkit-backdrop-filter: saturate(140%) blur(6px);
  backdrop-filter: saturate(140%) blur(6px);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line);
}
.site-header.solid .brand { color: var(--ink); }
.site-header.solid .brand span { color: var(--copper-dark); }

.nav { display: none; }
.nav a {
  font-family: var(--sans); font-weight: 600; font-size: .96rem;
  color: #f1f5f9; text-decoration: none; padding: .4rem .2rem;
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: #fff; border-bottom-color: var(--copper); text-decoration: none; }
.site-header.solid .nav a { color: var(--slate); }
.site-header.solid .nav a:hover { color: var(--ink); }

.cta-call {
  font-family: var(--sans); font-weight: 700; font-size: .95rem;
  color: #fff; text-decoration: none; white-space: nowrap;
}
.cta-call:hover { color: var(--copper-soft); text-decoration: none; }
.site-header.solid .cta-call { color: var(--ink); }
.cta-book {
  display: none;
  font-family: var(--sans); font-weight: 700; font-size: .92rem;
  color: #fff; background: var(--copper); padding: .55rem 1.05rem; border-radius: var(--radius);
  text-decoration: none; border: 1.5px solid var(--copper);
}
.cta-book:hover { background: var(--copper-dark); border-color: var(--copper-dark); text-decoration: none; }

/* mobile nav toggle */
.nav-toggle {
  margin-left: auto;
  width: 44px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1.5px solid rgba(255,255,255,.55);
  border-radius: var(--radius); color: #fff; font-size: 1.25rem; cursor: pointer;
}
.site-header.solid .nav-toggle { border-color: var(--line); color: var(--ink); }

/* mobile drawer */
.mobile-nav {
  position: fixed; inset: var(--header-h) 0 auto 0; z-index: 99;
  background: var(--white); border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: none; flex-direction: column; padding: .6rem var(--gut) 1.2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--sans); font-weight: 600; color: var(--slate);
  padding: .8rem .2rem; border-bottom: 1px solid var(--line); text-decoration: none;
}
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav .btn { margin-top: .9rem; }

/* ---------- Hero (large full image, transparent header over it) ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 92vh, 820px);
  display: flex; align-items: flex-end;
  color: #fff; padding-block: 0;
  background:
    linear-gradient(180deg, rgba(15,23,42,.30) 0%, rgba(15,23,42,.18) 35%, rgba(15,23,42,.78) 100%),
    linear-gradient(115deg, var(--slate) 0%, var(--slate-dark) 55%, #1c2533 100%);
  overflow: hidden;
}
.hero .hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; opacity: .92;
}
.hero .wrap { position: relative; z-index: 2; padding-bottom: clamp(2.6rem, 7vw, 4.4rem); padding-top: calc(var(--header-h) + 2rem); }
.hero h1 { color: #fff; max-width: 16ch; text-shadow: 0 2px 18px rgba(0,0,0,.28); }
.hero .sub { font-size: clamp(1.05rem, 2.4vw, 1.3rem); max-width: 54ch; color: #e8edf4; margin-bottom: 1.6rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 1rem; }
.hero .hours { font-weight: 600; color: #e8edf4; font-size: .98rem; }
.hero .hours::before { content: "●"; color: var(--copper-soft); margin-right: .5rem; font-size: .7em; }
.hero-rule { width: 64px; height: 3px; background: var(--copper); margin-bottom: 1.4rem; }

/* ---------- Direct answer ---------- */
.direct-answer { background: var(--white); }
.direct-answer .wrap { max-width: 920px; }
.direct-answer h3 {
  color: var(--slate); margin-top: 1.7rem; margin-bottom: .35rem;
  position: relative; padding-left: 1.1rem;
}
.direct-answer h3::before {
  content: ""; position: absolute; left: 0; top: .28em; width: 4px; height: 1.05em;
  background: var(--copper); border-radius: 2px;
}
.direct-answer p { font-size: 1.1rem; max-width: 68ch; }
.direct-answer p a { font-weight: 700; }

/* ---------- Citable facts ---------- */
.citable-facts .wrap { max-width: 960px; }
.citable-facts ul { list-style: none; padding: 0; display: grid; gap: .9rem; }
.citable-facts li {
  background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--copper);
  border-radius: var(--radius); padding: 1rem 1.15rem; box-shadow: var(--shadow-sm);
  font-size: 1.02rem; margin: 0;
}
.citable-facts li strong { color: var(--copper-dark); }

/* ---------- Services grid ---------- */
.services .svc-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 1.1rem; grid-template-columns: 1fr;
}
.svc-grid li {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.4rem; box-shadow: var(--shadow-sm); margin: 0;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.svc-grid li:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--copper-soft); }
.svc-grid h3 { margin-bottom: .4rem; }
.svc-grid h3 a { color: var(--ink); text-decoration: none; }
.svc-grid h3 a:hover { color: var(--copper-dark); }
.svc-grid p { margin: 0; color: var(--muted); font-size: .99rem; }
.svc-price { display: block; margin-top: .7rem; font-weight: 700; color: var(--slate); font-size: .92rem; }

/* ---------- Before / After REVEAL SLIDER (persona signature) ---------- */
.before-after .wrap { max-width: 980px; }
.ba-slider {
  position: relative; width: 100%; aspect-ratio: 4 / 3;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md);
  border: 1px solid var(--line); user-select: none; touch-action: pan-y;
  background: var(--bg-alt);
}
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-after { z-index: 1; }
.ba-before-wrap {
  position: absolute; inset: 0; z-index: 2; width: 50%; overflow: hidden;
  border-right: 2px solid var(--copper);
}
.ba-before-wrap img { width: auto; min-width: 100%; }
.ba-slider .ba-tag {
  position: absolute; top: .8rem; z-index: 3;
  font-family: var(--sans); font-weight: 700; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(15,23,42,.78); color: #fff; padding: .3rem .65rem; border-radius: 4px;
}
.ba-tag-before { left: .8rem; }
.ba-tag-after { right: .8rem; background: rgba(184,115,51,.92); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; z-index: 4;
  width: 44px; transform: translateX(-50%); cursor: ew-resize;
  display: flex; align-items: center; justify-content: center; background: transparent; border: 0;
}
.ba-handle::before { content: ""; position: absolute; top: 0; bottom: 0; width: 2px; background: var(--copper); }
.ba-handle span {
  position: relative; z-index: 1; width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: 2px solid var(--copper); box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center; color: var(--copper-dark);
  font-size: 1.05rem; font-weight: 700;
}
.ba-range {
  position: absolute; inset: 0; z-index: 5; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; margin: 0;
}
.ba-caption { margin-top: 1rem; color: var(--muted); font-size: .96rem; font-style: italic; }

/* fallback static pair (no-JS / other components) */
.ba-pair { display: grid; gap: 1rem; grid-template-columns: 1fr; margin: 0; }
.ba-pair figcaption { grid-column: 1 / -1; color: var(--muted); font-size: .95rem; font-style: italic; }

/* ---------- Pricing table ---------- */
.pricing .wrap { max-width: 860px; }
.price-table, .routing table {
  width: 100%; border-collapse: collapse; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); margin-bottom: 1.2rem; font-size: 1rem;
}
.price-table thead th, .routing thead th {
  background: var(--slate); color: #fff; text-align: left; font-family: var(--sans);
  font-weight: 700; font-size: .88rem; letter-spacing: .04em; padding: .85rem 1rem;
}
.price-table td, .routing td { padding: .85rem 1rem; border-top: 1px solid var(--line); vertical-align: top; }
.price-table tbody tr:nth-child(even), .routing tbody tr:nth-child(even) { background: #fbfcfe; }
.price-table td:last-child { text-align: right; font-weight: 700; color: var(--copper-dark); white-space: nowrap; }
.warranty-note {
  background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--copper);
  border-radius: var(--radius); padding: 1rem 1.15rem; font-size: .98rem; color: var(--muted);
}

/* ---------- Process (numbered) ---------- */
.process .wrap { max-width: 900px; }
.process ol { list-style: none; counter-reset: step; padding: 0; display: grid; gap: 1rem; }
.process li {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.15rem 1.2rem 1.15rem 3.6rem; box-shadow: var(--shadow-sm);
  counter-increment: step; margin: 0;
}
.process li::before {
  content: counter(step); position: absolute; left: 1rem; top: 1.05rem;
  width: 2rem; height: 2rem; border-radius: 50%; background: var(--slate); color: #fff;
  font-family: var(--serif); font-weight: 700; display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.process li strong { color: var(--slate); }

/* ---------- Routing table wrapper (scroll on mobile) ---------- */
.routing .wrap { max-width: 980px; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ---------- Areas / neighborhoods ---------- */
.areas .wrap { max-width: 860px; }
.areas p { font-size: 1.08rem; }
.zip-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; list-style: none; padding: 0; }
.zip-row li { background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: .3rem .85rem; font-weight: 600; font-size: .9rem; color: var(--slate); margin: 0; }

/* ---------- Reviews ---------- */
.reviews .wrap { max-width: 980px; }
.review-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.reviews blockquote {
  margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem 1.4rem 1.2rem; box-shadow: var(--shadow-sm); position: relative;
}
.reviews blockquote::before {
  content: "\201C"; font-family: var(--serif); color: var(--copper-soft);
  font-size: 3.2rem; line-height: 1; position: absolute; top: .2rem; left: .7rem;
}
.reviews blockquote p { padding-left: 1.6rem; margin-bottom: .8rem; font-size: 1.02rem; }
.reviews cite {
  display: block; padding-left: 1.6rem; font-style: normal; font-weight: 700; color: var(--slate); font-size: .92rem;
}
.stars { color: var(--copper); letter-spacing: .12em; font-size: .9rem; padding-left: 1.6rem; margin-bottom: .3rem; }

/* ---------- Expert quote + byline ---------- */
.expert-quote {
  margin: 1.4rem 0; padding: 1.1rem 1.3rem; background: var(--white);
  border-left: 3px solid var(--copper); border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.expert-quote p { font-family: var(--serif); font-size: 1.1rem; font-style: italic; color: var(--slate-dark); margin-bottom: .6rem; }
.expert-quote cite { display: block; font-style: normal; font-weight: 700; color: var(--copper-dark); font-size: .9rem; }
.byline {
  display: flex; flex-wrap: wrap; gap: .35rem .8rem; align-items: baseline;
  margin: .4rem 0 1.1rem; padding: .55rem .8rem; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--white); font-size: .9rem; color: var(--muted);
}
.byline strong { color: var(--slate); font-weight: 700; }
.byline a { color: var(--copper-dark); font-weight: 600; }
.byline .byline-date { color: var(--muted); }

/* ---------- FAQ ---------- */
.faq .wrap { max-width: 860px; }
.faq .qa { border-bottom: 1px solid var(--line); padding: 1.15rem 0; }
.faq .qa:last-child { border-bottom: none; }
.faq .qa h3 { margin-bottom: .35rem; color: var(--slate); font-size: 1.2rem; }
.faq .qa p { margin: 0; color: var(--ink); }

/* ---------- Related ---------- */
.related .wrap { max-width: 980px; }
.related { background: var(--bg-alt); }
.related-links { display: flex; flex-wrap: wrap; gap: .7rem; }
.related-links a {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: .7rem 1.1rem; font-weight: 600; color: var(--slate); text-decoration: none;
  transition: border-color .15s ease, color .15s ease;
}
.related-links a:hover { border-color: var(--copper); color: var(--copper-dark); text-decoration: none; }

/* ---------- Final CTA ---------- */
.final-cta { background: var(--slate); color: #fff; text-align: center; }
.final-cta .wrap { max-width: 760px; }
.final-cta h2 { color: #fff; }
.final-cta p { color: #d6deea; margin-bottom: 1.6rem; }
.final-cta .btn-row { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; }

/* ---------- Footer NAP ---------- */
.site-footer { background: var(--ink); color: #aeb8c8; padding-block: clamp(2.4rem, 5vw, 3.4rem); font-size: .96rem; }
.site-footer .wrap { display: grid; gap: 1.6rem; }
.site-footer .nap { color: #d6deea; }
.site-footer .nap strong { color: #fff; font-family: var(--serif); font-size: 1.15rem; }
.site-footer a { color: var(--copper-soft); }
.site-footer a:hover { color: #fff; }
.footer-nav { display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; }
.footer-nav a { font-weight: 600; }
.copyright { color: #6b7588; font-size: .86rem; margin: 0; }

/* ---------- Image placeholder (.ph) ---------- */
.ph {
  background:
    repeating-linear-gradient(45deg, #e6ebf2 0, #e6ebf2 12px, #dce3ec 12px, #dce3ec 24px);
  color: var(--muted);
  position: relative;
  min-height: 120px;
}
.ph::after {
  content: attr(alt);
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 1rem; font-family: var(--sans); font-size: .78rem; font-weight: 600;
  color: #7a8597; background: rgba(248,250,252,.55); line-height: 1.3;
}

/* ---------- Breadcrumb (inner pages) ---------- */
.breadcrumb { background: var(--bg-alt); border-bottom: 1px solid var(--line); padding-top: calc(var(--header-h) + .9rem); padding-bottom: .9rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; margin: 0; font-size: .9rem; }
.breadcrumb li { margin: 0; color: var(--muted); }
.breadcrumb li + li::before { content: "/"; margin-right: .4rem; color: var(--line); }
.breadcrumb a { color: var(--slate); font-weight: 600; }

/* inner page hero offset for pages WITHOUT a full hero image */
.page-head { padding-top: calc(var(--header-h) + clamp(1.6rem, 5vw, 3rem)); background: var(--white); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* =====================================================================
   Responsive breakpoints
   ===================================================================== */
@media (min-width: 600px) {
  .citable-facts ul { grid-template-columns: 1fr 1fr; }
  .ba-pair { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 760px) {
  .services .svc-grid { grid-template-columns: 1fr 1fr; }
  .process ol { grid-template-columns: 1fr 1fr; }
  .cta-book { display: inline-flex; }
}

@media (min-width: 980px) {
  :root { --header-h: 84px; }
  .nav { display: flex; gap: 1.4rem; align-items: center; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
  .services .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .review-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-call { margin-left: .4rem; }
}

@media (min-width: 1100px) {
  .citable-facts ul { grid-template-columns: repeat(3, 1fr); }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* =====================================================================
   Quote form (contact page + compact homepage version)
   Persona #10: slate labels, copper-accented inputs, thin copper submit
   ===================================================================== */
.quote-form .wrap { max-width: 720px; }
.quote-form form {
  display: grid; gap: 1.1rem;
  background: var(--white); border: 1px solid var(--line);
  border-left: 4px solid var(--copper); border-radius: var(--radius);
  padding: clamp(1.3rem, 4vw, 2rem); box-shadow: var(--shadow-sm);
}
.quote-form .field { display: grid; gap: .4rem; }
.quote-form label {
  font-family: var(--sans); font-weight: 700; font-size: .92rem;
  letter-spacing: .01em; color: var(--slate);
}
.quote-form label .req { color: var(--copper-dark); }
.quote-form input,
.quote-form select,
.quote-form textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--line);
  border-radius: var(--radius); padding: .7rem .85rem; width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none; border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(184,115,51,.16);
}
.quote-form textarea { resize: vertical; min-height: 120px; }
.quote-form .form-note {
  margin: 0; color: var(--muted); font-size: .92rem;
}
.quote-form .form-note a { font-weight: 700; }
.quote-form .btn { width: 100%; }
@media (min-width: 600px) {
  .quote-form .field-row { display: grid; gap: 1.1rem; grid-template-columns: 1fr 1fr; }
  .quote-form .btn { width: auto; justify-self: start; }
}

/* compact homepage quote form sits on the slate final-cta */
.quote-compact { background: var(--bg-alt); }
.quote-compact .wrap { max-width: 720px; }
.quote-compact form {
  display: grid; gap: .9rem; grid-template-columns: 1fr;
  background: var(--white); border: 1px solid var(--line);
  border-left: 4px solid var(--copper); border-radius: var(--radius);
  padding: clamp(1.3rem, 4vw, 1.8rem); box-shadow: var(--shadow-sm);
}
.quote-compact .field { display: grid; gap: .4rem; }
.quote-compact label {
  font-family: var(--sans); font-weight: 700; font-size: .9rem; color: var(--slate);
}
.quote-compact label .req { color: var(--copper-dark); }
.quote-compact input,
.quote-compact select {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--line);
  border-radius: var(--radius); padding: .7rem .85rem; width: 100%;
}
.quote-compact input:focus,
.quote-compact select:focus {
  outline: none; border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(184,115,51,.16);
}
.quote-compact .btn { width: 100%; }
.quote-compact .form-note { margin: 0; color: var(--muted); font-size: .9rem; }
.quote-compact .form-note a { font-weight: 700; }
@media (min-width: 600px) {
  .quote-compact form { grid-template-columns: 1fr 1fr; align-items: end; }
  .quote-compact .field-service { grid-column: 1 / -1; }
  .quote-compact .btn { width: auto; justify-self: start; }
  .quote-compact .form-note { grid-column: 1 / -1; }
}

/* =====================================================================
   Sticky mobile call-bar (Call / Book) — mobile only, hidden ≥768px
   Persona #10: slate base, copper accents, ≥48px tap targets
   ===================================================================== */
.mobile-callbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  display: flex; background: var(--slate);
  border-top: 2px solid var(--copper);
  box-shadow: 0 -4px 18px rgba(15,23,42,.22);
}
.mobile-callbar a {
  flex: 1 1 0; min-height: 56px;
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  font-family: var(--sans); font-weight: 700; font-size: 1rem;
  letter-spacing: .01em; text-decoration: none; color: #fff;
  padding: .5rem .75rem;
}
.mobile-callbar a:hover { text-decoration: none; }
.mobile-callbar .cb-call { background: var(--slate); color: #fff; }
.mobile-callbar .cb-call:hover { background: var(--slate-dark); }
.mobile-callbar .cb-book {
  background: var(--copper); color: #fff;
  border-left: 1px solid rgba(255,255,255,.18);
}
.mobile-callbar .cb-book:hover { background: var(--copper-dark); }
@media (min-width: 768px) {
  .mobile-callbar { display: none; }
}
@media (max-width: 767.98px) {
  body { padding-bottom: 64px; }
}
/* 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;}}

/* Booking panel (replaces former quote forms) */
.booking-panel{
  background:#fff;border:1px solid var(--line);border-left:4px solid var(--copper);
  border-radius:var(--radius);padding:1.5rem 1.6rem;max-width:560px;
  box-shadow:0 2px 14px rgba(15,23,42,.06);
}
.booking-panel p{margin:0 0 1rem;}
.booking-panel .hours{color:var(--muted);font-size:.95rem;margin:1rem 0 0;}
.btn-lg{font-size:1.1rem;padding:.95rem 1.8rem;}
