/* ============================================================
   K2 Electrical — Design System
   Blue-led, trust-focused local electrician brand
   ============================================================ */

:root {
  /* Light-only site: stop Samsung Internet / browser auto dark mode
     from inverting the white header and turning orange buttons red. */
  color-scheme: light;
  /* Type scale (fluid) */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.3vw, 0.95rem);
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  --text-lg: clamp(1.125rem, 1rem + 0.55vw, 1.375rem);
  --text-xl: clamp(1.4rem, 1.15rem + 1.1vw, 2.05rem);
  --text-2xl: clamp(2rem, 1.4rem + 2.6vw, 3.25rem);
  --text-3xl: clamp(2.4rem, 1.5rem + 3.6vw, 4rem);

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

  /* ---- Blue-led brand palette (light only — trade brochure) ---- */
  --color-bg: #ffffff;
  --color-surface: #f5f8fc;       /* very light blue-grey */
  --color-surface-2: #eaf1f9;
  --color-deep: #0f2a4a;          /* deep navy — footer, contrast blocks */
  --color-deep-2: #0a2038;
  --color-border: #dce5f0;
  --color-divider: #e8eef6;

  --color-text: #16263b;          /* near-navy ink */
  --color-text-muted: #51637a;
  --color-text-faint: #8595a8;
  --color-text-inverse: #f4f8fd;

  --color-primary: #0b4da2;       /* K2 brand blue */
  --color-primary-hover: #093d80;
  --color-primary-active: #072e60;
  --color-accent: #43b0f1;        /* electric sky-blue accent */
  --color-accent-soft: #cfe6fb;

  --color-cta: #f7a01b;           /* warm amber — single conversion accent for "Get a quote" */
  --color-cta-hover: #e58c08;

  --color-success: #1f8a4c;
  --color-success-bg: #e7f6ee;
  --color-error: #c0392b;
  --color-error-bg: #fbeae8;

  /* Radius */
  --radius-sm: 0.4rem; --radius-md: 0.65rem; --radius-lg: 1rem;
  --radius-xl: 1.5rem; --radius-full: 9999px;

  /* Shadows (cool-toned) */
  --shadow-sm: 0 1px 2px rgba(15, 42, 74, 0.06);
  --shadow-md: 0 6px 18px rgba(15, 42, 74, 0.08);
  --shadow-lg: 0 18px 44px rgba(15, 42, 74, 0.12);
  --shadow-blue: 0 10px 30px rgba(11, 77, 162, 0.18);

  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  --content-narrow: 680px;
  --content: 1080px;
  --content-wide: 1240px;

  --font-display: 'Cabinet Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'General Sans', 'Helvetica Neue', Arial, sans-serif;

  /* Logo CSS-var hooks (light context defaults) */
  --k2-mark-bg: var(--color-primary);
  --k2-mark-bolt: var(--color-accent);
  --k2-word: var(--color-deep);
  --k2-word-2: #3b6fb0;
  --k2-tagline: #5a7799;
}

/* ============ Reset / base ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: hidden;
}
body {
  min-height: 100dvh;
  line-height: 1.65;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  width: 100%;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
ul[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: var(--color-primary); text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--color-deep);
  text-wrap: balance;
}
p { text-wrap: pretty; }
::selection { background: var(--color-accent-soft); color: var(--color-deep); }
:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 2px; border-radius: var(--radius-sm); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
.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 helpers ============ */
.container { width: min(100% - 2.5rem, var(--content)); margin-inline: auto; }
.container--wide { width: min(100% - 2.5rem, var(--content-wide)); }
.container--narrow { width: min(100% - 2.5rem, var(--content-narrow)); }
.section { padding-block: clamp(var(--space-12), 7vw, var(--space-24)); }
.section--tight { padding-block: clamp(var(--space-10), 5vw, var(--space-16)); }
.section--surface { background: var(--color-surface); }
.section--deep { background: var(--color-deep); color: var(--color-text-inverse); }
.section--deep h1, .section--deep h2, .section--deep h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-body); font-weight: 600; font-size: var(--text-xs);
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.section--deep .eyebrow { color: var(--color-accent); }
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--color-accent); border-radius: 2px; }

