/* ============================================================
   PLOMBERIE ET CHAUFFAGE S.O.S. CANADA INC.
   Production stylesheet — mobile-first
   ============================================================ */

/* ----- DESIGN TOKENS ---------------------------------------- */
:root {
  /* Brand */
  --navy-900: #0B2545;
  --navy-800: #133A6A;
  --navy-700: #1E4F87;
  --navy-50:  #E8EEF6;

  --orange-700: #B23E14;
  --orange-600: #D14B1F;
  --orange-500: #E85A2A;
  --orange-400: #F47A4F;
  --orange-50:  #FDEBE2;

  --gray-50:  #F6F8FB;
  --gray-100: #EDF0F4;
  --gray-200: #DDE3EB;
  --gray-300: #C2CAD4;
  --gray-500: #6B7686;
  --gray-700: #3A4554;
  --gray-900: #1A2332;

  --white: #FFFFFF;

  /* Type */
  --font: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-sm: 6px;

  --shadow-sm: 0 1px 2px rgba(11,37,69,.06), 0 1px 3px rgba(11,37,69,.04);
  --shadow-md: 0 4px 10px rgba(11,37,69,.06), 0 8px 24px rgba(11,37,69,.06);
  --shadow-lg: 0 12px 28px rgba(11,37,69,.10), 0 24px 56px rgba(11,37,69,.10);

  --transition: 180ms cubic-bezier(.2,.6,.2,1);
}

/* ----- RESET ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 110px; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
a { color: var(--navy-800); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-700); }
ul { list-style: none; padding: 0; }
input, select, textarea { font: inherit; }
::selection { background: var(--orange-700); color: #fff; }

/* ----- LAYOUT HELPERS --------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}
.section { padding: 72px 0; }
.section--dark { background: var(--navy-900); color: var(--white); }
.section--gray { background: var(--gray-50); }

.section__head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section__head--light { color: var(--white); }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange-700);
  margin-bottom: 12px;
}
.eyebrow--light { color: var(--orange-400); }
.section__title {
  font-size: clamp(28px, 4.2vw, 42px);
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 800;
  color: var(--navy-900);
  text-wrap: balance;
}
.section__title--light { color: var(--white); }
.section__title--left { text-align: left; }
.section__lead {
  margin-top: 16px;
  font-size: 17px;
  color: var(--gray-500);
  text-wrap: pretty;
}
.section__lead--light { color: rgba(255,255,255,.75); }

/* ----- BUTTONS ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition), border-color var(--transition);
  white-space: nowrap;
  line-height: 1.2;
}
.btn--primary {
  background: var(--orange-700);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(178,62,20,.36);
}
.btn--primary:hover {
  background: var(--navy-900);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(11,37,69,.30);
}
.btn--ghost {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.btn--ghost:hover {
  background: var(--navy-900);
  color: var(--white);
}
.btn--ghost--light {
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--ghost--light:hover {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--white);
}
.btn--sm { padding: 9px 14px; font-size: 14px; }
.btn--lg { padding: 14px 22px; font-size: 16px; }
.btn--xl { padding: 18px 28px; font-size: 18px; }
.btn--full { width: 100%; }

/* ----- TOPBAR ----------------------------------------------- */
.topbar {
  background: var(--navy-900);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  gap: 16px;
}
/* overflow:visible so the pulse-dot's expanding box-shadow halo isn't clipped.
   Text-overflow ellipsis is scoped to the text span (not the dot). */
.topbar__left { display: flex; align-items: center; gap: 8px; white-space: nowrap; min-width: 0; overflow: visible; }
.topbar__left > span:not(.pulse-dot) {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.topbar__right { display: flex; align-items: center; gap: 18px; }
.topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
}
.topbar__phone:hover { color: var(--orange-400); }
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.18);
  transition: background var(--transition);
}
.lang-toggle:hover { background: rgba(255,255,255,.08); }
.lang-toggle__active { color: var(--white); }
.lang-toggle__inactive { color: rgba(255,255,255,.45); }
.lang-toggle__sep { color: rgba(255,255,255,.3); }

.pulse-dot {
  display: inline-block;
  flex-shrink: 0;       /* never shrink under text pressure */
  margin-left: 2px;     /* breathing room so the halo never hits the container edge */
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34,197,94,.7);
  animation: pulse 2s infinite;
}
.pulse-dot--orange {
  background: var(--orange-500);
  box-shadow: 0 0 0 0 rgba(232,90,42,.7);
  animation-name: pulse-orange;
}
@keyframes pulse {
  0%  { box-shadow: 0 0 0 0 rgba(34,197,94,.6); }
  70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100%{ box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
@keyframes pulse-orange {
  0%  { box-shadow: 0 0 0 0 rgba(232,90,42,.6); }
  70% { box-shadow: 0 0 0 10px rgba(232,90,42,0); }
  100%{ box-shadow: 0 0 0 0 rgba(232,90,42,0); }
}

/* ----- HEADER / NAV ----------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--transition);
}
.header.is-scrolled { box-shadow: var(--shadow-sm); }
.header__inner {
  position: relative; /* positioning context for the desktop Services megamenu */
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-900);
}
.logo:hover { color: var(--navy-900); }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__text strong { font-size: 16px; font-weight: 800; letter-spacing: -.01em; }
.logo__text em { font-size: 11px; font-style: normal; font-weight: 600; color: var(--gray-500); letter-spacing: .04em; text-transform: uppercase; }
.logo--light .logo__text strong { color: var(--white); }
.logo--light .logo__text em { color: rgba(255,255,255,.6); }

