/* =========================================================================
   Berkeley Tub Reglazing Studio — style.css
   Persona #7: Warm artisan / heritage
   Palette: terracotta #B5512E · sage #6B7F59 · warm cream #FAF4EC
            ink #3A332C · sand #D9C7A6
   Fonts:   Libre Baskerville (serif headings) · Karla (body)
   Mobile-first, single stylesheet, no frameworks.
   ========================================================================= */

/* ---- Design tokens ---------------------------------------------------- */
:root {
  --terracotta: #B5512E;
  --terracotta-dk: #8E3E22;
  --sage: #6B7F59;
  --sage-dk: #55663F;
  --cream: #FAF4EC;
  --cream-2: #F3E9DA;
  --ink: #3A332C;
  --ink-soft: #5C5246;
  --sand: #D9C7A6;
  --sand-dk: #C3AE86;
  --paper: #FFFDF8;
  --line: #E4D7C0;
  --shadow: 0 1px 2px rgba(58, 51, 44, 0.08);

  --font-head: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --font-body: "Karla", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1120px;
  --gap: 1.5rem;
  --radius: 4px;
  --radius-lg: 6px;
}

/* ---- Reset / base ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--terracotta-dk); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--terracotta); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 0.6em;
  letter-spacing: 0.1px;
}

h1 { font-size: 2.05rem; }
h2 { font-size: 1.55rem; }
h3 { font-size: 1.18rem; }

p { margin: 0 0 1.05rem; }

ul, ol { margin: 0 0 1.1rem; padding-left: 1.3rem; }
li { margin-bottom: 0.45rem; }

/* Accessibility: visible focus ring */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 2px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 0.6rem 1rem;
  z-index: 200;
  border-radius: 0 0 var(--radius) 0;
}
.skip:focus { left: 0; }

/* ---- Layout helpers --------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }

main section,
main nav.related {
  padding: 2.6rem 0;
  border-bottom: 1px solid var(--line);
}
main section:last-of-type { border-bottom: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dk);
  margin: 0 0 0.5rem;
}

/* small heritage rule used as a signature flourish */
.heritage-line {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-style: italic;
  color: var(--terracotta-dk);
  font-size: 0.95rem;
}
.heritage-line::before,
.heritage-line::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--sand-dk);
}

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn-primary {
  background: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--terracotta-dk); border-color: var(--terracotta-dk); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--sand-dk);
}
.btn-ghost:hover { background: var(--cream-2); color: var(--ink); border-color: var(--ink); }

/* =========================================================================
   SITE HEADER + NAV (understated, generous spacing)
   ========================================================================= */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.brand {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.15;
  margin-right: auto;
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-dk);
  margin-top: 2px;
}

.nav {
  display: none;
  width: 100%;
  flex-direction: column;
  gap: 0.1rem;
  padding-top: 0.6rem;
}
.nav.open { display: flex; }
.nav a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: 0.55rem 0.2rem;
  border-bottom: 1px solid var(--line);
}
.nav a:hover { color: var(--terracotta); }

.header-cta { display: flex; align-items: center; gap: 0.6rem; }
.cta-call {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--terracotta-dk);
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.98rem;
}
.cta-call:hover { color: var(--terracotta); }
.cta-book {
  display: none;
  background: var(--terracotta);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
}
.cta-book:hover { background: var(--terracotta-dk); color: #fff; }

.nav-toggle {
  background: transparent;
  border: 1.5px solid var(--sand-dk);
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1;
  padding: 0.35rem 0.6rem;
  border-radius: var(--radius);
  cursor: pointer;
}

/* =========================================================================
   HERO (warm cream, framed feature image)
   ========================================================================= */
.hero { background: var(--cream); padding-top: 2.8rem; padding-bottom: 2.8rem; }
.hero .wrap { display: grid; gap: 2rem; }
.hero-copy .eyebrow { margin-bottom: 0.6rem; }
.hero h1 { font-size: 2.2rem; margin-bottom: 0.7rem; }
.hero .sub {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 38ch;
  margin-bottom: 1.3rem;
}
.hero .quick-answer {
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink);
  max-width: 52ch;
  margin: 0 0 1rem;
  padding: 0.7rem 0 0.7rem 1rem;
  border-left: 4px solid var(--terracotta);
}
.hero .quick-answer strong { font-weight: 700; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1rem; }
.hero .hours {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 0;
}
.hero .hours strong { color: var(--ink); }