.lead { font-size: var(--text-lg); color: var(--color-text-muted); max-width: 60ch; }
.section--deep .lead { color: #c8d6e8; }
.muted { color: var(--color-text-muted); }
.center { text-align: center; }
.section-head { max-width: 56ch; margin-bottom: var(--space-10); }
.section-head.center { margin-inline: auto; }
h2.section-title { font-size: var(--text-xl); }
.section--deep h2.section-title { color: #fff; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  font-family: var(--font-body); font-weight: 600; font-size: var(--text-sm);
  padding: 0.85em 1.5em; border-radius: var(--radius-full); line-height: 1;
  transition: var(--transition); white-space: nowrap; border: 2px solid transparent;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn--primary { background: var(--color-cta); color: #2a1c00; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--color-cta-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--blue { background: var(--color-primary); color: #fff; }
.btn--blue:hover { background: var(--color-primary-hover); transform: translateY(-1px); box-shadow: var(--shadow-blue); }
.btn--ghost { background: transparent; color: var(--color-primary); border-color: var(--color-border); }
.btn--ghost:hover { border-color: var(--color-primary); background: var(--color-surface); }
.btn--on-deep { background: #fff; color: var(--color-deep); }
.btn--on-deep:hover { background: var(--color-accent-soft); transform: translateY(-1px); }
.btn--lg { font-size: var(--text-base); padding: 1em 1.8em; }
.btn--block { width: 100%; }

/* ============ Header ============ */
.topbar {
  background: var(--color-deep); color: #cdddf0;
  font-size: var(--text-xs); letter-spacing: 0.01em;
}
.topbar__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-4); padding-block: var(--space-2); flex-wrap: wrap;
}
.topbar__list { display: flex; gap: var(--space-5); flex-wrap: wrap; align-items: center; list-style: none; }
.topbar__list li { display: inline-flex; align-items: center; gap: var(--space-2); }
.topbar__list svg { width: 14px; height: 14px; color: var(--color-accent); flex: none; }
.topbar a { color: #eaf2fb; font-weight: 600; }
.topbar a:hover { color: #fff; }
.topbar__pill {
  background: rgba(67,176,241,0.16); color: #cfe6fb; border: 1px solid rgba(67,176,241,0.3);
  padding: 0.15em 0.7em; border-radius: var(--radius-full); font-weight: 600;
}

.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow var(--transition);
}
.header--scrolled { box-shadow: var(--shadow-md); }
.header__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-6); padding-block: var(--space-3);
}
.brand { display: inline-flex; align-items: center; }
.brand svg { height: 44px; width: auto; }
.nav { display: flex; align-items: center; gap: var(--space-1); }
.nav__links { display: flex; align-items: center; gap: var(--space-1); list-style: none; }
.nav__links a {
  display: inline-block; padding: 0.5em 0.85em; border-radius: var(--radius-md);
  font-size: var(--text-sm); font-weight: 600; color: var(--color-text);
}
.nav__links a:hover { background: var(--color-surface); color: var(--color-primary); }
.nav__links a[aria-current='page'] { color: var(--color-primary); background: var(--color-surface-2); }
.nav__mobile-cta { display: none; }
.nav__close { display: none; }

.header__cta { display: flex; align-items: center; gap: var(--space-3); }
.niceic-mini { height: 30px; width: auto; }
.header__phone {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-display); font-weight: 800; font-size: var(--text-base);
  color: var(--color-deep);
}
.header__phone svg { width: 18px; height: 18px; color: var(--color-primary); }

.burger {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
  border-radius: var(--radius-sm);
}
.burger span { width: 24px; height: 2.5px; background: var(--color-deep); border-radius: 2px; transition: var(--transition); }

