/* =============================================================
   LOODGIETER DIRECT — Design System
   /docs/09: no emojis, SVG icons only, image-rich, mobile-first
   ============================================================= */

/* ── DESIGN TOKENS ──────────────────────────────────────────────
   Modern blue system (2026 redesign): vivid royal-blue brand on
   light lavender-tinted surfaces, soft diffuse blue shadows, large
   radii, pill CTAs. Monochrome-blue — no orange; gold only for stars.
   ---------------------------------------------------------------- */
:root {
  /* ── Brand blue (CTAs, icons, links, accent bands) ── */
  --color-accent:       #2f5bff;   /* the vivid brand blue (accent = brand) */
  --color-accent-dark:  #1e40e8;
  --color-brand:        #2f5bff;
  --color-brand-dark:   #1e40e8;
  --color-brand-light:  #6b8cff;
  --color-brand-050:    #eef2ff;   /* light blue tint (icon chips, hovers) */
  --color-brand-100:    #dfe6ff;

  /* ── Ink / headings / text ── */
  --color-primary:      #14213d;   /* deep navy — headings + dark accents */
  --color-primary-dark: #0b1428;   /* darkest navy — hero scrim base */
  --color-heading:      #0f172a;   /* near-black navy for big headings */
  --color-ink:          #1a2233;   /* strong body text */
  --color-body:         #475467;   /* paragraph text */
  --color-muted:        #667085;   /* secondary/meta text */

  --color-success:      #16a34a;
  --color-star:         #fbbf24;   /* review stars only */

  /* ── Surfaces ── */
  --color-surface:      #ffffff;
  --color-surface-alt:  #f5f7ff;   /* very light blue band */
  --color-surface-alt2: #eaeeff;
  --color-border:       #e7eaf3;
  --color-overlay:      rgba(11, 20, 40, 0.62);

  /* ── Gradients ── */
  --grad-btn:   linear-gradient(180deg, #3a60ff 0%, #2f5bff 100%);   /* top stop dark enough for white AA text */
  --grad-band:  linear-gradient(180deg, #ffffff 0%, #f2f5ff 100%);
  --grad-blue:  linear-gradient(135deg, #3f66ff 0%, #2038cf 100%);
  --grad-hero:  linear-gradient(115deg, rgba(11,20,40,0.86) 0%, rgba(18,40,130,0.72) 100%);

  /* Spacing (4/8 px scale) */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.9375rem;
  --text-4xl:  clamp(2rem, 4vw, 2.75rem);
  --text-5xl:  clamp(2.25rem, 5.5vw, 3.5rem);
  --leading:   1.6;
  --leading-tight: 1.12;

  /* Borders & radius — softer, larger */
  --radius-sm:  0.625rem;   /* 10px */
  --radius:     0.875rem;   /* 14px */
  --radius-lg:  1.25rem;    /* 20px */
  --radius-xl:  1.75rem;    /* 28px */
  --radius-pill: 999px;

  /* Shadows — soft, diffuse, blue-tinted */
  --shadow-sm:  0 1px 2px rgba(16,24,40,0.06), 0 1px 3px rgba(16,24,40,0.10);
  --shadow:     0 10px 28px rgba(47,91,255,0.10), 0 2px 8px rgba(16,24,40,0.05);
  --shadow-lg:  0 24px 56px rgba(47,91,255,0.16), 0 6px 16px rgba(16,24,40,0.06);
  --shadow-blue: 0 12px 26px rgba(47,91,255,0.38);

  /* Layout */
  --container: 1200px;
  --container-pad: 1.5rem;

  /* Transitions */
  --transition: 180ms cubic-bezier(.4, 0, .2, 1);

  /* Z-index */
  --z-header:    100;
  --z-mobile-cta: 200;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading);
  color: var(--color-ink);
  background: var(--color-surface);
}
img, picture, video { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
a { color: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { line-height: var(--leading-tight); }

/* ── SCREEN READER ONLY ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── LAYOUT ── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: var(--sp-16);
}
.section--alt {
  background: var(--color-surface-alt);
}
.section--primary {
  background: var(--color-primary);
  color: #fff;
}

.grid-2 { display: grid; gap: var(--sp-8); }
.grid-3 { display: grid; gap: var(--sp-6); }
.grid-4 { display: grid; gap: var(--sp-6); }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ── TYPOGRAPHY ── */
.section-title {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--sp-4);
}
.section-title--white { color: #fff; }
.section-lead {
  font-size: var(--text-lg);
  color: var(--color-muted);
  max-width: 640px;
}
.section-lead--white { color: rgba(255,255,255,0.8); }
.text-center { text-align: center; }
.text-muted  { color: var(--color-muted); }
.text-white  { color: #fff; }
.lead { font-size: var(--text-lg); line-height: 1.7; }

/* ── ICON SYSTEM ── */
.icon {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  vertical-align: -0.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon--lg  { width: 2rem;  height: 2rem;  }
.icon--xl  { width: 2.5rem; height: 2.5rem; }
.icon--2xl { width: 3rem;  height: 3rem;  }
.icon--accent { color: var(--color-accent); }
.icon--white  { color: #fff; }
.icon--primary { color: var(--color-primary); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.6rem 1.2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  min-height: 44px; /* thumb target */
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn--primary:hover, .btn--primary:focus {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}
.btn--accent {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.btn--accent:hover, .btn--accent:focus {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
}
.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn--outline-white:hover, .btn--outline-white:focus {
  background: rgba(255,255,255,0.12);
}
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover, .btn--outline:focus {
  background: var(--color-primary);
  color: #fff;
}
.btn--lg {
  font-size: var(--text-base);
  padding: 0.75rem 1.5rem;
  min-height: 48px;
}
.btn--block {
  width: 100%;
  justify-content: center;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--color-primary);
  box-shadow: var(--shadow);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  padding-block: var(--sp-4);
}
.site-logo {
  display: flex;
  align-items: center;
  gap: .35em;
  font-size: var(--text-xl);
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  line-height: 1;
}
.site-logo__bolt {
  width: 1.1em;
  height: 1.1em;
  color: var(--color-accent);
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(232,93,4,.55));
}
.site-logo__word { color: #fff; }
.site-logo__accent {
  color: var(--color-accent);
  font-style: italic;
  letter-spacing: -0.01em;
}
.site-nav {
  flex: 1;
  display: none;
}
.site-nav ul {
  display: flex;
  gap: var(--sp-6);
  list-style: none;
}
.site-nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  transition: color var(--transition);
}
.site-nav a:hover { color: #fff; }
.site-header__cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.header-phone {
  display: none;
  color: #fff;
  font-weight: 700;
  font-size: var(--text-lg);
  text-decoration: none;
  align-items: center;
  gap: var(--sp-2);
}
.header-phone:hover { color: var(--color-accent); }
@media (min-width: 768px) {
  .site-nav { display: block; }
  .header-phone { display: flex; }
}

/* (Sticky mobile CTA bar removed by request — the hero carries the
   above-the-fold call CTA + lead form on mobile.) */

/* ── BREADCRUMBS ── */
.breadcrumbs {
  background: var(--color-surface-alt);
  border-bottom: 1px solid var(--color-border);
}
.breadcrumbs__inner {
  padding-block: var(--sp-3);
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  align-items: center;
  list-style: none;
  font-size: var(--text-sm);
  color: var(--color-muted);
}
.breadcrumbs li + li::before {
  content: '';
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: var(--sp-2);
}
.breadcrumbs a { color: var(--color-primary); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: var(--color-ink); font-weight: 600; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-primary-dark);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-block: var(--sp-16);
  width: 100%;
}
.hero__content h1 {
  font-size: var(--text-5xl);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--sp-4);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero__tagline {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--sp-6);
  font-weight: 500;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}
@media (min-width: 900px) {
  .hero__inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: var(--sp-10);
    align-items: center;
  }
}

/* ── LEAD FORM ── */
.lead-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-lg);
}
.lead-form__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--sp-4);
}
.form-group {
  margin-bottom: var(--sp-4);
}
.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: var(--sp-1);
}
.form-group input,
.form-group select,
.form-group textarea {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-size: var(--text-base);
  color: var(--color-ink);
  background: var(--color-surface);
  transition: border-color var(--transition);
  min-height: 48px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(10,36,99,0.15);
}
.form-note {
  font-size: var(--text-sm);
  color: var(--color-muted);
  text-align: center;
  margin-top: var(--sp-3);
}
.form-note a { color: var(--color-primary); font-weight: 600; }
.form-success { display: none; }
.form-success.is-visible { display: block; }