/* framed feature image — the persona signature */
.framed {
  border: 1px solid var(--sand-dk);
  padding: 10px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.framed .ph,
.framed img { border: 1px solid var(--line); }
.framed figcaption {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: 0.7rem 0.3rem 0.2rem;
  text-align: center;
}
.hero-figure { margin: 0; }

/* =========================================================================
   STORY INTRO
   ========================================================================= */
.story p { max-width: 68ch; }
.story p:first-of-type::first-letter {
  font-family: var(--font-head);
  font-size: 3.1rem;
  font-weight: 700;
  float: left;
  line-height: 0.8;
  padding: 0.08em 0.12em 0 0;
  color: var(--terracotta);
}

/* =========================================================================
   DIRECT ANSWER (the cited block)
   ========================================================================= */
.direct-answer {
  background: var(--paper);
}
.direct-answer .wrap {
  border-left: 4px solid var(--sage);
  padding-left: 1.25rem;
}
.direct-answer h2 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--sage-dk);
}
.direct-answer h3 { font-size: 1.22rem; margin-top: 1.3rem; }
.direct-answer p { max-width: 66ch; color: var(--ink); }

/* =========================================================================
   CITABLE FACTS
   ========================================================================= */
.citable-facts { background: var(--cream-2); }
.citable-facts ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}
.citable-facts li {
  position: relative;
  padding-left: 1.7rem;
  margin: 0;
  font-size: 1.02rem;
}
.citable-facts li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--terracotta);
  font-size: 1rem;
}

/* =========================================================================
   SERVICES GRID
   ========================================================================= */
.services .svc-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}
.services .svc-grid > li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--terracotta);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.25rem;
  margin: 0;
  box-shadow: var(--shadow);
}
.services .svc-grid h3 { margin-bottom: 0.35rem; }
.services .svc-grid h3 a { text-decoration: none; color: var(--ink); }
.services .svc-grid h3 a:hover { color: var(--terracotta); }
.services .svc-grid p { margin: 0; font-size: 0.98rem; color: var(--ink-soft); }

/* =========================================================================
   BEFORE / AFTER — framed (bordered) pair (persona #7)
   JS adds .is-after toggle to show the after frame on small screens.
   ========================================================================= */
