/* ServiceOnDoors — design system.
   Brand: teal (from logo) + warm amber CTA. Phase 2 will refine with Tailwind. */

:root {
  --bg: #f3f7f9;
  --surface: #ffffff;
  --surface-2: #e9f1f4;
  --ink: #1f3038;
  --ink-soft: #45575f;
  --muted: #74858c;
  --border: #dbe6ea;

  --primary: #12a0bb;
  --primary-dark: #0c7f96;
  --primary-darker: #0a6879;
  --primary-wash: #e2f4f8;
  --accent: #f5821f;
  --accent-dark: #d76c0d;

  --ok: #1f9d55;
  --danger: #d64545;
  --star: #f6a609;

  --shadow-sm: 0 1px 2px rgba(31, 48, 56, .06);
  --shadow: 0 6px 24px rgba(31, 48, 56, .10);
  --shadow-lg: 0 18px 50px rgba(12, 127, 150, .18);
  --radius: 16px;

  --font: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --maxw: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font); background: var(--bg); color: var(--ink);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
a { color: var(--primary-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { color: var(--ink); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 15px; padding: 13px 24px; border-radius: 11px;
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform .12s ease, background .12s ease, box-shadow .12s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(245, 130, 31, .32); }
.btn-accent:hover { background: var(--accent-dark); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-ghost { background: transparent; color: var(--primary-dark); border-color: var(--border); }
.btn-ghost:hover { background: var(--surface); }
.btn-lg { padding: 15px 30px; font-size: 16px; }

/* ---------- top bar ---------- */
.topbar { background: var(--primary-darker); color: #dff3f7; font-size: 13px; }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; height: 38px; }
.topbar a { color: #dff3f7; }
.topbar a:hover { color: #fff; text-decoration: none; }
.topbar-left { display: flex; gap: 20px; }
.topbar-right { display: flex; gap: 16px; }
@media (max-width: 720px) { .topbar .tb-email, .topbar-right a[aria-label] { display: none; } .topbar-left { gap: 12px; } }
@media (max-width: 480px) { .topbar-right { display: none; } }

/* ---------- header ---------- */
.site-header {
  background: rgba(255,255,255,.92); backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 50;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand img { height: 34px; width: auto; }
.brand { display: flex; align-items: center; }
.nav { display: flex; align-items: center; gap: 24px; }
.nav > a, .nav .dd-trigger { color: var(--ink-soft); font-weight: 600; font-size: 15px; }
.nav > a:hover, .nav .dd-trigger:hover { color: var(--primary-dark); text-decoration: none; }

/* desktop dropdown */
.has-dropdown { position: relative; }
.has-dropdown .caret { font-size: 10px; opacity: .7; }
.has-dropdown .dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 210px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; box-shadow: var(--shadow); padding: 8px; opacity: 0; visibility: hidden;
  transition: opacity .15s ease, transform .15s ease; z-index: 60;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(2px); }
.has-dropdown .dropdown::before { content: ""; position: absolute; top: -8px; left: 0; right: 0; height: 8px; }
.dropdown a { display: block; padding: 10px 12px; border-radius: 8px; color: var(--ink-soft); font-weight: 600; font-size: 14.5px; white-space: nowrap; }
.dropdown a:hover { background: var(--primary-wash); color: var(--primary-dark); text-decoration: none; }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-call { color: var(--ink); font-weight: 700; font-size: 15px; }
.header-call:hover { color: var(--primary-dark); text-decoration: none; }
.site-header.scrolled { box-shadow: 0 4px 20px rgba(16,21,29,.07); }

/* hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px;
  align-items: center; justify-content: center; background: var(--surface);
  border: 1px solid var(--border); border-radius: 10px; cursor: pointer; padding: 0;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.mobile-nav {
  display: none; flex-direction: column; gap: 2px; padding: 10px 20px 18px;
  background: var(--surface); border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 6px; color: var(--ink-soft); font-weight: 600; border-bottom: 1px solid var(--border); }
.mobile-nav a:hover { color: var(--primary-dark); text-decoration: none; }
.mobile-nav a.btn { border: none; color: #fff; margin-top: 10px; }
.m-group { border-bottom: 1px solid var(--border); }
.m-parent {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 12px 6px; font: inherit; font-weight: 600; color: var(--ink-soft);
  display: flex; justify-content: space-between; align-items: center;
}
.m-parent span { color: var(--primary); font-size: 18px; }
.m-group.open .m-parent span { transform: rotate(45deg); }
.m-sub { display: none; padding: 0 0 8px 14px; flex-direction: column; }
.m-group.open .m-sub { display: flex; }
.m-sub a { border-bottom: none; padding: 9px 6px; font-weight: 500; font-size: 14.5px; }
@media (max-width: 900px) {
  .nav { display: none; }
  .header-call { display: none; }
  .header-cta .btn-accent { display: none; }
  .nav-toggle { display: flex; }
}
@media (min-width: 901px) { .mobile-nav { display: none !important; } }

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed; right: 18px; bottom: 22px; z-index: 55;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37,211,102,.42);
  transition: transform .15s ease;
}
.whatsapp-float:hover { transform: scale(1.06); text-decoration: none; }
@media (max-width: 900px) { .whatsapp-float { bottom: 70px; width: 52px; height: 52px; } }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 420px at 88% 0%, var(--primary-wash), transparent 70%),
    linear-gradient(180deg, #ffffff, var(--bg));
  padding: 25px 0 56px; border-bottom: 1px solid var(--border);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700;
  color: var(--primary-dark); background: var(--primary-wash); border: 1px solid #bfe6ee;
  padding: 6px 13px; border-radius: 999px; letter-spacing: .01em; margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2rem, 4.8vw, 3.15rem); line-height: 1.08; letter-spacing: -.02em;
  margin: 0 0 16px; text-wrap: balance; font-weight: 800;
}
.hero h1 em { color: var(--primary-dark); font-style: normal; }
.hero p.sub { font-size: 1.15rem; color: var(--ink-soft); margin: 0 0 26px; max-width: 52ch; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.hero-chips a {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border); color: var(--ink-soft);
  font-weight: 600; font-size: 14px; box-shadow: var(--shadow-sm); transition: transform .12s, border-color .12s;
}
.hero-chips a:hover { text-decoration: none; transform: translateY(-2px); border-color: var(--primary); color: var(--primary-dark); }
.trust-row { display: flex; gap: 26px; margin-top: 24px; flex-wrap: wrap; color: var(--muted); font-size: 14px; }
.trust-row b { color: var(--ink); }
.hero-media { position: relative; }
.hero-visual { position: relative; padding: 18px; }
/* borderless hero photo */
.hero-frame {
  position: relative; z-index: 2;
}
.hero-frame img { border-radius: 18px; width: 100%; height: auto; display: block; filter: drop-shadow(0 22px 44px rgba(12,127,150,.22)); }
/* decorative ring (top-right) */
.hv-ring {
  position: absolute; z-index: 1; top: -14px; right: -14px; width: 130px; height: 130px;
  border: 10px solid var(--accent); border-radius: 50%; opacity: .18;
}
/* decorative dot grid (bottom-left) */
.hv-dots {
  position: absolute; z-index: 1; left: -18px; bottom: -14px; width: 120px; height: 90px;
  background-image: radial-gradient(var(--primary) 2px, transparent 2px);
  background-size: 16px 16px; opacity: .28;
}
/* floating glass badges */
.hero-badge {
  position: absolute; z-index: 3; background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px); border: 1px solid var(--border);
  border-radius: 14px; box-shadow: var(--shadow); padding: 11px 15px; display: flex; align-items: center; gap: 10px;
}
.hero-badge .em { font-size: 22px; }
.hero-badge .t { font-size: 12.5px; color: var(--muted); line-height: 1.3; }
.hero-badge .t b { display: block; color: var(--ink); font-size: 14.5px; }
.hero-badge.b1 { left: -10px; top: 30%; }
.hero-badge.b2 { right: -12px; top: 16px; }
.hero-badge.b3 { right: 6px; bottom: 18px; }
/* appliance chips strip */
.hv-chips {
  position: absolute; z-index: 3; left: -6px; bottom: 30%; display: flex; flex-direction: column; gap: 8px;
}
.hv-chips span {
  width: 40px; height: 40px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); display: grid; place-items: center; font-size: 20px;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-media { order: -1; }
  .hero-visual { padding: 6px; }
  .hero-badge.b1, .hv-chips { display: none; }
  .hv-ring, .hv-dots { opacity: .12; }
}
@media (prefers-reduced-motion: no-preference) {
  .hv-chips span { transition: transform .2s ease; }
  .hero-visual:hover .hv-chips span { transform: translateX(3px); }
}

/* ---------- stats band ---------- */
.stats {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-darker)); color: #fff;
}
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 26px 20px; }
.stat { text-align: center; }
.stat .n { font-size: 2rem; font-weight: 800; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.stat .l { font-size: 13.5px; color: #d3eef4; margin-top: 2px; }
@media (max-width: 620px) { .stats .wrap { grid-template-columns: repeat(2, 1fr); gap: 20px; } }

/* ---------- USP trust strip (under hero) ---------- */
.usp-strip { background: var(--surface); border-bottom: 1px solid var(--border); }
.usp-strip .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding: 16px 20px; }
.usp { display: flex; align-items: center; gap: 12px; }
.usp span { font-size: 26px; line-height: 1; }
.usp b { display: block; color: var(--ink); font-size: 14.5px; }
.usp small { color: var(--ink-soft); font-size: 12.5px; }
@media (max-width: 760px) { .usp-strip .wrap { grid-template-columns: 1fr 1fr; gap: 16px; } }

/* ---------- cities-served cloud ---------- */
.city-cloud { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 920px; margin: 0 auto; }
.city-tag {
  background: var(--surface); border: 1px solid var(--border); color: var(--ink-soft);
  padding: 8px 15px; border-radius: 999px; font-size: 14px; font-weight: 600;
  transition: transform .15s ease, border-color .15s ease, color .15s ease;
}
.city-tag:hover { transform: translateY(-2px); border-color: var(--primary); color: var(--primary-dark); }
.city-tag.more { background: var(--primary-wash); border-color: #bfe6ee; color: var(--primary-darker); }

/* ---------- generic section ---------- */
section.block { padding: 62px 0; }
section.block.alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { text-align: center; max-width: 62ch; margin: 0 auto 40px; }
.section-head .kicker { color: var(--accent); font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.section-head h2 { font-size: clamp(1.55rem, 3.4vw, 2.2rem); margin: 8px 0 10px; letter-spacing: -.01em; }
.section-head p { color: var(--muted); margin: 0; font-size: 1.06rem; }

/* ---------- service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cards { grid-template-columns: 1fr; } }
/* 3-up variant for 6-item grids (balanced 3 + 3) */
.cards.cards-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .cards.cards-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cards.cards-3 { grid-template-columns: 1fr; } }

/* honeypot — off-screen, invisible to humans, filled by bots */
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; }

/* ---------- pricing table ---------- */
.price-wrap { max-width: 760px; margin: 0 auto; }
.price-table { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.price-table thead th { background: var(--primary-darker); color: #fff; text-align: left; padding: 14px 18px; font-size: 14px; letter-spacing: .3px; }
.price-table thead th:last-child { text-align: right; }
.price-table td { padding: 13px 18px; border-top: 1px solid var(--border); font-size: 15px; color: var(--ink); }
.price-table tbody tr:nth-child(even) td { background: #fafcfd; }
.price-note { color: var(--muted); font-size: 12.5px; font-weight: 500; }
.price-val { text-align: right; font-weight: 800; color: var(--primary-dark); white-space: nowrap; }
.price-disc { max-width: 760px; margin: 14px auto 0; font-size: 12.5px; color: var(--muted); text-align: center; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
  display: flex; flex-direction: column; gap: 10px; position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent)); opacity: 0; transition: opacity .16s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #c7e3ea; text-decoration: none; }
.card:hover::before { opacity: 1; }
.card .ic {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  font-size: 30px; background: var(--primary-wash);
}
.card h3 { margin: 4px 0 0; font-size: 1.14rem; }
.card p { margin: 0; color: var(--muted); font-size: 14px; flex: 1; }
.card .go { color: var(--primary-dark); font-weight: 700; font-size: 14px; margin-top: 4px; }

/* ---------- how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; gap: 16px; } }
.step {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; position: relative;
}
.step .num {
  width: 40px; height: 40px; border-radius: 11px; background: var(--primary); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 17px; margin-bottom: 14px;
}
.step h3 { margin: 0 0 6px; font-size: 1.1rem; }
.step p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* ---------- brands strip ---------- */
.brands { display: flex; flex-wrap: wrap; gap: 34px; align-items: center; justify-content: center; }
.brands img { height: 44px; width: auto; filter: grayscale(1); opacity: .72; transition: filter .16s, opacity .16s; }
.brands img:hover { filter: none; opacity: 1; }

/* brand pills (text brand names for AC / fridge / geyser) */
.brand-pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 820px; margin: 0 auto; }
.brand-pills span {
  display: inline-block; padding: 10px 20px; border-radius: 999px; font-weight: 700; font-size: 15px;
  background: var(--surface); border: 1px solid var(--border); color: var(--ink-soft); box-shadow: var(--shadow-sm);
  transition: transform .14s ease, border-color .14s ease, color .14s ease;
}
.brand-pills span:hover { transform: translateY(-2px); border-color: var(--primary); color: var(--primary-dark); }

/* brand grid (We Service All Brand Home Appliances) */
.brand-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
@media (max-width: 900px) { .brand-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .brand-grid { grid-template-columns: repeat(3, 1fr); } }
.brand-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  height: 84px; display: grid; place-items: center; padding: 14px; box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.brand-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.brand-card img { max-height: 52px; max-width: 100%; width: auto; object-fit: contain; }

/* ---------- why us ---------- */
.why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 820px) { .why { grid-template-columns: 1fr; } }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-item .em { font-size: 26px; flex: none; }
.why-item h3 { margin: 0 0 4px; font-size: 1.05rem; }
.why-item p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* ---------- testimonials ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 820px) { .reviews { grid-template-columns: 1fr; } }
.review {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm);
}
.review .stars { color: var(--star); font-size: 15px; letter-spacing: 2px; }
.review p { margin: 12px 0 16px; color: var(--ink-soft); font-size: 15px; }
.review .who { display: flex; align-items: center; gap: 11px; }
.review .av {
  width: 40px; height: 40px; border-radius: 50%; background: var(--primary-wash);
  display: grid; place-items: center; font-weight: 800; color: var(--primary-dark);
}
.review .who b { display: block; font-size: 14.5px; }
.review .who span { font-size: 12.5px; color: var(--muted); }

