/* =========================================================
   OWB Plumbing & Building — main stylesheet
   Design language rooted in the logo: metallic navy structure,
   hardware-inspired geometry (tight radii, bevelled faces,
   pipe-joint motifs), and a warm yellow→orange "lit window"
   glow reserved for primary CTAs.
   ========================================================= */

:root {
  /* Brand — metallic navy & steel blues */
  --color-primary-900: #1F2E3D;   /* deepest navy */
  --color-primary-800: #2E4E6E;   /* metallic blue */
  --color-primary-700: #4E7496;   /* mid steel */
  --color-primary-600: #6F97B5;   /* highlight steel */
  --color-primary-100: #BFD5E6;   /* pale cool highlight */

  /* Warm "lit window" glow — yellow through to orange (not gold) */
  --color-glow-yellow: #F0C76A;
  --color-glow-amber:  #E2AE49;
  --color-glow-orange: #D98A2B;
  --color-glow-deep:   #C96E1F;
  --color-glow-edge:   #A85712;
  --color-glow-ink:    #2E1A04;

  /* Surfaces */
  --color-bg-main: #F1F4F7;
  --color-bg-white: #FFFFFF;
  --color-bg-offwhite: #FAFBFC;

  /* Text */
  --color-text-primary: #1F2E3D;
  --color-text-secondary: #5E6B78;
  --color-text-inverse: #FFFFFF;
  --color-text-on-dark: #C9D3DD;

  /* Borders */
  --color-border-subtle: #D5DDE5;
  --color-border-strong: #B8C5D1;

  /* Metallic gradients */
  --gradient-steel:
    linear-gradient(180deg, #6F97B5 0%, #4E7496 40%, #2E4E6E 100%);
  --gradient-steel-deep:
    linear-gradient(180deg, #4E7496 0%, #2E4E6E 55%, #1F2E3D 100%);
  --gradient-dark:
    linear-gradient(180deg, #2E4E6E 0%, #253D5A 55%, #172232 100%);
  --gradient-nav:
    linear-gradient(180deg, #35567A 0%, #2E4E6E 40%, #213951 80%, #172434 100%);
  --gradient-hero:
    linear-gradient(90deg, rgba(23, 36, 52, 0.72) 0%, rgba(23, 36, 52, 0.50) 48%, rgba(23, 36, 52, 0.22) 100%);

  /* Warm glow gradient — yellow → orange, NOT gold */
  --gradient-glow:
    linear-gradient(180deg,
      #F0C76A 0%,
      #E2AE49 38%,
      #D98A2B 76%,
      #C96E1F 100%);
  --gradient-glow-hover:
    linear-gradient(180deg,
      #F5D382 0%,
      #EAB757 38%,
      #DF9433 76%,
      #D07622 100%);

  /* Shadows — directional, layered */
  --shadow-sm:
    0 1px 2px rgba(15, 28, 42, 0.06),
    0 2px 4px rgba(15, 28, 42, 0.05);
  --shadow-md:
    0 1px 2px rgba(15, 28, 42, 0.07),
    0 12px 26px -8px rgba(15, 28, 42, 0.16);
  --shadow-lg:
    0 2px 4px rgba(15, 28, 42, 0.08),
    0 22px 44px -10px rgba(15, 28, 42, 0.22);
  --shadow-focus: 0 0 0 3px rgba(78, 116, 150, 0.28);
  --shadow-focus-glow: 0 0 0 3px rgba(226, 174, 73, 0.38);

  /* Bevel primitives */
  --bevel-light-strong: inset 0 1px 0 rgba(255, 250, 232, 0.55);
  --bevel-light:        inset 0 1px 0 rgba(255, 255, 255, 0.30);
  --bevel-top-hairline: inset 0 1px 0 rgba(255, 255, 255, 1);
  --bevel-dark:         inset 0 -1px 0 rgba(0, 0, 0, 0.22);
  --bevel-dark-strong:  inset 0 -1px 0 rgba(0, 0, 0, 0.30);

  /* Radii — tight, hardware-like */
  --radius-xs: 2px;
  --radius-sm: 3px;
  --radius-md: 5px;
  --radius-lg: 8px;

  /* Typography — industrial signage heading + clean body */
  --font-heading: 'Big Shoulders Display', 'Impact', 'Arial Narrow', sans-serif;
  --font-body: 'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;
  --fw-body: 400;
  --fw-strong: 600;
  --fw-heading: 700;
  --fw-heading-heavy: 800;
  --fw-heading-black: 900;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Structure */
  --max-width: 1180px;
  --grid-gap: 1.5rem;

  /* Motion */
  --ease: 0.2s ease;
  --ease-out: 0.22s cubic-bezier(0.2, 0.7, 0.25, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);  /* expo-out — fast start, silky landing */

  /* Header sizing */
  --header-top-height: 92px;
  --header-nav-height: 54px;

  /* Plumbing "pipe joint" divider — SVG data URIs */
  --pipe-divider-dark: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='72' height='12' viewBox='0 0 72 12'><defs><linearGradient id='s' x1='0' x2='0' y1='0' y2='1'><stop offset='0' stop-color='%236F97B5'/><stop offset='1' stop-color='%232E4E6E'/></linearGradient><linearGradient id='j' x1='0' x2='0' y1='0' y2='1'><stop offset='0' stop-color='%234E7496'/><stop offset='1' stop-color='%231F2E3D'/></linearGradient></defs><rect x='12' y='4' width='48' height='4' rx='1' fill='url(%23s)'/><rect x='12' y='4' width='48' height='1' fill='%23BFD5E6' opacity='0.55'/><rect x='0' y='2' width='8' height='8' rx='1' fill='url(%23j)'/><rect x='1' y='3' width='6' height='1.5' fill='%23BFD5E6' opacity='0.5'/><rect x='64' y='2' width='8' height='8' rx='1' fill='url(%23j)'/><rect x='65' y='3' width='6' height='1.5' fill='%23BFD5E6' opacity='0.5'/></svg>");
  --pipe-divider-light: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='72' height='12' viewBox='0 0 72 12'><defs><linearGradient id='s' x1='0' x2='0' y1='0' y2='1'><stop offset='0' stop-color='%23BFD5E6'/><stop offset='1' stop-color='%236F97B5'/></linearGradient></defs><rect x='12' y='4' width='48' height='4' rx='1' fill='url(%23s)'/><rect x='0' y='2' width='8' height='8' rx='1' fill='%236F97B5'/><rect x='1' y='3' width='6' height='1.5' fill='%23FFFFFF' opacity='0.3'/><rect x='64' y='2' width='8' height='8' rx='1' fill='%236F97B5'/><rect x='65' y='3' width='6' height='1.5' fill='%23FFFFFF' opacity='0.3'/></svg>");

  /* -------- Legacy aliases (preserve existing markup refs) -------- */
  --color-primary: var(--color-primary-900);
  --color-primary-dark: #15202C;
  --color-primary-deep: #15202C;
  --color-accent: var(--color-primary-700);
  --color-accent-dark: var(--color-primary-800);
  --color-accent-500: var(--color-primary-700);
  --color-accent-600: var(--color-primary-800);
  --color-accent-400: var(--color-primary-600);
  --color-text: var(--color-text-primary);
  --color-text-muted: var(--color-text-secondary);
  --color-text-on-primary: var(--color-text-on-dark);
  --color-bg: var(--color-bg-white);
  --color-bg-alt: var(--color-bg-main);
  --color-bg-dark: var(--color-primary-900);
  --color-border: var(--color-border-subtle);
  --color-border-dark: rgba(255, 255, 255, 0.10);
  --color-highlight-warm: var(--color-glow-amber);
  --color-emergency: var(--color-primary-900);
  --color-emergency-dark: var(--color-primary-800);
  --radius: var(--radius-sm);
  --shadow: var(--shadow-md);
  --shadow-strong: var(--shadow-lg);
  --gradient-accent: var(--gradient-steel-deep);
  --gradient-accent-soft: var(--gradient-steel);
  --color-amber-500: var(--color-glow-amber);
  --color-amber-600: var(--color-glow-deep);
  --color-amber-300: var(--color-glow-yellow);
  --color-amber-ink: var(--color-glow-ink);
  --gradient-amber: var(--gradient-glow);
}

/* =========================================================
   Reset & base
   ========================================================= */

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

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: var(--fw-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text-primary);
  background: var(--color-bg-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Prevent stray horizontal scroll on mobile. `clip` (not `hidden`) avoids
     creating a scroll container, so the sticky header keeps working. */
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--color-primary-800);
  text-decoration: none;
  transition: color var(--ease);
}
a:hover { color: var(--color-primary-700); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: var(--fw-heading-heavy);
  line-height: 0.95;
  margin: 0 0 var(--space-sm);
  letter-spacing: 0.005em;
  color: var(--color-text-primary);
  text-transform: uppercase;
  overflow-wrap: break-word;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: var(--fw-heading-black); letter-spacing: 0; line-height: 0.92; }
h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); line-height: 0.95; }
h3 { font-size: 1.4rem; font-weight: var(--fw-heading); letter-spacing: 0.01em; line-height: 1; }
h4 { font-size: 1.1rem; font-weight: var(--fw-heading); letter-spacing: 0.02em; }

p { margin: 0 0 var(--space-sm); }

ul { padding-left: 1.1rem; margin: 0 0 var(--space-sm); }
li { margin-bottom: 0.25rem; }

::selection { background: var(--color-primary-700); color: #fff; }

/* =========================================================
   Layout helpers
   ========================================================= */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section { padding: var(--space-xl) 0; background: var(--color-bg-main); }
.section--alt { background: var(--color-bg-white); }

.section--primary {
  background: var(--gradient-dark);
  color: var(--color-text-inverse);
  position: relative;
  overflow: hidden;
}

.section--primary h2,
.section--primary h3 { color: var(--color-text-inverse); }

/* Section heading — with a small pipe-joint divider above the H2 */
.section-heading { text-align: center; margin-bottom: var(--space-lg); }

.section-heading::before {
  content: "";
  display: block;
  width: 72px;
  height: 12px;
  margin: 0 auto 1rem;
  background-image: var(--pipe-divider-dark);
  background-repeat: no-repeat;
  background-position: center;
}

.section--primary .section-heading::before { background-image: var(--pipe-divider-light); }

.section-heading h2 { letter-spacing: 0.008em; }

.section-heading p {
  color: var(--color-text-secondary);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
  font-family: var(--font-body);
  text-transform: none;
}

.section--primary .section-heading p { color: var(--color-text-on-dark); }

/* =========================================================
   Buttons — tight, bevelled, engineered
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: var(--fw-heading-heavy);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1rem 1.75rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  line-height: 1;
  text-decoration: none;
  position: relative;
  transition:
    background var(--ease-out),
    color var(--ease-out),
    transform var(--ease-out),
    box-shadow var(--ease-out),
    border-color var(--ease-out),
    filter var(--ease-out);
}

.btn:focus-visible { outline: none; box-shadow: var(--shadow-focus); }

/* --- Primary CTA (WARM YELLOW → ORANGE GLOW — lit window) --- */
.btn--accent {
  background: var(--gradient-glow);
  color: var(--color-glow-ink);
  border: 1px solid var(--color-glow-edge);
  text-shadow: 0 1px 0 rgba(255, 235, 180, 0.40);
  box-shadow:
    var(--bevel-light-strong),
    inset 0 -1px 0 rgba(130, 55, 10, 0.30),
    inset 0 0 0 1px rgba(255, 210, 140, 0.20),
    0 2px 0 rgba(130, 55, 10, 0.22),
    0 12px 24px -8px rgba(201, 110, 31, 0.50);
}

.btn--accent:hover {
  background: var(--gradient-glow-hover);
  color: var(--color-glow-ink);
  transform: translateY(-1px);
  box-shadow:
    var(--bevel-light-strong),
    inset 0 -1px 0 rgba(130, 55, 10, 0.32),
    inset 0 0 0 1px rgba(255, 220, 155, 0.25),
    0 3px 0 rgba(130, 55, 10, 0.24),
    0 16px 28px -8px rgba(201, 110, 31, 0.58);
}

.btn--accent:active {
  transform: translateY(1px);
  box-shadow:
    inset 0 1px 2px rgba(130, 55, 10, 0.28),
    0 1px 0 rgba(130, 55, 10, 0.18),
    0 3px 6px rgba(201, 110, 31, 0.28);
}

.btn--accent:focus-visible {
  box-shadow:
    var(--shadow-focus-glow),
    var(--bevel-light-strong),
    inset 0 -1px 0 rgba(130, 55, 10, 0.30);
}

/* --- Secondary (metallic steel blue) ------------------------ */
.btn--primary {
  background: var(--gradient-steel-deep);
  color: var(--color-text-inverse);
  border: 1px solid var(--color-primary-900);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.32);
  box-shadow:
    var(--bevel-light),
    var(--bevel-dark-strong),
    0 2px 0 rgba(15, 28, 42, 0.24),
    0 12px 22px -8px rgba(15, 28, 42, 0.32);
}

.btn--primary:hover {
  color: var(--color-text-inverse);
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow:
    var(--bevel-light),
    var(--bevel-dark-strong),
    0 3px 0 rgba(15, 28, 42, 0.26),
    0 16px 28px -8px rgba(15, 28, 42, 0.38);
}

.btn--primary:active {
  transform: translateY(1px);
  box-shadow:
    inset 0 1px 2px rgba(0, 0, 0, 0.28),
    0 1px 0 rgba(15, 28, 42, 0.18),
    0 3px 6px rgba(15, 28, 42, 0.18);
}

/* --- Outline (for dark backgrounds, hero) ------------------- */
.btn--outline {
  background: transparent;
  color: var(--color-text-inverse);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: none;
}

.btn--outline:hover {
  background: var(--color-text-inverse);
  color: var(--color-primary-900);
  border-color: var(--color-text-inverse);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* --- Light ------------------------ */
.btn--light {
  background: linear-gradient(180deg, #FFFFFF 0%, #F3F5F8 100%);
  color: var(--color-primary-900);
  border: 1px solid rgba(15, 28, 42, 0.12);
  box-shadow:
    var(--bevel-top-hairline),
    0 2px 0 rgba(15, 28, 42, 0.10),
    var(--shadow-sm);
}

.btn--light:hover {
  color: var(--color-primary-900);
  transform: translateY(-1px);
  box-shadow:
    var(--bevel-top-hairline),
    0 3px 0 rgba(15, 28, 42, 0.12),
    var(--shadow-md);
}

.btn--block { display: flex; width: 100%; }

/* =========================================================
   Site header
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg-white);
  border-bottom: 1px solid var(--color-border-subtle);
  transition: box-shadow var(--ease), border-color var(--ease);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: transparent;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: var(--header-top-height);
}

.header-logo img,
.header-logo svg {
  display: block;
  width: 112px;
  height: auto;
}

/* Header CTA block — call label + number left, free-quote button right */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.header-cta__phone {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: right;
}

.header-cta__label {
  font-size: 0.68rem;
  font-weight: var(--fw-strong);
  font-family: var(--font-body);
  letter-spacing: 0.14em;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  line-height: 1;
}

.header-cta__number {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  font-family: var(--font-heading);
  font-weight: var(--fw-heading-black);
  font-size: 1.45rem;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: var(--color-primary-900);
  text-decoration: none;
  transition: color var(--ease);
}
.header-cta__number:hover { color: var(--color-accent); }

.header-cta__phone-icon {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  flex-shrink: 0;
  opacity: 0.75;
}

.header-cta__quote {
  white-space: nowrap;
  font-size: 1rem;
  padding: 0.7rem 1.2rem;
}

/* Legacy alias kept for amber number button */
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.header-phone__label {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: right;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-weight: var(--fw-heading-heavy);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.header-phone__label span {
  display: block;
  font-size: 0.72rem;
  font-weight: var(--fw-strong);
  font-family: var(--font-body);
  letter-spacing: 0.18em;
  color: var(--color-text-secondary);
  margin-bottom: 0.15rem;
  text-transform: uppercase;
}

.header-phone__number {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.2rem;
  background: var(--gradient-glow);
  color: var(--color-glow-ink);
  border: 1px solid var(--color-glow-edge);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: var(--fw-heading-black);
  font-size: 1.5rem;
  letter-spacing: 0.015em;
  text-decoration: none;
  text-shadow: 0 1px 0 rgba(255, 235, 180, 0.40);
  box-shadow:
    var(--bevel-light-strong),
    inset 0 -1px 0 rgba(130, 55, 10, 0.28),
    inset 0 0 0 1px rgba(255, 210, 140, 0.18),
    0 2px 0 rgba(130, 55, 10, 0.22),
    0 6px 14px rgba(201, 110, 31, 0.28);
  transition: transform var(--ease-out), box-shadow var(--ease-out), filter var(--ease-out), background var(--ease-out);
}

.header-phone__number:hover {
  color: var(--color-glow-ink);
  background: var(--gradient-glow-hover);
  transform: translateY(-1px);
  box-shadow:
    var(--bevel-light-strong),
    inset 0 -1px 0 rgba(130, 55, 10, 0.30),
    inset 0 0 0 1px rgba(255, 220, 160, 0.22),
    0 3px 0 rgba(130, 55, 10, 0.24),
    0 10px 22px rgba(201, 110, 31, 0.36);
}

.header-phone__number svg { width: 20px; height: 20px; fill: currentColor; }

/* Mobile phone icon */
.header-phone-mobile {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--gradient-glow);
  color: var(--color-glow-ink);
  border: 1px solid var(--color-glow-edge);
  align-items: center;
  justify-content: center;
  box-shadow:
    var(--bevel-light-strong),
    inset 0 -1px 0 rgba(130, 55, 10, 0.25),
    0 2px 0 rgba(130, 55, 10, 0.22),
    0 4px 10px rgba(201, 110, 31, 0.28);
}

.header-phone-mobile svg { width: 22px; height: 22px; fill: currentColor; }

/* Row 2: service nav — heavier, more dimensional */
.header-nav {
  background: var(--gradient-nav);
  border-top: 1px solid rgba(191, 213, 230, 0.24);
  border-bottom: 2px solid rgba(0, 0, 0, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.30),
    0 2px 6px rgba(15, 28, 42, 0.12);
  position: relative;
}

.header-nav::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(191, 213, 230, 0) 0%,
    rgba(191, 213, 230, 0.42) 25%,
    rgba(191, 213, 230, 0.60) 50%,
    rgba(191, 213, 230, 0.42) 75%,
    rgba(191, 213, 230, 0) 100%);
  pointer-events: none;
}

.service-nav {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  padding: 0 var(--space-md);
  min-height: var(--header-nav-height);
}

.service-nav a {
  color: rgba(255, 255, 255, 0.94);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: var(--fw-heading-heavy);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
  position: relative;
  transition: color var(--ease), background var(--ease);
}

.service-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -1px;
  height: 3px;
  background: var(--color-primary-600);
  transition: left var(--ease-out), right var(--ease-out), background var(--ease-out);
}

.service-nav a:hover {
  color: var(--color-primary-100);
  background: rgba(191, 213, 230, 0.05);
}

.service-nav a:hover::after {
  left: 22%; right: 22%;
  background: var(--color-primary-100);
}

/* Active = amber-lit underline (logo-derived) */
.service-nav a[aria-current="page"] {
  color: #FFFFFF;
  background: rgba(255, 220, 160, 0.06);
}
.service-nav a[aria-current="page"]::after {
  left: 22%; right: 22%;
  background: var(--gradient-glow);
  box-shadow: 0 0 12px rgba(226, 174, 73, 0.55);
}

/* Emergency nav item — neutral, consistent with rest */
.service-nav a.is-emergency {
  background: transparent;
  margin: 0;
  flex: 1;
  padding: 0 1.1rem;
}
.service-nav a.is-emergency:hover { background: rgba(191, 213, 230, 0.05); }

/* ── Dropdown nav items ─────────────────────────────────────── */

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: stretch;
  flex: 1;
}

/* The top-level service link inside a dropdown item */
.nav-item--has-dropdown > a {
  flex: 1;
  padding-right: 0.5rem;
}

/* Chevron toggle button (desktop: hidden; mobile: shown) */
.nav-item__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 0;
  transition: color var(--ease), transform var(--ease);
  flex-shrink: 0;
}