.nav {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 4px;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-700);
  white-space: nowrap;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover { color: var(--navy-900); background: var(--gray-50); }
.nav__link.is-active,
.nav a.is-active { color: var(--navy-900); background: var(--gray-100); }

/* Backwards compat with .nav a selector elsewhere */
.nav > a { padding: 8px 14px; border-radius: var(--radius-sm); font-size: 15px; font-weight: 600; color: var(--gray-700); white-space: nowrap; }
.nav > a:hover { color: var(--navy-900); background: var(--gray-50); }

/* No position:relative here — the desktop megamenu anchors to .header__inner so it
   can center within the container instead of being clipped under a narrow nav item. */
.nav__item--has-menu { position: static; }
.nav__chevron {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.nav__item--has-menu.is-open .nav__chevron { transform: rotate(180deg); }
.nav__item--has-menu.is-open > .nav__link { color: var(--navy-900); background: var(--gray-100); }

.header__cta { display: none; }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  margin-left: auto;
  border-radius: var(--radius-sm);
  padding: 8px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav overlay — nav is moved to <body> by JS so fixed resolves to viewport */
.nav.is-open {
  display: flex;
  position: fixed;
  top: 110px; /* fallback; JS overrides with exact header bottom */
  left: 0;
  right: 0;
  overflow-y: auto;
  flex-direction: column;
  align-items: stretch; /* override base align-items:center so items fill full width */
  background: var(--white);
  padding: 16px 20px 32px;
  gap: 4px;
  z-index: 99;
  border-top: 1px solid var(--gray-100);
  animation: slideDown .25s ease-out;
}
.nav.is-open > a,
.nav.is-open > .nav__item--has-menu > .nav__link {
  padding: 14px 16px;
  font-size: 17px;
  border-bottom: 1px solid var(--gray-100);
  border-radius: 0;
  width: 100%;
  justify-content: space-between;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ----- HERO ------------------------------------------------- */
.hero {
  position: relative;
  background: var(--navy-900);
  color: var(--white);
  overflow: hidden;
  padding: 56px 0 0;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__placeholder {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,.04) 0,
      rgba(255,255,255,.04) 14px,
      rgba(255,255,255,.07) 14px,
      rgba(255,255,255,.07) 28px
    ),
    linear-gradient(135deg, #0B2545 0%, #133A6A 70%, #1E4F87 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 32px;
}
.hero__placeholder span {
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,37,69,.55) 0%, rgba(11,37,69,.85) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 36px;
  padding-top: 16px;
  padding-bottom: 88px;
}

.hero__content { max-width: 640px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  background: rgba(232,90,42,.14);
  border: 1px solid rgba(232,90,42,.4);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 22px;
}

.hero__title {
  font-size: clamp(34px, 5.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -.025em;
  font-weight: 800;
  text-wrap: balance;
}
.hero__title .accent { color: var(--orange-400); }
.hero__title .underline-accent {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.hero__title .underline-accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 6px;
  background: var(--orange-500);
  border-radius: 3px;
}

.hero__subtitle {
  margin-top: 18px;
  font-size: 17px;
  color: rgba(255,255,255,.78);
  max-width: 540px;
  text-wrap: pretty;
  line-height: 1.55;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 13px;
  color: rgba(255,255,255,.7);
}
.hero__trust li {
  display: flex;
  align-items: center;
  font-weight: 500;
  letter-spacing: .005em;
}
.hero__trust li + li::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  background: rgba(255,255,255,.35);
  border-radius: 50%;
  margin-right: 18px;
  margin-left: -10px;
}

/* Hero card — white panel, premium, matches service-page card system */
.hero__card {
  background: var(--white);
  color: var(--gray-900);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-lg);
}
.hero__card-head { padding-bottom: 16px; border-bottom: 1px solid var(--gray-100); margin-bottom: 16px; }
.hero__card-eyebrow {
  display: inline-block;
  color: var(--orange-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  margin-bottom: 8px;
}
.hero__card-title { font-size: 19px; font-weight: 800; letter-spacing: -.01em; color: var(--navy-900); }
.hero__card-steps { display: flex; flex-direction: column; gap: 16px; text-align: left; }
.hero__card-steps li {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: start;
  gap: 12px;
}
.hero__card-steps span {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--navy-50);
  color: var(--navy-900);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 12px;
  line-height: 1;
}
.hero__card-steps div { min-width: 0; }
.hero__card-steps strong {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: var(--navy-900);
  font-weight: 700;
  margin-top: 2px;
}
.hero__card-steps em {
  display: block;
  font-style: normal;
  font-size: 12.5px;
  color: var(--gray-500);
  margin-top: 2px;
  line-height: 1.5;
}

