/* =====================================================================
   Sunnyvale Bathtub Resurfacing — style.css
   Persona #5: Clean 2018 service-SaaS
   Palette: indigo #4F46E5 · mint #34D399 · bg #F5F7FF · ink #1F2937
   Fonts:   Poppins (headings) · Nunito Sans (body)
   Signature: rounded cards, soft shadows, mint check-mark bullets,
              centered logo + pill nav, full-pill indigo buttons,
              tabbed-toggle before/after.
   Mobile-first. One CSS file. No frameworks.
   ===================================================================== */

/* ---------- design tokens ---------- */
:root {
  --indigo:      #4F46E5;
  --indigo-dark: #4338CA;
  --indigo-700:  #3730A3;
  --mint:        #34D399;
  --mint-dark:   #10B981;
  --bg:          #F5F7FF;
  --surface:     #FFFFFF;
  --ink:         #1F2937;
  --ink-soft:    #4B5563;
  --ink-faint:   #6B7280;
  --line:        #E4E7F5;
  --indigo-tint: #EEF0FE;
  --mint-tint:   #E6FAF1;

  --shadow-sm: 0 1px 2px rgba(31,41,55,.06), 0 1px 3px rgba(31,41,55,.05);
  --shadow:    0 6px 18px rgba(79,70,229,.08), 0 2px 6px rgba(31,41,55,.05);
  --shadow-lg: 0 16px 40px rgba(79,70,229,.13), 0 4px 12px rgba(31,41,55,.06);

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --pill: 999px;

  --maxw: 1140px;
  --gap:  clamp(1rem, 3vw, 2rem);

  --font-head: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Nunito Sans", "Segoe UI", system-ui, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--indigo); text-decoration: none; }
a:hover { color: var(--indigo-700); }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 .6em;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 6vw, 3rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 4vw, 2.1rem); letter-spacing: -.01em; }
h3 { font-size: clamp(1.15rem, 2.6vw, 1.35rem); font-weight: 600; }
p  { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.2rem; }
table { border-collapse: collapse; width: 100%; }

/* ---------- skip link ---------- */
.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--indigo); color: #fff;
  padding: .6rem 1rem; border-radius: 0 0 var(--r-sm) 0; z-index: 200;
}
.skip:focus { left: 0; color: #fff; }

/* ---------- layout helpers ---------- */
.wrap { width: min(100% - 2rem, var(--maxw)); margin-inline: auto; }
section { padding-block: clamp(2.4rem, 6vw, 4.2rem); }
section > .wrap > p { max-width: 70ch; }
.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 65ch; }
.eyebrow {
  font-family: var(--font-head); font-weight: 600; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--indigo);
  margin: 0 0 .5rem;
}

/* =====================================================================
   HEADER — centered logo + pill nav
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  width: min(100% - 2rem, var(--maxw)); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: .75rem; padding-block: .7rem;
}
.brand {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 700; font-size: 1.12rem;
  color: var(--ink); letter-spacing: -.01em; line-height: 1.1;
}
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 34px; height: 34px; border-radius: 11px; flex: none;
  background: linear-gradient(135deg, var(--indigo), var(--mint));
  box-shadow: var(--shadow-sm);
  display: grid; place-items: center; color: #fff;
  font-weight: 700; font-size: 1rem;
}
.brand small { display: block; font-family: var(--font-body); font-weight: 600;
  font-size: .68rem; color: var(--ink-faint); letter-spacing: .04em; }

.nav { display: none; }
.nav ul { list-style: none; display: flex; flex-wrap: wrap; gap: .15rem; margin: 0; padding: 0; }
.nav a {
  display: inline-block; padding: .5rem .85rem; border-radius: var(--pill);
  font-family: var(--font-head); font-weight: 500; font-size: .92rem;
  color: var(--ink-soft);
}
.nav a:hover, .nav a[aria-current="page"] {
  background: var(--indigo-tint); color: var(--indigo-700);
}

.header-cta { display: none; align-items: center; gap: .5rem; }
.cta-call {
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  color: var(--indigo-700); white-space: nowrap;
}
.cta-call::before { content: "📞 "; }

.nav-toggle {
  appearance: none; border: 1px solid var(--line); background: var(--surface);
  width: 46px; height: 42px; border-radius: 12px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 20px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .25s, opacity .2s; position: relative;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* mobile drawer */