.nav-item__toggle svg { fill: currentColor; display: block; }

/* Dropdown panel */
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--gradient-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 2px solid var(--color-primary-700);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: 0 8px 24px -6px rgba(15, 28, 42, 0.45);
  z-index: 500;
  padding: 0.35rem 0;
}

.nav-item--has-dropdown:hover .nav-dropdown {
  display: block;
}

.nav-dropdown a {
  display: block;
  padding: 0.52rem 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-body);
  font-weight: var(--fw-strong);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: none;
  text-align: left;
  white-space: nowrap;
  flex: none;
  text-decoration: none;
  transition: background var(--ease), color var(--ease);
}

.nav-dropdown a::after { display: none; }

.nav-dropdown a:hover {
  background: rgba(191, 213, 230, 0.08);
  color: var(--color-primary-100);
}

.nav-dropdown a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 220, 160, 0.06);
}

.nav-dropdown__emergency {
  color: var(--color-primary-100) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 0.2rem;
  padding-bottom: 0.6rem !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 100%;
  background: var(--gradient-nav);
  color: var(--color-text-inverse);
  border: none;
  border-top: 1px solid rgba(191, 213, 230, 0.24);
  position: relative;
  padding: 0.9rem var(--space-md);
  font-family: var(--font-heading);
  font-weight: var(--fw-heading-heavy);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: left;
  align-items: center;
  gap: 0.6rem;
  justify-content: space-between;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    inset 0 -1px 0 rgba(0, 0, 0, 0.30);
}