/* Trust strip below hero */
.trust-strip {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-top: 4px solid var(--orange-500);
  margin-top: -20px;
}
.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 0;
}
.trust-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.trust-strip__item:nth-child(even) { border-right: 0; }
.trust-strip__item:nth-last-child(-n+2) { border-bottom: 0; }
.trust-strip__item strong {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -.02em;
  line-height: 1;
}
.trust-strip__item span {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 6px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}
/* Tabular figures keep digit width fixed during count-up — no layout shift */
.trust-strip__item strong { font-variant-numeric: tabular-nums; }
/* Scroll reveal: hidden by default (only when JS is available); revealed on intersect */
.js .trust-strip__item {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .55s cubic-bezier(.2,.6,.2,1), transform .55s cubic-bezier(.2,.6,.2,1);
  will-change: opacity, transform;
}
.js .trust-strip__item.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .js .trust-strip__item { opacity: 1; transform: none; transition: none; }
}

/* ----- SERVICES --------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy-50);
}
.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--navy-50);
  color: var(--navy-800);
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -.01em;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.55;
  margin-bottom: 16px;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-800);
  white-space: nowrap;
}
.service-card__link:hover { color: var(--orange-700); }


.service-card--featured {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
  border-color: var(--navy-900);
}
.service-card--featured h3 { color: var(--white); }
.service-card--featured p { color: rgba(255,255,255,.75); }
.service-card--featured .service-card__icon {
  background: rgba(255,255,255,.1);
  color: var(--orange-400);
}
.service-card--featured .service-card__link { color: var(--orange-400); }
.service-card--featured .service-card__link:hover { color: var(--white); }
.service-card__tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--navy-900);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  padding: 4px 8px;
  border-radius: 4px;
}

/* ----- MEGAMENU (Services dropdown) ------------------------ */
.megamenu {
  display: none;
  position: absolute;
  top: calc(100% + 4px); /* small gap, no triangle */
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: min(840px, calc(100vw - 32px));
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(11,37,69,.18), 0 4px 16px rgba(11,37,69,.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s var(--transition), transform .18s var(--transition);
  z-index: 110;
}
.nav__item--has-menu.is-open .megamenu {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* Triangle/notch connector intentionally removed for a cleaner, premium look */
.megamenu__inner { padding: 24px; position: relative; background: var(--white); border-radius: var(--radius-lg); }
.megamenu__head { padding: 0 0 16px 4px; border-bottom: 1px solid var(--gray-100); margin-bottom: 16px; }
.megamenu__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange-700);
  margin-bottom: 6px;
}
.megamenu__lead { font-size: 14px; color: var(--gray-500); line-height: 1.5; }

.megamenu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.megamenu-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 14px;
  border-radius: var(--radius);
  color: var(--navy-900);
  transition: background var(--transition), transform var(--transition);
}
.megamenu-item:hover {
  background: var(--gray-50);
  color: var(--navy-900);
}
.megamenu-item__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--navy-50);
  color: var(--navy-800);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.megamenu-item:hover .megamenu-item__icon {
  background: var(--orange-50);
  color: var(--orange-700);
}
.megamenu-item__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1 1 auto;
}
.megamenu-item__body strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -.005em;
  line-height: 1.3;
}
.megamenu-item__body em {
  font-size: 12.5px;
  font-style: normal;
  color: var(--gray-500);
  line-height: 1.45;
}
.megamenu-item__tag {
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 2px;
  background: var(--navy-900);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 4px 7px;
  border-radius: 4px;
  line-height: 1;
  white-space: nowrap;
}
.megamenu-item--urgent .megamenu-item__icon {
  background: var(--orange-50);
  color: var(--orange-700);
}
.megamenu__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding: 14px 14px 6px;
  border-top: 1px solid var(--gray-100);
  font-size: 13px;
  color: var(--gray-500);
}
.megamenu__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy-900);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 9px 14px;
  border-radius: var(--radius);
  transition: background var(--transition);
  white-space: nowrap;
}
.megamenu__cta:hover { background: var(--orange-700); color: var(--white); }

