/* MR Tub Repair — porcelain white + deep teal + warm gold */
:root {
  --deep: #0e4a55;
  --deep-2: #0a3a43;
  --deep-3: #062830;
  --aqua: #159cb0;
  --aqua-light: #5cc6d6;
  --gold: #e7a53a;
  --gold-light: #f2c069;
  --gold-dark: #b97e1d;
  --porcelain: #f6fbfc;
  --paper: #e9f3f4;
  --ink: #15252b;
  --muted: #516067;
  --line: #d3e4e7;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Source Sans 3", -apple-system, BlinkMacSystemFont, sans-serif;
  --wrap: 68rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 66px; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--aqua); }
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.12; }
h2 { font-size: clamp(1.7rem, 4.5vw, 2.6rem); font-weight: 900; margin-bottom: .6rem; color: var(--deep); }
h3 { font-size: 1.3rem; }
section { padding: clamp(2.8rem, 7vw, 5rem) clamp(1rem, 5vw, 2.5rem); }
.wrap { max-width: var(--wrap); margin: 0 auto; }
.section-lede { max-width: 44rem; color: var(--muted); margin-bottom: 2rem; font-size: 1.08rem; }
.center { text-align: center; }
.center .section-lede { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-block; padding: .9rem 1.7rem;
  font-weight: 700; text-decoration: none; border-radius: 8px;
  font-size: 1.05rem; font-family: var(--sans);
  transition: transform .08s ease, box-shadow .15s ease, background .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--gold); color: #2c1d05; border: 2px solid var(--gold); box-shadow: 0 6px 18px rgba(185,126,29,.30); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-ghost { border: 2px solid currentColor; color: var(--deep); background: transparent; }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.15rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: .6rem;
  padding: .55rem clamp(.8rem, 4vw, 2rem);
  background: rgba(10, 58, 67, .97);
  color: var(--porcelain);
  backdrop-filter: blur(6px);
}
.brand { display: flex; align-items: center; gap: .45rem; min-width: 0; flex-shrink: 1; font-family: var(--serif); font-weight: 900; font-size: 1.12rem; color: var(--porcelain); text-decoration: none; letter-spacing: .01em; }
.brand-mark { width: 32px; height: 32px; flex: none; }
.brand-txt { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.brand span { color: var(--gold-light); }
.site-nav { display: none; }
.site-nav a { color: var(--porcelain); text-decoration: none; font-size: .96rem; opacity: .92; }
.site-nav a:hover { color: var(--gold-light); }
.header-call { margin-left: auto; flex-shrink: 0; color: var(--gold-light); font-weight: 800; text-decoration: none; font-size: 1.02rem; white-space: nowrap; }
.nav-toggle { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 38px; padding: 0; font-size: 1.35rem; line-height: 1; cursor: pointer; background: transparent; color: var(--porcelain); border: 1.5px solid rgba(92,198,214,.5); border-radius: 8px; }
.site-nav.open {
  display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--deep-2); padding: .3rem clamp(.8rem, 4vw, 2rem) 1rem; gap: 0;
  box-shadow: 0 14px 26px rgba(0,0,0,.34); border-top: 2px solid var(--gold);
}
.site-nav.open a { padding: .9rem .2rem; font-size: 1.08rem; opacity: 1; border-bottom: 1px solid rgba(92,198,214,.14); }
@media (min-width: 900px) {
  .site-header { gap: 1.2rem; }
  .site-nav { display: flex; gap: 1.3rem; margin-left: auto; }
  .header-call { margin-left: 1.4rem; }
  .nav-toggle { display: none; }
}
@media (max-width: 400px) {
  .brand { font-size: .96rem; }
  .brand-mark { width: 28px; height: 28px; }
  .header-call { font-size: .92rem; }
}