/* Match the desktop nav's steel top hairline so the border is consistent. */
.nav-toggle::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(191, 213, 230, 0) 0%,
    rgba(191, 213, 230, 0.42) 25%,
    rgba(191, 213, 230, 0.60) 50%,
    rgba(191, 213, 230, 0.42) 75%,
    rgba(191, 213, 230, 0) 100%);
  pointer-events: none;
}

.nav-toggle .burger { display: inline-flex; flex-direction: column; gap: 4px; width: 22px; }
.nav-toggle .burger span { display: block; height: 2px; width: 100%; background: currentColor; }

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  background: var(--color-primary-900);
  color: var(--color-text-inverse);
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

@media (prefers-reduced-motion: reduce) {
  .hero::after,
  .page-header::after { animation: none; }
}

.hero__carousel {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__slide.is-active { opacity: 1; }

.hero__slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateX(8%) scale(1.1);
  transform-origin: center center;
}

.hero__dots {
  display: flex;
  gap: 0.5rem;
  margin-top: var(--space-md);
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.hero__dot:hover { background: rgba(255, 255, 255, 0.6); }
.hero__dot.is-active {
  background: #ffffff;
  transform: scale(1.25);
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: -1;
}

.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: calc(var(--space-2xl) + var(--space-sm)) var(--space-md) var(--space-2xl);
}