.mobile-nav {
  display: none; border-top: 1px solid var(--line);
  background: var(--surface);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; margin: 0; padding: .5rem 1rem 1rem; }
.mobile-nav a {
  display: block; padding: .7rem .4rem; border-bottom: 1px solid var(--line);
  font-family: var(--font-head); font-weight: 500; color: var(--ink-soft);
}
.mobile-nav a:last-child { border-bottom: 0; }
.mobile-nav .m-cta { display: flex; gap: .6rem; margin-top: .9rem; }
.mobile-nav .m-cta .btn { flex: 1; }

/* =====================================================================
   BUTTONS — full pill, indigo + soft shadow
   ===================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: .8rem 1.6rem; border-radius: var(--pill);
  cursor: pointer; border: 2px solid transparent; transition: transform .15s, box-shadow .2s, background .2s;
  text-align: center; line-height: 1.2;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--indigo); color: #fff; box-shadow: 0 8px 20px rgba(79,70,229,.32);
}
.btn-primary:hover { background: var(--indigo-dark); color: #fff; box-shadow: 0 10px 26px rgba(79,70,229,.4); }
.btn-ghost {
  background: var(--surface); color: var(--indigo-700);
  border-color: var(--indigo); box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { background: var(--indigo-tint); color: var(--indigo-700); }
.btn-mint {
  background: var(--mint); color: #06402a; box-shadow: 0 8px 20px rgba(52,211,153,.32);
}
.btn-mint:hover { background: var(--mint-dark); color: #fff; }
.btn-block { width: 100%; }
.btn-lg { font-size: 1.1rem; padding: 1rem 2.2rem; }

/* Booking panel (replaces the old native quote form) */
.booking-panel {
  background: var(--surface);
  border: 1px solid var(--indigo-tint);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  margin-top: 1.4rem;
  text-align: center;
  max-width: 46rem;
}
.booking-panel > p:first-child {
  font-family: var(--font-head); font-weight: 500;
  font-size: 1.12rem; color: var(--ink); margin: 0 0 1.2rem;
}
.booking-panel .btn-lg { display: inline-flex; }
.booking-panel .hours { display: block; margin-top: 1.1rem; color: var(--ink-faint); }
.booking-panel .hours a { color: var(--indigo-700); font-weight: 600; }

/* =====================================================================
   HERO — light gradient + rounded image card
   ===================================================================== */
.hero {
  background:
    radial-gradient(1100px 500px at 85% -10%, var(--mint-tint), transparent 60%),
    radial-gradient(900px 520px at 0% 0%, var(--indigo-tint), transparent 55%),
    var(--bg);
}
.hero .wrap {
  display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
}
.hero-copy h1 { margin-bottom: .35em; }
.quick-answer { font-size: 1.08rem; color: var(--ink); max-width: 46ch; margin: 0 0 .8em; line-height: 1.45; }
.quick-answer strong { font-weight: 600; }
.hero-copy .sub { font-size: 1.18rem; color: var(--ink-soft); max-width: 38ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.4rem 0 .9rem; }
.hours { font-family: var(--font-head); font-weight: 500; color: var(--ink-faint); font-size: .95rem; }
.hours::before { content: "🕗 "; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .5rem .9rem; margin-top: 1.2rem; padding: 0; list-style: none; }
.hero-badges li {
  font-family: var(--font-head); font-weight: 500; font-size: .85rem; color: var(--ink-soft);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--pill);
  padding: .35rem .85rem; box-shadow: var(--shadow-sm);
}
.hero-badges li::before { content: "✓ "; color: var(--mint-dark); font-weight: 800; }
.hero-media {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 6px solid var(--surface);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/10; }

