/* =========================================================
   PLOMBERIE CAPITAINE — Site styles
   Brand: navy #263c84 · accent orange #ff892a · dark #32373c
   Design language: photographic, section bands, no glass/gradients,
   understated "+" text CTAs, small orange wrench glyphs
   ========================================================= */

:root {
  /* PALETTE — do not hardcode these values elsewhere */
  --primary: #263c84;
  --primary-rgb: 38, 60, 132;
  --primary-dark: #141f45;
  --primary-dark-rgb: 20, 31, 69;
  --primary-light: #4e6ccc;
  --primary-light-rgb: 78, 108, 204;
  --secondary: #32373c;
  --secondary-rgb: 50, 55, 60;
  --secondary-dark: #0d0e0f;
  --secondary-dark-rgb: 13, 14, 15;
  --secondary-light: #656f79;
  --secondary-light-rgb: 101, 111, 121;
  --accent: #ff892a;
  --accent-rgb: 255, 137, 42;
  --accent-dark: #d76000;
  --accent-dark-rgb: 215, 96, 0;
  --text: #111827;
  --text-rgb: 17, 24, 39;
  --text-light: #828c9c;
  --text-light-rgb: 130, 140, 156;
  --text-muted: #848b99;
  --text-muted-rgb: 132, 139, 153;
  --background: #ffffff;
  --background-rgb: 255, 255, 255;
  --bg: #ffffff;
  --bg-rgb: 255, 255, 255;
  --bg-alt: #f8fafc;
  --bg-alt-rgb: 248, 250, 252;
  --bg-dark: #111827;
  --bg-dark-rgb: 17, 24, 39;
  --surface: #ffffff;
  --surface-rgb: 255, 255, 255;
  --surface-dark: #f3f4f6;
  --surface-dark-rgb: 243, 244, 246;
  --border: #909296;
  --border-rgb: 144, 146, 150;
  --border-light: #f3f4f6;
  --border-light-rgb: 243, 244, 246;
  --accent-on-light: #e67011;
  --accent-on-light-rgb: 230, 112, 17;
  --primary-ink: #ffffff;
  --primary-ink-rgb: 255, 255, 255;
  --secondary-ink: #ffffff;
  --secondary-ink-rgb: 255, 255, 255;
  --accent-ink: #111827;
  --accent-ink-rgb: 17, 24, 39;
  --bg-alt-ink: #111827;
  --bg-alt-ink-rgb: 17, 24, 39;

  /* Utility tokens */
  --font-sans: 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --container: 1180px;
  --gutter: 24px;
  --radius-sm: 0;      /* Design DNA: no rounded corners */
  --radius: 0;
  --transition: 200ms ease;
}

/* =============== BASE =============== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
h1, h2, h3, h4, h5 { font-family: var(--font-sans); color: var(--primary); margin: 0 0 .6em; line-height: 1.2; font-weight: 700; }
p { margin: 0 0 1em; }

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

.section { padding: 84px 0; }
.section--alt { background: var(--bg-alt); }

/* Skip content link (a11y) */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* =============== TOP BAR =============== */
.topbar {
  background: var(--surface-dark);
  border-bottom: 1px solid rgba(var(--border-rgb), .25);
  font-size: 12px;
  color: var(--secondary);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 32px;
  gap: 16px;
}
.topbar__left, .topbar__right {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}
.lang-switch {
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: .04em;
}
.topbar__label {
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.topbar__phone {
  color: var(--primary);
  font-weight: 800;
  white-space: nowrap;
}
.topbar__phone:hover { color: var(--primary-dark); }
.topbar__social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; color: var(--primary);
}

