/* ============================================================
   Trade site shell — all colour comes from CSS variables set by
   the trade profile (see /profiles/*.json), applied in render.js.
   Mobile-first. No frameworks.
   ============================================================ */

/* Self-hosted Sora (variable weight) — no external font dependency */
@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url("/fonts/sora-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url("/fonts/sora-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  /* Fallback palette (plumber) — overwritten at runtime by profile */
  --c-dark: #082a33;
  --c-dark-2: #0b3540;
  --c-accent: #14b8a6;
  --c-accent-strong: #0d9488;
  --c-accent-ink: #052e2b;
  --c-accent-soft: #e7f6f4;
  --c-cta: #14b8a6;
  --c-cta-hover: #0d9488;
  --c-cta-ink: #04211f;
  --c-ink: #132a30;
  --c-muted: #51666d;
  --c-surface: #f5f8f8;
  --c-line: #dde8e8;
  --c-star: #f5b301;
  --c-urgent: #f2a922; /* single warm accent, reserved for urgency signals */
  /* Trade glyph used for bullets, watermarks and pricing icons.
     Profiles override this per trade (droplet default = plumber). */
  --glyph-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 52 64"><path d="M26 2 C26 2 6 26 6 41 a20 20 0 0 0 40 0 C46 26 26 2 26 2 Z"/></svg>');
  --logo-h: 40px;
  --featured-scrim: linear-gradient(180deg, rgba(5,26,32,.30) 0%, rgba(5,26,32,.55) 42%, rgba(5,26,32,.94) 72%);
  --hero-overlay: linear-gradient(100deg, rgba(5,32,40,.93) 0%, rgba(5,32,40,.62) 48%, rgba(5,32,40,.10) 100%);

  --font-head: "Sora", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-1: 0 1px 2px rgba(10, 30, 35, .06), 0 4px 14px rgba(10, 30, 35, .07);
  --shadow-2: 0 2px 6px rgba(10, 30, 35, .08), 0 14px 34px rgba(10, 30, 35, .13);
  --container: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }

/* The hidden attribute always wins, even over display rules */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: clip; /* right-bleed media must not create a scrollbar */
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--c-ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Hide until content.json is rendered; render.js adds .ready (with a
   safety timeout). Without JS the page stays visible. */
.js body { opacity: 0; }
.js body.ready { opacity: 1; transition: opacity .18s ease; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.14;
  margin: 0 0 .5em;
  color: inherit;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.15rem, 5.6vw, 3.85rem); font-weight: 800; letter-spacing: -0.022em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.35rem); font-weight: 700; }
h3 { font-size: 1.16rem; font-weight: 600; }

p { margin: 0 0 1em; }
img { max-width: 100%; display: block; }
a { color: var(--c-accent-strong); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 32px);
}

.icon { width: 1.1em; height: 1.1em; flex: none; }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 200;
  background: #fff; color: var(--c-ink); padding: 10px 16px; border-radius: 8px;
}
.skip-link:focus { left: 8px; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  padding: .82em 1.5em;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s ease, background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
/* Long labels (phone numbers) must wrap rather than stretch the layout */
@media (max-width: 560px) { .btn { white-space: normal; text-align: center; } }
.btn:active { transform: translateY(1px); }

.btn-cta {
  background: var(--c-cta);
  color: var(--c-cta-ink);
  border-color: color-mix(in srgb, var(--c-cta-hover) 60%, var(--c-cta));
}
.btn-cta:hover { background: var(--c-cta-hover); border-color: var(--c-cta-hover); }

.btn-lg { font-size: 1.06rem; padding: .95em 1.7em; }
.btn-block { width: 100%; }

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .6);
  background: rgba(2, 18, 23, .32);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .12); }

.btn-ghost-dark {
  color: var(--c-ink);
  border-color: color-mix(in srgb, var(--c-ink) 35%, transparent);
}
.btn-ghost-dark:hover { border-color: var(--c-ink); }

.btn-light { background: #fff; color: var(--c-ink); }
.btn-light:hover { background: #f1f1f1; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--c-dark) 94%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 68px;
}

.brand { display: inline-flex; align-items: center; }
.brand-logo { height: var(--logo-h); width: auto; }

.site-nav {
  display: none;
  gap: 26px;
  margin-left: auto;
}
.site-nav a {
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  font-weight: 500;
  font-size: .97rem;
}
.site-nav a:hover { color: #fff; }

.header-phone { margin-left: auto; font-size: .95rem; padding: .6em 1.2em; }
/* Icon-only header phone on small screens — the sticky bar owns "call" there */
@media (max-width: 479.98px) {
  .header-phone span { display: none; }
  .header-phone { padding: .6em .75em; }
  .header-phone .icon { width: 1.25em; height: 1.25em; }
}

@media (min-width: 880px) {
  .site-nav { display: flex; }
  .header-phone { margin-left: 0; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--c-dark);
  color: #fff;
  overflow: hidden;
}

.hero-media, .hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media img { object-position: var(--hero-pos, center 60%); }
.hero-overlay { position: absolute; inset: 0; background: var(--hero-overlay); }

.hero-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(72px, 12vw, 130px) clamp(64px, 10vw, 110px);
  max-width: 780px;
  margin-inline: 0;
}
@media (min-width: 1240px) {
  .hero-inner { margin-inline: auto; max-width: var(--container); }
  .hero-inner > * { max-width: 720px; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: flex-start;
  gap: .6em;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--c-accent) 75%, #ffffff);
  margin-bottom: 1.1em;
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  margin-top: .42em;
  background: var(--c-accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--c-accent) 30%, transparent);
}