/* =====================================================================
   IMAGE PLACEHOLDER (.ph)
   ===================================================================== */
.ph {
  background:
    repeating-linear-gradient(45deg, #eceffb 0 14px, #e3e7f7 14px 28px);
  color: var(--ink-faint);
  display: grid; place-items: center;
  font-family: var(--font-head); font-size: .8rem; letter-spacing: .03em;
  min-height: 120px; position: relative;
}
.ph::after {
  content: "image: " attr(data-img);
  position: absolute; bottom: 8px; left: 8px;
  background: rgba(255,255,255,.85); border-radius: 6px;
  padding: 2px 8px; font-size: .72rem; color: var(--ink-faint);
}

/* =====================================================================
   DIRECT ANSWER
   ===================================================================== */
.direct-answer { background: var(--surface); }
.direct-answer .wrap {
  border: 1px solid var(--line); border-left: 5px solid var(--indigo);
  border-radius: var(--r); padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: var(--shadow); background: var(--surface);
  width: min(100% - 2rem, var(--maxw));
}
.direct-answer h2 {
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--indigo); margin-bottom: 1rem;
}
.direct-answer h3 { margin-top: 1.3rem; font-size: 1.18rem; }
.direct-answer h3:first-of-type { margin-top: 0; }
.direct-answer p { color: var(--ink-soft); margin-bottom: .3rem; }
.direct-answer a { font-weight: 700; }

/* =====================================================================
   CITABLE FACTS
   ===================================================================== */
.citable-facts .wrap {
  background: linear-gradient(135deg, var(--indigo-700), var(--indigo));
  border-radius: var(--r-lg); padding: clamp(1.6rem, 4vw, 2.6rem);
  color: #fff; box-shadow: var(--shadow-lg);
}
.citable-facts h2 { color: #fff; }
.citable-facts ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.citable-facts li {
  position: relative; padding-left: 2rem; color: #EEF0FE; line-height: 1.55;
}
.citable-facts li::before {
  content: "✓"; position: absolute; left: 0; top: .05em;
  width: 1.4rem; height: 1.4rem; border-radius: 50%;
  background: var(--mint); color: #06402a; font-weight: 800; font-size: .8rem;
  display: grid; place-items: center;
}

/* =====================================================================
   HOW IT WORKS — 3 cards
   ===================================================================== */
.howto .cards { display: grid; gap: var(--gap); margin-top: 1.5rem; }
.howto .card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); padding: 1.5rem; box-shadow: var(--shadow-sm);
  position: relative;
}
.howto .card .step-num {
  display: inline-grid; place-items: center; width: 2.6rem; height: 2.6rem;
  border-radius: 14px; background: var(--mint-tint); color: var(--mint-dark);
  font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; margin-bottom: .8rem;
}
.howto .card h3 { margin-bottom: .35rem; }

/* =====================================================================
   SERVICES grid
   ===================================================================== */
.services .svc-grid { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: var(--gap); }
.services .svc-grid li {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); padding: 1.4rem 1.5rem; box-shadow: var(--shadow-sm);
  transition: transform .18s, box-shadow .2s;
}
.services .svc-grid li:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.services .svc-grid h3 { margin: 0 0 .3rem; }
.services .svc-grid h3 a { color: var(--ink); }
.services .svc-grid h3 a:hover { color: var(--indigo); }
.services .svc-grid p { margin: 0; color: var(--ink-soft); font-size: .98rem; }
.svc-icon {
  width: 2.8rem; height: 2.8rem; border-radius: 14px; margin-bottom: .8rem;
  background: var(--indigo-tint); display: grid; place-items: center; font-size: 1.3rem;
}
.svc-price { display: block; margin-top: .6rem; font-family: var(--font-head);
  font-weight: 600; font-size: .9rem; color: var(--mint-dark); }