/* =============== HEADER =============== */
.header {
  background: var(--background);
  border-bottom: 1px solid rgba(var(--border-rgb), .18);
  position: sticky; top: 0; z-index: 40;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { display: inline-flex; align-items: center; }
.brand__logo { width: 180px; max-height: 76px; object-fit: contain; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__item { position: relative; }
.nav__link {
  display: inline-block;
  padding: 10px 14px;
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: .08em;
  font-size: 13px;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
}
.nav__link:hover { color: var(--primary); border-bottom-color: var(--accent); }
.nav__link.active { color: var(--primary); border-bottom-color: var(--accent); }
.nav__caret {
  display: inline-block;
  font-size: 10px;
  margin-left: 4px;
  transform: translateY(-1px);
}

.nav__sub {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 260px;
  background: var(--background);
  border-top: 3px solid var(--accent);
  border-left: 1px solid rgba(var(--border-rgb), .2);
  border-right: 1px solid rgba(var(--border-rgb), .2);
  border-bottom: 1px solid rgba(var(--border-rgb), .2);
  list-style: none;
  margin: 0; padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity var(--transition), transform var(--transition), visibility 0s linear var(--transition);
  z-index: 30;
  box-shadow: 0 10px 30px rgba(var(--secondary-rgb), .08);
}
.nav__item--has-sub:hover .nav__sub,
.nav__item--has-sub:focus-within .nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity var(--transition), transform var(--transition), visibility 0s;
}
.nav__sub a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: .02em;
}
.nav__sub a:hover {
  background: var(--bg-alt);
  color: var(--primary);
}

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px; height: 44px;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--primary);
  margin: 5px 0;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  background: var(--background);
  border-bottom: 1px solid rgba(var(--border-rgb), .18);
  position: sticky; top: 0; z-index: 39;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav ul {
  list-style: none;
  margin: 0; padding: 8px 0;
}
.mobile-nav a {
  display: block;
  padding: 12px 22px;
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: .06em;
  font-size: 14px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(var(--border-rgb), .12);
}
.mobile-nav a.active { color: var(--primary); border-left: 3px solid var(--accent); padding-left: 19px; }
.mobile-nav__sub {
  text-transform: none !important;
  font-weight: 500 !important;
  padding-left: 34px !important;
  color: var(--secondary-light) !important;
}
.mobile-nav__cta a {
  background: var(--accent);
  color: var(--accent-ink);
  text-align: center;
  margin: 8px 22px;
  padding: 12px 18px;
  border-bottom: 0;
  letter-spacing: .05em;
}

/* =============== CTA style — "+ Text" understated links =============== */
.cta-plus {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--background);
  border-bottom: 1px solid transparent;
  padding: 4px 0;
  transition: color var(--transition), border-color var(--transition);
}
.cta-plus:hover {
  color: var(--accent);
  border-bottom-color: currentColor;
}
.cta-plus--dark {
  color: var(--primary);
}
.cta-plus--dark:hover {
  color: var(--accent-dark);
}
.cta-plus--on-dark {
  color: var(--background);
}
.cta-plus--on-dark:hover {
  color: var(--accent);
}

/* =============== CTA BUTTONS — prominent action-oriented =============== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  cursor: pointer;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
}
.cta-btn:hover { transform: translateY(-1px); }
.cta-btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.cta-btn--primary:hover {
  background: var(--accent-dark);
  color: var(--background);
  border-color: var(--accent-dark);
}
.cta-btn--outline-white {
  background: transparent;
  color: var(--background);
  border-color: var(--background);
}
.cta-btn--outline-white:hover {
  background: var(--background);
  color: var(--primary);
  border-color: var(--background);
}
.cta-btn--solid-white {
  background: var(--background);
  color: var(--primary-dark);
  border-color: var(--background);
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(var(--secondary-dark-rgb), .22);
}
.cta-btn--solid-white:hover {
  background: var(--primary-dark);
  color: var(--background);
  border-color: var(--primary-dark);
  box-shadow: 0 8px 20px rgba(var(--secondary-dark-rgb), .28);
}
.cta-btn--outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.cta-btn--outline-primary:hover {
  background: var(--primary);
  color: var(--background);
  border-color: var(--primary);
}
.cta-btn--solid-primary {
  background: var(--primary);
  color: var(--background);
  border-color: var(--primary);
}
.cta-btn--solid-primary:hover {
  background: var(--primary-dark);
  color: var(--background);
  border-color: var(--primary-dark);
}
.cta-btn--sm {
  padding: 10px 18px;
  font-size: 12px;
  letter-spacing: .08em;
}

/* =============== HERO =============== */
.hero {
  position: relative;
  min-height: 560px;
  color: var(--background);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(var(--secondary-dark-rgb), .55) 0%, rgba(var(--secondary-dark-rgb), .25) 60%, rgba(var(--secondary-dark-rgb), .45) 100%);
}
.hero__container {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero__panel {
  background: var(--accent-dark);
  color: var(--text);
  padding: 40px 44px;
  max-width: 500px;
  text-align: center;
  border-top: 6px solid var(--primary);
}
.hero__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text);
}
.hero__title {
  color: var(--background);
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 800;
  letter-spacing: .04em;
  margin: 0 0 6px;
  text-shadow: 0 2px 4px rgba(var(--secondary-dark-rgb), .5);
}
.hero__subtitle {
  color: var(--background);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  letter-spacing: .04em;
  margin: 0 0 18px;
  text-shadow: 0 1px 3px rgba(var(--secondary-dark-rgb), .5);
}
.hero__body {
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 18px;
}
.hero__phone {
  display: block;
  color: var(--background);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  letter-spacing: .04em;
  margin: 6px 0 14px;
  white-space: nowrap;
  text-shadow: 0 2px 4px rgba(var(--secondary-dark-rgb), .5);
}
.hero__phone:hover { color: var(--primary-dark); }
.hero__ctas {
  display: flex;
  justify-content: center;
}
.hero__ctas .cta-plus {
  color: var(--text);
  font-weight: 800;
}
.hero__ctas .cta-plus:hover {
  color: var(--primary-dark);
  border-bottom-color: currentColor;
}