/* Hero */
.hero {
  position: relative; overflow: hidden;
  color: var(--porcelain);
  padding: clamp(3rem, 8vw, 6rem) clamp(1.2rem, 5vw, 2.5rem) clamp(3.5rem, 9vw, 6.5rem);
  background:
    radial-gradient(120% 90% at 85% 5%, rgba(21,156,176,.45), transparent 55%),
    linear-gradient(160deg, #0f5261 0%, #0a3a43 55%, #062830 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(120% 100% at 50% 0%, #000 40%, transparent 85%);
          mask-image: radial-gradient(120% 100% at 50% 0%, #000 40%, transparent 85%);
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 10px; z-index: 2;
  background: repeating-linear-gradient(90deg, var(--gold-dark) 0 34px, var(--gold) 34px 36px);
  opacity: .95;
}
.hero-inner { max-width: 47rem; margin: 0 auto; position: relative; z-index: 3; animation: rise .8s ease both; }
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.hero-kicker { text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; color: var(--gold-light); margin-bottom: .7rem; font-weight: 600; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .4rem; background: var(--gold); color: #2c1d05;
  font-weight: 800; font-size: clamp(.9rem, 2.4vw, 1.02rem);
  padding: .45rem 1.1rem; border-radius: 999px; margin-bottom: 1rem;
}
.hero h1 { font-size: clamp(2rem, 6.2vw, 3.5rem); font-weight: 900; margin-bottom: .8rem; }
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero-sub { font-size: clamp(1.05rem, 2.6vw, 1.28rem); margin-bottom: 1.5rem; opacity: .96; max-width: 41rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.3rem; }
.hero .btn-ghost { border-color: var(--porcelain); color: var(--porcelain); }
.hero-trust { display: flex; flex-wrap: wrap; gap: .5rem 1.3rem; color: var(--gold-light); font-weight: 600; font-size: .98rem; }
.hero-trust span::before { content: "✓ "; }

/* Marquee */
.marquee {
  overflow: hidden; white-space: nowrap;
  background: var(--deep-3); color: var(--gold-light);
  padding: .7rem 0; font-family: var(--serif); font-weight: 700;
  font-size: clamp(.95rem, 2.6vw, 1.3rem); letter-spacing: .05em; text-transform: uppercase;
}
.marquee-track { display: inline-flex; animation: marquee 24s linear infinite; }
.marquee-track span { flex-shrink: 0; padding-right: 1.5rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Before / After sliders */
.transform { background: var(--porcelain); }
.transform .wrap { max-width: var(--wrap); }
.ba-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .ba-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .ba-grid { grid-template-columns: repeat(3, 1fr); } }
.ba-item h3 { color: var(--deep); font-size: 1.12rem; margin: .7rem 0 .1rem; }
.ba-item p { color: var(--muted); font-size: .96rem; }
.ba-slider {
  position: relative; width: 100%; aspect-ratio: 4 / 3;
  border-radius: 14px; overflow: hidden; border: 1px solid var(--line);
  background: #dcecef; box-shadow: 0 8px 24px rgba(14,74,85,.10);
  user-select: none; -webkit-user-select: none; touch-action: pan-y; cursor: ew-resize;
}
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-before { clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); z-index: 2; }
.ba-after { z-index: 1; }
.ba-divider { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 3px; background: #fff; transform: translateX(-50%); z-index: 3; box-shadow: 0 0 0 1px rgba(14,74,85,.25), 0 0 10px rgba(0,0,0,.35); pointer-events: none; }
.ba-handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; font-weight: 900; box-shadow: 0 3px 12px rgba(0,0,0,.4);
}
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; z-index: 4; pointer-events: none; }
.ba-label {
  position: absolute; top: .7rem; z-index: 3; font-weight: 800; letter-spacing: .05em;
  font-size: .72rem; text-transform: uppercase; padding: .28rem .7rem; border-radius: 999px;
  color: #fff; pointer-events: none;
}
.ba-label-before { left: .7rem; background: rgba(14,74,85,.86); }
.ba-label-after  { right: .7rem; background: rgba(21,156,176,.92); }
.ba-hint { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.4rem; color: var(--muted); font-size: .95rem; font-weight: 600; }
.ba-hint .dot { animation: nudge 1.6s ease-in-out infinite; }
@keyframes nudge { 0%,100% { transform: translateX(-3px); } 50% { transform: translateX(3px); } }
.sample-note { margin-top: 1.3rem; font-size: .9rem; color: var(--muted); font-style: italic; }