.before-after .ba-pair {
  margin: 0;
  display: grid;
  gap: 1.25rem;
}
.ba-frame {
  border: 1px solid var(--sand-dk);
  padding: 9px;
  background: var(--paper);
  box-shadow: var(--shadow);
  position: relative;
}
.ba-frame .ph,
.ba-frame img { border: 1px solid var(--line); width: 100%; }
.ba-frame .ba-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--cream);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}
.ba-frame.is-after .ba-tag { background: var(--sage-dk); }
.before-after figcaption {
  font-family: var(--font-head);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
/* toggle control (shown on small screens via JS) */
.ba-toggle {
  display: none;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.ba-toggle button {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.45rem 1rem;
  border: 1.5px solid var(--sand-dk);
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
}
.ba-toggle button[aria-pressed="true"] {
  background: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
}

/* =========================================================================
   TABLES (pricing + routing)
   ========================================================================= */
.pricing table,
.routing table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-size: 1rem;
}
.pricing th, .pricing td,
.routing th, .routing td {
  text-align: left;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.pricing thead th,
.routing thead th {
  background: var(--sage);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.pricing tbody tr:nth-child(even),
.routing tbody tr:nth-child(even) { background: var(--cream); }
.pricing tbody tr:last-child td,
.routing tbody tr:last-child td { border-bottom: 0; }
.pricing td:last-child { font-weight: 700; color: var(--terracotta-dk); white-space: nowrap; }
.routing { overflow-x: auto; }
.note { font-size: 0.95rem; color: var(--ink-soft); margin-top: 1rem; }

/* author byline on guide-style pages */
.byline {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-style: italic;
  margin: -0.4rem 0 1rem;
  letter-spacing: 0.01em;
}

/* California safety & compliance callout */
.compliance {
  background: var(--cream-2);
  border-left: 4px solid var(--terracotta);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}
.compliance h3 { margin-top: 1.25rem; }
.compliance h3:first-of-type { margin-top: 0.25rem; }

/* =========================================================================
   PROCESS (numbered)
   ========================================================================= */
.process ol {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}
.process ol > li {
  counter-increment: step;
  position: relative;
  padding: 0.2rem 0 0.2rem 3.3rem;
  margin: 0;
  min-height: 2.4rem;
}
.process ol > li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  background: var(--terracotta);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  border-radius: 50%;
}
.process ol > li strong { color: var(--ink); }

/* =========================================================================
   AREAS / NEIGHBORHOODS
   ========================================================================= */
.areas p { max-width: 70ch; }

/* =========================================================================
   REVIEWS
   ========================================================================= */
.reviews .review-grid {
  display: grid;
  gap: 1.2rem;
}
.reviews blockquote {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--sage);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.3rem;
  font-style: italic;
  font-family: var(--font-head);
  color: var(--ink);
}
.reviews blockquote p { margin: 0 0 0.7rem; }
.reviews cite {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--sage-dk);
}
.stars { color: var(--terracotta); letter-spacing: 2px; font-style: normal; }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq .qa {
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}
.faq .qa:last-child { border-bottom: 0; }
.faq .qa h3 { margin-bottom: 0.45rem; color: var(--terracotta-dk); }
.faq .qa p { margin: 0; max-width: 70ch; color: var(--ink); }

/* =========================================================================
   RELATED
   ========================================================================= */
.related { display: block; }
.related .link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.related .link-row a {
  background: var(--cream-2);
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius);
}
.related .link-row a:hover { background: var(--sand); border-color: var(--sand-dk); }

/* =========================================================================
   FINAL CTA
   ========================================================================= */
.final-cta { background: var(--ink); color: var(--cream); border-bottom: 0; }
.final-cta h2 { color: var(--cream); }
.final-cta p { color: var(--sand); }
.final-cta .btn-ghost { color: var(--cream); border-color: var(--sand-dk); }
.final-cta .btn-ghost:hover { background: rgba(250, 244, 236, 0.1); color: #fff; border-color: var(--cream); }
.final-cta .cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }

/* =========================================================================
   FOOTER (NAP)
   ========================================================================= */
.site-footer {
  background: var(--cream-2);
  border-top: 3px solid var(--terracotta);
  padding: 2.4rem 0 2rem;
  font-size: 0.95rem;
}
.site-footer .nap strong { font-family: var(--font-head); font-size: 1.08rem; }
.site-footer a { color: var(--terracotta-dk); }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
  margin: 1.2rem 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.footer-nav a { text-decoration: none; font-weight: 600; }
.footer-nav a:hover { text-decoration: underline; }
.copyright { color: var(--ink-soft); font-size: 0.85rem; margin: 0; }

/* =========================================================================
   IMAGE PLACEHOLDER (.ph) — neutral block showing filename
   ========================================================================= */
.ph {
  background:
    repeating-linear-gradient(45deg, var(--cream-2), var(--cream-2) 12px, var(--sand) 12px, var(--sand) 24px);
  background-color: var(--sand);
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  position: relative;
  font-family: var(--font-body);
}
.ph::after {
  content: attr(data-img);
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(58, 51, 44, 0.78);
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}

/* =========================================================================
   BREADCRUMB (inner pages)
   ========================================================================= */