.hero__content { max-width: 720px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: var(--fw-heading-heavy);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--color-primary-100);
  margin-bottom: var(--space-sm);
}

@keyframes hero-word-in {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero__eyebrow-word {
  display: inline-block;
  opacity: 0;
  animation: hero-word-in 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.hero__eyebrow-word:nth-child(1) { animation-delay: 0.3s; }
.hero__eyebrow-word:nth-child(2) { animation-delay: 0.65s; }
.hero__eyebrow-word:nth-child(3) { animation-delay: 1.0s; }

@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow-word { animation: none; opacity: 1; }
}

.hero__eyebrow::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 3px;
  background: var(--gradient-glow);
  box-shadow: 0 0 12px rgba(226, 174, 73, 0.55);
}

.hero h1 {
  color: var(--color-text-inverse);
  font-weight: var(--fw-heading-black);
  letter-spacing: -0.005em;
  line-height: 0.9;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.hero__subline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 600px;
  margin-bottom: var(--space-lg);
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--space-sm); align-items: center; }

.hero__note {
  margin-top: var(--space-md);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
}
.hero__star {
  display: inline-block;
  color: var(--color-glow-yellow, #f2be5e);
  font-size: 1.1em;
  margin-right: 0.1em;
  vertical-align: -0.05em;
}

/* Hero on phones — declared after the hero base rules so these win the cascade.
   Keeps the locations on one line and scales the headline, subline and CTAs. */
@media (max-width: 600px) {
  .hero__eyebrow {
    gap: 0.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .hero__eyebrow::before { width: 22px; }

  .hero h1 { font-size: clamp(1.8rem, 9vw, 2.4rem); }

  /* Equal-width, stacked CTAs so the two buttons line up cleanly on phones. */
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
}

/* =========================================================
   Trust bar
   ========================================================= */

.trust-bar {
  background: var(--color-bg-white);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border-subtle);
}

.trust-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  align-items: stretch;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: var(--space-md) var(--space-md) var(--space-md) 1.75rem;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--color-bg-offwhite) 100%);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  box-shadow:
    var(--bevel-top-hairline),
    0 1px 2px rgba(15, 28, 42, 0.05),
    0 6px 14px -6px rgba(15, 28, 42, 0.12);
  position: relative;
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}

/* Metallic "pipe" cross-section — specular across the narrow axis,
   with pipe-joint caps at top & bottom */
.trust-item::before {
  content: "";
  position: absolute;
  left: 0.6rem;
  top: 0.9rem;
  bottom: 0.9rem;
  width: 7px;
  border-radius: 1px;
  background:
    /* top flange */
    linear-gradient(180deg, #1F2E3D 0%, #1F2E3D 6px, transparent 6px) no-repeat 0 0 / 100% 100%,
    /* bottom flange */
    linear-gradient(0deg, #1F2E3D 0%, #1F2E3D 6px, transparent 6px) no-repeat 0 100% / 100% 100%,
    /* specular pipe shaft */
    linear-gradient(90deg,
      #1F2E3D 0%,
      #4E7496 25%,
      #BFD5E6 50%,
      #4E7496 75%,
      #1F2E3D 100%);
  box-shadow: 0 0 0 1px rgba(15, 28, 42, 0.14);
}

.trust-item:hover {
  box-shadow:
    var(--bevel-top-hairline),
    0 2px 4px rgba(15, 28, 42, 0.06),
    0 12px 24px -8px rgba(15, 28, 42, 0.18);
  transform: translateY(-1px);
  border-color: var(--color-border-strong);
}

.trust-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 0.6rem;
  color: var(--color-accent);
}
.trust-item__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.trust-item__score {
  font-family: var(--font-heading);
  font-weight: var(--fw-heading-black);
  font-size: 2.4rem;
  color: var(--color-primary-900);
  line-height: 0.95;
  letter-spacing: 0.005em;
}

.trust-item__label {
  font-size: 0.78rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: var(--fw-strong);
  font-family: var(--font-body);
}

.trust-item__meta {
  font-size: 0.82rem;
  color: var(--color-text-secondary);
  margin-top: auto;
  padding-top: 0.3rem;
}

.trust-item__meta a {
  color: var(--color-primary-800);
  font-weight: var(--fw-strong);
}
.trust-item__meta a:hover { color: var(--color-primary-700); text-decoration: underline; }

.trust-item--badge { align-items: center; text-align: center; }
.trust-item__badge {
  width: auto;
  height: 56px;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.accreditation-block {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  padding: var(--space-md);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin: var(--space-md) 0 var(--space-lg);
}
.accreditation-block__badge {
  width: 140px;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
}
.accreditation-block__body p {
  margin: 0;
  color: var(--color-text-secondary);
  line-height: 1.5;
}
.accreditation-block__body strong { color: var(--color-text); }
@media (max-width: 560px) {
  .accreditation-block { flex-direction: column; text-align: center; }
}

/* =========================================================
   Services grid — engineered plate cards
   ========================================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
}

.service-card {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--color-bg-offwhite) 100%);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 1px 2px rgba(15, 28, 42, 0.06),
    0 2px 6px rgba(15, 28, 42, 0.04),
    0 18px 36px -14px rgba(15, 28, 42, 0.16);
  transition: transform 0.32s var(--ease-expo), box-shadow 0.32s var(--ease-expo), border-color var(--ease);
  color: var(--color-text-primary);
  text-decoration: none;
  position: relative;
}

/* Engineered top seam — steel hairline across the card top */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    #1F2E3D 0%,
    #4E7496 25%,
    #6F97B5 50%,
    #4E7496 75%,
    #1F2E3D 100%);
  z-index: 3;
  opacity: 0.9;
}

.service-card:hover {
  border-color: var(--color-border-strong);
  box-shadow:
    0 2px 4px rgba(15, 28, 42, 0.08),
    0 4px 10px rgba(15, 28, 42, 0.05),
    0 30px 54px -16px rgba(15, 28, 42, 0.26);
  transform: translateY(-5px);
  color: var(--color-text-primary);
}

.service-card__image {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  background: var(--color-bg-main);
  filter: brightness(0.92);
  transition: transform 0.5s ease, filter 0.5s var(--ease-expo);
}

.service-card:hover .service-card__image {
  transform: scale(1.05);
  filter: brightness(1);
}

.service-card__body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
  position: relative;
  z-index: 2;
}

.service-card__title {
  font-family: var(--font-heading);
  font-weight: var(--fw-heading-heavy);
  font-size: 1.55rem;
  letter-spacing: 0.008em;
  line-height: 0.95;
  color: var(--color-primary-900);
  margin: 0;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Small steel "stud" next to service titles */
.service-card__title::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #BFD5E6 0%, #4E7496 55%, #1F2E3D 100%);
  border: 1px solid #1F2E3D;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 0 0 2px rgba(191, 213, 230, 0.18);
  flex-shrink: 0;
  transition: background 0.35s var(--ease-expo), border-color 0.35s var(--ease-expo), box-shadow 0.35s var(--ease-expo);
}

/* Stud turns amber on card hover */
.service-card:hover .service-card__title::before {
  background: radial-gradient(circle at 35% 30%, #F5D382 0%, #E2AE49 55%, #C96E1F 100%);
  border-color: #A85712;
  box-shadow:
    inset 0 1px 0 rgba(255, 240, 200, 0.55),
    0 0 6px rgba(226, 174, 73, 0.65);
}

.service-card__desc {
  color: var(--color-text-secondary);
  font-size: 0.96rem;
  margin: 0;
  flex: 1;
  line-height: 1.55;
}

.service-card__link {
  margin-top: 0.45rem;
  font-family: var(--font-heading);
  font-weight: var(--fw-heading-heavy);
  color: var(--color-primary-800);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  position: relative;
  display: inline-block;
}

.service-card__link::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: var(--color-primary-700);
  transition: width var(--ease-out);
  margin-top: 2px;
}

.service-card:hover .service-card__link::after { width: 100%; }

/* =========================================================
   CTA band
   ========================================================= */

.cta-band {
  background: var(--gradient-dark);
  color: var(--color-text-inverse);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid rgba(191, 213, 230, 0.10);
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(0, 0, 0, 0.22);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 85% 120%, rgba(226, 174, 73, 0.22), transparent 55%),
    radial-gradient(ellipse at 15% -10%, rgba(111, 151, 181, 0.18), transparent 55%);
  pointer-events: none;
}