/* =====================================================================
   BEFORE / AFTER — tabbed toggle (Before | After)
   ===================================================================== */
.before-after { background: var(--surface); }
.ba { max-width: 760px; margin: 1.5rem auto 0; }
.ba-tabs {
  display: inline-flex; gap: .25rem; padding: .3rem; margin: 0 auto 1.1rem;
  background: var(--indigo-tint); border-radius: var(--pill);
  position: relative; left: 50%; transform: translateX(-50%);
}
.ba-tab {
  appearance: none; border: 0; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  padding: .55rem 1.5rem; border-radius: var(--pill);
  background: transparent; color: var(--indigo-700); transition: background .2s, color .2s;
}
.ba-tab[aria-selected="true"] {
  background: var(--indigo); color: #fff; box-shadow: var(--shadow-sm);
}
.ba-stage {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 6px solid var(--surface);
}
.ba-stage figure { margin: 0; }
.ba-panel { display: none; }
.ba-panel.active { display: block; }
.ba-panel img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.ba-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-head); font-weight: 700; font-size: .75rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .8rem; border-radius: var(--pill); color: #fff;
}
.ba-tag.before { background: rgba(31,41,55,.85); }
.ba-tag.after  { background: var(--mint-dark); }
.ba figcaption { text-align: center; color: var(--ink-faint); font-size: .92rem; margin-top: .9rem; }

/* =====================================================================
   PRICING table
   ===================================================================== */
.pricing .price-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow); overflow: hidden;
  margin-top: 1.4rem;
}
.pricing table { font-size: 1.02rem; }
.pricing th, .pricing td { text-align: left; padding: .95rem 1.3rem; border-bottom: 1px solid var(--line); }
.pricing thead th {
  background: var(--indigo-tint); color: var(--indigo-700);
  font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  letter-spacing: .06em; text-transform: uppercase;
}
.pricing tbody tr:last-child td { border-bottom: 0; }
.pricing tbody td:last-child { font-family: var(--font-head); font-weight: 600; color: var(--ink); white-space: nowrap; }
.pricing tbody tr:hover { background: var(--bg); }
.price-note { margin-top: 1rem; color: var(--ink-soft); font-size: .98rem; }
.warranty-flag {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: 1rem;
  background: var(--mint-tint); color: var(--mint-dark);
  font-family: var(--font-head); font-weight: 600; font-size: .92rem;
  padding: .5rem 1rem; border-radius: var(--pill);
}
.warranty-flag::before { content: "🛡"; }

/* =====================================================================
   PROCESS — numbered list
   ===================================================================== */
.process ol { list-style: none; counter-reset: step; padding: 0; margin: 1.4rem 0 0; display: grid; gap: 1rem; }
.process li {
  counter-increment: step; position: relative; padding: 1.1rem 1.3rem 1.1rem 4rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--shadow-sm); color: var(--ink-soft);
}
.process li::before {
  content: counter(step); position: absolute; left: 1.1rem; top: 1.05rem;
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--indigo); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  display: grid; place-items: center;
}
.process li strong { color: var(--ink); font-family: var(--font-head); }

/* =====================================================================
   ROUTING table
   ===================================================================== */
