/* Optimum Plumbing & Heating — v2 "water & flame" identity */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Source+Sans+3:wght@400;600;700&family=Caveat:wght@600&display=swap');

:root {
  --steel: #16232e;
  --steel-deep: #0e1821;
  --water: #1479c0;
  --water-deep: #0e5c94;
  --flame: #f26a21;
  --flame-deep: #d55412;
  --paper: #f6f8fa;
  --card: #ffffff;
  --ink: #1c2833;
  --ink-soft: #51616f;
  --line: #dde5ec;
  --gold: #f0a92e;
  --radius: 8px;
  --shadow: 0 12px 34px rgba(14, 24, 33, 0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1.08;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.015em;
}
img { max-width: 100%; display: block; }
a { color: var(--water-deep); }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.hand { font-family: 'Caveat', cursive; font-size: 1.5rem; color: var(--flame-deep); transform: rotate(-2deg); display: inline-block; text-transform: none; }

/* dual-brand underline motif */
.duo::after {
  content: '';
  display: block;
  width: 84px;
  height: 5px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--water) 0 50%, var(--flame) 50% 100%);
  border-radius: 3px;
}

/* ---------- top bar + header ---------- */
.topbar {
  background: var(--steel-deep);
  color: #b9c9d6;
  font-size: 0.85rem;
  padding: 7px 0;
}
.topbar .wrap { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.topbar a { color: #ffc89e; text-decoration: none; font-weight: 700; }

header.site {
  background: var(--card);
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, var(--water) 0 50%, var(--flame) 50% 100%) 1;
  position: sticky;
  top: 0;
  z-index: 100;
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
}
.logo { text-decoration: none; display: flex; align-items: center; gap: 10px; }
.logo svg { flex-shrink: 0; }
.logo-text { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; }
.logo-text b { display: block; font-size: 1.35rem; color: var(--steel); letter-spacing: 0.03em; line-height: 1.05; }
.logo-text span { display: block; font-size: 0.74rem; letter-spacing: 0.22em; color: var(--water-deep); font-weight: 600; }

nav.main { display: flex; gap: 24px; align-items: center; }
nav.main a {
  text-decoration: none;
  color: var(--ink);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.05rem;
  padding: 6px 2px;
  border-bottom: 3px solid transparent;
}
nav.main a:hover { color: var(--flame-deep); }
nav.main a[aria-current="page"] { border-bottom-color: var(--flame); color: var(--steel); }

.btn {
  display: inline-block;
  background: var(--flame);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: none;
  font-size: 1.08rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn:hover { background: var(--flame-deep); transform: translateY(-1px); }
.btn.blue { background: var(--water); }
.btn.blue:hover { background: var(--water-deep); }
.btn.ghost { background: transparent; color: var(--steel); border: 2px solid var(--steel); }
.btn.ghost:hover { background: var(--steel); color: #fff; }
.header-call { display: flex; align-items: center; gap: 14px; }
.header-call .num { text-align: right; line-height: 1.2; }
.header-call .num a { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.35rem; color: var(--steel); text-decoration: none; letter-spacing: 0.02em; }
.header-call .num small { display: block; color: var(--ink-soft); font-size: 0.78rem; }

.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 8px; padding: 9px 11px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--steel); margin: 5px 0; }

/* ---------- hero with booking card ---------- */
.hero {
  position: relative;
  color: #eaf1f7;
  background: var(--steel);
  isolation: isolate;
}
.hero .bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(11, 21, 30, 0.94) 0%, rgba(11, 21, 30, 0.82) 46%, rgba(11, 21, 30, 0.45) 100%);
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
  padding-top: 66px;
  padding-bottom: 66px;
}
.hero .kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffd9ba;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.hero h1 .water-word { color: #5db7ee; }
.hero h1 .flame-word { color: #ff9c5b; }
.hero p.lead { font-size: 1.14rem; max-width: 32rem; margin-bottom: 26px; color: #c6d4e0; }
.hero-points { list-style: none; display: grid; gap: 10px; margin-bottom: 8px; }
.hero-points li { display: flex; gap: 10px; align-items: baseline; font-size: 1.02rem; color: #dbe6ef; }
.hero-points li::before { content: '✓'; color: #5db7ee; font-weight: 700; }

/* booking card */
.book-card {
  background: var(--card);
  color: var(--ink);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 28px;
  border-top: 6px solid;
  border-image: linear-gradient(90deg, var(--water) 0 50%, var(--flame) 50% 100%) 1;
}
.book-card h2 { font-size: 1.6rem; margin-bottom: 4px; }
.book-card .sub { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 18px; }
.book-card .field { margin-bottom: 13px; }
.book-card label { display: block; font-weight: 700; font-size: 0.85rem; margin-bottom: 4px; color: var(--steel); }
.book-card input, .book-card select, .book-card textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--paper);
}
.book-card input:focus, .book-card select:focus, .book-card textarea:focus { outline: 2px solid var(--water); outline-offset: 1px; }
.book-card .btn { width: 100%; text-align: center; }
.book-card .alt { text-align: center; font-size: 0.88rem; color: var(--ink-soft); margin-top: 12px; }
.book-card .alt a { font-weight: 700; color: var(--flame-deep); text-decoration: none; }
.form-success { display: none; background: #e8f6ec; border: 1px solid #9fd4ad; color: #1f5e31; border-radius: 8px; padding: 14px; margin-top: 12px; font-size: 0.95rem; }

/* ---------- trust badge bar ---------- */
.badges { background: var(--card); border-bottom: 1px solid var(--line); }
.badges .wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.badge { display: flex; align-items: center; gap: 12px; padding: 6px 10px; }
.badge svg { flex-shrink: 0; color: var(--water-deep); }
.badge b { display: block; font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; font-size: 1.02rem; color: var(--steel); line-height: 1.1; }
.badge span { font-size: 0.8rem; color: var(--ink-soft); }

/* ---------- shared ---------- */
section { padding: 76px 0; }
.eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--flame-deep);
  margin-bottom: 8px;
}
.sec-title { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 14px; }
.sec-sub { color: var(--ink-soft); max-width: 44rem; }

/* ---------- split: plumbing vs heating ---------- */
.split { padding: 0; }
.split .wrap-full { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.branch { position: relative; padding: 64px 56px; color: #eaf1f7; display: flex; flex-direction: column; justify-content: center; isolation: isolate; overflow: hidden; }
.branch .bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; z-index: -2; }
.branch.plumbing::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10, 46, 71, 0.92), rgba(10, 46, 71, 0.82)); }
.branch.heating::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(74, 28, 4, 0.9), rgba(74, 28, 4, 0.8)); }
.branch h2 { color: #fff; font-size: 2.2rem; margin-bottom: 6px; }
.branch .tagline { font-size: 1rem; margin-bottom: 20px; }
.branch.plumbing .tagline { color: #8ecdf3; }
.branch.heating .tagline { color: #ffb98a; }
.branch ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 9px 20px; margin-bottom: 26px; }
.branch li { display: flex; gap: 8px; align-items: baseline; font-size: 0.97rem; }
.branch.plumbing li::before { content: '›'; color: #5db7ee; font-weight: 700; }
.branch.heating li::before { content: '›'; color: #ff9c5b; font-weight: 700; }
.branch .btn { align-self: flex-start; }

/* ---------- emergency strip ---------- */
.emergency { background: var(--flame); padding: 0; }
.emergency .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 26px; padding-bottom: 26px; }
.emergency h2 { color: #fff; font-size: 1.7rem; }
.emergency p { color: #ffe2cd; font-size: 0.98rem; }
.emergency a.btn { background: var(--steel-deep); }
.emergency a.btn:hover { background: #000; }

/* ---------- offers ---------- */
.offers { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 38px; }
.offer {
  border: 2px dashed var(--water);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
  background: var(--paper);
}
.offer:nth-child(2) { border-color: var(--flame); }
.offer .tag {
  position: absolute;
  top: -13px;
  left: 20px;
  background: var(--water);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  padding: 3px 12px;
  border-radius: 4px;
}
.offer:nth-child(2) .tag { background: var(--flame); }
.offer h3 { font-size: 1.4rem; margin-bottom: 8px; }
.offer p { font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- reviews ---------- */
.reviews { background: var(--steel); color: #d5e1ea; position: relative; overflow: hidden; }
.reviews::after { content: '"'; position: absolute; top: -70px; right: 30px; font-family: 'Barlow Condensed', sans-serif; font-size: 26rem; color: rgba(255, 255, 255, 0.05); line-height: 1; pointer-events: none; }
.reviews .sec-title { color: #fff; }
.reviews .eyebrow { color: #ff9c5b; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.rev {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rev:nth-child(2) { transform: translateY(18px); }
.rev .stars { color: var(--gold); letter-spacing: 3px; font-size: 0.95rem; }
.rev p { font-size: 0.98rem; flex: 1; }
.rev footer { font-size: 0.85rem; color: #93a7b8; }
.rev footer b { color: #fff; }
.rev-cta { text-align: center; margin-top: 52px; }
.rev-cta .g-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--ink);
  padding: 12px 22px; border-radius: 999px;
  font-weight: 700; text-decoration: none;
}

/* ---------- gallery ---------- */
.gal-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 38px; }
.gal-strip a { border-radius: var(--radius); overflow: hidden; display: block; position: relative; }
.gal-strip img { aspect-ratio: 1; object-fit: cover; transition: transform 0.3s; }
.gal-strip a:hover img { transform: scale(1.04); }
.gal-strip a:nth-child(2) { grid-row: span 2; }
.gal-strip a:nth-child(2) img { aspect-ratio: auto; height: 100%; }

/* ---------- process ---------- */
.process ol { list-style: none; counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 40px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.process li { counter-increment: step; background: var(--card); padding: 30px 24px; position: relative; border-left: 1px solid var(--line); }
.process li:first-child { border-left: none; }
.process li::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--flame);
  display: block;
  margin-bottom: 10px;
}
.process li b { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; font-size: 1.15rem; color: var(--steel); display: block; margin-bottom: 6px; }
.process li p { font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- about teaser ---------- */
.about-split .wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.about-photos { position: relative; padding-bottom: 40px; }
.about-photos img.main { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.about-photos img.inset {
  position: absolute;
  width: 46%;
  right: -14px;
  bottom: 0;
  border-radius: var(--radius);
  border: 5px solid var(--paper);
  box-shadow: var(--shadow);
}
.about-copy p { margin-bottom: 16px; color: var(--ink-soft); }
.about-copy .license {
  display: inline-block;
  background: var(--card);
  border: 1px dashed var(--flame);
  border-radius: var(--radius);
  padding: 12px 18px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--steel);
  margin: 8px 0 18px;
}

/* ---------- area checker ---------- */
.area { background: var(--card); border-top: 1px solid var(--line); }
.area .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.towns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.towns span {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--steel);
}
.checker {
  background: var(--steel);
  border-radius: var(--radius);
  color: #d5e1ea;
  padding: 36px;
}
.checker b { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; color: #fff; font-size: 1.5rem; display: block; margin-bottom: 12px; }
.checker .row { display: flex; gap: 10px; margin-top: 14px; }
.checker input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  border-radius: 7px;
  border: 1px solid #3a4c5c;
  background: #0e1821;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
}
.checker input:focus { outline: 2px solid var(--water); }
.checker .result { margin-top: 14px; font-size: 0.98rem; min-height: 1.5em; }
.checker .result.yes { color: #7ede9b; }
.checker .result.maybe { color: #ffc89e; }

/* ---------- FAQ ---------- */
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); margin-top: 12px; overflow: hidden; }
.faq summary {
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--steel);
  padding: 18px 22px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.4rem; color: var(--flame); flex-shrink: 0; }
.faq details[open] summary::after { content: '\2212'; }
.faq details div { padding: 0 22px 20px; color: var(--ink-soft); }
.faq-cols { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; margin-top: 10px; }

/* ---------- CTA final ---------- */
.cta-final {
  position: relative;
  text-align: center;
  padding: 90px 0;
  background: var(--steel-deep);
  isolation: isolate;
  overflow: hidden;
}
.cta-final .bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; z-index: -2; }
.cta-final::before { content: ''; position: absolute; inset: 0; z-index: -1; background: rgba(11, 21, 30, 0.88); }
.cta-final h2 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 14px; }
.cta-final p { color: #9db1c5; margin-bottom: 28px; }
.cta-final .big-phone { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; color: #ff9c5b; text-decoration: none; display: inline-block; margin-bottom: 24px; letter-spacing: 0.02em; }

/* ---------- footer ---------- */
footer.site { background: #0a141d; color: #8298a9; font-size: 0.92rem; padding: 54px 0 30px; border-top: 4px solid; border-image: linear-gradient(90deg, var(--water) 0 50%, var(--flame) 50% 100%) 1; }
footer.site .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
footer.site h4 { color: #fff; font-size: 1.05rem; margin-bottom: 14px; }
footer.site a { color: #b3c4d2; text-decoration: none; }
footer.site a:hover { color: #ff9c5b; }
footer.site ul { list-style: none; }
footer.site li { margin-bottom: 8px; }
footer.site .fine { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 22px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 0.82rem; }

/* ---------- inner page hero ---------- */
.page-hero { position: relative; background: var(--steel); color: #d5e1ea; padding: 64px 0; isolation: isolate; overflow: hidden; }
.page-hero .bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; z-index: -2; }
.page-hero::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(11,21,30,0.94), rgba(11,21,30,0.7)); }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 4.6vw, 3.4rem); margin-bottom: 10px; }
.page-hero p { max-width: 42rem; color: #c6d4e0; }

/* ---------- services page ---------- */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 34px 0; }
.svc-detail:nth-child(even) .svc-detail-img { order: 2; }
.svc-detail-img { position: relative; }
.svc-detail-img img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.svc-detail-img::after {
  content: '';
  position: absolute;
  top: 14px; left: -14px;
  width: 100%; height: 100%;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  z-index: -1;
}
.svc-detail h2 { font-size: 1.9rem; margin-bottom: 12px; }
.svc-detail p { color: var(--ink-soft); margin-bottom: 12px; }
.svc-detail ul { margin: 14px 0 18px 20px; color: var(--ink-soft); }
.svc-detail li { margin-bottom: 6px; }
.branch-head { padding: 46px 0 6px; }
.branch-head h2 { font-size: 2.2rem; }
.branch-head.water h2 { color: var(--water-deep); }
.branch-head.fire h2 { color: var(--flame-deep); }

/* ---------- values grid (about) ---------- */
.val-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 38px; }
.val {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 4px solid var(--water);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.val:nth-child(even) { border-top-color: var(--flame); }
.val h3 { font-size: 1.25rem; margin-bottom: 8px; }
.val p { font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- gallery page ---------- */
.masonry { columns: 3 300px; column-gap: 16px; margin-top: 34px; }
.masonry figure { break-inside: avoid; margin-bottom: 16px; border-radius: var(--radius); overflow: hidden; background: var(--card); border: 1px solid var(--line); }
.masonry img { width: 100%; }
.masonry figcaption { padding: 12px 16px; font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 52px; align-items: start; }
.contact-grid > * { min-width: 0; }
.contact-info .block { margin-bottom: 26px; }
.contact-info .block b { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; font-size: 1.15rem; color: var(--steel); display: block; margin-bottom: 4px; }
.contact-info .block a { font-weight: 700; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ---------- mobile call bar ---------- */
.mobile-call {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--flame);
  text-align: center;
  padding: 14px;
}
.mobile-call a { color: #fff; font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; font-weight: 700; font-size: 1.2rem; letter-spacing: 0.05em; text-decoration: none; }

/* ---------- grid blowout guards ---------- */
.hero .wrap > *, .about-split .wrap > *, .area .wrap > *, .svc-detail > *, .faq-cols > * { min-width: 0; }

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; padding-top: 50px; padding-bottom: 56px; }
  .book-card { max-width: 560px; }
  .badges .wrap { grid-template-columns: repeat(3, 1fr); row-gap: 14px; }
  .split .wrap-full { grid-template-columns: 1fr; }
  .branch { padding: 52px 28px; }
  .rev-grid, .offer-grid, .val-grid { grid-template-columns: 1fr; }
  .rev:nth-child(2) { transform: none; }
  .about-split .wrap, .area .wrap, .faq-cols, .contact-grid, .svc-detail { grid-template-columns: 1fr; }
  .svc-detail:nth-child(even) .svc-detail-img { order: 0; }
  .process ol { grid-template-columns: 1fr 1fr; }
  .process li { border-left: none; border-top: 1px solid var(--line); }
  .gal-strip { grid-template-columns: 1fr 1fr; }
  footer.site .cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  nav.main {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--card);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 18px 20px;
    gap: 4px;
    align-items: stretch;
  }
  nav.main.open { display: flex; }
  nav.main a { padding: 12px 4px; border-bottom: 1px solid var(--paper); }
  .nav-toggle { display: block; }
  .header-call { display: none; }
  .mobile-call { display: block; }
  body { padding-bottom: 58px; }
  .badges .wrap { grid-template-columns: 1fr 1fr; }
  .branch ul { grid-template-columns: 1fr; }
  .process ol { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .topbar .hide-sm { display: none; }
  .emergency .wrap { justify-content: center; text-align: center; }
}
