/* ==========================================================================
   SF Bathtub Reglazing Specialists — style.css
   Persona #3 · Editorial premium
   Palette: forest #14342B · cream #FBF7EF · ink #1A1A1A · gold #C9A227 · border #E7E0D2
   Fonts: Fraunces (serif headings) · Source Sans 3 (body)
   Signatures: centered serif wordmark + thin rule, editorial hero, intro drop-cap,
   CSS hover-reveal before/after, pill buttons, magazine pull-quotes, generous whitespace.
   Mobile-first. Vanilla CSS, no frameworks.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --forest: #14342B;
  --forest-deep: #0E241E;
  --cream: #FBF7EF;
  --cream-2: #F4EDE0;
  --ink: #1A1A1A;
  --ink-soft: #41423E;
  --gold: #C9A227;
  --gold-deep: #A9871A;
  --border: #E7E0D2;
  --paper: #FFFFFF;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --wrap: 70rem;        /* 1120px */
  --wrap-narrow: 46rem; /* 736px reading column */
  --rule: 1px solid var(--border);

  --shadow-soft: 0 1px 2px rgba(20, 52, 43, .05), 0 12px 32px rgba(20, 52, 43, .07);
  --radius-pill: 999px;
  --radius-card: 4px;

  --step-1: clamp(1.7rem, 1.2rem + 2.2vw, 2.55rem);
  --step-2: clamp(1.4rem, 1.1rem + 1.4vw, 1.95rem);
  --step-3: clamp(1.2rem, 1.05rem + .7vw, 1.45rem);
}

/* ---------- Reset / base ---------- */
*, *::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(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--gold-deep); }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.12;
  color: var(--forest);
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
h2 { font-size: var(--step-2); }
h3 { font-size: var(--step-3); font-weight: 500; }
p { margin: 0 0 1.1rem; }
ul, ol { margin: 0 0 1.1rem; padding-left: 1.25rem; }
li { margin: 0 0 .45rem; }
strong { font-weight: 600; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 1.25rem; }
.reading { max-width: var(--wrap-narrow); }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--forest); color: var(--cream);
  padding: .6rem 1rem; z-index: 200; border-radius: 0 0 var(--radius-card) 0;
}
.skip:focus { left: 0; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ---------- Buttons (pill: filled forest + outline variant) ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: .95rem 1.65rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.btn-primary:hover { background: var(--forest-deep); color: var(--cream); border-color: var(--forest-deep); }
.btn-ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-ghost:hover { background: var(--forest); color: var(--cream); }
.btn-gold {
  background: var(--gold);
  color: var(--forest-deep);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-deep); color: var(--cream); border-color: var(--gold-deep); }

/* ---------- Header: centered serif wordmark, thin rule beneath, minimal nav ---------- */
.site-header {
  background: var(--cream);
  border-bottom: var(--rule);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.25rem;
  max-width: var(--wrap);
  margin-inline: auto;
}
.brand {
  grid-column: 2;
  justify-self: center;
  text-align: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.18rem;
  line-height: 1.05;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: .005em;
}
.brand .brand-mark { display: block; font-style: italic; font-weight: 500; }
.brand .brand-rule {
  display: block;
  width: 2.2rem;
  height: 2px;
  background: var(--gold);
  margin: .3rem auto 0;
}
.header-call {
  grid-column: 3;
  justify-self: end;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
  font-size: .95rem;
  display: none;
}
.header-call:hover { color: var(--gold-deep); }
.nav-toggle {
  grid-column: 1;
  justify-self: start;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--forest);
  font-size: 1.1rem;
  line-height: 1;
  padding: .5rem .8rem;
  cursor: pointer;
}
.nav {
  grid-column: 1 / -1;
  display: none;
  flex-direction: column;
  border-top: var(--rule);
  margin-top: .7rem;
  padding-top: .6rem;
}
.nav.is-open { display: flex; }
.nav a {
  font-family: var(--sans);
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: .7rem .25rem;
  border-bottom: 1px dotted var(--border);
  font-size: 1rem;
}
.nav a:hover { color: var(--gold-deep); }
.nav .nav-book { color: var(--gold-deep); }