.routing .table-scroll { overflow-x: auto; border-radius: var(--r); box-shadow: var(--shadow-sm); margin-top: 1.4rem; }
.routing table { background: var(--surface); min-width: 560px; }
.routing th, .routing td { text-align: left; padding: .85rem 1.1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.routing thead th {
  background: var(--ink); color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  letter-spacing: .05em; text-transform: uppercase;
}
.routing tbody tr:nth-child(even) { background: var(--bg); }
.routing tbody tr:last-child td { border-bottom: 0; }
.routing td:first-child { font-family: var(--font-head); font-weight: 600; color: var(--ink); }

/* =====================================================================
   AREAS
   ===================================================================== */
.areas .wrap { max-width: 820px; }
.areas p { color: var(--ink-soft); }

/* =====================================================================
   REVIEWS
   ===================================================================== */
.reviews .review-grid { display: grid; gap: var(--gap); margin-top: 1.5rem; }
.reviews blockquote {
  margin: 0; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); padding: 1.5rem 1.6rem; box-shadow: var(--shadow-sm);
}
.reviews .stars { color: #F5B301; letter-spacing: .1em; font-size: .95rem; margin-bottom: .6rem; }
.reviews blockquote p { font-size: 1.02rem; color: var(--ink); margin-bottom: .9rem; }
.reviews cite {
  display: block; font-style: normal; font-family: var(--font-head);
  font-weight: 600; font-size: .9rem; color: var(--ink-faint);
}

/* =====================================================================
   FAQ
   ===================================================================== */
.faq .wrap { max-width: 820px; }
.faq .qa {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); padding: 1.2rem 1.4rem; box-shadow: var(--shadow-sm);
  margin-top: 1rem;
}
.faq .qa h3 { margin: 0 0 .4rem; font-size: 1.08rem; color: var(--ink); }
.faq .qa h3::before { content: "?"; display: inline-grid; place-items: center;
  width: 1.5rem; height: 1.5rem; margin-right: .6rem; vertical-align: -.25rem;
  border-radius: 50%; background: var(--indigo-tint); color: var(--indigo-700);
  font-size: .85rem; font-weight: 700; }
.faq .qa p { margin: 0; color: var(--ink-soft); }

/* =====================================================================
   RELATED
   ===================================================================== */
.related { background: var(--surface); }
.related .wrap { max-width: 900px; }
.related .link-row { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1rem; }
.related .link-row a {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--pill);
  padding: .6rem 1.2rem; font-family: var(--font-head); font-weight: 500; font-size: .95rem;
  color: var(--ink-soft); transition: background .2s, color .2s;
}
.related .link-row a:hover { background: var(--indigo-tint); color: var(--indigo-700); }
.related .link-row a::after { content: "→"; color: var(--indigo); }

/* =====================================================================
   FINAL CTA
   ===================================================================== */