.hero h1 {
  color: #fff;
  margin-bottom: .38em;
  max-width: 11.5em;
  font-size: clamp(2.5rem, 6.5vw, 5.35rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
}

/* Accent phrase in the headline, with a hand-drawn underline stroke */
.headline-accent {
  color: var(--h1-accent, var(--c-accent));
  position: relative;
  white-space: nowrap;
}
/* Long service names must be allowed to wrap on small screens */
@media (max-width: 560px) {
  .service-hero .headline-accent { white-space: normal; }
  .service-hero .headline-accent::after { display: none; }
}
.headline-accent::after {
  content: "";
  position: absolute;
  left: 2%;
  bottom: -0.06em;
  width: 96%;
  height: .12em;
  background: var(--h1-underline, var(--c-accent));
  opacity: .85;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 8" preserveAspectRatio="none"><path d="M2 6 C 30 2, 60 2, 118 4" fill="none" stroke="black" stroke-width="2.6" stroke-linecap="round"/></svg>') center/100% 100% no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 8" preserveAspectRatio="none"><path d="M2 6 C 30 2, 60 2, 118 4" fill="none" stroke="black" stroke-width="2.6" stroke-linecap="round"/></svg>') center/100% 100% no-repeat;
}

.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  color: rgba(255, 255, 255, .88);
  max-width: 34em;
  margin-bottom: 1.6em;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 1em; }

.cta-note {
  font-size: .92rem;
  color: rgba(255, 255, 255, .75);
  max-width: 34em;
  margin: 0 0 1.9em;
}

/* Hero trust bar: glass pill chips — wrap gracefully, no empty cells */
.hero-trustbar {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
}
.hero-trustbar .hero-rating,
.hero-trustbar .hero-chips li {
  background: rgba(2, 18, 23, .45);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 13px;
  backdrop-filter: blur(6px);
  padding: .8em 1.15em;
}
.hero-trustbar .hero-rating { border-radius: 13px; }
.hero-trustbar .hero-chips { display: contents; }

@media (max-width: 719.98px) {
  .hero-trustbar { width: 100%; }
  .hero-trustbar .hero-rating,
  .hero-trustbar .hero-chips li {
    width: 100%;
    padding: .72em 1.1em;
    font-size: .9rem;
  }
}

.hero-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  padding: 0;
  margin: 0;
}
.hero-chips li {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-size: .95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .92);
}
.hero-chips li::before {
  content: "";
  width: 1.05em; height: 1.05em; flex: none;
  background: var(--c-accent);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2 4 5v6c0 5 3.4 9.4 8 10.8C16.6 20.4 20 16 20 11V5l-8-3zm-1.2 13.6-3.3-3.3 1.3-1.3 2 2 4.5-4.5 1.3 1.3-5.8 5.8z"/></svg>') center/contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2 4 5v6c0 5 3.4 9.4 8 10.8C16.6 20.4 20 16 20 11V5l-8-3zm-1.2 13.6-3.3-3.3 1.3-1.3 2 2 4.5-4.5 1.3 1.3-5.8 5.8z"/></svg>') center/contain no-repeat;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: .7em;
  font-size: .95rem;
  color: rgba(255, 255, 255, .9);
  background: rgba(0, 0, 0, .28);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  padding: .5em 1.1em;
  text-decoration: none;
}
a.hero-rating:hover { border-color: rgba(255, 255, 255, .4); }

/* ---------- Stars ---------- */