/* Services — category silo */
.services { background: var(--paper); }
.section-eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; font-weight: 700; color: var(--gold-dark); margin-bottom: .4rem; }
.cat-block { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: clamp(1.2rem, 3vw, 1.8rem); margin-bottom: 1.4rem; box-shadow: 0 6px 20px rgba(14,74,85,.06); }
.cat-head { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.1rem; }
.cat-ico { width: 54px; height: 54px; flex: none; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: linear-gradient(150deg, #0f5261, #0a3a43); }
.cat-ico svg { width: 32px; height: 32px; }
.cat-head h2 { font-size: clamp(1.3rem, 4vw, 1.7rem); color: var(--deep); margin: 0 0 .25rem; }
.cat-head h2 a { color: inherit; text-decoration: none; }
.cat-head h2 a:hover { color: var(--aqua); }
.cat-head > div > p { color: var(--muted); font-size: 1rem; margin: 0; }
.cat-children { display: grid; gap: .6rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .cat-children { grid-template-columns: 1fr 1fr; } }
.cat-child { display: flex; align-items: center; gap: .7rem; padding: .7rem .8rem; border: 1px solid var(--line); border-radius: 10px; text-decoration: none; background: var(--porcelain); transition: border-color .12s ease, transform .1s ease; }
.cat-child:hover { border-color: var(--gold); transform: translateY(-1px); }
.ci-ico { width: 38px; height: 38px; flex: none; border-radius: 8px; display: flex; align-items: center; justify-content: center; background: linear-gradient(150deg, #0f5261, #0a3a43); }
.ci-ico svg { width: 24px; height: 24px; }
.ci-txt { display: flex; flex-direction: column; min-width: 0; }
.ci-txt strong { color: var(--deep); font-size: 1rem; line-height: 1.2; }
.ci-txt em { color: var(--muted); font-style: normal; font-size: .85rem; line-height: 1.3; }
.ci-arrow { margin-left: auto; color: var(--gold-dark); font-weight: 800; flex: none; font-size: 1.1rem; }
.cat-all { margin-top: 1.1rem; }
/* Hub page: list of child services + a child's link back up */
.hub-children { display: grid; gap: .7rem; grid-template-columns: 1fr; margin: .3rem 0 1.4rem; }
@media (min-width: 600px) { .hub-children { grid-template-columns: 1fr 1fr; } }
.hub-children a { display: block; border: 1px solid var(--line); border-radius: 10px; padding: .8rem 1rem; text-decoration: none; background: #fff; transition: border-color .12s ease; }
.hub-children a:hover { border-color: var(--gold); }
.hub-children strong { display: block; color: var(--deep); margin-bottom: .15rem; }
.hub-children span { color: var(--muted); font-size: .9rem; }
.prose .parent-link { background: var(--paper); border-left: 4px solid var(--gold); border-radius: 6px; padding: .6rem .9rem; font-size: .95rem; }
.service-grid { display: grid; gap: 1.3rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .service-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column; box-shadow: 0 6px 20px rgba(14,74,85,.06);
  transition: transform .12s ease, box-shadow .15s ease;
}
.svc-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(14,74,85,.14); }
.svc-ico { display: flex; align-items: center; justify-content: center; height: 118px; background: linear-gradient(150deg, #0f5261, #0a3a43); }
.svc-ico svg { width: 58px; height: 58px; }
.svc-body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.svc-body h3 { color: var(--deep); margin-bottom: .35rem; }
.svc-body p { color: var(--muted); font-size: .98rem; margin-bottom: .9rem; }
.svc-body .svc-link { margin-top: auto; font-weight: 700; text-decoration: none; color: var(--aqua); }
.svc-body .svc-link:hover { text-decoration: underline; }

/* Why us / promise */
.promise { background: var(--deep); color: var(--porcelain); }
.promise h2 { color: #fff; }
.promise .section-lede { color: #cfe6ea; }
.promise-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .promise-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .promise-grid { grid-template-columns: repeat(3, 1fr); } }
.promise-card { background: rgba(255,255,255,.06); border: 1px solid rgba(92,198,214,.28); border-radius: 12px; padding: 1.3rem; }
.promise-card .ic { font-size: 1.6rem; margin-bottom: .5rem; display: block; }
.promise-card h3 { color: var(--gold-light); margin-bottom: .3rem; }
.promise-card p { color: #d6e8ec; font-size: .98rem; }

/* Steps */
.steps { background: var(--paper); }
.step-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .step-grid { grid-template-columns: repeat(4, 1fr); } }
.step { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 1.3rem 1.2rem; }
.step .num { font-family: var(--serif); font-weight: 900; font-size: 2.4rem; color: var(--gold); line-height: 1; display: block; margin-bottom: .3rem; }
.step h3 { color: var(--deep); margin-bottom: .3rem; font-size: 1.15rem; }
.step p { color: var(--muted); font-size: .96rem; }

/* Reviews */
.reviews { background: var(--deep-2); color: var(--porcelain); text-align: center; }
.reviews h2 { color: #fff; }
.reviews p { color: #cfe6ea; max-width: 42rem; margin: 0 auto 1.5rem; font-size: 1.08rem; }
.stars { color: var(--gold-light); font-size: 1.7rem; letter-spacing: .1em; margin-bottom: .3rem; }
.review-count { font-family: var(--serif); font-weight: 900; font-size: clamp(2.4rem, 8vw, 3.6rem); color: #fff; line-height: 1; }
.review-count span { color: var(--gold-light); }
.review-sub { text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; color: var(--gold-light); font-weight: 700; margin-bottom: 1.4rem; }

/* Service area */
.area { background: var(--porcelain); }
.area-grid { display: grid; gap: .6rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .area-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .area-grid { grid-template-columns: repeat(4, 1fr); } }
.area-grid a {
  display: block; background: #fff; border: 1px solid var(--line); border-radius: 8px;
  padding: .7rem .9rem; text-decoration: none; color: var(--deep); font-weight: 600;
  transition: border-color .12s ease, color .12s ease;
}
.area-grid a:hover { border-color: var(--gold); color: var(--gold-dark); }
.area-more { color: var(--muted); margin-top: 1.2rem; font-size: .98rem; }
.area-map { width: 100%; min-height: 340px; border: 0; border-radius: 12px; margin-top: 1.8rem; }

/* About */
.about { background: var(--paper); }
.about-wrap { display: grid; gap: 1.6rem; align-items: center; }
@media (min-width: 860px) { .about-wrap { grid-template-columns: 1.1fr 1fr; gap: 3rem; } }
.about p { margin-bottom: 1rem; color: var(--muted); }
.about .callout { background: #fff; border-left: 5px solid var(--gold); border-radius: 8px; padding: 1.2rem 1.3rem; }
.about .callout strong { color: var(--deep); }

/* Contact */
.contact { background: var(--deep); color: var(--porcelain); }
.contact h2 { color: #fff; }
.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 820px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact .lede { color: #cfe6ea; font-size: 1.1rem; margin-bottom: 1.4rem; }
.contact-line { font-size: 1.15rem; margin-bottom: .7rem; }
.contact-line a { color: var(--gold-light); font-weight: 800; text-decoration: none; }
.contact-card { background: rgba(255,255,255,.07); border: 1px solid rgba(92,198,214,.3); border-radius: 14px; padding: 1.5rem; }
.contact-card h3 { color: #fff; margin-bottom: .5rem; }
.contact-card p { color: #d6e8ec; margin-bottom: 1rem; }
.contact-card .btn { display: block; text-align: center; margin-bottom: .7rem; }
.contact-card .btn-text { background: rgba(255,255,255,.95); color: var(--deep); border: 2px solid #fff; }

/* Footer */
.site-footer { background: var(--deep-3); color: #bcd6da; text-align: center; padding: 2.4rem 1rem 6rem; font-size: .93rem; }
.site-footer a { color: var(--gold-light); text-decoration: none; }
.footer-links { display: flex; flex-wrap: wrap; gap: .5rem 1.1rem; justify-content: center; margin-bottom: 1rem; }
.footer-links a { font-weight: 600; }
.site-footer .fine { color: #7fa0a6; margin-top: .8rem; font-size: .85rem; }

/* Floating call/text buttons */
.sticky-bar {
  position: fixed; right: calc(1rem + env(safe-area-inset-right)); left: auto;
  bottom: calc(1.2rem + env(safe-area-inset-bottom));
  z-index: 60; display: flex; flex-direction: column; align-items: stretch; gap: .7rem;
  pointer-events: none;
}
.sticky-bar a {
  pointer-events: auto; display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-width: 132px; padding: .85rem 1.5rem; border-radius: 999px; text-decoration: none;
  font-weight: 800; font-size: 1.06rem; letter-spacing: .01em;
  transition: transform .12s ease, box-shadow .12s ease;
}
.sticky-bar a:hover { transform: translateY(-1px); }
.sticky-bar a:active { transform: translateY(2px) scale(.97); }
.sticky-bar .sb-call {
  background: var(--gold); color: #2c1d05; border: 1.5px solid var(--gold-light);
  animation: glow 2.4s ease-in-out infinite;
}
.sticky-bar .sb-text {
  background: rgba(10,58,67,.96); color: var(--porcelain); border: 1.5px solid var(--gold);
  backdrop-filter: blur(4px); animation: glow 2.4s ease-in-out infinite .4s;
}
@keyframes glow {
  0%, 100% { box-shadow: 0 0 12px rgba(231,165,58,.45), 0 8px 22px rgba(0,0,0,.32); }
  50%      { box-shadow: 0 0 26px rgba(231,165,58,.85), 0 8px 22px rgba(0,0,0,.32); }
}
@media (prefers-reduced-motion: reduce) { .sticky-bar a { animation: none; box-shadow: 0 0 16px rgba(231,165,58,.55), 0 8px 22px rgba(0,0,0,.32); } }

/* ===== Interior pages ===== */
.page-hero {
  position: relative; overflow: hidden; color: var(--porcelain);
  padding: clamp(2.4rem,7vw,4rem) clamp(1.2rem,5vw,2.5rem);
  background:
    radial-gradient(120% 90% at 85% 0%, rgba(21,156,176,.4), transparent 55%),
    linear-gradient(160deg, #0f5261 0%, #0a3a43 60%, #062830 100%);
}
.page-hero .wrap { max-width: var(--wrap); position: relative; z-index: 2; }
.crumbs { font-size: .85rem; color: var(--gold-light); margin-bottom: .8rem; }
.crumbs a { color: var(--gold-light); text-decoration: none; }
.page-hero h1 { font-size: clamp(1.8rem, 5vw, 2.9rem); font-weight: 900; margin-bottom: .7rem; }
.page-hero p { color: #dcecef; font-size: 1.1rem; max-width: 42rem; margin-bottom: 1.2rem; }
.page-hero .hero-cta { display: flex; flex-wrap: wrap; gap: .7rem; }
.page-hero .btn-ghost { border-color: var(--porcelain); color: var(--porcelain); }

.prose { background: var(--porcelain); }
.prose .wrap { max-width: 46rem; }
.prose h2 { margin: 1.8rem 0 .6rem; }
.prose h3 { color: var(--deep); margin: 1.4rem 0 .4rem; }
.prose p { margin-bottom: 1rem; color: #35434a; }
.prose ul { margin: 0 0 1.2rem 1.2rem; }
.prose li { margin-bottom: .45rem; color: #35434a; }
.prose a { font-weight: 600; }
.prose .lead { font-size: 1.15rem; color: var(--muted); }
.prose .ba-slider { margin: 1.6rem 0 .6rem; }

.faq { background: var(--paper); }
.faq .wrap { max-width: 46rem; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: .3rem 1.1rem; margin-bottom: .7rem; }
.faq summary { cursor: pointer; font-weight: 700; color: var(--deep); padding: .8rem 0; font-size: 1.05rem; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--gold); font-weight: 900; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); padding-bottom: .9rem; }

.cta-band { background: var(--gold); color: #2c1d05; text-align: center; }
.cta-band h2 { color: #2c1d05; }
.cta-band p { max-width: 38rem; margin: 0 auto 1.4rem; font-weight: 600; }
.cta-band .btn-primary { background: var(--deep); border-color: var(--deep); color: var(--porcelain); }
.cta-band .btn-primary:hover { background: var(--deep-2); border-color: var(--deep-2); }

.related { background: var(--porcelain); }
.related .wrap { max-width: var(--wrap); }
.related-grid { display: grid; gap: .7rem; grid-template-columns: repeat(2,1fr); margin-top: 1rem; }
@media (min-width: 720px) { .related-grid { grid-template-columns: repeat(3,1fr); } }
.related-grid a { display: block; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: .8rem 1rem; text-decoration: none; color: var(--deep); font-weight: 600; }
.related-grid a:hover { border-color: var(--gold); color: var(--gold-dark); }

/* Reviews page — live wall slot */
#google-review-wall { margin-top: 1rem; }
.review-wall-pending {
  background: #fff; border: 1px dashed var(--aqua); border-radius: 14px;
  padding: 2rem 1.4rem; text-align: center; color: var(--muted);
}
.review-wall-pending p { margin-bottom: .6rem; }
.review-wall-pending strong { color: var(--deep); }