/* =============== 15 ANS D'EXPÉRIENCE =============== */
.experience { padding-top: 80px; padding-bottom: 80px; }
.experience__grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: center;
}
.experience__brand { text-align: left; }
.experience__logo {
  width: 220px;
  max-width: 100%;
  margin-bottom: 22px;
}
.experience__years {
  color: var(--primary);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  margin: 0 0 8px;
  letter-spacing: .01em;
}
.experience__caption {
  color: var(--secondary-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  margin: 0;
}
.experience__copy p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--secondary);
  margin-bottom: 14px;
}
.experience__copy .cta-plus--dark {
  margin-top: 4px;
}

/* =============== THREE COLOR TILES =============== */
.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.tile {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  display: block;
  color: var(--background);
  background: var(--primary-dark);
}
.tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.tile:hover img { transform: scale(1.04); }
.tile__overlay {
  position: absolute; inset: 0;
  background: rgba(var(--primary-rgb), .82);
  transition: background var(--transition);
}
.tile--orange .tile__overlay {
  background: rgba(var(--accent-dark-rgb), .88);
}
.tile:hover .tile__overlay {
  background: rgba(var(--primary-rgb), .72);
}
.tile--orange:hover .tile__overlay {
  background: rgba(var(--accent-dark-rgb), .78);
}
.tile__label {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}
.tile__label h3 {
  color: var(--background);
  font-size: clamp(22px, 2.3vw, 28px);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0 0 14px;
  text-shadow: 0 2px 4px rgba(var(--secondary-dark-rgb), .3);
}
.tile__label .cta-plus {
  color: var(--background);
}
.tile:hover .tile__label .cta-plus {
  border-bottom-color: currentColor;
}

/* =============== SECTION HEADS =============== */
.section-head {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 780px;
}
.section-head--left { text-align: left; margin-left: 0; }
.section-head__eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 8px;
  position: relative;
  padding-left: 34px;
  display: inline-block;
}
.section-head__eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 2px;
  background: var(--accent);
}
.section-head--left .section-head__eyebrow { padding-left: 0; }
.section-head--left .section-head__eyebrow::before { display: none; }
.section-head__title {
  color: var(--primary);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: .04em;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.section-head__sub {
  color: var(--secondary);
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}

/* =============== LA DIFFÉRENCE =============== */
.difference { padding: 84px 0; background: var(--background); }
.difference__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
  padding: 44px 52px;
  background: var(--bg-alt);
  border-left: 4px solid var(--accent);
  box-shadow: 0 2px 20px rgba(var(--secondary-dark-rgb), .04);
}
.diff-list {
  list-style: none;
  margin: 0; padding: 0;
}
.diff-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
  border-bottom: 1px solid rgba(var(--border-rgb), .15);
}
.diff-list li:last-child { border-bottom: 0; }
.diff-list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  width: 20px; height: 20px;
  flex: 0 0 20px;
}
.difference__copy p {
  color: var(--secondary);
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 12px;
}