.stars {
  display: inline-block;
  width: 5.4em;
  height: 1em;
  font-size: .9rem;
  background: var(--c-star);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 22"><path d="m11 0 3.2 7 7.4.8-5.5 5 1.6 7.2L11 16.3 4.3 20l1.6-7.2-5.5-5L7.8 7zM35 0l3.2 7 7.4.8-5.5 5 1.6 7.2-6.7-3.7L28.3 20l1.6-7.2-5.5-5 7.4-.8zM59 0l3.2 7 7.4.8-5.5 5 1.6 7.2-6.7-3.7L52.3 20l1.6-7.2-5.5-5 7.4-.8zM83 0l3.2 7 7.4.8-5.5 5 1.6 7.2-6.7-3.7L76.3 20l1.6-7.2-5.5-5 7.4-.8zM107 0l3.2 7 7.4.8-5.5 5 1.6 7.2-6.7-3.7-6.7 3.7 1.6-7.2-5.5-5 7.4-.8z"/></svg>') left center/contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 22"><path d="m11 0 3.2 7 7.4.8-5.5 5 1.6 7.2L11 16.3 4.3 20l1.6-7.2-5.5-5L7.8 7zM35 0l3.2 7 7.4.8-5.5 5 1.6 7.2-6.7-3.7L28.3 20l1.6-7.2-5.5-5 7.4-.8zM59 0l3.2 7 7.4.8-5.5 5 1.6 7.2-6.7-3.7L52.3 20l1.6-7.2-5.5-5 7.4-.8zM83 0l3.2 7 7.4.8-5.5 5 1.6 7.2-6.7-3.7L76.3 20l1.6-7.2-5.5-5 7.4-.8zM107 0l3.2 7 7.4.8-5.5 5 1.6 7.2-6.7-3.7-6.7 3.7 1.6-7.2-5.5-5 7.4-.8z"/></svg>') left center/contain no-repeat;
}

/* ---------- Emergency strip ---------- */

.emergency-strip {
  --cut: clamp(18px, 2.6vw, 40px);
  background: var(--c-dark-2);
  color: #fff;
  position: relative;
  z-index: 2;
  margin-top: calc(-1 * var(--cut));
  clip-path: polygon(0 var(--cut), 100% 0, 100% 100%, 0 100%);
}

.emergency-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-block: calc(26px + var(--cut)) 26px;
}

.emergency-headline {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.12rem;
  margin: 0 0 .2em;
  display: flex;
  align-items: center;
  gap: .65em;
}
/* Live "on call now" pulse */
.emergency-headline::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: none;
  border-radius: 50%;
  background: var(--c-urgent);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 color-mix(in srgb, var(--c-urgent) 55%, transparent); }
  70%  { box-shadow: 0 0 0 11px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
.emergency-sub { margin: 0; color: rgba(255, 255, 255, .78); font-size: .97rem; }

@media (min-width: 800px) {
  .emergency-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ---------- Sections ---------- */

.section { padding-block: clamp(64px, 9vw, 104px); }

.section-head { max-width: 640px; margin-bottom: clamp(34px, 5vw, 52px); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: .8em;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-accent-strong);
  margin-bottom: .9em;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--c-accent);
}

.section-intro { color: var(--c-muted); font-size: 1.05rem; max-width: 38em; }

/* ---------- Services grid ---------- */

.services { background: var(--c-surface); }

.services-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  counter-reset: svc;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .services-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; } }

.service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-1);
  border: 1px solid var(--c-line);
  transition: transform .16s ease, box-shadow .16s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }

.service-media { margin: 0; aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
/* Unified photo grade: one cool, desaturated treatment everywhere */
.service-media img, .trust-media img, .service-figure img, .reno-media img {
  filter: saturate(.68) contrast(1.06);
}
.service-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--c-dark);
  mix-blend-mode: multiply;
  opacity: .22;
  pointer-events: none;
}
.service-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--c-urgent);
  color: #241a02;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .06em;
  padding: .35em .8em;
  border-radius: 999px;
}
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.service-card:hover .service-media img { transform: scale(1.045); }

.service-body { display: flex; flex-direction: column; flex: 1; padding: 22px 24px 24px; }
.service-name { margin-bottom: .45em; }
.service-short { color: var(--c-muted); font-size: .97rem; flex: 1; margin-bottom: 1.1em; }

/* Featured card: the money service gets quadruple weight (desktop).
   With 6 services this fills a clean 3x3: featured 2x2 + one column of
   two + a final row of three. */
@media (min-width: 980px) {
  .service-card.featured { grid-row: span 2; grid-column: span 2; }
}
@media (min-width: 640px) {
  .service-card.featured {
    position: relative;
    background: var(--c-dark);
    color: #fff;
    border: none;
  }
  .service-card.featured .service-media {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
  }
  .service-card.featured .service-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--featured-scrim);
  }
  .service-card.featured .service-body {
    position: relative;
    z-index: 1;
    justify-content: flex-end;
    min-height: 300px;
    padding: 26px 26px 26px;
  }
  .service-card.featured .service-name { color: #fff; font-size: 1.45rem; }
  .service-card.featured .service-short { color: rgba(255, 255, 255, .86); flex: none; }
  .service-card.featured .service-more { color: var(--c-accent); }
}
@media (min-width: 640px) and (max-width: 979.98px) {
  .service-card.featured { grid-column: 1 / -1; }
  .service-card.featured .service-body { min-height: 260px; }
}

/* Mobile: editorial numbered list — faster and more distinctive than
   shrunken image cards */