/* ---------- Hero: editorial big serif on cream, image below ---------- */
.hero {
  background: var(--cream);
  text-align: center;
  padding: 3rem 1.25rem 1rem;
}
.hero-inner { max-width: 54rem; margin-inline: auto; }
.hero .eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin: 0 0 1rem;
}
.hero h1 {
  font-size: var(--step-1);
  font-weight: 700;
  margin: 0 0 .6rem;
}
.hero .sub {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 38rem;
  margin: 0 auto 1.6rem;
}
.quick-answer {
  font-size: 1.18rem;
  line-height: 1.5;
  color: var(--forest, #14342B);
  max-width: 42rem;
  margin: 0 auto 1.2rem;
}
.quick-answer strong { font-weight: 700; }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.hero .hours {
  font-size: .92rem;
  color: var(--ink-soft);
  margin: 0;
}
.hero-figure {
  margin: 2.2rem auto 0;
  max-width: var(--wrap);
}
.hero-figure .ph,
.hero-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  border: var(--rule);
}

/* ---------- Section rhythm ---------- */
section { padding: 2.6rem 0; }
.section-pad { padding-block: 2.6rem; }
.tint { background: var(--cream-2); }
.dark {
  background: var(--forest);
  color: var(--cream);
}
.dark h2, .dark h3 { color: var(--cream); }
.dark a { color: var(--gold); }
.lead { font-size: 1.18rem; color: var(--ink-soft); }
.eyebrow-h {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin: 0 0 .5rem;
}

/* ---------- Intro w/ drop-cap (signature) ---------- */
.intro { background: var(--cream); }
.intro .reading > p:first-of-type::first-letter {
  font-family: var(--serif);
  font-weight: 700;
  float: left;
  font-size: 3.6em;
  line-height: .72;
  padding: .08em .12em 0 0;
  color: var(--forest);
}
.intro p { font-size: 1.1rem; }

/* ---------- Direct answer ---------- */
.direct-answer { background: var(--paper); border-block: var(--rule); }
.direct-answer .wrap { max-width: var(--wrap-narrow); }
.direct-answer h2 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-family: var(--sans);
  font-weight: 600;
  color: var(--gold-deep);
}
.direct-answer h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 1.6rem;
}
.direct-answer h3:first-of-type { margin-top: .8rem; }
.direct-answer p { font-size: 1.08rem; color: var(--ink); }
.direct-answer p a { font-weight: 600; }

/* ---------- Citable facts ---------- */
.citable-facts { background: var(--forest); color: var(--cream); }
.citable-facts h2 {
  color: var(--cream);
  border-bottom: 1px solid rgba(251, 247, 239, .22);
  padding-bottom: .6rem;
}
.citable-facts ul {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: .9rem;
}
.citable-facts li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.05rem;
  line-height: 1.5;
}
.citable-facts li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: .85rem; height: .85rem;
  background: var(--gold);
  border-radius: 2px;
  transform: rotate(45deg);
}

/* ---------- Services grid ---------- */
.services h2 { text-align: center; }
.svc-grid {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0;
  display: grid;
  gap: 1.1rem;
}
.svc-grid li {
  background: var(--paper);
  border: var(--rule);
  border-radius: var(--radius-card);
  padding: 1.5rem 1.4rem;
  margin: 0;
  transition: box-shadow .18s ease, transform .18s ease;
}
.svc-grid li:hover { box-shadow: var(--shadow-soft); transform: translateY(-2px); }
.svc-grid h3 { margin: 0 0 .4rem; font-weight: 700; }
.svc-grid h3 a { text-decoration: none; color: var(--forest); }
.svc-grid h3 a:hover { color: var(--gold-deep); }
.svc-grid p { margin: 0; color: var(--ink-soft); font-size: .98rem; }
.svc-grid .svc-price {
  display: inline-block;
  margin-top: .7rem;
  font-weight: 600;
  font-size: .9rem;
  color: var(--gold-deep);
}

/* ---------- Before / after: CSS hover-reveal (signature component) ---------- */
.before-after h2 { text-align: center; }
.before-after .ba-intro { text-align: center; max-width: 40rem; margin: 0 auto 1.8rem; color: var(--ink-soft); }
.ba-pair {
  position: relative;
  margin: 0 auto;
  max-width: 46rem;
  border: var(--rule);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--cream-2);
  box-shadow: var(--shadow-soft);
}
.ba-reveal {
  position: relative;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}
.ba-reveal img,
.ba-reveal .ph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  border: 0;
  border-radius: 0;
}
.ba-after-layer {
  opacity: 0;
  transition: opacity .45s ease;
}
/* hover OR keyboard focus OR JS-toggled .is-revealed shows the "after" */
.ba-reveal:hover .ba-after-layer,
.ba-reveal:focus-within .ba-after-layer,
.ba-pair.is-revealed .ba-after-layer { opacity: 1; }