/* Mobile nav — megamenu becomes a toggled accordion panel */
@media (max-width: 899px) {
  /* Services item: stack toggle + panel vertically */
  .nav.is-open .nav__item--has-menu {
    display: flex;
    flex-direction: column;
  }

  /* Accordion toggle: push chevron to far right */
  .nav.is-open > .nav__item--has-menu > .nav__link {
    justify-content: space-between;
  }

  /* Mobile chevron: larger for touch ergonomics and 2026 mobile standards.
     Tap target is already 44px+ via the button's 14px vertical padding. */
  .nav.is-open .nav__chevron {
    width: 22px;
    height: 22px;
    color: var(--gray-500);
  }
  .nav.is-open .nav__item--has-menu.is-open .nav__chevron {
    color: var(--orange-700);
  }

  /* When open: remove bottom divider — the panel provides the break */
  .nav.is-open .nav__item--has-menu.is-open > .nav__link {
    border-bottom: 0;
    background: var(--gray-50);
    color: var(--navy-900);
  }

  /* Megamenu panel — hidden by default (accordion closed) */
  .nav.is-open .megamenu {
    display: none;
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    width: auto;
    box-shadow: none;
    border: 0;
    border-left: 3px solid var(--orange-500);
    border-radius: 0;
    background: var(--gray-50);
    margin: 0;
    padding: 0;
  }

  /* Show panel when accordion is open */
  .nav.is-open .nav__item--has-menu.is-open .megamenu {
    display: block;
    animation: slideDown .2s ease-out;
  }

  .nav.is-open .megamenu::before { display: none; }

  /* Inner wrapper — no extra padding; children own their spacing */
  .nav.is-open .megamenu__inner {
    padding: 0;
    background: transparent;
    border-radius: 0;
  }

  /* Compact section label at top of panel */
  .nav.is-open .megamenu__head {
    padding: 10px 20px;
    margin-bottom: 0;
    border-bottom: 1px solid var(--gray-200);
  }

  /* Single-column service list */
  .nav.is-open .megamenu__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Individual service items — icon + title only */
  .nav.is-open .megamenu-item {
    padding: 11px 20px;
    border-radius: 0;
    gap: 12px;
    border-bottom: 1px solid var(--gray-100);
  }
  .nav.is-open .megamenu-item:last-child { border-bottom: 0; }

  .nav.is-open .megamenu-item__icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
  }

  /* Hide descriptions — keep list tight on small screens */
  .nav.is-open .megamenu-item__body em { display: none; }

  .nav.is-open .megamenu-item__body strong {
    font-size: 15px;
    font-weight: 600;
  }

  /* Phone CTA — natural footer at bottom of accordion */
  .nav.is-open .megamenu__foot {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 14px;
    margin-top: 0;
    border-top: 1px solid var(--gray-200);
    gap: 0;
    font-size: 13px;
  }

  .nav.is-open .megamenu__foot > span {
    margin-bottom: 10px;
    color: var(--gray-500);
  }

  .nav.is-open .megamenu__cta {
    justify-content: center;
    background: var(--orange-700);
    color: var(--white);
    font-size: 15px;
    padding: 12px 16px;
  }

  .nav.is-open .megamenu__cta:hover { background: var(--navy-900); }
}

/* ----- BREADCRUMBS ----------------------------------------- */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 18px 0 0;
  font-size: 13px;
  color: var(--gray-500);
}
.breadcrumbs a {
  color: var(--gray-500);
  font-weight: 500;
  transition: color var(--transition);
}
.breadcrumbs a:hover { color: var(--orange-700); }
.breadcrumbs > span[aria-hidden="true"] { color: var(--gray-300); }
.breadcrumbs > [aria-current="page"] {
  color: var(--navy-900);
  font-weight: 600;
}

/* Light variant for dark backgrounds (e.g. inside .svc-hero) */
.svc-hero .breadcrumbs { color: rgba(255,255,255,.6); position: relative; z-index: 1; }
.svc-hero .breadcrumbs a { color: rgba(255,255,255,.7); }
.svc-hero .breadcrumbs a:hover { color: var(--orange-400); }
.svc-hero .breadcrumbs > span[aria-hidden="true"] { color: rgba(255,255,255,.35); }
.svc-hero .breadcrumbs > [aria-current="page"] { color: var(--white); font-weight: 700; }