@media (max-width: 639.98px) {
  .services-grid { gap: 12px; }
  .service-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 18px;
    position: relative;
  }
  .service-card::before {
    counter-increment: svc;
    content: counter(svc, decimal-leading-zero);
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--c-accent);
    flex: none;
    line-height: 1.5;
  }
  .service-media { display: none; }
  .service-body { padding: 0; }
  .service-name { font-size: 1.05rem; margin-bottom: .25em; }
  .service-short { font-size: .9rem; margin-bottom: .7em; }
  .service-more { font-size: .88rem; }
  .service-card.featured {
    background: var(--c-dark);
    color: #fff;
    border: none;
  }
  .service-card.featured::before { color: var(--c-urgent); }
  .service-card.featured .service-name { color: #fff; }
  .service-card.featured .service-short { color: rgba(255, 255, 255, .8); }
  .service-card.featured .service-more { color: var(--c-accent); }
}

.service-more {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .93rem;
  color: var(--c-accent-strong);
}
.service-card:hover .service-more { text-decoration: underline; }

/* ---------- Trust ---------- */

.trust { background: var(--c-dark); color: #fff; position: relative; padding-top: 0; }

/* Signature droplet watermark */
.trust::after {
  content: "";
  position: absolute;
  right: 0;
  top: 140px;
  width: 320px;
  height: 400px;
  opacity: .05;
  pointer-events: none;
  background: #fff;
  -webkit-mask: var(--glyph-mask) center/contain no-repeat;
          mask: var(--glyph-mask) center/contain no-repeat;
}
.trust .container { position: relative; z-index: 1; }

/* Floating stat slab: overlaps the boundary with the section above */
.trust-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 26px;
  background: var(--c-dark-2);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 48px);
  transform: translateY(-58px);
  margin-bottom: calc(clamp(44px, 6vw, 64px) - 58px);
}
@media (min-width: 880px) { .trust-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; } }

.trust-stat { text-align: left; min-width: 0; display: flex; flex-direction: column; justify-content: flex-end; }
/* Stat values never wrap; long values (licence numbers) use the small variant */
.trust-stat .stat { white-space: nowrap; }
.trust-stat.small .stat { font-size: clamp(1.9rem, 3.2vw, 2.9rem); letter-spacing: 0; line-height: 1.25; }
@media (min-width: 880px) {
  .trust-stat { padding-inline: clamp(20px, 3vw, 40px); border-left: 1px solid rgba(255, 255, 255, .13); }
  .trust-stat:first-child { border-left: none; padding-left: 0; }
}
.trust-stat .stat {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.6rem, 4.8vw, 4.1rem);
  color: var(--c-accent);
  display: block;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: .18em;
}
.trust-stat.urgent .stat { color: var(--c-urgent); }
.trust-stat .label {
  font-family: var(--font-head);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .68);
}
@media (min-width: 880px) { .trust-stat .label { white-space: nowrap; } }
@media (max-width: 879.98px) { .trust-stat .label { font-size: .68rem; letter-spacing: .06em; } }
.trust-stat .stat .stars { display: inline-block; font-size: .22em; margin-left: .4em; vertical-align: .55em; }

.trust-ctas { margin-top: 1.6em; }

/* Optional owner block — populated when a business supplies a real photo */
.owner-card {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 1.5em;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.owner-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
  border: 2px solid var(--c-accent);
}
.owner-name { margin: 0 0 .15em; font-family: var(--font-head); font-weight: 700; }
.owner-line { margin: 0; font-size: .92rem; color: rgba(255, 255, 255, .75); }

.reno-ctas { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin: 0; }
.reno-cta2 {
  font-size: .95rem;
  color: var(--c-accent-strong);
  font-weight: 600;
}

.areas-cta {
  margin: 1.2em 0 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
}
.areas-cta a { color: var(--c-accent-strong); text-decoration: none; }
.areas-cta a:hover { text-decoration: underline; }

.trust-cols { display: grid; gap: 40px; align-items: center; }
.trust-cols > * { min-width: 0; }
@media (min-width: 940px) { .trust-cols { grid-template-columns: 1.05fr .95fr; gap: 64px; } }

.trust .eyebrow { color: var(--c-accent); }
.trust h2 { color: #fff; }

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.4em 0 1.6em;
  display: grid;
  gap: 14px;
}
.check-list li {
  display: flex;
  gap: .8em;
  align-items: flex-start;
  font-size: 1.02rem;
}
.check-list li::before {
  content: "";
  width: 1.15em; height: 1.42em; flex: none;
  margin-top: .05em;
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 52 64"><path d="M17 44 l6 6 12 -13" fill="none" stroke="white" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/contain no-repeat,
    var(--c-accent);
  -webkit-mask: var(--glyph-mask) center/contain no-repeat;
          mask: var(--glyph-mask) center/contain no-repeat;
}
.trust .check-list li { color: rgba(255, 255, 255, .92); }