.final-cta { background: var(--bg); }
.final-cta .wrap {
  background: linear-gradient(135deg, var(--indigo), var(--indigo-700));
  border-radius: var(--r-lg); padding: clamp(2rem, 5vw, 3.4rem);
  text-align: center; color: #fff; box-shadow: var(--shadow-lg);
}
.final-cta h2 { color: #fff; }
.final-cta p { color: #DEE0FB; max-width: 50ch; margin-inline: auto; }
.final-cta .hours { color: #C7CBF7; }
.final-cta .hours::before { content: "🕗 "; }
.final-cta .btn-row { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: 1.4rem; }
.final-cta .btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.6); }
.final-cta .btn-ghost:hover { background: rgba(255,255,255,.22); color: #fff; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer {
  background: var(--ink); color: #C5CAD6; padding-block: clamp(2.4rem, 5vw, 3.4rem);
  font-size: .95rem;
}
.site-footer .wrap { display: grid; gap: 1.6rem; }
.site-footer a { color: #C5CAD6; }
.site-footer a:hover { color: #fff; }
.site-footer .nap strong { color: #fff; font-family: var(--font-head); font-size: 1.05rem; }
.site-footer .nap a { color: var(--mint); font-weight: 600; }
.footer-brand { display: inline-flex; align-items: center; gap: .55rem; margin-bottom: .8rem; }
.footer-brand .brand-mark { width: 30px; height: 30px; border-radius: 9px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; }
.footer-nav a { font-family: var(--font-head); font-weight: 500; }
.copyright { color: #8089A0; font-size: .85rem; border-top: 1px solid #313a4d; padding-top: 1.2rem; margin: 0; }

/* =====================================================================
   BREADCRUMB (inner pages)
   ===================================================================== */
.breadcrumb { background: var(--surface); border-bottom: 1px solid var(--line); padding-block: .8rem; }
.breadcrumb ol {
  list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; margin: 0;
  font-family: var(--font-head); font-size: .85rem; color: var(--ink-faint);
}
.breadcrumb li + li::before { content: "/"; margin-right: .4rem; color: var(--line); }
.breadcrumb a { color: var(--ink-faint); font-weight: 500; }
.breadcrumb a:hover { color: var(--indigo); }
.breadcrumb [aria-current="page"] { color: var(--ink); }

/* =====================================================================
   RESPONSIVE BREAKPOINTS
   ===================================================================== */
@media (min-width: 560px) {
  .howto .cards { grid-template-columns: repeat(3, 1fr); }
  .services .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews .review-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 880px) {
  .hero .wrap { grid-template-columns: 1.05fr .95fr; }
  .hero { padding-block: clamp(3rem, 7vw, 5rem); }
  .services .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews .review-grid { grid-template-columns: repeat(3, 1fr); }
  .site-footer .wrap { grid-template-columns: 1.4fr 1fr; align-items: start; }
  .site-footer .copyright { grid-column: 1 / -1; }
}

@media (min-width: 980px) {
  .nav { display: block; }
  .header-cta { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
  .header-inner { display: grid; grid-template-columns: auto 1fr auto; }
  .nav { justify-self: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

/* =====================================================================
   STICKY MOBILE CALL-BAR (persona #5 — full-pill indigo + mint, built by JS)
   ===================================================================== */
.mobile-callbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  display: flex; gap: .5rem; padding: .5rem;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(140%) blur(8px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 18px rgba(79,70,229,.10);
}
.mobile-callbar a {
  flex: 1; min-height: 48px;
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  border-radius: var(--pill); border: 2px solid transparent; line-height: 1.1;
  text-align: center;
}
.mobile-callbar .cb-call {
  background: var(--mint); color: #06402a; box-shadow: 0 6px 16px rgba(52,211,153,.30);
}
.mobile-callbar .cb-call:hover { background: var(--mint-dark); color: #fff; }
.mobile-callbar .cb-book {
  background: var(--indigo); color: #fff; box-shadow: 0 6px 16px rgba(79,70,229,.30);
}
.mobile-callbar .cb-book:hover { background: var(--indigo-dark); color: #fff; }
.mobile-callbar .cb-call::before { content: "📞"; }
.mobile-callbar .cb-book::before { content: "📅"; }
body { padding-bottom: 64px; }
@media (min-width: 768px) {
  .mobile-callbar { display: none; }
  body { padding-bottom: 0; }
}

/* =====================================================================
   QUOTE FORM (persona #5 — rounded card, soft shadow, mint focus ring)
   ===================================================================== */
.quote-form {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow);
  padding: clamp(1.4rem, 3vw, 2.2rem); margin-top: 1.4rem;
}
.quote-form .field { display: grid; gap: .35rem; margin-bottom: 1rem; }
.quote-form label {
  font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--ink);
}
.quote-form .req { color: var(--indigo); }
.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(--line); border-radius: var(--r-sm);
  padding: .7rem .9rem; width: 100%;
}
.quote-form textarea { resize: vertical; min-height: 110px; }
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none; border-color: var(--indigo);
  box-shadow: 0 0 0 3px var(--mint-tint);
}
.quote-form .btn { width: 100%; }
.quote-form .form-note { margin: .9rem 0 0; font-size: .9rem; color: var(--ink-faint); }
.quote-form .form-note a { font-weight: 700; }
@media (min-width: 620px) {
  .quote-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .quote-form .field-row .field { margin-bottom: 1rem; }
}

/* compact homepage variant — sits inside the final-cta panel */
.quote-compact {
  background: var(--surface); border-radius: var(--r);
  padding: clamp(1.2rem, 3vw, 1.8rem); margin: 1.6rem auto 0;
  max-width: 560px; text-align: left; box-shadow: var(--shadow);
}
.quote-compact .field { margin-bottom: .8rem; }
.quote-compact label { color: var(--ink); }
/* 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;}}