/* ── TRUST STRIP ── */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.2);
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.9);
  font-size: var(--text-sm);
  font-weight: 600;
}

/* ── USP ROW ── */
.usp-row {
  background: var(--color-primary);
  color: #fff;
  padding-block: var(--sp-12);
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}
.usp-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}
.usp-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius);
  flex-shrink: 0;
  color: var(--color-accent);
}
.usp-item__label {
  font-weight: 700;
  font-size: var(--text-base);
  margin-bottom: var(--sp-1);
}
.usp-item__text {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
}
@media (min-width: 640px) { .usp-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .usp-grid { grid-template-columns: repeat(6, 1fr); } }

/* ── SERVICE GRID (cards with images) ── */
.service-grid {
  display: grid;
  gap: var(--sp-6);
}
@media (min-width: 640px)  { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition), transform var(--transition);
  background: var(--color-surface);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.service-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--color-surface-alt);
}
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.service-card:hover .service-card__image img { transform: scale(1.04); }
.service-card__body {
  padding: var(--sp-5);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.service-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-primary);
}
.service-card__desc {
  font-size: var(--text-sm);
  color: var(--color-muted);
  flex: 1;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--color-accent);
  font-weight: 600;
  font-size: var(--text-sm);
  margin-top: var(--sp-2);
}

/* ── HOW IT WORKS ── */
.how-steps {
  display: grid;
  gap: var(--sp-8);
}
@media (min-width: 640px)  { .how-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .how-steps { grid-template-columns: repeat(4, 1fr); } }

.how-step {
  text-align: center;
  padding: var(--sp-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  position: relative;
}
.how-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--color-accent);
  color: #fff;
  font-size: var(--text-2xl);
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: var(--sp-4);
}
.how-step__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--sp-2);
}
.how-step__text {
  font-size: var(--text-sm);
  color: var(--color-muted);
}
.how-step__image {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: var(--sp-4);
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-surface-alt);
}
.how-step__image img { width: 100%; height: 100%; object-fit: cover; }

/* ── COST BLOCK ── */
.cost-block {
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
}
.cost-block__title {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--sp-4);
}
.cost-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--sp-4);
}
.cost-table th, .cost-table td {
  padding: var(--sp-3) var(--sp-4);
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  font-size: var(--text-sm);
}
.cost-table th { font-weight: 700; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.05em; }
.cost-table td { color: rgba(255,255,255,0.9); }
.cost-note {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
  font-style: italic;
}

/* ── IMAGE TEXT SPLIT ── */
.image-text {
  display: grid;
  gap: var(--sp-10);
  align-items: center;
}
.image-text--reverse { direction: rtl; }
.image-text--reverse > * { direction: ltr; }
@media (min-width: 768px) {
  .image-text { grid-template-columns: 1fr 1fr; }
}
.image-text__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-surface-alt);
}
.image-text__img img { width: 100%; height: 100%; object-fit: cover; }
.image-text__body h2 {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--sp-4);
}
.image-text__body p { margin-bottom: var(--sp-4); color: var(--color-muted); }

/* ── BEFORE/AFTER ── */
.before-after {
  display: grid;
  gap: var(--sp-6);
}
@media (min-width: 640px) { .before-after { grid-template-columns: 1fr 1fr; } }

.ba-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.ba-item__label {
  padding: var(--sp-2) var(--sp-4);
  font-weight: 700;
  font-size: var(--text-sm);
  background: var(--color-surface-alt);
  border-bottom: 1px solid var(--color-border);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ba-item--before .ba-item__label { color: #c00; }
.ba-item--after  .ba-item__label { color: var(--color-success); }
.ba-item__img {
  aspect-ratio: 4/3;
  background: var(--color-surface-alt);
}
.ba-item__img img { width: 100%; height: 100%; object-fit: cover; }

/* ── REVIEW WALL ── */
.review-grid {
  display: grid;
  gap: var(--sp-6);
}
@media (min-width: 640px)  { .review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .review-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.review-card__stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
}
.review-card__text {
  font-size: var(--text-base);
  color: var(--color-ink);
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}
.review-card__meta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  border-top: 1px solid var(--color-border);
  padding-top: var(--sp-3);
}
.review-card__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--color-surface-alt);
  overflow: hidden;
  flex-shrink: 0;
}
.review-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-card__name { font-weight: 700; font-size: var(--text-sm); }
.review-card__date { font-size: var(--text-sm); color: var(--color-muted); }
.review-placeholder {
  background: var(--color-surface-alt);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  text-align: center;
  border: 2px dashed var(--color-border);
}
.review-placeholder p { color: var(--color-muted); font-style: italic; }