.cta-band--accent { background: var(--gradient-steel-deep); }

.cta-band--accent::before {
  background-image:
    radial-gradient(ellipse at 85% 120%, rgba(226, 174, 73, 0.28), transparent 55%),
    radial-gradient(ellipse at 10% 10%, rgba(255, 255, 255, 0.10), transparent 50%);
}

/* Service card uses flush inset */
.service-card::after { inset: 0; }

.cta-band__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-band__text { flex: 1 1 420px; }

.cta-band__text h2 {
  color: var(--color-text-inverse);
  margin: 0 0 var(--space-xs);
  letter-spacing: 0;
  line-height: 0.95;
}

.cta-band__text p {
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  font-size: 1.05rem;
}

/* =========================================================
   Why OWB — plaque-style cards
   ========================================================= */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
}

.why-item {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--color-bg-offwhite) 100%);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  box-shadow:
    var(--bevel-top-hairline),
    0 1px 2px rgba(15, 28, 42, 0.05),
    0 10px 22px -8px rgba(15, 28, 42, 0.14);
  position: relative;
  transition: transform var(--ease-out), box-shadow var(--ease-out), border-color var(--ease);
}

.why-item::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78, 116, 150, 0.5), transparent);
}

.why-item:hover {
  box-shadow:
    var(--bevel-top-hairline),
    0 2px 4px rgba(15, 28, 42, 0.06),
    0 16px 30px -10px rgba(15, 28, 42, 0.20);
  transform: translateY(-2px);
  border-color: var(--color-border-strong);
}

.why-item__icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--gradient-steel);
  color: var(--color-text-inverse);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  border: 1px solid var(--color-primary-900);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -1px 0 rgba(0, 0, 0, 0.26),
    0 2px 4px rgba(15, 28, 42, 0.20);
  position: relative;
}

/* Small amber pilot-light corner stud */
.why-item__icon::after {
  content: "";
  position: absolute;
  top: -3px;
  right: -3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gradient-glow);
  border: 1px solid var(--color-glow-edge);
  box-shadow:
    0 0 10px rgba(226, 174, 73, 0.65),
    inset 0 1px 0 rgba(255, 240, 200, 0.5);
}

.why-item__icon svg { width: 26px; height: 26px; fill: currentColor; }

.why-item h3 {
  color: var(--color-primary-900);
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  line-height: 0.95;
  margin-bottom: var(--space-xs);
}

.why-item p {
  color: var(--color-text-secondary);
  margin: 0;
  font-family: var(--font-body);
}

/* =========================================================
   Testimonials
   ========================================================= */

.testimonials-outer {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: var(--space-xs);
}

.testimonials-viewport {
  overflow: hidden;
}

.testimonials {
  display: flex;
  gap: var(--grid-gap);
  transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.testimonials-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--ease), border-color var(--ease), color var(--ease), opacity var(--ease);
  box-shadow: var(--shadow-sm);
}

.testimonials-arrow:hover:not(:disabled) {
  background: var(--color-bg-main);
  border-color: var(--color-border-strong);
}

.testimonials-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  box-shadow: none;
}

.testimonials-arrow svg {
  fill: currentColor;
  flex-shrink: 0;
}

.testimonials-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: var(--space-md);
  flex-wrap: wrap;
  min-height: 20px;
}

.tc-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: var(--color-border-strong);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--ease), width 0.22s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity var(--ease);
}

.tc-dot.is-active {
  background: var(--color-primary-900);
  width: 22px;
}

.testimonial {
  flex: 0 0 var(--tc-card-width, 340px);
  background: linear-gradient(180deg, #FFFFFF 0%, var(--color-bg-offwhite) 100%);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  box-shadow:
    var(--bevel-top-hairline),
    0 1px 2px rgba(15, 28, 42, 0.05),
    0 10px 22px -8px rgba(15, 28, 42, 0.13);
  position: relative;
  transition: transform 0.32s var(--ease-expo), box-shadow 0.32s var(--ease-expo), border-color var(--ease);
}

.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -0.25rem;
  left: 1rem;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--color-primary-700);
  opacity: 0.20;
  pointer-events: none;
}

.testimonial:hover {
  box-shadow:
    var(--bevel-top-hairline),
    0 2px 4px rgba(15, 28, 42, 0.06),
    0 16px 30px -10px rgba(15, 28, 42, 0.19);
  transform: translateY(-2px);
  border-color: var(--color-border-strong);
}

.testimonial__stars {
  color: var(--color-glow-amber);
  font-size: 1.15rem;
  letter-spacing: 3px;
  position: relative;
  text-shadow: 0 0 6px rgba(226, 174, 73, 0.32), 0 1px 0 rgba(130, 55, 10, 0.15);
}

.testimonial__quote {
  font-size: 1rem;
  color: var(--color-text-primary);
  margin: 0;
  flex: 1;
  line-height: 1.6;
  font-family: var(--font-body);
}

.testimonial__author {
  font-size: 0.92rem;
  color: var(--color-text-primary);
  font-weight: var(--fw-strong);
  margin: 0;
  font-family: var(--font-body);
}

.testimonial__source {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: var(--font-body);
}

/* =========================================================
   Areas covered
   ========================================================= */

.areas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.area-group {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--color-bg-offwhite) 100%);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-md) var(--space-lg);
  box-shadow:
    var(--bevel-top-hairline),
    0 1px 2px rgba(15, 28, 42, 0.05),
    0 8px 18px -8px rgba(15, 28, 42, 0.12);
}

.area-group h3 {
  color: var(--color-primary-900);
  letter-spacing: 0.01em;
  font-size: 1.35rem;
  line-height: 0.95;
  border-bottom: 1px solid var(--color-border-subtle);
  padding-bottom: 0.6rem;
  margin-bottom: var(--space-sm);
  position: relative;
}

.area-group h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 48px;
  height: 3px;
  background: var(--gradient-steel);
  border-radius: 1px;
}

.area-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: var(--space-md);
}

.area-group li {
  padding: 0.3rem 0;
  font-size: 0.98rem;
  color: var(--color-text-primary);
  break-inside: avoid;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
}

/* Pipe-joint bullet */
.area-group li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #BFD5E6 0%, #4E7496 55%, #1F2E3D 100%);
  border: 1px solid #1F2E3D;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 0 0 2px rgba(191, 213, 230, 0.15);
  flex-shrink: 0;
  transition: box-shadow var(--ease);
}