.trust-badges { border-top: 1px solid rgba(255, 255, 255, .14); padding-top: 1.3em; }
.badge-line {
  margin: 0 0 .4em;
  font-size: .93rem;
  color: rgba(255, 255, 255, .68);
  display: flex;
  align-items: center;
  gap: .6em;
}
.badge-line::before {
  content: "";
  width: 1.1em; height: 1.1em; flex: none;
  background: var(--c-accent);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2 4 5v6c0 5 3.4 9.4 8 10.8C16.6 20.4 20 16 20 11V5l-8-3zm-1.2 13.6-3.3-3.3 1.3-1.3 2 2 4.5-4.5 1.3 1.3-5.8 5.8z"/></svg>') center/contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2 4 5v6c0 5 3.4 9.4 8 10.8C16.6 20.4 20 16 20 11V5l-8-3zm-1.2 13.6-3.3-3.3 1.3-1.3 2 2 4.5-4.5 1.3 1.3-5.8 5.8z"/></svg>') center/contain no-repeat;
}

.trust-media { margin: 0; position: relative; }
.trust-media img {
  border-radius: var(--radius) 0 0 var(--radius);
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
  box-shadow: var(--shadow-2);
}
/* Bleed the photo to the viewport's right edge — one deliberate grid break */
@media (min-width: 940px) {
  .trust-media {
    margin-right: calc(-1 * (max(0px, (100vw - var(--container)) / 2) + clamp(18px, 4vw, 32px)));
  }
}
.trust-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--radius) 0 0 var(--radius);
  background: var(--c-dark);
  mix-blend-mode: multiply;
  opacity: .16;
  pointer-events: none;
}
/* Offset accent frame behind the photo */
.trust-media::before {
  content: "";
  position: absolute;
  inset: -14px 14px 14px -14px;
  border: 2px solid color-mix(in srgb, var(--c-accent) 55%, transparent);
  border-radius: var(--radius);
  pointer-events: none;
}

.guarantee-badge {
  position: absolute;
  left: -18px;
  bottom: 22px;
  max-width: min(78%, 330px);
  background: #fff;
  color: var(--c-ink);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-2);
  padding: 16px 18px 15px 52px;
  font-size: .9rem;
  line-height: 1.45;
}
.guarantee-badge::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 17px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background:
    var(--c-accent)
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="white" d="m10 15.6-3.6-3.6-1.4 1.4 5 5 9-9-1.4-1.4z"/></svg>') center/68% no-repeat;
}
.guarantee-title {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .98rem;
  margin-bottom: 2px;
}
.guarantee-sub { color: var(--c-muted); }
@media (max-width: 939.98px) {
  .guarantee-badge { left: 12px; bottom: 12px; }
  .trust-media::before { display: none; }
}

/* ---------- Reviews ---------- */

.reviews-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35em .7em;
  color: var(--c-muted);
  font-size: .95rem;
}

/* Lead review as a display pull-quote */
.review-hero {
  margin: 0 0 clamp(30px, 4vw, 44px);
  position: relative;
  padding: clamp(8px, 2vw, 20px) 0 0;
}
.review-hero::before {
  content: "\201C";
  position: absolute;
  top: -0.28em;
  left: -0.06em;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(7rem, 14vw, 11rem);
  line-height: 1;
  color: var(--c-accent-soft);
  pointer-events: none;
  z-index: 0;
}
.review-hero blockquote {
  position: relative;
  z-index: 1;
  margin: 0 0 .7em;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.9vw, 2.1rem);
  line-height: 1.32;
  letter-spacing: -0.01em;
  max-width: 26em;
  color: var(--c-ink);
}
.review-hero figcaption {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-muted);
}

.reviews-grid { display: grid; gap: 22px; }
@media (min-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
/* A lone supporting review (2-review businesses) becomes a full-width band */
.reviews-grid > :only-child { grid-column: 1 / -1; }
.reviews-grid > :only-child::before { top: 8px; }
@media (min-width: 720px) {
  .reviews-grid > :only-child { flex-direction: row; align-items: center; gap: 28px; }
  .reviews-grid > :only-child .stars { flex: none; }
  .reviews-grid > :only-child blockquote { margin: 0; flex: 1; }
  .reviews-grid > :only-child figcaption {
    border-top: none;
    border-left: 1px solid var(--c-line);
    padding: 4px 0 4px 22px;
    flex: none;
    min-width: 150px;
  }
}

.review-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 26px 26px 22px;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
/* Oversized decorative quote mark */
.review-card::before {
  content: "\201C";
  position: absolute;
  top: -6px;
  right: 14px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 5.4rem;
  line-height: 1;
  color: var(--c-accent-soft);
  pointer-events: none;
}
.review-card blockquote {
  margin: .9em 0 1.2em;
  font-size: 1rem;
  color: var(--c-ink);
  flex: 1;
}
.review-card blockquote::before { content: "“"; }
.review-card blockquote::after { content: "”"; }
.review-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--c-line);
  padding-top: 14px;
}
.review-name { font-family: var(--font-head); font-weight: 600; font-size: .97rem; }
.review-meta {
  font-size: .85rem;
  color: var(--c-muted);
  display: inline-flex;
  align-items: center;
  gap: .45em;
}
.review-meta::before {
  content: "";
  width: 1.05em; height: 1.05em; flex: none;
  border-radius: 50%;
  background:
    var(--c-accent)
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="white" d="m10 15.6-3.6-3.6-1.4 1.4 5 5 9-9-1.4-1.4z"/></svg>') center/70% no-repeat;
}