/* ── FAQ ACCORDION ── */
.faq-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  width: 100%;
  padding: var(--sp-5) var(--sp-6);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-primary);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--color-surface-alt); }
.faq-question[aria-expanded="true"] { background: var(--color-surface-alt); }
.faq-chevron {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.25s ease;
  color: var(--color-accent);
}
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 var(--sp-6) var(--sp-5);
  color: var(--color-muted);
  line-height: 1.7;
  font-size: var(--text-base);
}
.faq-answer.is-open { display: block; }

/* ── NEIGHBOURHOOD LINKS ── */
.neighbourhood-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.neighbourhood-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  text-decoration: none;
  color: var(--color-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: background var(--transition), border-color var(--transition);
}
.neighbourhood-tag:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* ── NEARBY CITIES ── */
.nearby-cities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.nearby-city-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--color-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  background: var(--color-surface);
  transition: background var(--transition);
}
.nearby-city-link:hover { background: var(--color-surface-alt); }

/* ── RELATED SERVICES ── */
.related-services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.related-service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-5);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: border-color var(--transition), background var(--transition);
}
.related-service-link:hover {
  border-color: var(--color-accent);
  background: var(--color-surface-alt);
}

/* ── CTA BAND ── */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--color-primary-dark);
  color: #fff;
  text-align: center;
  padding-block: var(--sp-20);
}
.cta-band__bg {
  position: absolute;
  inset: 0;
}
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.18; }
.cta-band__content {
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  font-size: var(--text-4xl);
  font-weight: 800;
  margin-bottom: var(--sp-4);
}
.cta-band p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--sp-8);
}
.cta-band__btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: center;
}

/* ── CITY/SERVICES OVERVIEW GRID (homepage) ── */
.city-grid {
  display: grid;
  gap: var(--sp-3);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px)  { .city-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .city-grid { grid-template-columns: repeat(4, 1fr); } }

.city-grid-link {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--color-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  background: var(--color-surface);
  transition: background var(--transition), border-color var(--transition);
}
.city-grid-link:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* ── TEAM/VAN IMAGE ROW ── */
.team-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/6;
  background: var(--color-surface-alt);
}
.team-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── CERT BADGES ── */
.cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
  align-items: center;
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-primary);
}
.cert-badge svg { flex-shrink: 0; }

/* ── STAT ROW ── */
.stat-row {
  display: grid;
  gap: var(--sp-6);
  text-align: center;
}
@media (min-width: 640px) { .stat-row { grid-template-columns: repeat(3, 1fr); } }

.stat-item__value {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.stat-item__label { font-size: var(--text-sm); color: var(--color-muted); }

/* ── PLACEHOLDER IMAGES ── */
.img-placeholder {
  background: linear-gradient(135deg, #e8edf4 0%, #dce4ee 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--sp-3);
  color: var(--color-muted);
  font-size: var(--text-sm);
  font-weight: 500;
  text-align: center;
  padding: var(--sp-4);
  width: 100%;
  height: 100%;
  min-height: 200px;
}
.img-placeholder svg { opacity: 0.35; }
.img-placeholder__label {
  background: rgba(255,255,255,0.7);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── FOOTER ── */
/* ── FOOTER ── */
.footer-cta-strip {
  background: var(--color-accent);
  padding: var(--sp-4) 0;
}
.footer-cta-strip__inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: var(--sp-4);
}
.footer-cta-strip__text { color: #fff; font-weight: 600; font-size: var(--text-base); }

.site-footer { background: var(--color-primary-dark); color: rgba(255,255,255,0.75); }

.footer-main { padding-block: var(--sp-16) var(--sp-10); }
.footer-grid {
  display: grid; gap: var(--sp-10);
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.4fr; } }

/* Brand column */
.footer-col--brand .site-logo { margin-bottom: var(--sp-4); }
.footer-desc { font-size: var(--text-sm); line-height: 1.7; margin-bottom: var(--sp-4); color: rgba(255,255,255,0.7); }

.footer-contact-list { list-style: none; padding: 0; margin: 0 0 var(--sp-4); display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-contact-list li { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--text-sm); }
.footer-contact-list a { color: rgba(255,255,255,0.8); text-decoration: none; }
.footer-contact-list a:hover { color: #fff; }

.footer-reviews { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--text-sm); margin-bottom: var(--sp-4); }
.footer-reviews .icon--star { color: #fbbf24; width: 1em; height: 1em; }

.footer-social { display: flex; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.footer-social a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-social a:hover { color: var(--color-accent); }
.footer-social .icon { width: 1.25rem; height: 1.25rem; }

.footer-certs { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.cert-badge { display: inline-flex; align-items: center; gap: var(--sp-1); font-size: .75rem; color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); border-radius: 4px; padding: 2px 8px; }

/* Service + city columns */
.footer-heading {
  font-size: .6875rem; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: .1em;
  margin: 0 0 var(--sp-3);
}
.footer-links-list { list-style: none; padding: 0; margin: 0 0 var(--sp-4); display: flex; flex-direction: column; gap: 6px; }
.footer-links-list a { font-size: var(--text-sm); color: rgba(255,255,255,0.68); text-decoration: none; transition: color var(--transition); }
.footer-links-list a:hover { color: #fff; }

/* Cities grid within footer */
.footer-cities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4) var(--sp-6); }
@media (min-width: 1024px) { .footer-cities-grid { grid-template-columns: 1fr 1fr; } }
.footer-province strong { display: block; font-size: .6875rem; font-weight: 700; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: .08em; margin-bottom: var(--sp-2); }
.footer-province ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 5px; }
.footer-province a { font-size: var(--text-sm); color: rgba(255,255,255,0.68); text-decoration: none; transition: color var(--transition); }
.footer-province a:hover { color: #fff; }

/* Bottom bar */
.footer-bottom {
  padding: var(--sp-6) 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom__inner {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: center; gap: var(--sp-3);
  font-size: var(--text-sm); color: rgba(255,255,255,0.45);
}
.footer-legal { display: flex; flex-wrap: wrap; gap: var(--sp-4); }
.footer-legal a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-legal a:hover { color: #fff; }


/* ── SECTION HEADERS ── */
.section-header {
  margin-bottom: var(--sp-10);
}
.section-header--center { text-align: center; }
.section-header--center .section-lead { margin-inline: auto; }

/* ── PROSE TEXT CONTENT ── */
.prose h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-4);
}
.prose h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-3);
}
.prose p { margin-bottom: var(--sp-4); color: var(--color-muted); line-height: 1.75; }
.prose ul, .prose ol {
  margin-bottom: var(--sp-4);
  padding-left: var(--sp-6);
  color: var(--color-muted);
}
.prose li { margin-bottom: var(--sp-2); }
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--sp-6);
  font-size: var(--text-sm);
}
.prose th, .prose td {
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--color-border);
  text-align: left;
}
.prose th { background: var(--color-surface-alt); font-weight: 700; color: var(--color-primary); }