/* Amber bullet for towns that have a dedicated page */
.area-group li:has(a)::before {
  background: radial-gradient(circle at 35% 30%, #F5D382 0%, #E2AE49 55%, #C96E1F 100%);
  border-color: #A85712;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 0 5px rgba(226, 174, 73, 0.55);
}

.area-group li a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ease);
}

.area-group li a:hover {
  color: var(--color-glow-amber);
}

/* =========================================================
   Contact form — recessed panel with amber CTA
   ========================================================= */

.contact-form {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--color-bg-offwhite) 100%);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  max-width: 820px;
  margin: 0 auto;
  box-shadow:
    var(--bevel-top-hairline),
    0 1px 2px rgba(15, 28, 42, 0.06),
    0 20px 42px -12px rgba(15, 28, 42, 0.18);
}

.contact-form__field { display: flex; flex-direction: column; gap: 0.4rem; }
.contact-form__field--full { grid-column: 1 / -1; }

.contact-form label {
  font-family: var(--font-heading);
  font-weight: var(--fw-heading-heavy);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-primary-900);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xs);
  background: var(--color-bg-white);
  color: var(--color-text-primary);
  box-shadow: inset 0 1px 0 rgba(15, 28, 42, 0.04);
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.6rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%230d2f56' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 8px;
}
.contact-form select::-ms-expand { display: none; }

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #9AA6B2; }

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form select:hover { border-color: var(--color-border-strong); }

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--color-primary-700);
  box-shadow:
    inset 0 1px 0 rgba(15, 28, 42, 0.04),
    var(--shadow-focus);
  background: var(--color-bg-white);
}

.contact-form textarea { min-height: 150px; resize: vertical; }

.contact-form__submit { grid-column: 1 / -1; }
.contact-form__submit .btn { padding: 1.1rem 1.75rem; font-size: 1.1rem; }

.contact-form__note {
  grid-column: 1 / -1;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin: 0;
}

.form-success {
  display: none;
  padding: var(--space-md);
  background: #EEF7F1;
  border: 1px solid #BFDFCB;
  color: #1F5A35;
  border-radius: var(--radius-sm);
  font-weight: var(--fw-strong);
  margin: var(--space-md) 0 0;
}

.form-success.is-visible { display: block; }

.contact-form__hp { display: none; }

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  background: var(--color-primary-900);
  color: var(--color-text-on-dark);
  padding: var(--space-xl) 0 var(--space-md);
  position: relative;
}

/* Metallic capping strip at the top of the footer */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.20) 0%,
      rgba(255, 255, 255, 0) 50%),
    var(--gradient-steel);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.40);
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-col h4 {
  color: var(--color-text-inverse);
  font-family: var(--font-heading);
  font-weight: var(--fw-heading-heavy);
  letter-spacing: 0.04em;
  font-size: 1.15rem;
  margin: 0 0 var(--space-sm);
  position: relative;
  padding-bottom: 0.4rem;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--color-primary-600);
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.4rem; }
.footer-col a { color: var(--color-text-on-dark); transition: color var(--ease); }
.footer-col a:hover { color: var(--color-primary-600); }

.footer-logo img,
.footer-logo svg { width: 78px; height: auto; margin-bottom: var(--space-sm); }

.footer-contact p { margin: 0.3rem 0; color: var(--color-text-on-dark); }

.footer-contact a strong {
  font-family: var(--font-heading);
  font-weight: var(--fw-heading-black);
  font-size: 1.5rem;
  color: var(--color-glow-amber);
  letter-spacing: 0.01em;
}

.footer-badges { display: flex; flex-direction: column; gap: 6px; margin-top: var(--space-sm); }

.footer-badge {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-xs);
  font-size: 0.82rem;
  color: var(--color-text-on-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-body);
  font-weight: var(--fw-strong);
  display: block;
  width: fit-content;
  min-width: 160px;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-md) var(--space-md) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.85rem;
  color: var(--color-text-on-dark);
  flex-wrap: wrap;
}

.footer-nav { display: flex; gap: var(--space-md); flex-wrap: wrap; }

.footer-nav a {
  color: var(--color-text-on-dark);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: var(--fw-heading-heavy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
}

.footer-nav a:hover { color: var(--color-primary-600); }

.footer-social {
  display: flex;
  gap: var(--space-xs);
  align-items: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  color: var(--color-text-on-dark);
  transition: color var(--ease), background var(--ease);
}

.footer-social a:hover {
  color: var(--color-text-inverse);
  background: rgba(255, 255, 255, 0.10);
}

.footer-social svg { fill: currentColor; }

/* =========================================================
   Service page (inner pages)
   ========================================================= */

.page-header {
  background: var(--gradient-dark);
  color: var(--color-text-inverse);
  padding: var(--space-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(0, 0, 0, 0.30);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.page-header .container { position: relative; z-index: 1; }

.page-header--image { padding: calc(var(--space-xl) + var(--space-md)) 0; }

.page-header__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.page-header__overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: -1;
}

.content-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  margin: var(--space-lg) 0;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-subtle);
}

.content-image--caption { margin-bottom: var(--space-xs); }

.about-image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}
.about-image-pair img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-subtle);
  display: block;
}
@media (max-width: 560px) {
  .about-image-pair { grid-template-columns: 1fr; }
  .about-image-pair img { height: 360px; }
}

.content-image + .content-image__caption {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-md);
  font-style: italic;
}

.page-header__eyebrow {
  font-family: var(--font-heading);
  font-weight: var(--fw-heading-heavy);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary-100);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.page-header__eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 3px;
  background: var(--gradient-glow);
  box-shadow: 0 0 12px rgba(226, 174, 73, 0.55);
}

.page-header h1 {
  color: var(--color-text-inverse);
  letter-spacing: -0.005em;
  line-height: 0.9;
  margin-top: var(--space-xs);
}

.page-header p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 720px;
  margin: var(--space-sm) auto 0;
  font-size: 1.1rem;
  font-family: var(--font-body);
  text-transform: none;
  font-weight: var(--fw-body);
  line-height: 1.55;
}

.page-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-xl);
}

.page-content {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--color-bg-offwhite) 100%);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow:
    var(--bevel-top-hairline),
    0 1px 2px rgba(15, 28, 42, 0.05),
    0 12px 28px -12px rgba(15, 28, 42, 0.14);
}

.page-content a {
  color: var(--color-primary-700);
  font-weight: var(--fw-strong);
  text-decoration: underline;
  text-decoration-color: rgba(78, 116, 150, 0.40);
  text-underline-offset: 2px;
  transition: color var(--ease), text-decoration-color var(--ease);
}

.page-content a:hover {
  color: var(--color-primary-900);
  text-decoration-color: var(--color-primary-700);
}

.page-content h2 {
  color: var(--color-primary-900);
  letter-spacing: 0.005em;
  margin-top: var(--space-lg);
}

.page-content h2:first-child { margin-top: 0; }

.page-content h3 { color: var(--color-primary-900); margin-top: var(--space-md); }

.page-content ul.tick { list-style: none; padding: 0; }

.page-content ul.tick li {
  padding-left: 1.9rem;
  position: relative;
  margin-bottom: 0.55rem;
}

.page-content ul.tick li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gradient-steel);
  border: 1px solid var(--color-primary-900);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.24),
    0 1px 2px rgba(15, 28, 42, 0.20);
}