/* ----- SERVICE PAGE (hero + sections) ---------------------- */
.svc-hero {
  position: relative;
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
  color: var(--white);
  padding: 32px 0 64px;
  overflow: hidden;
}
.svc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 320px at 100% 0%, rgba(232,90,42,.12) 0%, transparent 60%),
    radial-gradient(700px 300px at 0% 100%, rgba(30,79,135,.35) 0%, transparent 60%);
  pointer-events: none;
}
.svc-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--orange-500) 50%, transparent 100%);
  opacity: .55;
  pointer-events: none;
}
.svc-hero__inner {
  position: relative;
  display: grid;
  gap: 32px;
  align-items: start;
  margin-top: 28px;
}
.svc-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(232,90,42,.16);
  border: 1px solid rgba(232,90,42,.4);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--orange-400);
  text-transform: uppercase;
}
.svc-hero__title {
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.1;
  letter-spacing: -.025em;
  font-weight: 800;
  margin-top: 16px;
  text-wrap: balance;
}
.svc-hero__title .accent { color: var(--orange-400); }
.svc-hero__lead {
  margin-top: 16px;
  font-size: 17px;
  color: rgba(255,255,255,.82);
  max-width: 620px;
  line-height: 1.6;
  text-wrap: pretty;
}
.svc-hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.svc-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 28px;
  font-size: 13.5px;
  color: rgba(255,255,255,.8);
}
.svc-hero__trust li { display: flex; align-items: center; gap: 8px; }
.svc-hero__trust svg { color: var(--orange-400); flex-shrink: 0; }

.svc-hero__card {
  background: var(--white);
  color: var(--gray-900);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}
.svc-hero__card-eyebrow {
  display: inline-block;
  background: var(--navy-50);
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: 4px;
  letter-spacing: .1em;
  margin-bottom: 10px;
  white-space: nowrap;
}
.svc-hero__card h2 { font-size: 20px; font-weight: 800; color: var(--navy-900); letter-spacing: -.01em; margin-bottom: 14px; }
.svc-hero__card ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.svc-hero__card ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--gray-700); line-height: 1.5; }
.svc-hero__card ul svg { flex-shrink: 0; margin-top: 3px; color: var(--orange-700); }
.svc-hero__card-cta {
  display: block;
  text-align: center;
  background: var(--orange-700);
  color: var(--white);
  font-weight: 700;
  padding: 14px;
  border-radius: var(--radius);
  font-size: 15px;
  transition: background var(--transition);
}
.svc-hero__card-cta:hover { background: var(--navy-900); color: var(--white); }

/* Service content sections */
.svc-section {
  padding: 64px 0;
}
.svc-section--gray { background: var(--gray-50); }
.svc-section__head { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.svc-section__title {
  font-size: clamp(26px, 3.6vw, 34px);
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -.02em;
  line-height: 1.2;
  text-wrap: balance;
}
.svc-section__lead {
  margin-top: 14px;
  font-size: 16px;
  color: var(--gray-500);
  text-wrap: pretty;
}

/* Service body grid (problems + interventions, etc.) */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.svc-block {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.svc-block h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -.01em;
  margin-bottom: 6px;
}
.svc-block .svc-block__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange-700);
  margin-bottom: 8px;
}
.svc-block p { color: var(--gray-700); font-size: 15px; line-height: 1.65; }
.svc-block ul { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.svc-block ul li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.55;
}
/* Bullet (outer orange ring + inner dot) painted via radial-gradient on a single ::before.
   Vertical alignment: top is calculated from first-line text center
   (line-height/2 = 0.775em) minus half the bullet height (7px). */
.svc-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(0.775em - 7px);
  width: 14px;
  height: 14px;
  background: radial-gradient(circle, var(--orange-500) 0 3px, var(--orange-50) 3px);
  border: 2px solid var(--orange-500);
  border-radius: 50%;
}

/* Trust strip on service pages */
.svc-trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 24px;
  background: var(--navy-50);
  border: 1px solid var(--navy-50);
  border-radius: var(--radius-lg);
  margin-top: 28px;
}
.svc-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--navy-900);
  line-height: 1.5;
}
.svc-trust__item svg { color: var(--navy-800); flex-shrink: 0; margin-top: 2px; }
.svc-trust__item strong { font-weight: 800; }

/* CTA strip on service pages */
.svc-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px 24px;
  background: var(--orange-700);
  color: var(--white);
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: 32px;
}
.svc-cta h2 {
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.2;
}
.svc-cta p { font-size: 15px; color: var(--white); max-width: 580px; margin: 0 auto; }
.svc-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  margin-top: 8px;
}
.svc-cta__buttons .btn--primary {
  background: var(--white);
  color: var(--orange-700);
}
.svc-cta__buttons .btn--primary:hover {
  background: var(--navy-900);
  color: var(--white);
}
.svc-cta__buttons .btn--ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.svc-cta__buttons .btn--ghost:hover {
  background: var(--white);
  color: var(--orange-700);
  border-color: var(--white);
}

/* Areas served strip on service pages */
.svc-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.svc-areas li {
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 56px 18px 20px;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-900);
  transition: background var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--gray-50); }
.faq-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--navy-800);
  border-bottom: 2px solid var(--navy-800);
  transform: translateY(-70%) rotate(45deg);
  transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq-item[open] summary { background: var(--gray-50); border-bottom: 1px solid var(--gray-100); }