/* ── BLOG ── */
.blog-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: var(--color-surface);
  transition: box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-lg); }
.blog-card__image { aspect-ratio: 16/9; background: var(--color-surface-alt); overflow: hidden; }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: var(--sp-5); flex: 1; display: flex; flex-direction: column; gap: var(--sp-2); }
.blog-card__cat { font-size: var(--text-sm); font-weight: 700; color: var(--color-accent); text-transform: uppercase; letter-spacing: 0.05em; }
.blog-card__title { font-size: var(--text-lg); font-weight: 700; color: var(--color-primary); }
.blog-card__date { font-size: var(--text-sm); color: var(--color-muted); margin-top: auto; }

/* ── FOCUS / ACCESSIBILITY ── */
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* =============================================================
   PHASE 2 — WORDPRESS TEMPLATE COMPATIBILITY LAYER
   The WordPress PHP templates emit a different class set than the
   Phase-1 static generator (e.g. .hero__trust, .usp-card,
   .trust-section, .city-intro, .service-intro, .svc-city-body,
   .faq-toggle, .cta-band__inner, .booking-form, .btn--whatsapp).
   These rules style that markup with the existing design tokens.
   Everything above this banner is unchanged.
   ============================================================= */

/* ── Section rhythm + alternating backgrounds ── */
.services-overview,
.cities-section,
.trust-section,
.city-intro,
.city-services,
.service-intro,
.service-cities,
.svc-city-body,
.nb-body,
.faq-section,
.booking-form,
.blog-archive { padding-block: var(--sp-16); }

.cities-section,
.trust-section,
.city-services,
.service-cities,
.faq-section { background: var(--color-surface-alt); }

/* ── Section sub-heading + centered intros ── */
.section-sub {
  font-size: var(--text-lg);
  color: var(--color-muted);
  max-width: 680px;
  margin: 0 0 var(--sp-8);
}
.services-overview .section-title, .services-overview .section-sub,
.cities-section   .section-title, .cities-section   .section-sub,
.trust-section    .section-title,
.city-services    h2,
.service-cities   h2,
.booking-form     .section-title, .booking-form     .section-sub { text-align: center; }
.services-overview .section-sub,
.cities-section   .section-sub,
.booking-form     .section-sub { margin-inline: auto; }

/* Bare section headings (no .section-title class in template) */
.city-intro__text h2,
.city-services h2,
.service-cities h2,
.nb-body h2,
.svc-city-body__main h2 {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--sp-6);
}