.ba-tag {
  position: absolute;
  top: .8rem;
  z-index: 3;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .35rem .7rem;
  border-radius: var(--radius-pill);
  background: var(--cream);
  color: var(--forest);
  border: 1px solid var(--border);
}
.ba-tag-before { left: .8rem; }
.ba-tag-after {
  right: .8rem;
  background: var(--gold);
  color: var(--forest-deep);
  border-color: var(--gold);
  opacity: 0;
  transition: opacity .35s ease;
}
.ba-reveal:hover .ba-tag-after,
.ba-reveal:focus-within .ba-tag-after,
.ba-pair.is-revealed .ba-tag-after { opacity: 1; }
.ba-hint {
  position: absolute;
  bottom: .8rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: .8rem;
  font-weight: 600;
  color: var(--forest-deep);
  background: rgba(251, 247, 239, .92);
  padding: .35rem .85rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
}
.ba-toggle {
  display: inline-block;
  margin: 1.1rem auto 0;
  font: inherit;
  font-weight: 600;
  font-size: .9rem;
  color: var(--forest);
  background: transparent;
  border: 1.5px solid var(--forest);
  border-radius: var(--radius-pill);
  padding: .55rem 1.2rem;
  cursor: pointer;
}
.ba-toggle:hover { background: var(--forest); color: var(--cream); }
.ba-pair + figcaption,
.before-after figcaption {
  text-align: center;
  font-size: .92rem;
  color: var(--ink-soft);
  margin-top: 1rem;
  font-style: italic;
}
.ba-controls { text-align: center; }

/* ---------- Pricing table ---------- */
.pricing h2 { text-align: center; }
.price-wrap { max-width: 40rem; margin-inline: auto; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  background: var(--paper);
  border: var(--rule);
  border-radius: var(--radius-card);
  overflow: hidden;
}
caption { caption-side: top; text-align: left; font-size: .9rem; color: var(--ink-soft); margin-bottom: .6rem; }
thead th {
  background: var(--forest);
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 500;
  text-align: left;
  padding: .85rem 1rem;
  font-size: 1rem;
}
tbody td {
  padding: .8rem 1rem;
  border-top: var(--rule);
}
tbody tr:nth-child(even) td { background: var(--cream); }
.price-table tbody td:last-child { font-weight: 600; color: var(--forest); white-space: nowrap; }
.price-note { text-align: center; color: var(--ink-soft); font-size: .95rem; margin-top: 1rem; }
.warranty-note {
  text-align: center;
  font-weight: 600;
  color: var(--gold-deep);
  margin-top: .4rem;
}

/* ---------- Process (numbered) ---------- */
.process h2 { text-align: center; }
.process ol {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 1.8rem auto 0;
  max-width: 44rem;
  display: grid;
  gap: 1rem;
}
.process ol li {
  counter-increment: step;
  position: relative;
  padding: 1.1rem 1.2rem 1.1rem 4rem;
  background: var(--paper);
  border: var(--rule);
  border-radius: var(--radius-card);
  margin: 0;
}
.process ol li::before {
  content: counter(step);
  position: absolute;
  left: 1rem; top: 1rem;
  width: 2rem; height: 2rem;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--cream);
  background: var(--forest);
  border-radius: 50%;
  font-size: 1rem;
}
.process ol li strong { color: var(--forest); }

/* ---------- Routing table ---------- */
.routing h2 { text-align: center; }
.routing .table-scroll { overflow-x: auto; }
.routing table { min-width: 34rem; }
.routing td:first-child { font-weight: 600; }

/* ---------- Areas / neighborhoods ---------- */
.areas { background: var(--cream-2); }
.areas .wrap { max-width: var(--wrap-narrow); }
.areas p { font-size: 1.1rem; }
.areas .zip-line { font-size: .92rem; color: var(--ink-soft); margin-top: .4rem; }

/* ---------- Reviews + pull-quote signature ---------- */
.reviews { background: var(--forest); color: var(--cream); }
.reviews h2 { color: var(--cream); text-align: center; }
.reviews .review-grid {
  display: grid;
  gap: 1.4rem;
  margin-top: 1.8rem;
}
.reviews blockquote {
  margin: 0;
  background: var(--forest-deep);
  border: 1px solid rgba(201, 162, 39, .3);
  border-radius: var(--radius-card);
  padding: 1.6rem 1.5rem;
}
.reviews blockquote p { margin: 0 0 .9rem; font-size: 1.05rem; }
.reviews cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--gold);
  font-size: .9rem;
}
.reviews .stars { color: var(--gold); letter-spacing: .12em; font-size: .95rem; margin-bottom: .6rem; }
/* magazine pull-quote */
.pull-quote {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}
.pull-quote blockquote {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.1rem);
  line-height: 1.25;
  color: var(--forest);
  margin: 0;
  padding: 1.5rem 0 0;
  position: relative;
}
.pull-quote blockquote::before {
  content: "\201C";
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--gold);
  display: block;
  line-height: .4;
  margin-bottom: .5rem;
}
.pull-quote cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 600;
  font-size: .9rem;
  color: var(--gold-deep);
  margin-top: 1.2rem;
  letter-spacing: .04em;
}