/* ---------- lead form card ---------- */
.lead-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 28px;
}
.lead-card h3 { margin: 0 0 4px; font-size: 1.35rem; }
.lead-card .muted { color: var(--muted); font-size: 14px; margin: 0 0 18px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px;
  font: inherit; font-size: 15px; background: var(--surface); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--primary); outline-offset: 1px; border-color: var(--primary);
}
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 10px; text-align: center; }
.val { color: var(--danger); font-size: 12.5px; margin-top: 4px; display: block; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff;
  border-radius: 20px; padding: 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.cta-band h2 { color: #fff; margin: 0 0 6px; font-size: 1.6rem; }
.cta-band p { margin: 0; color: #daf1f6; }
@media (max-width: 720px) { .cta-band { flex-direction: column; text-align: center; padding: 30px 24px; } }

/* ---------- content page (SEO pages) ---------- */
.page-head {
  background:
    radial-gradient(700px 300px at 85% -20%, var(--primary-wash), transparent 70%),
    linear-gradient(180deg, #ffffff, var(--bg));
  padding: 40px 0 34px; border-bottom: 1px solid var(--border);
}
.crumbs { font-size: 13px; color: var(--muted); display: flex; gap: 8px; align-items: center; margin-bottom: 12px; }
.crumbs a { color: var(--primary-dark); }
.crumbs span { color: var(--muted); }
.page-head h1 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); letter-spacing: -.02em; margin: 0 0 10px; text-wrap: balance; }
.page-sub { color: var(--ink-soft); font-size: 1.08rem; max-width: 60ch; margin: 0 0 20px; }

.content-grid { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
@media (max-width: 900px) { .content-grid { grid-template-columns: 1fr; gap: 26px; } }
.content-aside { position: sticky; top: 92px; }
@media (max-width: 900px) { .content-aside { position: static; } }

.prose { color: var(--ink-soft); font-family: var(--font); font-size: 16px; line-height: 1.75; max-width: 72ch; }
.prose h1, .prose h2, .prose h3, .prose h4 { font-family: var(--font); color: var(--ink); text-wrap: balance; }
.prose h1 { font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.16; margin: 10px 0 14px; }
.prose h2 { font-size: clamp(1.4rem, 2.6vw, 1.7rem); font-weight: 800; letter-spacing: -.01em; line-height: 1.25; margin: 30px 0 12px; }
.prose h3 { font-size: clamp(1.14rem, 2vw, 1.3rem); font-weight: 800; letter-spacing: -.005em; line-height: 1.3; margin: 24px 0 10px; }
.prose h4 { font-size: 1.05rem; font-weight: 700; margin: 18px 0 8px; }
/* <strong> inside a heading must not drop below the heading's weight */
.prose h1 strong, .prose h2 strong, .prose h3 strong, .prose h4 strong { font-weight: inherit; }
.prose p { margin: 0 0 16px; color: var(--ink-soft); }
.prose ul, .prose ol { margin: 0 0 16px; padding-left: 22px; }
.prose li { margin: 6px 0; color: var(--ink-soft); }
.prose strong, .prose b { color: var(--ink); }
.prose a { color: var(--primary-dark); font-weight: 600; }
.prose img { border-radius: 12px; margin: 16px 0; height: auto; }
.prose table { width: 100%; border-collapse: collapse; margin: 16px 0; display: block; overflow-x: auto; }
.prose th, .prose td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; }
.prose th { background: var(--surface-2); }

/* RO plant landing: article fills its column; first heading tightens to overview */
.ro-article { max-width: none; }
.ro-article > p:first-child { font-size: 1.05rem; color: var(--ink-soft); }

/* "Trusted across industries" chip band */
.serve-band { background: var(--surface); border-bottom: 1px solid var(--border); padding: 16px 0; }
.serve-band .wrap { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.serve-label { font-weight: 800; color: var(--ink); font-size: 14px; white-space: nowrap; }
.serve-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.serve-chips span {
  background: var(--primary-wash); color: var(--primary-darker); border: 1px solid #bfe6ee;
  padding: 6px 13px; border-radius: 999px; font-size: 13px; font-weight: 600;
}

/* ---------- RO content page: content + sticky lead form ---------- */
.ro-page {
  background:
    radial-gradient(1100px 460px at 80% -60px, var(--primary-wash), transparent 65%),
    linear-gradient(180deg, #eef6f8 0%, var(--bg) 340px);
  padding: 36px 0 60px;
}
.ro-main .crumbs { margin-bottom: 14px; }
.ro-main > .eyebrow { margin-bottom: 16px; }
.ro-main > h1 { font-size: clamp(1.8rem, 3.8vw, 2.5rem); letter-spacing: -.02em; margin: 4px 0 14px; text-wrap: balance; }
.ro-main > .sub { font-size: 1.12rem; }
/* content as a distinct white card, clearly separated from the hero */
.ro-content {
  margin-top: 32px; padding: 32px 34px; border: 1px solid var(--border);
  background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow);
}
.ro-content.prose { max-width: none; }
@media (max-width: 560px) { .ro-content { padding: 22px 18px; } }
/* the aside already uses position:sticky (top:92px); it scrolls with the
   content and stops at the end of .ro-page, before the "Following Brands" section. */

.inline-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  background: var(--primary-wash); border: 1px solid #bfe6ee; border-radius: 14px;
  padding: 15px 20px; margin: 26px 0;
}
.inline-cta p { margin: 0; font-weight: 700; color: var(--primary-darker); font-size: 1.02rem; max-width: 60ch; }
.inline-cta .btn { flex: none; }

/* RO hero: trust indicators as clean pill badges (more premium look) */
.ro-main .trust-row { gap: 10px; margin-top: 22px; }
.ro-main .trust-row span {
  background: var(--surface); border: 1px solid var(--border); border-radius: 999px;
  padding: 8px 15px; box-shadow: var(--shadow-sm); font-size: 13.5px; color: var(--ink-soft);
}
.ro-main .trust-row b { color: var(--ink); }

/* ---------- booking form ---------- */
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 420px) { .field-row { grid-template-columns: 1fr; } }

/* compact booking form (shorter height) */
.booking-form .field { margin-bottom: 9px; }
.booking-form .field label { margin-bottom: 3px; font-size: 12.5px; }
.booking-form .field input, .booking-form .field select { padding: 9px 12px; font-size: 14.5px; border-radius: 9px; }
.lead-card:has(.booking-form) { padding: 22px; }
.lead-card:has(.booking-form) h3 { font-size: 1.2rem; }
.lead-card:has(.booking-form) > .muted { margin-bottom: 12px; font-size: 13px; }
.booking-form button[type="submit"] { margin-top: 4px; }
.booking-form .form-note { margin-top: 7px; }
.field .opt { color: var(--muted); font-weight: 400; font-size: 11.5px; }
.bf-status { margin: 10px 0 0; font-size: 13.5px; min-height: 0; text-align: center; }
.bf-status.bad { color: var(--danger); }
.bf-done { text-align: center; padding: 18px 4px; }
.bf-done .bf-check { font-size: 40px; }
.bf-done h3 { margin: 8px 0 6px; }
.bf-done p { color: var(--ink-soft); font-size: 14.5px; margin: 0; }
.bf-done small { color: var(--muted); }

/* ---------- booking popup / modal ---------- */
body.modal-open { overflow: hidden; }
.book-modal { position: fixed; inset: 0; z-index: 200; display: none; }
.book-modal.open { display: block; }
.book-modal-overlay { position: absolute; inset: 0; background: rgba(16,21,29,.55); backdrop-filter: blur(2px); }
.book-modal-dialog {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: min(430px, calc(100vw - 28px));
}
.book-modal-dialog .lead-card {
  box-shadow: 0 30px 80px rgba(0,0,0,.4); margin: 0; position: relative;
  max-height: calc(100vh - 40px); overflow-y: auto; overflow-x: hidden;
}
.book-modal-close {
  position: absolute; top: 10px; right: 10px; z-index: 3; width: 32px; height: 32px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--border); cursor: pointer;
  font-size: 20px; line-height: 1; color: var(--ink-soft); display: grid; place-items: center; padding: 0;
}
.book-modal-close:hover { background: var(--danger); color: #fff; border-color: var(--danger); }
.book-modal-dialog .lead-card h3 { padding-right: 34px; }
@media (prefers-reduced-motion: no-preference) {
  .book-modal.open .book-modal-dialog { animation: bookpop .2s ease; }
  @keyframes bookpop { from { opacity: 0; transform: translate(-50%, -46%); } to { opacity: 1; transform: translate(-50%, -50%); } }
}

/* ---------- simple booking form (Name/Mobile/Address) ---------- */
.simple-lead .field input, .simple-lead .field textarea { padding: 13px 14px; font-size: 15px; }
.simple-lead .field { margin-bottom: 12px; }
.simple-lead textarea { resize: vertical; min-height: 84px; }

/* ---------- city search box ---------- */
.city-search { max-width: 480px; margin: 0 auto 24px; }
.city-search input {
  width: 100%; padding: 13px 16px; border: 1px solid var(--border); border-radius: 12px;
  font: inherit; font-size: 15px; background: var(--surface); box-shadow: var(--shadow-sm);
}
.city-search input:focus { outline: 2px solid var(--primary); outline-offset: 1px; border-color: var(--primary); }

/* ---------- state-wise interlinking grid ---------- */
.state-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 900px) { .state-links { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .state-links { grid-template-columns: 1fr; } }
.state-links a {
  display: flex; align-items: center; gap: 9px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px;
  color: var(--ink-soft); font-weight: 600; font-size: 14.5px; box-shadow: var(--shadow-sm);
  transition: transform .14s ease, border-color .14s ease, color .14s ease;
}
.state-links a:hover { text-decoration: none; transform: translateY(-2px); border-color: var(--primary); color: var(--primary-dark); }
.state-links a span { color: var(--primary); flex: none; }

/* ---------- SEO content block ---------- */
.seo-content { max-width: 940px; margin: 0 auto; }
.seo-content > p:first-child { font-size: 1.06rem; }
.seo-content h3 {
  margin-top: 26px; padding-left: 14px; border-left: 3px solid var(--primary);
  font-size: 1.18rem;
}

/* ---------- trust callouts (3-up) ---------- */
.trust-callouts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 820px) { .trust-callouts { grid-template-columns: 1fr; } }
.callout-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm); text-align: center;
}
.callout-card .ic { font-size: 38px; }
.callout-card h3 { margin: 12px 0 8px; font-size: 1.12rem; }
.callout-card p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* ---------- who we serve ---------- */
.serve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 820px) { .serve-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .serve-grid { grid-template-columns: 1fr; } }
.serve-item {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease;
}
.serve-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.serve-item > span { font-size: 30px; }
.serve-item b { display: block; margin: 10px 0 4px; font-size: 1.05rem; color: var(--ink); }
.serve-item p { margin: 0; color: var(--muted); font-size: 14px; }