.page-content ul.tick li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: calc(0.3em + 5.5px);
  width: 8px;
  height: 4px;
  border-left: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  transform: rotate(-45deg);
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: sticky;
  top: calc(var(--header-top-height) + var(--header-nav-height) + var(--space-md));
  align-self: start;
}

.sidebar-card {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--color-bg-offwhite) 100%);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow:
    var(--bevel-top-hairline),
    0 1px 2px rgba(15, 28, 42, 0.05),
    0 8px 18px -8px rgba(15, 28, 42, 0.12);
  transition: box-shadow var(--ease-out), transform var(--ease-out), border-color var(--ease);
}

.sidebar-card:not(.sidebar-card--accent):hover {
  box-shadow:
    var(--bevel-top-hairline),
    0 2px 4px rgba(15, 28, 42, 0.06),
    0 14px 28px -8px rgba(15, 28, 42, 0.18);
  transform: translateY(-2px);
  border-color: var(--color-border-strong);
}

/* Accent sidebar card — dark navy with mounting-plate rivets + amber window */
.sidebar-card--accent {
  background:
    radial-gradient(circle 2.5px at 10px 10px, #4E7496 60%, transparent 62%),
    radial-gradient(circle 2.5px at calc(100% - 10px) 10px, #4E7496 60%, transparent 62%),
    radial-gradient(circle 2.5px at 10px calc(100% - 10px), #4E7496 60%, transparent 62%),
    radial-gradient(circle 2.5px at calc(100% - 10px) calc(100% - 10px), #4E7496 60%, transparent 62%),
    var(--gradient-dark);
  background-repeat: no-repeat;
  color: var(--color-text-inverse);
  border: 1px solid var(--color-primary-800);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    inset 0 -1px 0 rgba(0, 0, 0, 0.24),
    0 12px 26px -10px rgba(15, 28, 42, 0.35);
  position: relative;
  overflow: hidden;
  padding-top: 1.8rem;
}

/* Amber glowing phone icon */
.sidebar-card--accent::after {
  content: "";
  position: absolute;
  top: 1.0rem;
  right: 1.0rem;
  width: 20px;
  height: 20px;
  background: linear-gradient(180deg, #F5D382 0%, #E2AE49 45%, #D98A2B 85%, #C96E1F 100%);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.01 15.38c-1.23 0-2.42-.2-3.53-.56a.977.977 0 0 0-1.01.24l-1.57 1.97c-2.83-1.35-5.48-3.9-6.89-6.83l1.95-1.66c.27-.28.35-.67.24-1.02-.37-1.12-.56-2.3-.56-3.53 0-.54-.45-.99-.99-.99H4.19C3.65 3 3 3.24 3 3.99 3 13.28 10.73 21 20.01 21c.71 0 .99-.63.99-1.18v-3.45c0-.54-.45-.99-.99-.99z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.01 15.38c-1.23 0-2.42-.2-3.53-.56a.977.977 0 0 0-1.01.24l-1.57 1.97c-2.83-1.35-5.48-3.9-6.89-6.83l1.95-1.66c.27-.28.35-.67.24-1.02-.37-1.12-.56-2.3-.56-3.53 0-.54-.45-.99-.99-.99H4.19C3.65 3 3 3.24 3 3.99 3 13.28 10.73 21 20.01 21c.71 0 .99-.63.99-1.18v-3.45c0-.54-.45-.99-.99-.99z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  filter: drop-shadow(0 0 6px rgba(242, 190, 94, 0.80)) drop-shadow(0 0 14px rgba(242, 190, 94, 0.40));
}

.sidebar-card h3 {
  color: var(--color-primary-900);
  margin: 0 0 var(--space-xs);
  letter-spacing: 0.008em;
  font-size: 1.4rem;
  line-height: 0.95;
}

.sidebar-card--accent h3 { color: var(--color-text-inverse); }
.sidebar-card--accent p { color: rgba(255, 255, 255, 0.88); }

.sidebar-card__phone {
  font-family: var(--font-heading);
  font-weight: var(--fw-heading-black);
  font-size: 2.1rem;
  color: var(--color-glow-yellow);
  display: inline-block;
  margin: var(--space-xs) 0;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-shadow: 0 0 16px rgba(242, 190, 94, 0.45);
}

.sidebar-card__phone:hover { color: #FFFFFF; text-shadow: 0 0 16px rgba(242, 190, 94, 0.65); }

/* FAQ — valve-knob markers */
.faq { border-top: 1px solid var(--color-border-subtle); }

.faq-item {
  border-bottom: 1px solid var(--color-border-subtle);
  padding: var(--space-md) 0;
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: var(--fw-heading-heavy);
  font-size: 1.3rem;
  color: var(--color-primary-900);
  list-style: none;
  position: relative;
  padding-right: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
  transition: color var(--ease);
}

.faq-item summary:hover { color: var(--color-primary-700); }

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: var(--fw-heading-black);
  color: var(--color-text-inverse);
  background: var(--gradient-steel);
  border: 1px solid var(--color-primary-900);
  border-radius: 50%;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -1px 0 rgba(0, 0, 0, 0.28),
    0 2px 4px rgba(15, 28, 42, 0.22);
  transition: transform var(--ease-out), box-shadow var(--ease-out), background var(--ease-out);
}

.faq-item summary:hover::after {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -1px 0 rgba(0, 0, 0, 0.28),
    0 3px 6px rgba(15, 28, 42, 0.26);
}

.faq-item[open] summary::after {
  content: "–";
  background: var(--gradient-glow);
  border-color: var(--color-glow-edge);
  color: var(--color-glow-ink);
  transform: translateY(-50%) rotate(180deg);
  text-shadow: 0 1px 0 rgba(255, 235, 180, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 240, 200, 0.55),
    inset 0 -1px 0 rgba(130, 55, 10, 0.32),
    0 2px 4px rgba(201, 110, 31, 0.32);
}

.faq-item__body {
  margin-top: var(--space-sm);
  color: var(--color-text-secondary);
  line-height: 1.65;
  font-family: var(--font-body);
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1024px) {
  .trust-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: var(--space-lg) 0; }
  .hero__inner { padding: var(--space-xl) var(--space-md); }

  .header-top { min-height: auto; padding: 0.75rem var(--space-md); }
  .header-phone { display: none; }

  .header-nav { display: none; }
  .header-nav.is-open { display: block; }
  .nav-toggle { display: flex; }

  .service-nav { flex-direction: column; padding: 0; }

  /* Top-level nav links on mobile */
  .service-nav > a,
  .nav-item > a {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    justify-content: flex-start;
    padding: 0.9rem var(--space-md);
    text-align: left;
    flex: 1 1 auto;
  }
  .service-nav > a::after,
  .nav-item > a::after { display: none; }
  .service-nav a.is-emergency { margin-left: 0; }

  /* Nav items stack full-width */
  .nav-item {
    flex-direction: row;
    flex-wrap: wrap;
    flex: 0 0 auto;
    width: 100%;
  }

  /* Show the chevron toggle on mobile */
  .nav-item__toggle {
    display: inline-flex;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 48px;
    padding: 0 var(--space-xs);
  }

  .nav-item.is-expanded .nav-item__toggle { transform: rotate(180deg); }

  /* Mobile dropdown: inline, full-width */
  .nav-dropdown {
    position: static;
    display: none;
    width: 100%;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.18);
    padding: 0;
    min-width: 0;
  }

  .nav-item.is-expanded .nav-dropdown { display: block; }

  /* Hover dropdown disabled on mobile */
  .nav-item--has-dropdown:hover .nav-dropdown { display: none; }
  .nav-item--has-dropdown.is-expanded .nav-dropdown { display: block; }

  .nav-dropdown a {
    padding: 0.7rem var(--space-md) 0.7rem calc(var(--space-md) + 1rem);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    white-space: normal;
  }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-outer { grid-template-columns: 36px 1fr 36px; gap: 6px; }
  .testimonials-arrow { width: 36px; height: 36px; }
  .areas { grid-template-columns: 1fr; }
  .area-group ul { columns: 2; }

  .contact-form { grid-template-columns: 1fr; padding: var(--space-md); }

  .cta-band { padding: var(--space-md) 0; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; gap: var(--space-md); }
  .cta-band__text { flex: 0 0 auto; }

  .footer-grid { grid-template-columns: 1fr; gap: var(--space-md); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .page-content { padding: var(--space-md); }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .trust-bar__inner { grid-template-columns: 1fr; }
  .area-group ul { columns: 1; }
  h1 { font-size: 2.4rem; }
}

/* =========================================================
   Scroll reveal — subtle fade/lift on first visibility
   ========================================================= */
.js-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s var(--ease-expo),
    transform 0.55s var(--ease-expo);
  will-change: opacity, transform;
}
.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .js-reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   WhatsApp in the header (on-brand)
   Desktop: a labelled button matching the Free-quote button height
   (it carries .btn .btn--primary; these rules just handle the icon + label).
   ========================================================= */
.header-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  font-size: 1rem;
  white-space: nowrap;
}
.header-wa svg { width: 1em; height: 1em; fill: currentColor; flex-shrink: 0; }
.header-cta__quote svg { width: 1em; height: 1em; fill: currentColor; flex-shrink: 0; }

/* Compact header contact (tablet & mobile): a Call/WhatsApp dropdown + a mail
   icon to the quote form. The group is hidden on desktop; shown at <=1024px. */
.header-compact { display: none; align-items: center; gap: 0.5rem; }
.header-contact { position: relative; display: inline-flex; }

.header-contact__btn,
.header-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: filter var(--ease), transform var(--ease);
}
.header-contact__btn:hover,
.header-quote:hover { filter: brightness(1.06); transform: translateY(-1px); }

/* Call / WhatsApp trigger — dark navy with a white icon */
.header-contact__btn {
  background: var(--gradient-steel-deep);
  color: var(--color-text-inverse);
  border: 1px solid var(--color-primary-900);
}
/* Free-quote (mail) icon — amber with a dark icon (the prominent action) */
.header-quote {
  background: var(--gradient-glow);
  color: var(--color-glow-ink);
  border: 1px solid var(--color-glow-edge);
  box-shadow:
    var(--bevel-light-strong),
    0 2px 0 rgba(130, 55, 10, 0.22),
    0 4px 10px rgba(201, 110, 31, 0.28);
}
.header-contact__btn > svg,
.header-quote svg { width: 22px; height: 22px; fill: currentColor; }

.header-contact__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: none;
  flex-direction: column;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 28px rgba(15, 28, 42, 0.20);
  overflow: hidden;
  z-index: 120;
}
.header-contact.is-open .header-contact__menu { display: flex; }