/* ---------- Service page: steps + FAQ ---------- */

.section-steps {
  background: var(--c-surface);
  padding-block: clamp(56px, 8vw, 88px);
}
.section-steps .section-head { margin-bottom: clamp(26px, 4vw, 40px); }

.steps {
  counter-reset: step;
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 720px) { .steps { grid-template-columns: repeat(3, 1fr); } }

.steps li {
  counter-increment: step;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 74px 24px 24px;
  position: relative;
  overflow: hidden;
}
/* Giant outlined numeral anchoring each step, shown in full */
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 12px;
  right: 14px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 5.2rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px color-mix(in srgb, var(--c-accent) 32%, transparent);
  pointer-events: none;
}
.steps .step-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 .35em;
  position: relative;
}
.steps p { margin: 0; font-size: .95rem; color: var(--c-muted); position: relative; }

.faq { margin-top: 2.6em; }
.faq h2 { font-size: 1.35rem; margin-bottom: .8em; }
.faq details {
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  padding: 0;
  margin-bottom: 10px;
  background: #fff;
}
.faq summary {
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 18px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--c-accent-strong);
  line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 18px 16px; margin: 0; color: var(--c-muted); font-size: .98rem; }

.service-areas-line {
  margin-top: 1.6em;
  padding: 14px 18px;
  background: var(--c-accent-soft);
  border-radius: var(--radius-sm);
  font-size: .98rem;
  color: var(--c-ink);
}
.service-areas-line a {
  color: var(--c-accent-strong);
  font-weight: 600;
  text-decoration: none;
}
.service-areas-line a:hover { text-decoration: underline; }

.reviews-all { margin: 26px 0 0; }
.reviews-all a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  color: var(--c-accent-strong);
  text-decoration: none;
}
.reviews-all a:hover { text-decoration: underline; }

/* ---------- Areas ---------- */

.areas { background: var(--c-surface); }

.areas-cols { display: grid; gap: 40px; align-items: start; }
@media (min-width: 900px) { .areas-cols { grid-template-columns: .9fr 1.1fr; gap: 70px; } }

.areas-count { margin: .2em 0 .6em; display: flex; align-items: baseline; gap: .45em; flex-wrap: wrap; }
.areas-count-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(3.4rem, 7vw, 5.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--c-accent-strong);
}
.areas-count-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--c-ink);
  max-width: 14em;
  line-height: 1.3;
}

.suburb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 40px;
}
@media (min-width: 640px) { .suburb-list { columns: 3; } }
.suburb-list li {
  font-size: .97rem;
  color: var(--c-ink);
  padding: .55em 0;
  border-bottom: 1px solid var(--c-line);
  break-inside: avoid;
}

/* ---------- Reno path (considered-purchase doorway) ---------- */

.reno-cols { display: grid; gap: 36px; align-items: center; }
@media (min-width: 900px) { .reno-cols { grid-template-columns: .95fr 1.05fr; gap: 64px; } }

.reno-media { margin: 0; position: relative; }
.reno-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
}
.reno-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: var(--c-dark);
  mix-blend-mode: multiply;
  opacity: .14;
  pointer-events: none;
}

/* ---------- Pricing strip ---------- */

.pricing { background: var(--c-surface); }

.pricing-grid { display: grid; gap: 18px; }
@media (min-width: 760px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-point {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 24px 26px 22px;
}
.pricing-point::before {
  content: "";
  display: block;
  width: 30px;
  height: 36px;
  margin-bottom: 14px;
  background: var(--c-accent);
  -webkit-mask: var(--glyph-mask) center/contain no-repeat;
          mask: var(--glyph-mask) center/contain no-repeat;
}
.pricing-point .pp-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 .3em;
}
.pricing-point p { margin: 0; color: var(--c-muted); font-size: .96rem; }

/* ---------- Contact ---------- */

.contact-cols { display: grid; gap: 46px; }
@media (min-width: 940px) { .contact-cols { grid-template-columns: 1fr 1fr; gap: 70px; } }

.contact-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 26px 28px;
  margin-top: 1.4em;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--c-accent-strong);
  text-decoration: none;
  margin-bottom: .4em;
}
.contact-phone:hover { text-decoration: underline; }

.contact-note { color: var(--c-muted); font-size: .95rem; }