.faq-item__answer {
  padding: 16px 22px 20px;
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.65;
}
.faq-item__answer p { margin-bottom: 10px; }
.faq-item__answer p:last-child { margin-bottom: 0; }

/* Back-to-services link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  color: var(--navy-800);
  font-size: 14px;
  font-weight: 700;
  transition: color var(--transition), transform var(--transition);
}
.back-link:hover { color: var(--orange-700); transform: translateX(-2px); }
.back-link svg { transition: transform var(--transition); }
.back-link:hover svg { transform: translateX(-3px); }

/* Sticky mobile CTA bar — visible on all pages on mobile only */
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  box-shadow: 0 -4px 16px rgba(11,37,69,.08);
  padding: 10px 12px;
  gap: 8px;
}
.mobile-cta-bar .btn { flex: 1; padding: 13px 12px; font-size: 14px; }
@media (max-width: 899px) {
  .mobile-cta-bar { display: flex; }
  /* push footer up so it isn't covered */
  body.has-mobile-cta { padding-bottom: 72px; }
}

/* ----- WHY -------------------------------------------------- */
.why {}
.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.why__item {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.why__num {
  font-size: 14px;
  font-weight: 800;
  color: var(--orange-400);
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.why__item h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.01em;
  margin-bottom: 8px;
}
.why__item p {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
}
.why__cta {
  margin-top: 48px;
  text-align: center;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(232,90,42,.08);
  border: 1px solid rgba(232,90,42,.2);
}
.why__cta p { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.why__cta-buttons { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }

/* ----- AREAS ------------------------------------------------ */
.areas__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.area-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), border-color var(--transition);
}
.area-card:hover { transform: translateY(-2px); border-color: var(--navy-50); }
.area-card--primary {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}
.area-card--ontario {
  background: var(--orange-700);
  color: var(--white);
  border-color: var(--orange-700);
}
.area-card.area-card--ontario h3 { color: var(--white); }
.area-card.area-card--ontario p { color: var(--white); }
.area-card.area-card--ontario ul li {
  background: rgba(0,0,0,.12);
  color: var(--white);
  font-weight: 600;
}
.area-card--ontario .area-card__province {
  color: var(--white);
}
.area-card__province {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange-700);
  margin-bottom: 8px;
}
.area-card--primary .area-card__province {
  color: var(--orange-400);
}
.area-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -.01em;
  margin-bottom: 6px;
}
.area-card--primary h3 { color: var(--white); }
.area-card p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 14px;
}
.area-card--primary p { color: rgba(255,255,255,.7); }
.area-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.area-card ul li {
  font-size: 13px;
  padding: 4px 10px;
  background: var(--gray-50);
  border-radius: 100px;
  color: var(--gray-700);
  font-weight: 500;
  white-space: nowrap;
}
.area-card--primary ul li {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.9);
}


/* ----- TESTIMONIALS ----------------------------------------- */
.rating-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  font-size: 15px;
  color: var(--gray-700);
  flex-wrap: wrap;
  justify-content: center;
}
.rating-row strong { color: var(--navy-900); font-weight: 800; }
.stars {
  display: inline-flex;
  gap: 2px;
  color: #F5A623;
  font-size: 18px;
  line-height: 1;
}
.reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.review {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.review .stars { font-size: 16px; margin-bottom: 12px; }
.review blockquote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-700);
  margin-bottom: 16px;
  font-style: normal;
}
.review footer { font-size: 13px; }
.review footer strong { display: block; color: var(--navy-900); font-size: 14px; font-weight: 700; }
.review footer span { color: var(--gray-500); }

/* ----- ABOUT ------------------------------------------------ */
.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.about__image {
  position: relative;
}
/* Team/business photo: fills its column, crops cleanly across breakpoints. */
.about__photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;       /* matches landscape team photo composition */
  min-height: 280px;          /* keeps a meaningful visual on narrow screens */
  object-fit: cover;
  object-position: center 42%; /* slight upward bias keeps faces in frame when cropped */
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  background: var(--gray-100); /* graceful fallback while loading */
}
@media (min-width: 900px) {
  .about__photo { aspect-ratio: 4 / 3; min-height: 360px; }
}
.img-placeholder {
  background:
    repeating-linear-gradient(
      135deg,
      var(--gray-100) 0,
      var(--gray-100) 10px,
      var(--gray-50) 10px,
      var(--gray-50) 20px
    );
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border: 1px solid var(--gray-200);
  min-height: 280px;
  color: var(--gray-500);
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  text-align: center;
}
.img-placeholder--tall { min-height: 360px; }
.about__stat {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--navy-900);
  color: var(--white);
  padding: 18px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
}
.about__stat strong {
  font-size: 36px;
  font-weight: 800;
  color: var(--orange-400);
  letter-spacing: -.02em;
  line-height: 1;
}
.about__stat span { font-size: 13px; line-height: 1.4; color: rgba(255,255,255,.85); }