.header-contact__item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  color: var(--color-text-primary);
  text-decoration: none;
  border-top: 1px solid var(--color-border-subtle);
}
.header-contact__item:first-child { border-top: none; }
.header-contact__item:hover { background: var(--color-bg-main); }
.header-contact__item svg { width: 24px; height: 24px; fill: currentColor; flex-shrink: 0; }
.header-contact__txt { display: flex; flex-direction: column; line-height: 1.25; }
.header-contact__txt strong {
  font-family: var(--font-heading);
  font-weight: var(--fw-heading-heavy);
  font-size: 1rem;
  color: var(--color-primary-900);
}
.header-contact__txt small { font-size: 0.8rem; color: var(--color-text-secondary); }

/* Responsive header (declared after the base rules so it wins the cascade):
   - Tablet: drop the phone number, keep the WhatsApp + Free-quote buttons.
   - Phone:  collapse those two buttons into two compact square icons. */
@media (max-width: 1024px) {
  .header-cta__phone,
  .header-phone-mobile { display: none; }
}
@media (max-width: 560px) {
  .header-wa,
  .header-cta__quote { display: none; }
  .header-compact { display: inline-flex; }
}

/* =========================================================
   Media gallery — responsive grid with lightbox
   Used on service landing pages
   ========================================================= */
.media-gallery {
  margin: var(--space-lg) 0;
}

.media-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 6px;
}

.media-gallery__item {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 0;
  background: var(--color-bg-alt);
  position: relative;
  border-radius: 2px;
}

.media-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.media-gallery__item:hover img { transform: scale(1.04); }

.media-gallery__item--video .media-gallery__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.28);
  transition: background 0.2s;
}
.media-gallery__item--video:hover .media-gallery__play { background: rgba(0,0,0,0.45); }
.media-gallery__play svg { width: 40px; height: 40px; fill: white; }

/* Lightbox */
.gallery-lb {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.gallery-lb img {
  max-width: 95vw;
  max-height: 95vh;
  object-fit: contain;
  display: block;
  border-radius: 2px;
  pointer-events: none;
}
.gallery-lb video {
  max-width: 95vw;
  max-height: 95vh;
  display: block;
  cursor: default;
}
.gallery-lb__close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.3rem 0.5rem;
  transition: color 0.2s;
}
.gallery-lb__close:hover { color: #fff; }

.gallery-lb__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.80);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  padding: 0;
  z-index: 2;
}
.gallery-lb__nav:hover { background: rgba(255,255,255,0.22); color: #fff; }
.gallery-lb__nav:disabled { opacity: 0.25; cursor: default; }
.gallery-lb__nav--prev { left: 1.2rem; }
.gallery-lb__nav--next { right: 1.2rem; }
.gallery-lb__nav svg { fill: currentColor; pointer-events: none; }

.gallery-lb__counter {
  position: absolute;
  bottom: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  pointer-events: none;
}

@media (max-width: 560px) {
  .gallery-lb__nav { width: 38px; height: 38px; }
  .gallery-lb__nav--prev { left: 0.5rem; }
  .gallery-lb__nav--next { right: 0.5rem; }
}

@media (max-width: 640px) {
  .media-gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
}

/* =========================================================
   Our Work gallery page
   ========================================================= */
.work-section {
  margin-bottom: var(--space-xl);
}

.work-section:last-child { margin-bottom: 0; }

.work-section__heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: var(--fw-heading-heavy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-border-subtle);
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.work-gallery__item {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 0;
  background: var(--color-bg-main);
  position: relative;
  border-radius: var(--radius-sm);
}

.work-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.32s ease;
}

.work-gallery__item:hover img { transform: scale(1.04); }

.work-gallery__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(15, 28, 42, 0.78));
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.68rem;
  font-family: var(--font-body);
  font-weight: var(--fw-strong);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2rem 0.55rem 0.42rem;
  pointer-events: none;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .work-gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 560px) {
  .work-gallery { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .work-section__heading { font-size: 1.2rem; }
}

/* =========================================================
   Subpages grid — used on top-level service pages
   ========================================================= */
.subpages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: var(--space-sm);
  margin: var(--space-md) 0 var(--space-lg);
}

.subpage-card {
  display: block;
  padding: var(--space-md);
  background: var(--color-bg-main);
  border: 1px solid var(--color-border-subtle);
  border-left: 3px solid var(--color-primary-700);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease-out);
}

.subpage-card:hover {
  border-left-color: var(--color-glow-amber);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.subpage-card strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: var(--fw-heading-heavy);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-primary-900);
  margin-bottom: 0.4rem;
}

.subpage-card p {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .subpages-grid { grid-template-columns: 1fr 1fr; }
}