/* ---------- comparison table ---------- */
.compare-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.compare-table { border-collapse: collapse; width: 100%; min-width: 560px; font-size: 15px; }
.compare-table th, .compare-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.compare-table thead th { background: var(--surface-2); font-size: 13px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.compare-table thead th:nth-child(2) { color: var(--primary-dark); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table td:first-child { font-weight: 600; color: var(--ink-soft); }
.compare-table .yes { color: var(--ok); font-weight: 700; white-space: nowrap; }
.compare-table .no { color: var(--muted); white-space: nowrap; }
.compare-table td:nth-child(2) { background: var(--primary-wash); }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 4px 18px;
}
.faq summary {
  cursor: pointer; font-weight: 700; padding: 14px 0; list-style: none; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--primary); font-size: 20px; font-weight: 700; }
.faq[open] summary::after { content: "–"; }
.faq p { margin: 0 0 16px; color: var(--ink-soft); font-size: 15px; }

/* ---------- blog: hero ---------- */
.blog-hero {
  background:
    radial-gradient(900px 380px at 88% -20%, rgba(245,130,31,.20), transparent 60%),
    linear-gradient(140deg, var(--primary-darker), var(--primary));
  color: #fff; padding: 34px 0 46px;
}
.blog-hero .crumbs { color: rgba(255,255,255,.8); margin-bottom: 14px; }
.blog-hero .crumbs a { color: rgba(255,255,255,.92); }
.blog-hero .crumbs span { color: rgba(255,255,255,.55); }
.blog-hero-eyebrow {
  display: inline-block; font-weight: 700; font-size: 13px; letter-spacing: .3px;
  background: rgba(255,255,255,.16); color: #fff; padding: 6px 14px; border-radius: 999px;
  margin-bottom: 14px;
}
.blog-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.7rem); margin: 0 0 12px; max-width: 16ch; line-height: 1.12; }
.blog-hero p { color: rgba(255,255,255,.92); font-size: 1.05rem; max-width: 62ch; margin: 0 0 22px; }
.blog-search { display: flex; gap: 10px; max-width: 620px; }
.blog-search input {
  flex: 1; border: 0; border-radius: 12px; padding: 14px 18px; font-size: 15px;
  background: #fff; color: var(--ink); box-shadow: 0 10px 30px rgba(10,104,121,.28);
}
.blog-search input:focus { outline: 3px solid rgba(245,130,31,.55); }
.blog-search .btn { padding-inline: 24px; }