.call-steps {
  list-style: none;
  counter-reset: cstep;
  margin: 1.3em 0 .4em;
  padding: 0;
  display: grid;
  gap: 10px;
}
.call-steps li {
  counter-increment: cstep;
  display: flex;
  gap: .8em;
  align-items: baseline;
  font-size: .95rem;
}
.call-steps li::before {
  content: counter(cstep);
  flex: none;
  width: 1.55em;
  height: 1.55em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--c-accent-soft);
  color: var(--c-accent-ink);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  transform: translateY(.2em);
}

.hours { margin: 1.2em 0 0; }
.hours > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: .55em 0;
  border-top: 1px solid var(--c-line);
  font-size: .97rem;
}
.hours dt { color: var(--c-muted); margin: 0; }
.hours dd { margin: 0; font-weight: 600; text-align: right; }

.contact-address { font-style: normal; margin-top: 1.1em; color: var(--c-muted); font-size: .95rem; }

.contact-form {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  padding: clamp(24px, 4vw, 34px);
  align-self: start;
}

.form-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 1.1em;
}

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  margin-bottom: 7px;
}
.field input, .field textarea {
  width: 100%;
  font: inherit;
  color: var(--c-ink);
  border: 1.5px solid var(--c-line);
  border-radius: var(--radius-sm);
  padding: .75em .95em;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--c-accent) 22%, transparent);
}

.hp-field { position: absolute; left: -5000px; height: 0; width: 0; opacity: 0; }

.form-fineprint {
  margin: 14px 0 0;
  font-size: .87rem;
  color: var(--c-muted);
  text-align: center;
}

.form-success {
  margin: 16px 0 0;
  background: var(--c-accent-soft);
  border: 1px solid color-mix(in srgb, var(--c-accent) 40%, transparent);
  color: var(--c-accent-ink);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: .97rem;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--c-dark);
  color: rgba(255, 255, 255, .82);
  padding-top: clamp(48px, 7vw, 72px);
}

/* Footer phone hero: the last thing on the page is the conversion action */
.footer-callout {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 26px;
  padding-bottom: clamp(32px, 5vw, 48px);
  margin-bottom: clamp(32px, 5vw, 48px);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.footer-callout-label {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, .75);
}
.footer-phone-big {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  letter-spacing: -0.015em;
  color: var(--c-accent);
  text-decoration: none;
  line-height: 1;
}
.footer-phone-big:hover { color: #fff; }

.footer-cols {
  display: grid;
  gap: 38px;
  padding-bottom: 44px;
}
@media (min-width: 800px) { .footer-cols { grid-template-columns: 1.4fr 1fr 1.05fr 1.1fr; gap: 44px; } }

.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.footer-hours .fh-time { color: rgba(255, 255, 255, .55); text-align: right; }

.footer-brand .brand-logo { height: calc(var(--logo-h) + 2px); margin-bottom: 16px; }
.footer-brand p { color: rgba(255, 255, 255, .66); font-size: .97rem; max-width: 30em; }

.footer-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  color: #fff;
  margin-bottom: 1em;
}

.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.site-footer li { font-size: .95rem; }
.site-footer a { color: rgba(255, 255, 255, .78); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-block: 20px 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 30px;
  justify-content: space-between;
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
}
.footer-legal p { margin: 0; }

/* ---------- Sticky mobile call bar ---------- */

.sticky-call {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 120;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--c-dark) 92%, transparent);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, .12);
}
@media (min-width: 880px) { .sticky-call { display: none; } }

/* The footer carries sticky-bar clearance so the page ends on brand ground */
@media (max-width: 879.98px) { .site-footer .footer-legal { padding-bottom: calc(26px + 76px); } }

/* ---------- Service page ---------- */

.service-hero {
  background: var(--c-dark);
  color: #fff;
  padding-block: clamp(44px, 7vw, 72px) clamp(40px, 6vw, 60px);
  position: relative;
  overflow: hidden;
}
.service-hero .container { position: relative; z-index: 1; }
.service-hero-media,
.service-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-hero-media { opacity: .17; }
.service-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--c-dark) 8%, transparent 65%);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .6em;
  font-size: .88rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 1.6em;
}
.breadcrumb a { color: rgba(255, 255, 255, .78); text-decoration: none; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }

.service-hero h1 { color: #fff; font-size: clamp(1.9rem, 4.6vw, 3rem); }
.service-hero-sub {
  color: rgba(255, 255, 255, .85);
  font-size: 1.08rem;
  max-width: 36em;
  margin-bottom: 1.5em;
}
.service-chips { margin-top: 1.6em; }

.service-cols { display: grid; gap: 44px; }
@media (min-width: 940px) { .service-cols { grid-template-columns: 1fr 340px; gap: 60px; } }

.service-figure { margin: 0 0 1.8em; position: relative; }
.service-figure img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 16 / 9.5;
  object-fit: cover;
  box-shadow: var(--shadow-1);
}
.service-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: var(--c-dark);
  mix-blend-mode: multiply;
  opacity: .14;
  pointer-events: none;
}

.service-copy p { font-size: 1.05rem; max-width: 42em; }