.about__content p {
  margin-top: 16px;
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.7;
}
.about__list {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}
.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-700);
}
.about__list svg { flex-shrink: 0; margin-top: 3px; }
.about__cta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ----- CONTACT ---------------------------------------------- */
/* Vertical single-column flow — calm, premium, easy to scan.
   All blocks share the same max-width and centered layout for visual rhythm. */
.contact {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 760px;
  margin: 0 auto;
}

/* Emergency banner — primary CTA, navy background, balanced text + button on desktop */
.contact__urgent {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--navy-900);
  color: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.contact__urgent-text { display: flex; flex-direction: column; gap: 8px; }
.contact__urgent h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.01em;
  margin: 0;
}
.contact__urgent p {
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.contact__urgent-cta {
  align-self: stretch;
  justify-content: center;
}
@media (min-width: 768px) {
  .contact__urgent {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 32px 36px;
  }
  .contact__urgent-cta { align-self: center; flex-shrink: 0; }
}

/* Contact details — compact cards instead of long row list. 2-col grid on tablet/desktop. */
.contact__details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
}
.contact__details li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-100);
}
.contact__details li:last-child { border-bottom: 0; }
@media (min-width: 768px) {
  .contact__details { grid-template-columns: 1fr 1fr; }
  .contact__details li {
    border-bottom: 1px solid var(--gray-100);
    border-right: 1px solid var(--gray-100);
  }
  /* Right column: no right border */
  .contact__details li:nth-child(even) { border-right: 0; }
  /* Last row: no bottom border (handles both odd and even total counts) */
  .contact__details li:nth-last-child(-n+2):nth-child(odd),
  .contact__details li:nth-last-child(1) { border-bottom: 0; }
  .contact__details li:nth-last-child(2):nth-child(odd) ~ li { border-bottom: 0; }
}
.contact__icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  background: var(--navy-50);
  color: var(--navy-800);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact__details strong {
  display: block;
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 3px;
}
.contact__details a, .contact__details span {
  font-size: 15px;
  color: var(--navy-900);
  font-weight: 600;
  line-height: 1.5;
}
.contact__details a:hover { color: var(--orange-700); }

/* What happens next — reassurance block (replaces the map slot) */
.contact__next {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.contact__next-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange-700);
  margin-bottom: 14px;
}
.contact__next-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  list-style: none;
  padding: 0;
}
.contact__next-steps li {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 14px;
}
.contact__next-steps span {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--navy-50);
  color: var(--navy-900);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  line-height: 1;
}
.contact__next-steps div { min-width: 0; }
.contact__next-steps strong {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: var(--navy-900);
  font-weight: 700;
  margin-top: 3px;
}
.contact__next-steps em {
  display: block;
  font-style: normal;
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 2px;
  line-height: 1.5;
}

/* Form */
.contact__form {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
}
.contact__form h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -.01em;
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.field > span {
  font-size: 13px;
  color: var(--gray-700);
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--gray-900);
  font-size: 15px;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy-800);
  box-shadow: 0 0 0 3px rgba(19,58,106,.12);
}
.field--check {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--gray-50);
  border-radius: var(--radius);
  margin: 8px 0 18px;
}
.field--check input { width: 18px; height: 18px; accent-color: var(--orange-500); }
.field--check span { font-size: 14px; font-weight: 600; color: var(--navy-900); }
.form-fineprint {
  margin-top: 14px;
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.55;
  text-align: center;
}
.form-success {
  margin-top: 18px;
  padding: 16px;
  background: #E8F5EE;
  border: 1px solid #B4DEC4;
  border-radius: var(--radius);
  color: #1A5D3A;
}
.form-success strong { display: block; font-size: 15px; margin-bottom: 4px; }
.form-success span { font-size: 14px; }

/* ----- CTA BAND --------------------------------------------- */
.cta-band {
  background: var(--orange-700);
  color: var(--white);
  padding: 48px 0;
}
.cta-band .eyebrow,
.cta-band .eyebrow--light {
  color: var(--white);
}
.cta-band__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(24px, 3.6vw, 34px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-top: 8px;
  text-wrap: balance;
}
.cta-band .btn--primary {
  background: var(--white);
  color: var(--orange-700);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.cta-band .btn--primary:hover {
  background: var(--navy-900);
  color: var(--white);
}

/* ----- FOOTER ----------------------------------------------- */
.footer {
  background: #06182E;
  color: rgba(255,255,255,.7);
  padding: 56px 0 0;
}
.footer__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer__brand p {
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.7;
  max-width: 360px;
}
.footer__phone,
.footer__email {
  display: block;
  color: var(--white);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 4px;
}
.footer__email { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.7); }
.footer__phone:hover { color: var(--orange-400); }
.footer__credentials {
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.5) !important;
  margin: 4px 0 12px !important;
  text-transform: uppercase;
}
.footer__col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--orange-400); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.footer__legal a { color: rgba(255,255,255,.65); font-size: 12px; }
.footer__legal a:hover { color: var(--orange-400); }