/* ---------- blog: two-column layout ---------- */
.blog-layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 34px; padding: 34px 20px 10px; align-items: start; }
@media (max-width: 980px) { .blog-layout { grid-template-columns: 1fr; } }

/* filters */
.blog-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.blog-filters .chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border); color: var(--ink-soft);
  font-weight: 600; font-size: 14px; transition: all .15s ease;
}
.blog-filters .chip span {
  background: var(--surface-2); color: var(--ink-soft); border-radius: 999px;
  padding: 1px 9px; font-size: 12px; font-weight: 700;
}
.blog-filters .chip:hover { border-color: var(--primary); color: var(--primary-dark); text-decoration: none; }
.blog-filters .chip.is-active { background: var(--primary); border-color: var(--primary); color: #fff; }
.blog-filters .chip.is-active span { background: rgba(255,255,255,.25); color: #fff; }

.blog-resultline { color: var(--muted); font-size: 14px; margin: -6px 0 20px; }
.blog-resultline a { color: var(--primary-dark); font-weight: 700; }
.blog-empty { text-align: center; padding: 40px 20px; color: var(--muted); display: grid; gap: 14px; justify-items: center; }

/* featured */
.blog-featured {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 0; margin-bottom: 26px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 18px;
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .16s ease, box-shadow .16s ease;
}
.blog-featured:hover { transform: translateY(-4px); box-shadow: var(--shadow); text-decoration: none; }
.bf-media { position: relative; min-height: 260px; background: var(--surface-2); }
.bf-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.bf-tag, .bc-tag {
  position: absolute; top: 14px; left: 14px; background: var(--accent); color: #fff;
  font-weight: 700; font-size: 12px; letter-spacing: .3px; padding: 5px 12px; border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
}
.bc-tag.is-ro { background: var(--primary); }
.bc-tag.is-ac { background: #2f7fd6; }
.bc-tag.is-fridge { background: #6d5bd0; }
.bc-tag.is-geyser { background: #e0692a; }
.bf-body { padding: 26px 28px; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.bf-kicker { color: var(--accent-dark); font-weight: 800; font-size: 12px; letter-spacing: .6px; text-transform: uppercase; }
.bf-body h2 { margin: 0; font-size: clamp(1.25rem, 2.4vw, 1.6rem); color: var(--ink); line-height: 1.2; }
.bf-body p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
.bf-meta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; color: var(--muted); font-size: 13px; margin-top: 4px; }
.bf-read { margin-left: auto; color: var(--primary-dark); font-weight: 800; }
@media (max-width: 640px) { .blog-featured { grid-template-columns: 1fr; } .bf-media { min-height: 200px; } }

/* card grid */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  box-shadow: var(--shadow-sm); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .16s ease, box-shadow .16s ease;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); text-decoration: none; }
.bc-media { position: relative; aspect-ratio: 16 / 10; background: var(--surface-2); overflow: hidden; }
.bc-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform .3s ease; }
.blog-card:hover .bc-media img { transform: scale(1.05); }
.bc-media-fallback { position: absolute; inset: 0; display: grid; place-items: center; font-size: 3rem; opacity: .5; }
.bc-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.bc-meta { display: flex; gap: 6px; flex-wrap: wrap; color: var(--muted); font-size: 12px; font-weight: 600; }
.bc-body h3 { font-size: 1.06rem; margin: 0; color: var(--ink); line-height: 1.3; }
.bc-body p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.55; flex: 1; }
.bc-go { color: var(--primary-dark); font-weight: 700; font-size: 13.5px; margin-top: 2px; }

/* in-grid CTA tile (spans both columns) */
.blog-cta-tile {
  grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between;
  background:
    radial-gradient(600px 200px at 90% 0%, rgba(255,255,255,.12), transparent 60%),
    linear-gradient(130deg, var(--primary-darker), var(--primary));
  color: #fff; border-radius: 18px; padding: 26px 28px;
}
.blog-cta-tile h3 { margin: 0 0 6px; color: #fff; font-size: 1.25rem; }
.blog-cta-tile p { margin: 0; color: rgba(255,255,255,.9); font-size: 14.5px; max-width: 52ch; }
.blog-cta-tile .cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.btn-ghost-light { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.4); }
.btn-ghost-light:hover { background: rgba(255,255,255,.24); color: #fff; }

/* pager */
.blog-pager { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 30px 0 6px; }
.blog-pager .pg {
  min-width: 42px; text-align: center; padding: 9px 14px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--surface); color: var(--ink-soft); font-weight: 700; font-size: 14px;
}
.blog-pager .pg:hover { border-color: var(--primary); color: var(--primary-dark); text-decoration: none; }
.blog-pager .pg.is-active { background: var(--primary); border-color: var(--primary); color: #fff; }
.blog-pager .pg-gap { padding: 9px 4px; color: var(--muted); }

/* ---------- blog: sidebar ---------- */
.blog-side { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 88px; }
@media (max-width: 980px) { .blog-side { position: static; } }
.side-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 20px; box-shadow: var(--shadow-sm); }
.side-title { margin: 0 0 14px; font-size: 1rem; color: var(--ink); position: relative; padding-left: 12px; }
.side-title::before { content: ""; position: absolute; left: 0; top: 2px; bottom: 2px; width: 4px; border-radius: 4px; background: var(--accent); }

.side-lead {
  background:
    radial-gradient(400px 160px at 100% 0%, rgba(245,130,31,.16), transparent 60%),
    linear-gradient(160deg, var(--primary-darker), var(--primary));
  color: #fff; border: 0;
}
.side-lead .sl-badge { display: inline-block; background: rgba(255,255,255,.18); color: #fff; font-weight: 700; font-size: 12px; padding: 5px 12px; border-radius: 999px; margin-bottom: 12px; }
.side-lead h3 { margin: 0 0 8px; color: #fff; font-size: 1.25rem; }
.side-lead > p { margin: 0 0 16px; color: rgba(255,255,255,.9); font-size: 14px; line-height: 1.55; }
.side-lead .btn-outline { border-color: rgba(255,255,255,.55); color: #fff; }
.side-lead .btn-outline:hover { background: rgba(255,255,255,.16); color: #fff; }
.btn-block { display: flex; width: 100%; justify-content: center; margin-bottom: 10px; }
.sl-points { list-style: none; margin: 14px 0 0; padding: 14px 0 0; border-top: 1px solid rgba(255,255,255,.22); display: grid; gap: 7px; }
.sl-points li { color: rgba(255,255,255,.95); font-size: 13.5px; }

.side-cats { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.side-cats a { display: flex; justify-content: space-between; align-items: center; padding: 9px 10px; border-radius: 9px; color: var(--ink-soft); font-weight: 600; font-size: 14px; }
.side-cats a:hover { background: var(--surface-2); color: var(--primary-dark); text-decoration: none; }
.side-cats span { background: var(--surface-2); color: var(--muted); border-radius: 999px; padding: 1px 9px; font-size: 12px; font-weight: 700; }

.side-posts { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.side-posts a { display: flex; gap: 12px; align-items: center; color: var(--ink); }
.side-posts a:hover { text-decoration: none; }
.side-posts a:hover .sp-title { color: var(--primary-dark); }
.side-posts img, .sp-thumb { width: 64px; height: 52px; border-radius: 10px; object-fit: cover; flex: 0 0 auto; background: var(--surface-2); }
.sp-thumb { display: grid; place-items: center; font-size: 1.4rem; }
.sp-title { font-size: 13.5px; font-weight: 600; line-height: 1.35; color: var(--ink); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.side-services .ss-links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.side-services .ss-links a { display: block; text-align: center; padding: 12px 8px; border-radius: 10px; background: var(--surface-2); color: var(--ink-soft); font-weight: 600; font-size: 13px; }
.side-services .ss-links a:hover { background: var(--primary-wash); color: var(--primary-dark); text-decoration: none; }

/* bottom CTA band */
.blog-bottomcta { padding: 10px 0 46px; }
.blog-bottomcta .bbc-inner {
  display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between;
  background:
    radial-gradient(700px 240px at 12% 0%, rgba(245,130,31,.20), transparent 60%),
    linear-gradient(130deg, var(--primary), var(--primary-darker));
  color: #fff; border-radius: 22px; padding: 34px 36px;
}
.blog-bottomcta h2 { margin: 0 0 8px; color: #fff; font-size: clamp(1.3rem, 3vw, 1.8rem); }
.blog-bottomcta p { margin: 0; color: rgba(255,255,255,.92); max-width: 60ch; }

/* ---------- blog: single post ---------- */
.post-hero {
  background:
    radial-gradient(700px 300px at 90% -30%, rgba(245,130,31,.16), transparent 60%),
    linear-gradient(150deg, var(--primary-darker), var(--primary));
  color: #fff; padding: 30px 0 34px;
}
.post-hero .crumbs { color: rgba(255,255,255,.8); margin-bottom: 14px; }
.post-hero .crumbs a { color: rgba(255,255,255,.92); }
.post-hero .crumbs span { color: rgba(255,255,255,.55); }
.post-cat {
  display: inline-block; background: var(--accent); color: #fff; font-weight: 700; font-size: 12px;
  letter-spacing: .3px; padding: 5px 13px; border-radius: 999px; margin-bottom: 14px;
}
.post-cat:hover { background: var(--accent-dark); color: #fff; text-decoration: none; }
.post-hero h1 { color: #fff; font-size: clamp(1.7rem, 3.6vw, 2.5rem); line-height: 1.15; margin: 0 0 16px; max-width: 26ch; }
.post-meta { display: flex; flex-wrap: wrap; gap: 18px; color: rgba(255,255,255,.9); font-size: 14px; font-weight: 600; }

.post-layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 34px; padding: 34px 20px 10px; align-items: start; }
@media (max-width: 980px) { .post-layout { grid-template-columns: 1fr; } }
.post-main { min-width: 0; }
.post-figure { margin: 0 0 26px; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); background: var(--surface-2); }
.post-figure img { width: 100%; max-height: 460px; object-fit: cover; object-position: top; display: block; }

/* Card fills its grid column; the 72ch reading measure from .prose applied to the
   whole card, leaving a large empty gap before the sidebar — override it here. */
.post-body { max-width: none; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 30px 34px; box-shadow: var(--shadow-sm); }
@media (max-width: 560px) { .post-body { padding: 22px 20px; } }
.post-body hr { border: 0; border-top: 1px solid var(--border); margin: 26px 0; }

.post-inline-cta {
  display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between;
  margin: 26px 0; padding: 26px 28px; border-radius: 18px; color: #fff;
  background:
    radial-gradient(500px 200px at 90% 0%, rgba(255,255,255,.12), transparent 60%),
    linear-gradient(130deg, var(--primary), var(--primary-darker));
}
.post-inline-cta h3 { margin: 0 0 6px; color: #fff; font-size: 1.2rem; }
.post-inline-cta p { margin: 0; color: rgba(255,255,255,.9); font-size: 14.5px; max-width: 50ch; }
.post-inline-cta .cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.post-related { margin-top: 34px; }
.post-related-title { font-size: 1.4rem; margin: 0 0 18px; color: var(--ink); }
.post-related .blog-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 820px) { .post-related .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .post-related .blog-grid { grid-template-columns: 1fr; } }

.post-backlink { display: inline-block; margin-top: 26px; color: var(--primary-dark); font-weight: 700; }

/* share bar */
.post-share {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin: 26px 0;
  padding: 16px 20px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; box-shadow: var(--shadow-sm);
}
.post-share .ps-label { font-weight: 800; color: var(--ink); font-size: 15px; }
.post-share .ps-links { display: flex; gap: 10px; flex-wrap: wrap; }
.ps-btn {
  width: 42px; height: 42px; border-radius: 50%; display: inline-grid; place-items: center;
  color: #fff; border: 0; cursor: pointer; padding: 0;
  transition: transform .15s ease, filter .15s ease; position: relative;
}
.ps-btn svg { width: 20px; height: 20px; }
.ps-btn:hover { transform: translateY(-2px); filter: brightness(1.08); text-decoration: none; }
.ps-wa { background: #25D366; }
.ps-fb { background: #1877F2; }
.ps-x  { background: #111827; }
.ps-li { background: #0A66C2; }
.ps-copy { background: var(--primary); }
.ps-copy.copied::after {
  content: "Copied!"; position: absolute; top: -32px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 9px;
  border-radius: 6px; white-space: nowrap; box-shadow: var(--shadow-sm);
}
@media (max-width: 560px) { .post-share { gap: 12px; padding: 14px 16px; } }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 26px; } }
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-item .em {
  width: 46px; height: 46px; border-radius: 12px; background: var(--primary-wash);
  display: grid; place-items: center; font-size: 22px; flex: none;
}
.contact-item h3 { margin: 0 0 3px; font-size: 1.05rem; }
.contact-item p, .contact-item a { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* ---------- diagnostics (Phase 0/1 dev banner) ---------- */
.diag {
  margin: 22px 0 0; padding: 12px 16px; border-radius: 10px; font-size: 13.5px;
  border: 1px solid var(--border); display: inline-flex; align-items: center; gap: 9px;
}
.diag.ok { background: #e9f7ef; border-color: #b7e3c8; color: #14663b; }
.diag.bad { background: #fdecec; border-color: #f4c2c2; color: #9b2226; }
.diag .dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.diag.ok .dot { background: var(--ok); }
.diag.bad .dot { background: var(--danger); }

/* ---------- footer ---------- */
.site-footer { background: #16242b; color: #b9c6cc; padding: 48px 0 28px; }
.site-footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 30px; }
.site-footer h4 { color: #fff; font-size: 15px; margin: 0 0 14px; }
.site-footer a { color: #b9c6cc; font-size: 14px; display: block; margin-bottom: 9px; }
.site-footer a:hover { color: #fff; }
.site-footer .flogo { height: 32px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.site-footer .about { max-width: 34ch; color: #93a2a9; font-size: 14px; }
.footer-cities { border-bottom: 1px solid #26383f; padding-bottom: 22px; margin-bottom: 30px; }
.footer-cities h4 { color: #fff; font-size: 15px; margin: 0 0 14px; }
.footer-cities ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer-cities li a { color: #9fb0b7; font-size: 13.5px; display: inline-block; }
.footer-cities li a:hover { color: #fff; }
.footer-cities li a::before { content: "›"; color: var(--primary); margin-right: 6px; }
/* social icons */
.social-icons { display: flex; gap: 8px; align-items: center; }
.social-icons a { display: grid; place-items: center; }
.social-icons svg { width: 18px; height: 18px; display: block; }
.topbar-social a { width: 26px; height: 26px; border-radius: 6px; color: #dff3f7; }
.topbar-social a:hover { background: rgba(255,255,255,.14); color: #fff; }
.footer-social { margin-top: 14px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px; border: 1px solid #2c3e46; color: #c8d3d8;
  transition: background .15s, color .15s, border-color .15s, transform .15s;
}
.footer-social a:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; transform: translateY(-2px); }
.site-footer .copy { border-top: 1px solid #26383f; margin-top: 34px; padding-top: 18px; font-size: 13px; color: #7f8f96; }
@media (max-width: 820px) { .site-footer .cols { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 520px) { .site-footer .cols { grid-template-columns: 1fr; } }

/* ---------- sticky mobile call bar ---------- */
.mobile-cta { display: none; }
@media (max-width: 900px) {
  .mobile-cta {
    display: grid; grid-template-columns: 1fr 1fr; position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 60; box-shadow: 0 -2px 16px rgba(0,0,0,.16);
  }
  .mobile-cta a { padding: 15px; text-align: center; font-weight: 700; color: #fff; font-size: 15px; }
  .mobile-cta a:hover { text-decoration: none; }
  .mobile-cta .call { background: var(--primary-dark); }
  .mobile-cta .book { background: var(--accent); }
  body { padding-bottom: 54px; }
}

@media (prefers-reduced-motion: reduce) { * { transition: none !important; scroll-behavior: auto !important; } }