/* ---------- FAQ ---------- */
.faq .wrap { max-width: var(--wrap-narrow); }
.faq h2 { text-align: center; }
.faq .qa {
  border-bottom: var(--rule);
  padding: 1.3rem 0;
}
.faq .qa:first-of-type { border-top: var(--rule); }
.faq .qa h3 {
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 0 .5rem;
  color: var(--forest);
}
.faq .qa p { margin: 0; color: var(--ink-soft); }

/* ---------- Related ---------- */
.related { background: var(--cream-2); }
.related h2 { text-align: center; }
.related .related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: center;
  margin-top: 1.4rem;
}
.related a {
  display: inline-block;
  background: var(--paper);
  border: var(--rule);
  border-radius: var(--radius-pill);
  padding: .65rem 1.3rem;
  text-decoration: none;
  font-weight: 600;
  color: var(--forest);
  font-size: .95rem;
}
.related a:hover { background: var(--forest); color: var(--cream); border-color: var(--forest); }

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--forest);
  color: var(--cream);
  text-align: center;
}
.final-cta h2 { color: var(--cream); }
.final-cta p { color: var(--cream); opacity: .92; }
.final-cta .hero-cta { margin-top: 1.4rem; }
.final-cta .btn-ghost { color: var(--cream); border-color: var(--cream); }
.final-cta .btn-ghost:hover { background: var(--cream); color: var(--forest); }

/* ---------- Footer NAP ---------- */
.site-footer {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 2.6rem 1.25rem 2rem;
  font-size: .95rem;
}
.site-footer .wrap { max-width: var(--wrap); }
.site-footer .footer-top {
  display: grid;
  gap: 1.6rem;
}
.site-footer .nap strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--cream);
  display: block;
  margin-bottom: .4rem;
}
.site-footer a { color: var(--gold); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.2rem;
  margin-top: .6rem;
}
.footer-nav a { font-weight: 600; }
.site-footer .copyright {
  margin: 1.8rem 0 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(251, 247, 239, .18);
  font-size: .85rem;
  opacity: .8;
}

/* ---------- Breadcrumb (inner pages) ---------- */
.breadcrumb {
  font-size: .85rem;
  color: var(--ink-soft);
  padding: 1rem 0 0;
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  padding: 0;
  margin: 0;
}
.breadcrumb li { margin: 0; }
.breadcrumb li + li::before { content: "/"; margin-right: .4rem; color: var(--border); }
.breadcrumb a { text-decoration: none; }