/* ----- FLOATING CALL BUTTON --------------------------------- */
.fab-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--orange-700);
  color: var(--white);
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(178,62,20,.42), 0 4px 12px rgba(0,0,0,.15);
  animation: fab-bounce 2s ease-in-out infinite;
}
.fab-call:hover {
  background: var(--navy-900);
  color: var(--white);
  transform: translateY(-2px);
}
@keyframes fab-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* ============================================================
   RESPONSIVE — TABLET & DESKTOP
   ============================================================ */
@media (min-width: 640px) {
  .section { padding: 88px 0; }
  .container { padding-inline: 32px; }
  .hero__ctas { flex-direction: row; flex-wrap: wrap; }
  .svc-hero__ctas { flex-direction: row; flex-wrap: wrap; }
  .trust-strip__inner { grid-template-columns: repeat(4, 1fr); }
  .trust-strip__item { border-right: 1px solid var(--gray-100); border-bottom: 0; padding: 28px 16px; }
  .trust-strip__item:last-child { border-right: 0; }
  .trust-strip__item strong { font-size: 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .reviews { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .areas__list { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .why__cta-buttons { flex-direction: row; justify-content: center; flex-wrap: wrap; }
  .cta-band__inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .footer__main { grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; }
  .footer__bottom-inner { flex-direction: row; justify-content: space-between; align-items: center; }
  .fab-call { bottom: 24px; right: 24px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .svc-trust { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .svc-cta__buttons { flex-direction: row; justify-content: center; }
}

@media (min-width: 900px) {
  .section { padding: 104px 0; }
  .menu-toggle { display: none; }
  .nav { display: inline-flex; }
  .header__cta { display: inline-flex; }
  .nav.is-open { position: static; inset: auto; top: auto; height: auto; overflow-y: visible; flex-direction: row; align-items: center; padding: 0; border-top: 0; background: transparent; }
  .nav.is-open > a,
  .nav.is-open > .nav__item--has-menu > .nav__link { padding: 8px 14px; border-bottom: 0; border-radius: var(--radius-sm); font-size: 15px; width: auto; justify-content: flex-start; }

  .hero { padding: 64px 0 0; }
  .hero__inner {
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    align-items: center;
    padding-bottom: 128px;
  }
  .hero__card { margin-top: 0; }
  .trust-strip { margin-top: -40px; }

  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why__grid { grid-template-columns: repeat(3, 1fr); }
  .reviews { grid-template-columns: repeat(3, 1fr); }
  .areas__list { grid-template-columns: repeat(4, 1fr); gap: 24px; }

  .about { grid-template-columns: 1fr 1.2fr; gap: 64px; }
  /* .contact stays vertical (single-column) at all breakpoints — see main rule */

  /* Service page hero 2-column on desktop */
  .svc-hero { padding: 40px 0 96px; }
  .svc-hero__inner { grid-template-columns: 1.5fr 1fr; gap: 56px; align-items: start; margin-top: 36px; }
  .svc-section { padding: 96px 0; }

  .fab-call { display: none; } /* Desktop has prominent header CTA */
}


/* ----- ZONE CARDS (zones-desservies page) ------------------ */
.zones-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.zone-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), border-color var(--transition);
}
.zone-card:hover { transform: translateY(-2px); border-color: var(--navy-50); }
.zone-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.zone-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -.015em;
  line-height: 1.15;
}
.zone-card__tag {
  background: var(--navy-900);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.zone-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
  margin-bottom: 16px;
}
.zone-card__sub {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange-700);
  margin-bottom: 8px;
}
.zone-card__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.zone-card__list li {
  font-size: 13px;
  background: var(--gray-50);
  color: var(--navy-900);
  padding: 5px 11px;
  border-radius: 100px;
  font-weight: 500;
  white-space: nowrap;
}
.zone-card--featured {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
  border-color: var(--navy-900);
}
.zone-card--featured h3 { color: var(--white); }
.zone-card--featured p { color: rgba(255,255,255,.78); }
.zone-card--featured .zone-card__sub { color: var(--orange-400); }
.zone-card--featured .zone-card__list li {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
}

@media (min-width: 640px) {
  .zones-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (min-width: 900px) {
  .zones-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* ----- ACCESSIBILITY / REDUCED MOTION ----------------------- */

/* Visible keyboard-only focus indicator — WCAG 2.4.7 */
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--orange-700);
  outline-offset: 3px;
  border-radius: 4px;
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ----- PRINT ------------------------------------------------ */
@media print {
  .topbar, .header, .fab-call, .cta-band, .footer__bottom, .mobile-cta-bar, iframe { display: none; }
  body { color: #000; }
}