.service-includes { margin-top: 2.2em; }
.service-includes h2 { font-size: 1.35rem; }
.service-includes .check-list li { color: var(--c-ink); }

.service-aside { display: grid; gap: 20px; align-content: start; }
/* On mobile the footer already lists every service — the aside nav would
   interrupt the FAQ → proof → call flow, so hide it. */
@media (max-width: 939.98px) { .aside-nav { display: none; } }
/* Keep the call card in view while the long column scrolls */
@media (min-width: 940px) { .service-aside { position: sticky; top: 94px; align-self: start; } }
/* The inline FAQ guarantee callout covers mobile; avoid the stacked duplicate */
@media (max-width: 939.98px) { .aside-guarantee { display: none; } }

.aside-card {
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 24px 26px;
  background: #fff;
}
.aside-cta { background: var(--c-dark); color: #fff; border: none; box-shadow: var(--shadow-2); }
.aside-title { font-family: var(--font-head); font-weight: 700; font-size: 1.08rem; margin: 0 0 .35em; }
.aside-sub { font-size: .93rem; color: rgba(255, 255, 255, .75); margin-bottom: 1.2em; }
.aside-rating {
  display: flex;
  align-items: center;
  gap: .6em;
  margin: 1.1em 0 0;
  font-size: .88rem;
  color: rgba(255, 255, 255, .8);
}
.aside-licence {
  margin: .8em 0 0;
  padding-top: .8em;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: .82rem;
  color: rgba(255, 255, 255, .62);
}

.faq-guarantee {
  margin-top: 14px;
  background: var(--c-accent-soft);
  border-radius: var(--radius-sm);
  padding: 15px 18px;
  font-size: .95rem;
  color: var(--c-accent-ink);
  display: flex;
  gap: .7em;
  align-items: flex-start;
}
.faq-guarantee::before {
  content: "";
  flex: none;
  width: 1.05em; height: 1.3em;
  margin-top: .12em;
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 52 64"><path d="M17 44 l6 6 12 -13" fill="none" stroke="white" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/contain no-repeat,
    var(--c-accent);
  -webkit-mask: var(--glyph-mask) center/contain no-repeat;
          mask: var(--glyph-mask) center/contain no-repeat;
}

.aside-guarantee {
  background: var(--c-accent-soft);
  border-color: color-mix(in srgb, var(--c-accent) 30%, transparent);
}
.aside-guarantee .aside-title { color: var(--c-accent-ink); }
.aside-guarantee-sub { margin: 0; font-size: .92rem; color: var(--c-accent-ink); opacity: .85; }

.aside-nav ul { list-style: none; margin: 0; padding: 0; display: grid; }
.aside-nav li { border-top: 1px solid var(--c-line); }
.aside-nav li:first-child { border-top: none; }
.aside-nav a {
  display: block;
  padding: .7em 0;
  color: var(--c-ink);
  text-decoration: none;
  font-size: .98rem;
  font-weight: 500;
}
.aside-nav a:hover { color: var(--c-accent-strong); }

.service-review-band { padding-block: clamp(40px, 6vw, 60px); }

/* Service-page testimonial: same display pull-quote voice as the home page */
.review-feature {
  margin: 0;
  position: relative;
  padding: clamp(10px, 2vw, 24px) 0 0;
  max-width: 50em;
}
.review-feature::before {
  content: "\201C";
  position: absolute;
  top: -0.12em;
  right: 0;
  left: auto;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(6rem, 12vw, 9.5rem);
  line-height: 1;
  color: var(--c-accent-soft);
  pointer-events: none;
}
.review-feature .stars { position: relative; z-index: 1; }
.review-feature blockquote {
  position: relative;
  z-index: 1;
  margin: .7em 0 .8em;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.6vw, 1.85rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  max-width: 28em;
  color: var(--c-ink);
}
.review-feature figcaption {
  font-family: var(--font-head);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-muted);
}

.cta-band {
  background: var(--c-dark);
  color: #fff;
  padding-block: clamp(56px, 8vw, 84px);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  left: -70px;
  bottom: -110px;
  width: 320px;
  height: 390px;
  opacity: .05;
  pointer-events: none;
  background: #fff;
  -webkit-mask: var(--glyph-mask) center/contain no-repeat;
          mask: var(--glyph-mask) center/contain no-repeat;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band-inner { text-align: center; max-width: 640px; }
@media (min-width: 1240px) { .cta-band-inner { margin-inline: auto; } }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .8); margin-bottom: 1.6em; }

/* When no verified rating exists, suppress every star row and verified tick —
   review quotes carry the proof on their own. */
.no-rating .review-card .stars,
.no-rating .review-feature .stars,
.no-rating .aside-rating { display: none; }
.no-rating .review-meta::before { display: none; }

/* ---------- Scroll reveal (JS adds .reveal, then .in-view) ---------- */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.in-view { opacity: 1; transform: none; }
/* Without JS (or with reduced motion) everything stays visible */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Reduced motion ---------- */

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