/* =============== SECONDARY SERVICES LIST =============== */
.services-list { padding: 84px 0; }
.services-list__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(var(--border-rgb), .3);
  border-left: 1px solid rgba(var(--border-rgb), .3);
}
.service-row {
  padding: 0;
  background: var(--background);
  border-right: 1px solid rgba(var(--border-rgb), .3);
  border-bottom: 1px solid rgba(var(--border-rgb), .3);
  display: flex;
  flex-direction: column;
}
.service-row__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-dark);
}
.service-row__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}
.service-row:hover .service-row__media img {
  transform: scale(1.04);
}
.service-row__title,
.service-row__body,
.service-row__cta {
  margin-left: 28px;
  margin-right: 28px;
}
.service-row__title {
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
  margin-top: 22px;
  margin-bottom: 0;
  letter-spacing: .02em;
}
.service-row__body {
  color: var(--secondary);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 10px;
  margin-bottom: 0;
  flex: 1;
}
.service-row .cta-plus--dark,
.service-row__cta {
  align-self: flex-start;
  margin-top: 14px;
  margin-bottom: 28px;
}

/* Tile CTA: inside <a>, solid fill so ink/surface contrast is verifiable.
   Disable extra hover-translate to avoid double motion. */
.tile .tile__cta {
  background: var(--background);
  color: var(--primary);
  border-color: var(--background);
  margin-top: 4px;
  pointer-events: none;
}
.tile--orange .tile__cta {
  color: var(--accent-dark);
}
.tile:hover .tile__cta {
  background: var(--background);
  color: var(--primary-dark);
  border-color: var(--background);
}
.tile--orange:hover .tile__cta {
  background: var(--background);
  color: var(--accent-dark);
  border-color: var(--background);
}

/* Feature band CTA aligned left */
.feature-band__cta {
  align-self: flex-start;
  margin-top: 4px;
}

/* =============== FEATURED CTA BAND =============== */
.feature-band {
  display: grid;
  grid-template-columns: 1fr 2fr;
  min-height: 380px;
}
.feature-band__text {
  background: var(--primary);
  color: var(--background);
  padding: 60px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}
.feature-band__text h2 {
  color: var(--background);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}
.feature-band__image {
  position: relative;
  overflow: hidden;
}
.feature-band__image img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

/* =============== TRUST / CERTIFICATIONS =============== */
.trust { background: var(--bg-alt); }
.trust__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  padding: 20px 0 0;
}
.trust__badge img {
  max-height: 88px;
  width: auto;
  object-fit: contain;
  filter: none;
}

/* =============== FINAL CTA =============== */
.final-cta {
  background: var(--primary);
  color: var(--background);
  padding: 46px 0;
}
.final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.final-cta__text h2 {
  color: var(--background);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: .02em;
}
.final-cta__text p {
  color: var(--background);
  margin: 0;
  opacity: .9;
  font-size: 15px;
}
.final-cta__actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.phone-block {
  display: inline-flex;
  flex-direction: column;
  color: var(--background);
  padding: 8px 22px;
  border-left: 3px solid var(--accent);
  line-height: 1.1;
}
.phone-block__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  opacity: .85;
  margin-bottom: 4px;
}
.phone-block__number {
  font-size: 26px;
  font-weight: 800;
  white-space: nowrap;
}
.phone-block:hover .phone-block__number { color: var(--accent); }