.breadcrumb {
  font-size: 0.85rem;
  padding: 0.9rem 0;
  color: var(--ink-soft);
}
.breadcrumb a { color: var(--sage-dk); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
}
.breadcrumb li { margin: 0; }
.breadcrumb li + li::before { content: "/"; margin-right: 0.4rem; color: var(--sand-dk); }

/* =========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================= */
@media (min-width: 640px) {
  .citable-facts ul { grid-template-columns: 1fr 1fr; }
  .reviews .review-grid { grid-template-columns: 1fr 1fr; }
  .before-after .ba-pair { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 760px) {
  body { font-size: 18px; }
  h1 { font-size: 2.5rem; }
  .hero h1 { font-size: 2.7rem; }
  h2 { font-size: 1.85rem; }

  /* desktop nav: inline */
  .nav-toggle { display: none; }
  .nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: auto;
    gap: 0.2rem 1.05rem;
    padding-top: 0;
    margin-right: 1rem;
  }
  .nav a { border-bottom: 0; padding: 0.3rem 0; font-size: 0.96rem; }
  .cta-book { display: inline-block; }

  .hero .wrap { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
  .services .svc-grid { grid-template-columns: 1fr 1fr; }
  .process ol { grid-template-columns: 1fr 1fr; gap: 1.1rem 2rem; }
}

@media (min-width: 1000px) {
  .services .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .nav { gap: 0.2rem 1.25rem; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* =========================================================================
   STICKY MOBILE CALL-BAR (injected by main.js; mobile only)
   ========================================================================= */
.mobile-callbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 999;
  border-top: 2px solid var(--terracotta-dk);
  box-shadow: 0 -2px 8px rgba(58, 51, 44, 0.18);
}
.mobile-callbar a {
  flex: 1 1 50%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  text-decoration: none;
  padding: 0.6rem 0.5rem;
}
.mobile-callbar .cb-call {
  background: var(--terracotta);
  color: #fff;
}
.mobile-callbar .cb-call:active { background: var(--terracotta-dk); }
.mobile-callbar .cb-book {
  background: var(--ink);
  color: var(--cream);
  border-left: 1px solid var(--sand-dk);
}
.mobile-callbar .cb-book:active { background: var(--ink-soft); }

@media (max-width: 767px) {
  body { padding-bottom: 64px; }
}
@media (min-width: 768px) {
  .mobile-callbar { display: none; }
}

/* =========================================================================
   QUOTE FORM (contact page + compact homepage version)
   ========================================================================= */
.quote-section { background: var(--cream-2); }
.quote-form {
  background: var(--paper);
  border: 1px solid var(--sand-dk);
  border-top: 3px solid var(--terracotta);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.5rem 1.4rem 1.4rem;
  max-width: 640px;
}
.quote-form .field { margin-bottom: 1.05rem; }
.quote-form label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.quote-form .req { color: var(--terracotta-dk); }
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--sand-dk);
  border-radius: var(--radius);
  padding: 0.65rem 0.7rem;
}
.quote-form textarea { min-height: 110px; resize: vertical; }
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 3px solid var(--sage);
  outline-offset: 1px;
  border-color: var(--sage-dk);
}
.quote-form .btn-primary { width: 100%; margin-top: 0.3rem; }
.quote-form .form-note {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0.9rem 0 0;
}

/* Compact homepage version: name + phone + service inline on wider screens */
.quote-form-compact { max-width: 720px; }
.quote-form-compact .form-note { margin-top: 0.7rem; }

@media (min-width: 640px) {
  .quote-form-compact .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
/* Booking CTA panel (replaces the old quote forms) */
.booking-panel {
  background: var(--paper);
  border: 1px solid var(--sand-dk);
  border-top: 3px solid var(--terracotta);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.6rem 1.5rem 1.4rem;
  max-width: 640px;
}
.booking-panel p { margin: 0 0 1rem; }
.booking-panel .btn-lg { font-size: 1.08rem; padding: 0.95rem 1.7rem; }
.booking-panel .hours {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 1rem 0 0;
}
.booking-panel .hours a { font-weight: 600; }

/* 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;}}