/* ============ Hero ============ */
.hero { position: relative; background: var(--color-deep); overflow: hidden; }
.hero__inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--space-12);
  align-items: center; padding-block: clamp(var(--space-12), 6vw, var(--space-24));
}
.hero__content { color: #fff; max-width: 36rem; }
.hero h1 {
  color: #fff; font-size: var(--text-3xl); font-weight: 800; margin-bottom: var(--space-5);
}
.hero h1 .hl { color: var(--color-accent); }
.hero__sub { font-size: var(--text-lg); color: #c8d6e8; margin-bottom: var(--space-6); }
.hero__cats {
  display: inline-flex; gap: var(--space-2); margin-bottom: var(--space-6); flex-wrap: wrap;
}
.hero__cats span, .hero__cats a {
  display: inline-flex; align-items: center; gap: 0.4em;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  padding: 0.45em 0.95em; border-radius: var(--radius-full);
  font-size: var(--text-sm); font-weight: 600; color: #eaf2fb;
  text-decoration: none;
}
.hero__cats a { cursor: pointer; }
.hero__cats a:focus-visible {
  outline: 2px solid var(--color-accent); outline-offset: 2px;
}
.hero__cats svg { width: 15px; height: 15px; color: var(--color-accent); }
.hero__actions { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-bottom: var(--space-8); }
.hero__trust {
  display: flex; gap: var(--space-5); flex-wrap: wrap; align-items: center;
  font-size: var(--text-sm); color: #b9c9de;
}
.hero__trust strong { color: #fff; }
.hero__trust .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--color-accent); }
.hero__media { position: relative; }
.hero__media img {
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
  width: 100%; object-fit: cover; aspect-ratio: 4/3;
}
.hero__badge {
  position: absolute; bottom: -18px; left: -18px;
  background: #fff; border-radius: var(--radius-lg); padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: var(--space-3);
}
.hero__badge img { height: 40px; width: auto; }
.hero__badge .txt { font-size: var(--text-xs); line-height: 1.35; }
.hero__badge strong { display: block; color: var(--color-deep); font-family: var(--font-display); font-size: var(--text-sm); }

/* ============ Trust strip ============ */
.trust-strip { background: var(--color-primary); color: #fff; }
.trust-strip__row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6);
  padding-block: var(--space-8);
}
.trust-strip__item { display: flex; gap: var(--space-3); align-items: flex-start; }
.trust-strip__item svg { width: 26px; height: 26px; color: var(--color-accent); flex: none; }
.trust-strip__item strong { display: block; font-family: var(--font-display); font-size: var(--text-base); }
.trust-strip__item span { font-size: var(--text-sm); color: #cfe0f5; }

/* ============ Split overview ============ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }
.split-card {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  min-height: 340px; display: flex; align-items: flex-end; box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.split-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.split-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split-card__overlay {
  position: relative; z-index: 1; width: 100%; padding: var(--space-8) var(--space-6) var(--space-6);
  background: linear-gradient(to top, rgba(10,32,56,0.94) 10%, rgba(10,32,56,0.55) 60%, transparent);
  color: #fff;
}
.split-card__overlay h3 { color: #fff; font-size: var(--text-xl); margin-bottom: var(--space-2); }
.split-card__overlay p { color: #cfdcec; font-size: var(--text-sm); margin-bottom: var(--space-4); max-width: 36ch; }
.split-card__link { display: inline-flex; align-items: center; gap: 0.4em; color: var(--color-accent); font-weight: 600; font-size: var(--text-sm); }
.split-card__link svg { width: 16px; height: 16px; transition: var(--transition); }
.split-card:hover .split-card__link svg { transform: translateX(3px); }

/* ============ Service grid ============ */
/* Fixed columns for symmetrical rows (was auto-fit, which produced lopsided
   4+2 / 5+3 rows). Base = 4 cols (used by the 8-card areas-we-cover grid);
   .svc-grid--3 = 3 cols for the homepage's 6-card preview grids. */
.svc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4);
}
.svc-grid--3 { grid-template-columns: repeat(3, 1fr); }
.svc-card {
  background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: var(--space-6); transition: var(--transition); height: 100%;
}
a.svc-card:hover { border-color: var(--color-accent); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.svc-card__icon {
  width: 46px; height: 46px; border-radius: var(--radius-md);
  background: var(--color-surface-2); color: var(--color-primary);
  display: grid; place-items: center; margin-bottom: var(--space-4);
}
.svc-card__icon svg { width: 24px; height: 24px; }
.svc-card h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.svc-card p { font-size: var(--text-sm); color: var(--color-text-muted); }

/* ============ Sectors (commercial) ============ */
.sector-row { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.sector-chip {
  display: inline-flex; align-items: center; gap: 0.5em;
  background: var(--color-surface); border: 1px solid var(--color-border);
  padding: 0.7em 1.1em; border-radius: var(--radius-full); font-weight: 600; font-size: var(--text-sm);
}
.sector-chip svg { width: 18px; height: 18px; color: var(--color-primary); }

/* ============ Why choose / feature list ============ */
/* Fixed 3 columns x 2 rows for a symmetrical 6-item grid. */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.feature {
  display: flex; gap: var(--space-4); align-items: flex-start;
}
.feature__icon {
  width: 48px; height: 48px; border-radius: var(--radius-md); flex: none;
  background: var(--color-primary); color: #fff; display: grid; place-items: center;
}
.feature__icon svg { width: 24px; height: 24px; }
.feature h3 { font-size: var(--text-lg); margin-bottom: var(--space-1); }
.feature p { font-size: var(--text-sm); color: var(--color-text-muted); }

/* Readability on dark sections: the default muted ink (#51637a) is far too
   low-contrast on deep navy. Use a bright, accessible light-blue/white. */
.section--deep .feature h3 { color: #fff; }
.section--deep .feature p { color: #d6e3f2; }
.section--deep .feature__icon { background: var(--color-accent); color: var(--color-deep); }
.section--deep .lead,
.section--deep p { color: #cfdcec; }

/* ============ Two-column content ============ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: center; }
.two-col img { border-radius: var(--radius-xl); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
.prose p { margin-bottom: var(--space-4); color: var(--color-text-muted); }
.prose h2, .prose h3 { margin-bottom: var(--space-3); }
.prose ul { list-style: none; display: grid; gap: var(--space-2); margin: var(--space-4) 0; }
.prose ul li { position: relative; padding-left: 1.9em; color: var(--color-text); }
.prose ul li::before {
  content: ''; position: absolute; left: 0; top: 0.35em; width: 18px; height: 18px;
  background: var(--color-success-bg); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f8a4c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}

/* ============ Areas ============ */
/* Fixed 4 columns x 2 rows for the 8-area coverage chips (was auto-fit -> 5+3). */
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
.area-link {
  display: flex; align-items: center; gap: var(--space-3);
  background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: var(--space-4); font-weight: 600; color: var(--color-deep); transition: var(--transition);
}
.area-link:hover { border-color: var(--color-accent); background: var(--color-surface); transform: translateX(3px); }
.area-link svg { width: 18px; height: 18px; color: var(--color-primary); flex: none; }
.area-link span small { display: block; font-weight: 500; font-size: var(--text-xs); color: var(--color-text-faint); }

/* ============ CTA band ============ */
.cta-band { background: linear-gradient(135deg, var(--color-primary), #0a2f63); color: #fff; }
.cta-band__inner {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-8);
  padding-block: var(--space-12); flex-wrap: wrap;
}
.cta-band h2 { color: #fff; font-size: var(--text-xl); margin-bottom: var(--space-2); }
.cta-band p { color: #cfe0f5; max-width: 44ch; }
.cta-band__actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }

/* ============ Contact / form ============ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--space-12); align-items: start; }
.contact-info .info-item { display: flex; gap: var(--space-4); align-items: flex-start; margin-bottom: var(--space-6); }
.contact-info .info-item svg { width: 22px; height: 22px; color: var(--color-primary); flex: none; margin-top: 3px; }
.contact-info .info-item strong { display: block; color: var(--color-deep); font-family: var(--font-display); }
.contact-info .info-item a { color: var(--color-text); font-weight: 600; }
.contact-info .info-item a:hover { color: var(--color-primary); }

.form-card {
  background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-xl);
  padding: clamp(var(--space-6), 4vw, var(--space-10)); box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.field { margin-bottom: var(--space-4); }
.field label { display: block; font-size: var(--text-sm); font-weight: 600; margin-bottom: var(--space-2); color: var(--color-deep); }
.field label .req { color: var(--color-error); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.8em 0.95em; border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md); background: var(--color-surface); font-size: var(--text-base);
  transition: var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--color-primary); background: #fff;
  box-shadow: 0 0 0 3px rgba(11,77,162,0.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: var(--text-xs); color: var(--color-text-faint); margin-top: var(--space-3); }
.form-status { display: none; padding: var(--space-4); border-radius: var(--radius-md); margin-bottom: var(--space-4); font-size: var(--text-sm); font-weight: 500; }
.form-status.is-visible { display: block; }
.form-status--ok { background: var(--color-success-bg); color: var(--color-success); border: 1px solid #b6e2c8; }
.form-status--err { background: var(--color-error-bg); color: var(--color-error); border: 1px solid #f0c4be; }

/* ============ Page hero (interior) ============ */
.page-hero { background: var(--color-deep); color: #fff; position: relative; overflow: hidden; }
.page-hero::after {
  content: ''; position: absolute; right: -60px; top: -60px; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(67,176,241,0.22), transparent 70%); pointer-events: none;
}
.page-hero__inner { padding-block: clamp(var(--space-12), 6vw, var(--space-20)); position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: var(--text-2xl); max-width: 22ch; margin-bottom: var(--space-4); }
.page-hero h1 .hl { color: var(--color-accent); }
.page-hero p { color: #c8d6e8; font-size: var(--text-lg); max-width: 56ch; }
.breadcrumb { display: flex; gap: var(--space-2); flex-wrap: wrap; font-size: var(--text-sm); color: #8fa6c2; margin-bottom: var(--space-5); }
.breadcrumb a { color: #c8d6e8; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: #6981a1; }

/* ============ FAQ ============ */
.faq { display: grid; gap: var(--space-3); max-width: 760px; }
.faq details {
  background: var(--color-bg); border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5); transition: var(--transition);
}
.faq details[open] { border-color: var(--color-accent); box-shadow: var(--shadow-sm); }
.faq summary {
  font-family: var(--font-display); font-weight: 700; color: var(--color-deep); cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; gap: var(--space-4); align-items: center;
  font-size: var(--text-base);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.5em; color: var(--color-primary); line-height: 1; transition: var(--transition); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: var(--space-3); color: var(--color-text-muted); font-size: var(--text-sm); }

/* ============ Related / internal links ============ */
.pill-links { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.pill-links a {
  background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-full);
  padding: 0.5em 1em; font-size: var(--text-sm); font-weight: 600; color: var(--color-deep);
}
.pill-links a:hover { border-color: var(--color-primary); color: var(--color-primary); }

/* ============ Footer ============ */
.footer { background: var(--color-deep-2); color: #a9bdd6; padding-block: var(--space-16) var(--space-8); font-size: var(--text-sm); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-8); margin-bottom: var(--space-12); }
.footer__brand svg { height: 46px; width: auto; margin-bottom: var(--space-4); }
.footer__brand p { color: #8ea6c4; max-width: 32ch; margin-bottom: var(--space-5); }
.footer__accred { display: flex; align-items: center; gap: var(--space-4); }
.footer__accred img { height: 40px; background: #fff; padding: 6px 10px; border-radius: var(--radius-sm); }
.footer h4 { color: #fff; font-size: var(--text-sm); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: var(--space-4); }
.footer__list { list-style: none; display: grid; gap: var(--space-2); }
.footer__list a, .footer__list span { color: #a9bdd6; }
.footer__list a:hover { color: var(--color-accent); }
.footer__contact li { display: flex; gap: var(--space-3); align-items: flex-start; margin-bottom: var(--space-3); }
.footer__contact svg { width: 16px; height: 16px; color: var(--color-accent); flex: none; margin-top: 3px; }
.footer__contact a { color: #d6e3f2; font-weight: 600; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: var(--space-6);
  display: flex; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap;
  font-size: var(--text-xs); color: #7c93b0;
}
.footer__bottom a { color: #9db4d1; }

/* ============ Floating mobile call bar ============ */
.callbar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
  background: var(--color-cta); box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
}
.callbar a {
  display: flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: var(--space-4); color: #2a1c00; font-family: var(--font-display); font-weight: 800; font-size: var(--text-base);
}
.callbar svg { width: 20px; height: 20px; }

/* ============ Reveal animation ============ */
/* Reveal only hides when JS is active (html.js) so non-JS users always see content */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--space-10); }
  .hero__media { order: -1; }
  .hero__badge { left: 12px; bottom: 12px; }
  .trust-strip__row { grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
  .two-col { grid-template-columns: 1fr; gap: var(--space-8); }
  /* On mobile, always show text/info before the image regardless of
     the desktop zig-zag DOM order, so every service block is consistent. */
  .two-col > .prose { order: -1; }
  .two-col > img { order: 0; }
  .contact-layout { grid-template-columns: 1fr; gap: var(--space-10); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-8) var(--space-6); }
  .svc-grid, .svc-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  html { scroll-padding-top: 72px; }
  .topbar { display: none; }
  .nav__links { display: none; }
  .header__phone span.label { display: none; }
  .niceic-mini { display: none; }
  .burger { display: flex; }
  .nav {
    position: fixed; top: 0; right: 0; bottom: 0; left: auto;
    width: min(82vw, 320px); height: 100vh; height: 100dvh; z-index: 80;
    background: #fff; flex-direction: column; align-items: stretch; justify-content: flex-start;
    padding: var(--space-16) var(--space-6) var(--space-8); gap: var(--space-2);
    transform: translateX(100%); transition: transform .3s ease; box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }
  .nav.is-open { transform: none; }
  .nav__links { display: flex; flex-direction: column; align-items: stretch; gap: 2px; width: 100%; }
  .nav__links a { padding: 0.8em 1em; font-size: var(--text-base); }
  .nav__mobile-cta { margin-top: var(--space-4); display: grid; gap: var(--space-3); }
  .nav__close { display: block; position: absolute; top: var(--space-4); right: var(--space-4); padding: 8px; }
  .nav__close svg { width: 26px; height: 26px; color: var(--color-deep); }
  .nav-overlay {
    display: none; position: fixed; inset: 0; background: rgba(10,32,56,0.5); z-index: 75;
  }
  .nav-overlay.is-open { display: block; }
  body.nav-lock { overflow: hidden; }
  /* When the menu is open, lift the whole header (which contains the
     fixed off-canvas nav) above the overlay so the menu links are
     clickable. Without this, the header's own stacking context caps the
     nav below the body-level overlay and taps hit the backdrop instead. */
  body.nav-lock .header { z-index: 90; }
  .split { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .callbar { display: block; }
  body { padding-bottom: 60px; }
  .footer { padding-bottom: 76px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .svc-grid, .svc-grid--3 { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .trust-strip__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
}

/* ---------- Location page helpers ---------- */
.page-hero .hero__actions { margin-top: var(--space-6); }
.page-hero__badges {
  list-style: none; display: flex; flex-wrap: wrap; gap: var(--space-2);
  margin: var(--space-6) 0 0; padding: 0;
}
.page-hero__badges li {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-size: var(--text-sm); font-weight: 600; color: #dce7f5;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  padding: 0.5em 0.9em; border-radius: var(--radius-pill, 999px);
}
.page-hero__badges svg { width: 16px; height: 16px; color: var(--color-accent); }

.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }
.svc-card--feature { text-align: left; }
.svc-card--feature .split-card__link { margin-top: var(--space-4); display: inline-flex; }
@media (max-width: 760px) { .cards-2 { grid-template-columns: 1fr; } }