/* =============== FOOTER =============== */
.footer {
  background: var(--background);
  color: var(--secondary);
  padding-top: 60px;
  border-top: 1px solid rgba(var(--border-rgb), .2);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr 1.1fr;
  gap: 44px;
  padding-bottom: 40px;
  align-items: start;
}
.footer__logo {
  width: 180px; max-width: 100%;
  margin-bottom: 14px;
}
.footer__tag {
  color: var(--secondary-light);
  font-size: 12px;
  letter-spacing: .04em;
  margin: 0 0 14px;
}
.footer__note {
  color: var(--secondary);
  font-size: 13px;
  margin: 0 0 14px;
  line-height: 1.55;
}
.footer__social {
  display: flex; gap: 10px;
}
.footer__social a {
  width: 34px; height: 34px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: var(--accent);
  color: var(--accent-ink);
  transition: background var(--transition), color var(--transition);
}
.footer__social a:hover {
  background: var(--primary);
  color: var(--primary-ink);
}
.footer__title {
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .1em;
  margin: 0 0 16px;
  text-transform: uppercase;
}
.footer__title--sub {
  margin-top: 22px;
}
.footer__hours-emerg {
  color: var(--primary);
  font-weight: 800;
  padding-top: 8px !important;
  letter-spacing: .02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer__hours-emerg::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.footer__regions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 14px;
  margin-bottom: 10px;
}
.footer__regions li {
  padding: 3px 0 3px 14px;
  position: relative;
  font-size: 14px;
  line-height: 1.6;
}
.footer__regions li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px; height: 6px;
  background: var(--accent);
}
.footer__list {
  list-style: none;
  margin: 0; padding: 0;
}
.footer__list li {
  padding: 4px 0;
  font-size: 14px;
  color: var(--secondary);
}
.footer__list--tight li { padding: 2px 0; }
.footer__list a {
  color: var(--secondary);
}
.footer__list a:hover { color: var(--primary); }
.footer__phone {
  font-weight: 700;
  color: var(--primary) !important;
  white-space: nowrap;
}
.footer__region {
  color: var(--secondary);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 12px;
}
.footer__list-small {
  color: var(--secondary-light);
  font-size: 12px;
  margin-top: 6px;
}

.footer__badges {
  background: var(--bg-alt);
  padding: 26px 0;
  border-top: 1px solid rgba(var(--border-rgb), .2);
}
.footer__badges-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
.footer__badges-inner img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}

.footer__bottom {
  background: var(--secondary);
  color: var(--background);
  padding: 18px 0;
  font-size: 12px;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p {
  margin: 0;
  color: var(--background);
  opacity: .85;
}

/* =============== STICKY MOBILE CALL BAR =============== */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 14px 16px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  font-size: 14px;
  box-shadow: 0 -6px 18px rgba(var(--secondary-dark-rgb), .18);
  white-space: nowrap;
}
.sticky-call svg { flex: 0 0 auto; }

/* =============== RESPONSIVE =============== */
@media (max-width: 1080px) {
  .nav__link { padding: 10px 10px; font-size: 12px; }
  .brand__logo { width: 150px; max-height: 66px; }
}

@media (max-width: 980px) {
  .header__inner { padding-top: 12px; padding-bottom: 12px; }
  .nav { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; flex-direction: column; }
  .topbar__label { display: none; }

  .hero { min-height: 480px; }
  .hero__container { justify-content: center; padding-top: 40px; padding-bottom: 40px; }
  .hero__panel { max-width: 100%; padding: 32px 24px; }

  .experience__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .experience__brand { text-align: center; }

  .tiles { grid-template-columns: 1fr; }
  .tile { min-height: 220px; }
  .tile__label { min-height: 220px; }

  .difference__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 640px;
    padding: 32px 28px;
  }

  .services-list__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .feature-band { grid-template-columns: 1fr; }
  .feature-band__text { padding: 40px 28px; }
  .feature-band__image { min-height: 260px; }

  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }

  .final-cta__inner { flex-direction: column; text-align: center; }
  .final-cta__actions { flex-direction: column; gap: 16px; }
  .phone-block { border-left: 0; border-top: 3px solid var(--accent); padding: 14px 0 6px; text-align: center; align-items: center; }

  .sticky-call { display: inline-flex; }
  body { padding-bottom: 60px; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .experience, .difference, .services-list, .trust { padding: 56px 0; }
  .services-list__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__badges-inner { gap: 24px; }
  .footer__badges-inner img { max-height: 46px; }
  .topbar__inner { flex-direction: column; align-items: center; gap: 6px; padding: 8px 0; }
  .hero__panel { padding: 26px 20px; }
  .section-head { margin-bottom: 32px; }
}

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

/* betterly-css-safety-net:start */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img, .hero__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 760px) {
  .intro-grid,
  .founder-grid,
  .visit-grid,
  .feature-grid,
  .trust-grid,
  .value-grid,
  .value__grid,
  .program-grid,
  .pillar-grid,
  .link-grid,
  .two-col {
    grid-template-columns: 1fr;
  }
  .value__list,
  .values-list,
  .trust-list,
  .checklist,
  .bullets {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    display: grid;
  }
  .cta-banner-inner {
    display: grid;
  }
}
/* betterly-css-safety-net:end */