/* ---------- Image placeholder ---------- */
.ph {
  background:
    repeating-linear-gradient(45deg, var(--cream-2), var(--cream-2) 14px, #ECE3D2 14px, #ECE3D2 28px);
  color: var(--ink-soft);
  display: grid;
  place-items: center;
  position: relative;
  min-height: 120px;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  text-align: center;
}
.ph::after {
  content: attr(data-img);
  position: absolute;
  bottom: .5rem; left: 50%;
  transform: translateX(-50%);
  background: rgba(20, 52, 43, .8);
  color: var(--cream);
  padding: .25rem .6rem;
  border-radius: var(--radius-pill);
  font-size: .68rem;
  letter-spacing: .04em;
  white-space: nowrap;
  max-width: 92%;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   Responsive breakpoints
   ========================================================================== */

/* ≥ 600px — small tablets */
@media (min-width: 37.5em) {
  body { font-size: 1.09375rem; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding-top: 3.6rem; }
  .reviews .review-grid { grid-template-columns: repeat(2, 1fr); }
  .citable-facts ul { grid-template-columns: repeat(2, 1fr); }
}

/* ≥ 768px — tablet / show desktop nav */
@media (min-width: 48em) {
  .header-inner {
    grid-template-columns: 1fr auto 1fr;
    padding: 1rem 1.25rem;
  }
  .nav-toggle { display: none; }
  .header-call { display: inline-block; }
  .nav {
    grid-column: 1;
    justify-self: start;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border-top: 0;
    margin: 0;
    padding: 0;
    gap: .2rem 1.1rem;
    align-items: center;
  }
  .nav a {
    border: 0;
    padding: .25rem 0;
    font-size: .92rem;
  }
  section { padding: 3.4rem 0; }
  .citable-facts ul { grid-template-columns: repeat(2, 1fr); gap: 1.1rem 2rem; }
}

/* ≥ 992px — desktop */
@media (min-width: 62em) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .hero h1 { font-size: clamp(2.6rem, 1.6rem + 2.6vw, 3.4rem); }
  .site-footer .footer-top { grid-template-columns: 1.4fr 1fr; align-items: start; }
  .nav { gap: .2rem 1.4rem; }
  .reviews .review-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   Conversion add-ons (Stage 2): sticky mobile call-bar + quote forms
   ========================================================================== */

/* ---------- Sticky mobile call-bar ---------- */
.mobile-callbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 999;
  border-top: 1px solid rgba(251, 247, 239, .22);
  box-shadow: 0 -6px 18px rgba(20, 52, 43, .18);
}
.mobile-callbar a {
  flex: 1 1 0;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: .01em;
  text-decoration: none;
  padding: .5rem 1rem;
}
.mobile-callbar .cb-call {
  background: var(--forest);
  color: var(--cream);
}
.mobile-callbar .cb-call:hover { background: var(--forest-deep); color: var(--cream); }
.mobile-callbar .cb-book {
  background: var(--gold);
  color: var(--forest-deep);
  border-left: 1px solid var(--gold-deep);
}
.mobile-callbar .cb-book:hover { background: var(--gold-deep); color: var(--cream); }
/* keep the call-bar off the footer on mobile */
body.has-callbar { padding-bottom: 64px; }
/* hide on tablet / desktop */
@media (min-width: 48em) {
  .mobile-callbar { display: none; }
  body.has-callbar { padding-bottom: 0; }
}

/* ---------- Quote forms ---------- */
.quote-form {
  background: var(--paper);
  border: var(--rule);
  border-radius: var(--radius-card);
  padding: 1.6rem 1.4rem;
  max-width: 40rem;
  margin-inline: auto;
  box-shadow: var(--shadow-soft);
}
.quote-form .field {
  display: grid;
  gap: .35rem;
  margin-bottom: 1.05rem;
}
.quote-form label {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .92rem;
  color: var(--forest);
}
.quote-form .req { color: var(--gold-deep); }
.quote-form input,
.quote-form select,
.quote-form textarea {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  padding: .7rem .8rem;
  width: 100%;
}
.quote-form textarea { min-height: 6.5rem; resize: vertical; }
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}
.quote-form .btn { width: 100%; margin-top: .3rem; }
.quote-form .form-note {
  font-size: .9rem;
  color: var(--ink-soft);
  margin: .9rem 0 0;
  text-align: center;
}
.quote-form .form-note a { font-weight: 600; }
/* compact homepage variant: name + phone + service inline on wider screens */
.quote-form-compact { max-width: 44rem; }
@media (min-width: 37.5em) {
  .quote-form-compact .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1rem;
  }
}
.quote-section { background: var(--cream-2); }
.quote-section h2 { text-align: center; }
.quote-section .quote-lead {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 1.6rem;
  color: var(--ink-soft);
}

/* Booking panel (replaces native quote forms) */
.booking-panel {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
  background: var(--cream);
  border: 1px solid var(--gold);
  border-radius: 10px;
  padding: 2rem 1.6rem;
  box-shadow: 0 10px 30px rgba(20, 52, 43, .08);
}
.booking-panel > p:first-child {
  font-size: 1.18rem;
  font-weight: 600;
  margin: 0 0 1.3rem;
  color: var(--ink);
}
.booking-panel .btn-lg {
  font-size: 1.1rem;
  padding: .95rem 2.6rem;
}
.booking-panel .hours {
  margin: 1.3rem 0 0;
  font-size: .95rem;
  color: var(--ink-soft);
}
.booking-panel .hours a { font-weight: 600; }
.contact-nap {
  max-width: 40rem;
  margin: 1.4rem auto 0;
  text-align: center;
  font-style: normal;
  line-height: 1.6;
  color: var(--ink-soft);
}
.contact-nap strong { color: var(--ink); }
.byline {
  margin-top: 1.1rem;
  font-style: italic;
  font-weight: 600;
  color: var(--forest);
}
.byline-top {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.byline-top a { color: inherit; }

/* Motion-reduction */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !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;}}