/* ── Buttons added in Phase 2 ── */
.btn--whatsapp { background: #25d366; color: #fff; border-color: #25d366; }
.btn--whatsapp:hover, .btn--whatsapp:focus { background: #1da851; border-color: #1da851; }
.btn--ghost { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.5); }
.btn--ghost:hover, .btn--ghost:focus { background: rgba(255,255,255,0.22); }
.btn--sm { padding: 0.5rem 1rem; min-height: 40px; font-size: var(--text-sm); }

/* ── HERO (WordPress markup) ── */
.hero__h1 {
  font-size: var(--text-5xl);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--sp-4);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-5);
  margin-bottom: var(--sp-6);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 600;
}
.hero__trust-item .icon { color: var(--color-accent); }
.hero__form { width: 100%; }
.hero__reviews {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-6);
  color: #fff;
  font-size: var(--text-sm);
}
.star-row { display: inline-flex; gap: 2px; }
.star-row .icon, .icon--star { color: #fbbf24; }
.review-text { color: rgba(255,255,255,0.85); }

/* ── USP ROW cards (WordPress markup) ── */
.usp-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-2);
  padding: var(--sp-4);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
}
.usp-card p { font-size: var(--text-sm); font-weight: 600; color: #fff; margin: 0; }
.usp-card .icon { color: var(--color-accent); }

/* ── SERVICES GRID (icon tiles on home + city pages) ── */
.services-grid {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.services-grid .service-card {
  flex-direction: row;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
}
.service-card__name { font-weight: 700; color: var(--color-primary); font-size: var(--text-base); flex: 1; }
.service-card__more { color: var(--color-accent); margin-left: auto; }

/* ── TRUST GRID (homepage) ── */
.trust-grid {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item {
  text-align: center;
  padding: var(--sp-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.trust-item .icon { color: var(--color-accent); margin-bottom: var(--sp-3); }
.trust-item h3 { font-size: var(--text-lg); font-weight: 700; color: var(--color-primary); margin-bottom: var(--sp-2); }
.trust-item p { font-size: var(--text-sm); color: var(--color-muted); }

/* ── CITY HUB intro + facts ── */
.city-intro__inner { display: grid; gap: var(--sp-10); align-items: start; }
@media (min-width: 900px) { .city-intro__inner { grid-template-columns: 1.6fr 1fr; } }
.city-intro__text p { margin-bottom: var(--sp-4); color: var(--color-muted); line-height: 1.75; }
.city-intro__facts {
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
}
.city-intro__facts h3 { font-size: var(--text-lg); font-weight: 700; color: var(--color-primary); margin-bottom: var(--sp-3); }
.city-intro__facts ul { list-style: none; display: flex; flex-direction: column; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.city-intro__facts li, .local-facts li {
  position: relative;
  padding-left: 1.5rem;
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.6;
}
.city-intro__facts li::before, .local-facts li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.5em;
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: var(--color-accent);
}
.city-intro__facts img { border-radius: var(--radius); margin-top: var(--sp-2); }

/* ── SERVICE HUB intro + city grid ── */
.service-intro__inner { display: grid; gap: var(--sp-10); align-items: center; }
@media (min-width: 900px) { .service-intro__inner { grid-template-columns: 1.4fr 1fr; } }
.service-intro__text p { margin-bottom: var(--sp-4); color: var(--color-muted); line-height: 1.75; }
.service-intro__text .lead { color: var(--color-ink); }
.service-intro__img { border-radius: var(--radius-lg); overflow: hidden; }
.service-intro__img img { width: 100%; border-radius: var(--radius-lg); }

.cities-grid { display: grid; gap: var(--sp-3); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px)  { .cities-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .cities-grid { grid-template-columns: repeat(4, 1fr); } }
.city-link {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  text-decoration: none;
  color: var(--color-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: background var(--transition), border-color var(--transition);
}
.city-link:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.city-link .icon { color: var(--color-accent); }
.city-link:hover .icon { color: #fff; }

/* ── SERVICE × CITY money page body ── */
.svc-city-body__inner { display: grid; gap: var(--sp-10); align-items: start; }
@media (min-width: 900px) { .svc-city-body__inner { grid-template-columns: 1.7fr 1fr; } }
.svc-city-body__main h3 { font-size: var(--text-xl); font-weight: 700; color: var(--color-primary); margin: var(--sp-6) 0 var(--sp-3); }
.svc-city-body__main p { margin-bottom: var(--sp-4); color: var(--color-muted); line-height: 1.75; }
.local-facts {
  background: var(--color-surface-alt);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  margin-top: var(--sp-6);
}
.local-facts h3 { font-size: var(--text-lg); font-weight: 700; color: var(--color-primary); margin-bottom: var(--sp-3); }
.local-facts ul { list-style: none; display: flex; flex-direction: column; gap: var(--sp-2); }
.svc-city-body__sidebar { display: flex; flex-direction: column; gap: var(--sp-4); }
@media (min-width: 900px) { .svc-city-body__sidebar { position: sticky; top: 90px; } }
.svc-city-body__sidebar img { border-radius: var(--radius-lg); }
.sidebar-cta, .sidebar-related {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
}
.sidebar-cta { box-shadow: var(--shadow-sm); }
.sidebar-cta p { margin-bottom: var(--sp-3); }
.sidebar-related h4 { font-size: var(--text-base); font-weight: 700; color: var(--color-primary); margin-bottom: var(--sp-3); }
.sidebar-related ul { list-style: none; display: flex; flex-direction: column; gap: var(--sp-2); }
.sidebar-related a { color: var(--color-primary); text-decoration: none; font-size: var(--text-sm); font-weight: 600; }
.sidebar-related a:hover { color: var(--color-accent); text-decoration: underline; }

/* ── NEIGHBOURHOOD page ── */
.nb-body .lead { margin-bottom: var(--sp-6); }
.nb-services {
  list-style: none;
  display: grid;
  gap: var(--sp-3);
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .nb-services { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .nb-services { grid-template-columns: repeat(3, 1fr); } }
.nb-services a {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 600;
  font-size: var(--text-sm);
}
.nb-services a:hover { border-color: var(--color-accent); background: var(--color-surface-alt); }

/* ── FAQ accordion (WordPress markup: .faq-toggle + [hidden] answer) ── */
.faq-section .section-title { text-align: center; margin-bottom: var(--sp-8); }
.faq-section .faq-list { max-width: 800px; margin-inline: auto; }
.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  width: 100%;
  padding: var(--sp-5) var(--sp-8);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-primary);
  transition: background var(--transition);
}
.faq-toggle:hover, .faq-toggle[aria-expanded="true"] { background: var(--color-surface-alt); }
.faq-toggle[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }

/* ── CTA BAND (WordPress markup) ── */
.cta-band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
  text-align: center;
}
@media (min-width: 768px) {
  .cta-band__inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.cta-band__inner .cta-band__title { font-size: var(--text-3xl); font-weight: 800; color: #fff; margin-bottom: var(--sp-2); }
.cta-band__inner .cta-band__sub { font-size: var(--text-lg); color: rgba(255,255,255,0.8); margin: 0; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; flex-shrink: 0; }

/* ── BOOKING FORM ── */
.booking-form__form {
  max-width: 820px;
  margin: var(--sp-8) auto 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow);
}
.booking-form__grid { display: grid; gap: var(--sp-4); grid-template-columns: 1fr; }
@media (min-width: 640px) { .booking-form__grid { grid-template-columns: 1fr 1fr; } }
.form-group--full { grid-column: 1 / -1; }

/* ── BREADCRUMBS: hide literal "/" separators (chevrons handled by ::before) ── */
.crumb-sep { display: none; }

/* ── BLOG archive + single ── */
.archive-title { font-size: var(--text-4xl); font-weight: 800; color: var(--color-primary); margin-bottom: var(--sp-2); }
.archive-sub { font-size: var(--text-lg); color: var(--color-muted); margin-bottom: var(--sp-10); }
.blog-grid { display: grid; gap: var(--sp-6); grid-template-columns: 1fr; }
@media (min-width: 640px)  { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card__img { display: block; aspect-ratio: 16/9; overflow: hidden; background: var(--color-surface-alt); }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__title a { color: inherit; text-decoration: none; }
.blog-card__title a:hover { color: var(--color-accent); }
.blog-card__excerpt { font-size: var(--text-sm); color: var(--color-muted); flex: 1; }
.pagination { margin-top: var(--sp-10); display: flex; justify-content: center; }
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.5rem;
  margin: 0 2px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 600;
}
.pagination .page-numbers.current { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

.blog-post { padding-block: var(--sp-12); }
.blog-post__inner { max-width: 760px; }
.post-header h1 { font-size: var(--text-4xl); font-weight: 800; color: var(--color-primary); margin: var(--sp-4) 0 var(--sp-3); line-height: 1.15; }
.post-meta { font-size: var(--text-sm); color: var(--color-muted); margin-bottom: var(--sp-6); }
.post-hero { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: var(--sp-8); }
.post-hero img { width: 100%; height: auto; object-fit: cover; }
.post-content { font-size: var(--text-lg); line-height: 1.8; color: var(--color-ink); }
.post-content > * { margin-bottom: var(--sp-5); }
.post-content h2 { font-size: var(--text-2xl); font-weight: 700; color: var(--color-primary); margin-top: var(--sp-8); margin-bottom: var(--sp-3); }
.post-content h3 { font-size: var(--text-xl); font-weight: 700; color: var(--color-primary); margin-top: var(--sp-6); margin-bottom: var(--sp-3); }
.post-content ul, .post-content ol { padding-left: var(--sp-6); }
.post-content a { color: var(--color-accent); }

/* =============================================================
   MODERN BLUE REDESIGN (2026)
   Structural restyle to the reference aesthetic: light glassy
   header, pill CTAs with a blue glow, big soft-rounded cards with
   hover-lift, light lavender bands, blue footer/CTA, circular FAQ
   toggles, blue icon chips. Token changes above do most of the
   recolouring; these rules handle shape/layout. Keeps "no emoji".
   ============================================================= */

/* ── Headings: unified near-black navy ── */
.section-title,
.image-text__body h2, .service-card__title, .how-step__title,
.prose h2, .prose h3, .blog-card__title,
.city-intro__text h2, .city-intro__facts h3,
.svc-city-body__main h2, .svc-city-body__main h3,
.trust-item h3, .sidebar-related h4, .archive-title,
.post-header h1, .post-content h2, .post-content h3,
.city-services h2, .service-cities h2, .nb-body h2, .local-facts h3,
.faq-question, .faq-toggle {
  color: var(--color-heading);
}
.section-title { font-weight: 800; letter-spacing: -0.02em; }
.hero__content h1, .hero__h1 { letter-spacing: -0.035em; }
h1, h2 { letter-spacing: -0.02em; }

/* ── BUTTONS: pill + gradient + blue glow ── */
.btn { border-radius: var(--radius-pill); font-weight: 600; letter-spacing: -0.01em; }
.btn--accent, .btn--primary {
  background: var(--grad-btn);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 22px rgba(47,91,255,0.32), 0 0 0 4px rgba(47,91,255,0.10);
}
.btn--accent:hover, .btn--accent:focus,
.btn--primary:hover, .btn--primary:focus {
  background: var(--grad-btn);
  filter: brightness(1.05);
  box-shadow: 0 14px 30px rgba(47,91,255,0.46), 0 0 0 4px rgba(47,91,255,0.14);
  transform: translateY(-1px);
}
.btn--outline {
  background: #fff;
  color: var(--color-heading);
  border-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}
.btn--outline:hover, .btn--outline:focus {
  border-color: var(--color-brand);
  color: var(--color-brand);
  background: #fff;
}
.btn--ghost {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.45);
  color: #fff;
}
.btn--ghost:hover, .btn--ghost:focus { background: rgba(255,255,255,0.24); }

/* ── HEADER: light glassy bar, dark nav, blue logo accent ── */
.site-header {
  background: rgba(255,255,255,0.85);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 12px rgba(16,24,40,0.04);
}
.site-header .site-logo__word { color: var(--color-heading); }
.site-header .site-logo__accent { color: var(--color-brand); }
.site-header .site-logo__bolt { color: var(--color-brand); filter: drop-shadow(0 0 6px rgba(47,91,255,0.45)); }
.site-nav a { color: var(--color-body); }
.site-nav a:hover { color: var(--color-brand); }
.header-phone { color: var(--color-heading); }
.header-phone:hover { color: var(--color-brand); }

/* ── HERO: richer gradient scrim + glassier form card ── */
.hero { min-height: 560px; }
.hero__overlay { background: var(--grad-hero); }
.lead-form {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.6);
}

/* ── USP ROW: light band with white cards + blue icon chips ── */
.usp-row {
  background: var(--grad-band);
  color: var(--color-ink);
  border-block: 1px solid var(--color-border);
}
.usp-card {
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  padding: var(--sp-4) var(--sp-3);
  transition: box-shadow var(--transition), transform var(--transition);
}
.usp-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.usp-card p { color: var(--color-ink); font-size: 0.8125rem; }
.usp-card .icon {
  color: var(--color-brand);
  background: var(--color-brand-050);
  width: 2.25rem; height: 2.25rem; padding: 0.5rem;
  border-radius: var(--radius-sm);
}

/* ── CARDS: large radius, soft shadow, hover lift ── */
.service-card, .trust-item, .review-card, .blog-card, .how-step,
.sidebar-cta, .sidebar-related, .city-intro__facts, .local-facts,
.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}
.service-card, .trust-item, .review-card, .blog-card, .how-step {
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover, .blog-card:hover,
.trust-item:hover, .services-grid .service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.services-grid .service-card:hover { border-color: var(--color-brand-100); }
.services-grid .service-card .icon { color: var(--color-brand); }

/* Blue icon chips on feature cards */
.trust-item .icon--xl {
  color: var(--color-brand);
  background: var(--color-brand-050);
  width: 3.5rem; height: 3.5rem; padding: 0.85rem;
  border-radius: var(--radius);
  margin-bottom: var(--sp-4);
}

/* Numbered process badge */
.how-step { box-shadow: var(--shadow); }
.how-step__number { background: var(--grad-btn); box-shadow: var(--shadow-blue); }

/* ── FAQ: card rows + circular chevron chip ── */
.faq-item { box-shadow: var(--shadow-sm); }
.faq-item:hover { box-shadow: var(--shadow); }
.faq-chevron {
  color: var(--color-brand);
  background: var(--color-brand-050);
  width: 2.25rem; height: 2.25rem;
  padding: 0.5rem;
  border-radius: 50%;
  box-sizing: border-box;
}

/* ── CTA BAND: rounded blue card ── */
.cta-band { background: transparent; padding-block: var(--sp-16); overflow: visible; }
.cta-band__inner {
  background: var(--grad-blue);
  border-radius: var(--radius-xl);
  padding: var(--sp-12) var(--sp-10);
  box-shadow: var(--shadow-lg);
  color: #fff;
}
.cta-band__inner .btn--accent {
  background: #fff;
  color: var(--color-brand);
  border-color: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}
.cta-band__inner .btn--accent:hover { background: #fff; filter: brightness(0.97); }

/* ── COST BLOCK: brand blue gradient ── */
.cost-block { background: var(--grad-blue); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* ── FOOTER: friendly blue ── */
.site-footer { background: linear-gradient(180deg, #2f5bff 0%, #2340d8 100%); color: rgba(255,255,255,0.85); }
.footer-cta-strip { background: #21468b; } /* Netherlands-flag cobalt blue */

/* ── FORMS: rounded inputs, blue focus ring ── */
.form-group input, .form-group select, .form-group textarea { border-radius: var(--radius); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 4px rgba(47,91,255,0.14);
}

/* ── Chip-link hovers (city/service/nearby) ── */
.city-link:hover, .city-grid-link:hover, .nearby-city-link:hover, .neighbourhood-tag:hover {
  border-color: var(--color-brand);
}

/* ── Focus ring ── */
:focus-visible { outline: 3px solid var(--color-brand); outline-offset: 2px; }

/* =============================================================
   REVIEW FIXES — contrast (WCAG AA), footer legibility on blue,
   self-sufficient hero ghost button, accessible mobile nav,
   iOS safe-area. (From the adversarial redesign review.)
   ============================================================= */

/* Footer logo must stay white on the blue footer (header rule is scoped) */
.site-footer .site-logo__word,
.site-footer .site-logo__accent { color: #fff; }
.site-footer .site-logo__bolt { color: #fff; filter: none; }

/* Footer text: raise all tints to clear AA on the blue gradient */
.site-footer { color: rgba(255,255,255,0.9); }
.footer-desc { color: rgba(255,255,255,0.92); }
.footer-contact-list a { color: #fff; }
.footer-links-list a, .footer-province a { color: #fff; }
.footer-province strong { color: #fff; }
.footer-social a { color: rgba(255,255,255,0.95); }
.footer-certs .cert-badge { color: #fff; }
.footer-bottom__inner { color: rgba(255,255,255,0.85); }
.footer-legal a { color: rgba(255,255,255,0.85); }

/* Hero ghost button: self-sufficient contrast (was translucent-white → unreadable over bright photos) */
.btn--ghost {
  background: rgba(11,20,40,0.55);
  border-color: #fff;
  color: #fff;
}
.btn--ghost:hover, .btn--ghost:focus { background: rgba(11,20,40,0.7); }

/* =============================================================
   COMPACT & COMFORTABLE PASS (2026-07)
   Roomier FAQ, compact hero CTAs, tighter mobile rhythm.
   ============================================================= */

/* In-article images (seeded unique content) */
.svc-city-body__main img {
  border-radius: var(--radius-lg);
  height: auto;
  margin: var(--sp-2) 0 var(--sp-4);
  box-shadow: var(--shadow);
}

/* In-article content headings (extended SEO sections) */
.svc-city-body__main h2,
.service-intro__text h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-heading);
  margin: var(--sp-8) 0 var(--sp-3);
}
.svc-city-body__main h2:first-child,
.service-intro__text h2:first-child { margin-top: 0; }
.service-intro__text p { margin-bottom: var(--sp-4); color: var(--color-body); line-height: 1.75; }

/* FAQ: more breathing room at every size */
.faq-list { gap: var(--sp-3); }
.faq-toggle, .faq-question {
  font-size: var(--text-lg);
  line-height: 1.4;
  padding: var(--sp-5) var(--sp-8);
}
.faq-answer { font-size: var(--text-base); line-height: 1.75; }
.faq-toggle + .faq-answer,
.faq-answer[class] { padding: var(--sp-2) var(--sp-8) var(--sp-6); }

/* ── MOBILE (≤ 639px): compact, comfortable, thumb-friendly ── */
@media (max-width: 639px) {
  :root {
    --container-pad: 1rem;
    --text-5xl: clamp(1.9rem, 7.5vw, 2.4rem);
  }

  /* Section rhythm: tighter vertical spacing */
  .section,
  .services-overview, .cities-section, .trust-section,
  .city-intro, .city-services, .service-intro, .service-cities,
  .svc-city-body, .nb-body, .faq-section, .booking-form, .blog-archive {
    padding-block: var(--sp-10);
  }
  .section-header { margin-bottom: var(--sp-6); }
  .usp-row { padding-block: var(--sp-8); }

  /* Hero: compact, no oversized buttons */
  .hero { min-height: 0; }
  .hero__content { padding-block: var(--sp-10); }
  .hero__tagline { font-size: var(--text-base); margin-bottom: var(--sp-4); }
  .hero__ctas { gap: var(--sp-2); margin-bottom: var(--sp-5); }
  .hero__ctas .btn,
  .hero__ctas .btn--lg {
    font-size: 0.9rem;
    padding: 0.55rem 1rem;
    min-height: 44px;
  }
  .hero__trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-2) var(--sp-3);
    margin-bottom: var(--sp-4);
  }
  .hero__trust-item { font-size: 0.8125rem; }

  /* Buttons: keep tap size, trim the bulk */
  .btn--lg { font-size: 0.9375rem; padding: 0.65rem 1.25rem; min-height: 46px; }

  /* Service tiles: compact 2-up */
  .services-grid { gap: var(--sp-3); }
  .services-grid .service-card { padding: var(--sp-3) var(--sp-4); gap: var(--sp-2); }
  .services-grid .service-card .icon--xl { width: 1.75rem; height: 1.75rem; }
  .service-card__name { font-size: var(--text-sm); }

  /* Trust / USP cards: comfortable but compact */
  .trust-item { padding: var(--sp-5); }
  .trust-item .icon--xl { width: 3rem; height: 3rem; padding: 0.7rem; }
  .usp-card { padding: var(--sp-4) var(--sp-3); }
  .usp-card .icon { width: 2.5rem; height: 2.5rem; padding: 0.55rem; }
  .usp-card p { font-size: 0.8125rem; }

  /* FAQ on small screens: full-width, roomy rows */
  .faq-toggle, .faq-question {
    font-size: var(--text-base);
    padding: var(--sp-4) var(--sp-4);
    gap: var(--sp-3);
  }
  .faq-toggle + .faq-answer,
  .faq-answer[class] { padding: 0 var(--sp-4) var(--sp-4); }
  .faq-chevron { width: 2rem; height: 2rem; padding: 0.45rem; }

  /* CTA band + booking form: padding scales with viewport */
  .cta-band { padding-block: var(--sp-10); }
  .cta-band__inner { padding: clamp(1.5rem, 6vw, 3rem); border-radius: var(--radius-lg); }
  .cta-band__inner .cta-band__title { font-size: var(--text-2xl); }
  .cta-band__inner .cta-band__sub { font-size: var(--text-base); }
  .cta-band__actions { width: 100%; }
  .cta-band__actions .btn { flex: 1 1 auto; justify-content: center; }
  .booking-form__form { padding: clamp(1.25rem, 5vw, 2rem); }

  /* Cards & imagery: slightly tighter radius on small screens */
  .service-card, .trust-item, .review-card, .blog-card, .how-step, .faq-item { border-radius: var(--radius); }

  /* Footer: tighter */
  .footer-main { padding-block: var(--sp-10) var(--sp-8); }
  .footer-grid { gap: var(--sp-8); }
}

/* ── PRO HEADER NAV (Home / Diensten ▾ / Over ons / Contact) ── */
.site-nav > ul > li { position: relative; }
.site-nav a { display: inline-flex; align-items: center; gap: 0.35em; }
.nav-caret { width: 1em; height: 1em; transition: transform var(--transition); }
.has-dropdown:hover .nav-caret,
.has-dropdown:focus-within .nav-caret { transform: rotate(180deg); }

/* Centre the top-level nav items in the header */
.site-nav > ul { justify-content: center; }

/* Dropdown — selector is scoped to .site-nav so it beats `.site-nav ul {display:flex}`
   (which was forcing the panel open as a horizontal bar). */
.site-nav .nav-dropdown {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 260px;
  padding: var(--sp-2);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 50;
}
/* Hover bridge so the dropdown doesn't close crossing the gap */
.has-dropdown::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  height: 14px;
}
@media (min-width: 768px) {
  .site-nav .has-dropdown:hover .nav-dropdown,
  .site-nav .has-dropdown:focus-within .nav-dropdown { display: flex; }
}
.nav-dropdown li + li { margin-top: 2px; }
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  width: 100%;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-ink);
  white-space: nowrap;
}
.nav-dropdown a:hover { background: var(--color-brand-050); color: var(--color-brand); }
.nav-dropdown a .icon { color: var(--color-brand); width: 1.1rem; height: 1.1rem; }
.nav-dropdown__all { border-top: 1px solid var(--color-border); margin-top: var(--sp-2); padding-top: var(--sp-2); }
.nav-dropdown__all a { color: var(--color-brand); }

/* Header CTA: phone number on desktop, short label on small screens */
.header-cta-short { display: none; }
@media (max-width: 639px) {
  .header-cta-number { display: none; }
  .header-cta-short { display: inline; }
  .site-header__cta .btn {
    padding: 0.5rem 0.9rem;
    min-height: 40px;
    font-size: var(--text-sm);
    box-shadow: 0 6px 14px rgba(47,91,255,0.28);
  }
  .site-header__inner { padding-block: var(--sp-2); gap: var(--sp-2); }
}
.site-header__inner { gap: var(--sp-4); }

/* ── BRAND LOGO: droplet-bolt mark + stacked wordmark ── */
.site-logo { gap: 0.6rem; }
.site-logo__mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  color: var(--color-brand);
  filter: drop-shadow(0 4px 10px rgba(47,91,255,0.25));
}
.site-logo__text { display: flex; flex-direction: column; line-height: 1; }
.site-logo__word {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-heading);
}
.site-logo__sub {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-brand);
  margin-top: 4px;
}
@media (max-width: 639px) {
  .site-logo__mark { width: 34px; height: 34px; }
  .site-logo__word { font-size: 0.95rem; }
  .site-logo__sub { font-size: 0.52rem; margin-top: 3px; }
}
/* Footer variant: white tile, blue droplet, white text */
.site-footer .site-logo__mark {
  color: #fff;
  --lge-logo-drop: #2f5bff;
  filter: none;
}
.site-footer .site-logo__word { color: #fff; }
.site-footer .site-logo__sub { color: #cdd9ff; }

/* ── FOOTER: icons must be visible on the blue footer ── */
.site-footer .icon--accent { color: #fff; }

/* ── ACCESSIBLE MOBILE NAV (toggle + overlay panel, reference-style) ── */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  margin-left: var(--sp-2);
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--color-heading);
  border-radius: var(--radius-sm);
}
.nav-toggle .icon { width: 1.6rem; height: 1.6rem; }
.nav-toggle:hover { color: var(--color-brand); background: var(--color-brand-050); }
.nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: inline-block; }

@media (max-width: 767px) {
  .nav-toggle { display: inline-flex; }
  .site-nav.is-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    padding: var(--sp-2) var(--container-pad) var(--sp-6);
    max-height: calc(100dvh - 100%);
    overflow-y: auto;
  }
  .site-nav.is-open ul { flex-direction: column; gap: 0; }
  .site-nav.is-open li { border-bottom: 1px solid var(--color-border); }
  .site-nav.is-open a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-4) var(--sp-1);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-heading);
  }
  .site-nav.is-open a::after {
    content: "";
    flex-shrink: 0;
    width: 1.1rem; height: 1.1rem;
    background: center / contain no-repeat
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f5bff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='7' y1='17' x2='17' y2='7'/%3E%3Cpolyline points='7 7 17 7 17 17'/%3E%3C/svg%3E");
  }
  .site-nav.is-open a:hover { color: var(--color-brand); }

  /* Diensten sub-list: always expanded inside the mobile panel */
  .site-nav.is-open .nav-caret { display: none; }
  .site-nav.is-open .nav-dropdown {
    display: block;
    position: static;
    transform: none;
    min-width: 0;
    padding: 0 0 var(--sp-3);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .site-nav.is-open .nav-dropdown li { border-bottom: 0; }
  .site-nav.is-open .nav-dropdown a {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-body);
    padding: var(--sp-2) var(--sp-1) var(--sp-2) var(--sp-4);
    justify-content: flex-start;
    gap: var(--sp-3);
  }
  .site-nav.is-open .nav-dropdown a::after { display: none; }
  .site-nav.is-open .nav-dropdown__all { margin-top: var(--sp-1); padding-top: var(--sp-2); }
  .site-nav.is-open .nav-dropdown__all a { color: var(--color-brand); }
}


/* =============================================================
   HERO REFINEMENT (2026-07) — trust badge, compact enquiry form,
   lower mobile H1, header polish.
   ============================================================= */

/* Lift the whole hero inner (content + form) above the image scrim.
   Previously only .hero__content had z-index, so .hero__form rendered
   BEHIND .hero__overlay and was invisible. */
.hero__inner { position: relative; z-index: 2; }
.hero__form { position: relative; z-index: 2; }

/* Full-width trust badge (replaces the old hero CTA buttons) */
.hero__badge {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-3) var(--sp-4);
  width: 100%;
  margin-top: var(--sp-6);
  padding: var(--sp-3) var(--sp-4);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.hero__badge-seal, .hero__badge-rating {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  color: #fff;
  font-weight: 700;
  font-size: var(--text-sm);
}
.hero__badge-seal .icon { color: #34d399; width: 1.35rem; height: 1.35rem; }
.hero__badge .star-row { color: var(--color-star); }
.hero__badge-certs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-left: auto;
}
.hero__badge-cert {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  white-space: nowrap;
}

/* Compact enquiry form in the hero */
.hero__form .lead-form { padding: var(--sp-5); border-radius: var(--radius-lg); }
.hero__form .lead-form__title { font-size: var(--text-lg); margin-bottom: var(--sp-3); }
.hero__form .form-group { margin-bottom: var(--sp-3); }
.hero__form .form-group label { margin-bottom: 2px; }
.hero__form .form-group input,
.hero__form .form-group select {
  min-height: 44px;
  padding: 0.5rem 0.85rem;
}
.hero__form .form-note { margin-top: var(--sp-2); }

/* Header: give the centred nav room; keep logo/CTA at the edges */
@media (min-width: 768px) {
  .site-header__inner { gap: var(--sp-6); }
  .site-nav { flex: 1; }
}

/* Mobile: lower the H1 away from the sticky header, keep hero compact */
@media (max-width: 639px) {
  .hero__content { padding-block: var(--sp-12) var(--sp-8); }
  .hero__badge { margin-top: var(--sp-4); padding: var(--sp-3); }
  .hero__badge-certs { margin-left: 0; width: 100%; }
  .hero__form .lead-form { padding: var(--sp-4); }
}
