/* =========================================
   ARSENAL PLOMBERIE — Dark editorial theme
   ========================================= */

:root {
  --primary: #de8419;
  --primary-rgb: 222, 132, 25;
  --primary-ink: #111827;
  --primary-ink-rgb: 17, 24, 39;
  --primary-dark: #b56710;
  --primary-dark-rgb: 181, 103, 16;
  --primary-light: #f19a3a;
  --primary-light-rgb: 241, 154, 58;
  --secondary: #f4ce76;
  --secondary-rgb: 244, 206, 118;
  --secondary-ink: #111827;
  --secondary-ink-rgb: 17, 24, 39;
  --accent: #1665c4;
  --accent-rgb: 22, 101, 196;
  --accent-ink: #ffffff;
  --accent-ink-rgb: 255, 255, 255;
  --accent-on-light: #1b6ac9;
  --accent-on-light-rgb: 27, 106, 201;
  --text: #f5f2ed;
  --text-rgb: 245, 242, 237;
  --text-light: #b8b0a4;
  --text-light-rgb: 184, 176, 164;
  --text-muted: #8f867a;
  --text-muted-rgb: 143, 134, 122;
  --background: #0f0e0c;
  --background-rgb: 15, 14, 12;
  --bg-alt: #1a1815;
  --bg-alt-rgb: 26, 24, 21;
  --bg-alt-ink: #ffffff;
  --bg-alt-ink-rgb: 255, 255, 255;
  --surface: #221f1a;
  --surface-rgb: 34, 31, 26;
  --border: #716c65;
  --border-rgb: 113, 108, 101;

  /* utility */
  --hairline: 1px solid rgba(var(--text-rgb), 0.08);
  --hairline-strong: 1px solid rgba(var(--text-rgb), 0.16);
  --radius-sm: 4px;
  --radius: 6px;
  --radius-lg: 14px;
  --shadow-lg: 0 30px 80px -20px rgba(0, 0, 0, 0.55);
  --shadow-md: 0 12px 40px -12px rgba(0, 0, 0, 0.55);
  --easing: cubic-bezier(0.22, 1, 0.36, 1);

  /* fonts */
  --font-display: "Anton", "Bebas Neue", "Impact", sans-serif;
  --font-serif: "Fraunces", "Playfair Display", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  --container-max: 1240px;
  --nav-h: 78px;
  --topbar-h: 38px;
}

/* ======= Reset / base ======= */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* Only the cookie widget must use Arial per source */
#ideocookie-widget { font-family: Arial, Helvetica, sans-serif; }

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

/* Selection */
::selection { background: rgba(var(--primary-rgb), 0.85); color: var(--primary-ink); }

/* ======= Buttons ======= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s var(--easing), background 0.25s var(--easing),
              color 0.25s var(--easing), border-color 0.25s var(--easing);
  white-space: nowrap;
  line-height: 1;
}
.btn svg { flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--primary);
  color: var(--primary-ink);
  border-color: var(--primary);
}
.btn--primary:hover { background: var(--primary-light); border-color: var(--primary-light); }

.btn--secondary {
  background: var(--secondary);
  color: var(--secondary-ink);
  border-color: var(--secondary);
}
.btn--secondary:hover { background: var(--secondary); border-color: var(--secondary); }

.btn--ghost {
  background: rgba(var(--text-rgb), 0.08);
  color: var(--text);
  border-color: rgba(var(--secondary-rgb), 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  border-color: var(--secondary);
  color: var(--primary-ink);
  background: var(--secondary);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(var(--text-rgb), 0.3);
}
.btn--outline:hover { border-color: var(--primary); color: var(--primary); }

.btn--sm { padding: 10px 18px; font-size: 12px; }
.btn--block { width: 100%; justify-content: center; padding: 18px 26px; }

/* Link arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(var(--secondary-rgb), 0.35);
  padding-bottom: 4px;
  transition: color 0.25s var(--easing), border-color 0.25s var(--easing), gap 0.25s var(--easing);
}
.link-arrow:hover { color: var(--primary-light); border-color: var(--primary-light); gap: 14px; }
.link-arrow--light { color: var(--primary-light); border-color: rgba(var(--primary-light-rgb), 0.4); }
.link-arrow--light:hover { color: var(--secondary); border-color: var(--secondary); }
.link-arrow svg { transition: transform 0.25s var(--easing); }
.link-arrow:hover svg { transform: translateX(3px); }

/* ======= HEADER ======= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(var(--background-rgb), 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: var(--hairline);
  transition: background 0.3s var(--easing);
}
.site-header.is-scrolled {
  background: rgba(var(--background-rgb), 0.96);
  box-shadow: 0 12px 30px -20px rgba(0,0,0,0.7);
}

.topbar {
  background: rgba(0,0,0,0.3);
  border-bottom: var(--hairline);
  font-size: 12.5px;
  color: var(--text-light);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--topbar-h);
  gap: 18px;
  flex-wrap: wrap;
}
.topbar__left, .topbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.topbar__item--hours {
  color: var(--secondary);
}
.topbar__icon { color: var(--primary); flex-shrink: 0; }
.topbar__divider { color: var(--text-muted); opacity: 0.5; }
.topbar__lang {
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-light);
  transition: color 0.2s var(--easing);
}
.topbar__lang:hover, .topbar__lang[aria-current="page"] { color: var(--primary); }

.header-main__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: var(--nav-h);
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  flex-shrink: 0;
}
.brand__mark {
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(var(--primary-rgb), 0.4);
  border-radius: 8px;
  background: rgba(var(--primary-rgb), 0.06);
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__name {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.14em;
  color: var(--text);
}
.brand__sub {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 3px;
  font-weight: 600;
}

/* Primary nav */
.primary-nav {
  margin-left: auto;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  border-radius: 999px;
  transition: color 0.2s var(--easing), background 0.2s var(--easing);
  position: relative;
}
.nav-link:hover { color: var(--text); }
.nav-link.active { color: var(--primary); }
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
.nav-caret { transition: transform 0.2s var(--easing); }

.has-submenu { position: relative; }
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}
.has-submenu:hover .nav-caret { transform: rotate(180deg); }

.submenu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 260px;
  background: var(--surface);
  border: 1px solid rgba(var(--text-rgb), 0.08);
  border-radius: 12px;
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s var(--easing), transform 0.2s var(--easing), visibility 0.2s;
  box-shadow: var(--shadow-md);
  z-index: 20;
}
.submenu li a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-light);
  border-radius: 8px;
  transition: background 0.2s var(--easing), color 0.2s var(--easing);
}
.submenu li a:hover {
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary-light);
}

.nav-close { display: none; }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  padding: 8px 4px;
}
.header-phone__num { white-space: nowrap; }
.header-phone svg { color: var(--primary); }
.header-phone:hover { color: var(--primary-light); }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(var(--text-rgb), 0.2);
  border-radius: 8px;
  flex-direction: column;
  justify-content: space-around;
  align-items: stretch;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s var(--easing), opacity 0.2s var(--easing);
}

/* ======= HERO ======= */
.hero {
  position: relative;
  min-height: min(720px, calc(100vh - var(--nav-h) - var(--topbar-h)));
  padding: 120px 0 140px;
  overflow: hidden;
  color: var(--text);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.15) brightness(0.85);
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(120deg, rgba(var(--background-rgb), 0.88) 0%, rgba(var(--background-rgb), 0.65) 45%, rgba(var(--background-rgb), 0.35) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 30%, rgba(var(--background-rgb), 0.9) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(var(--secondary-rgb), 0.35);
  color: var(--secondary);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 30px;
  background: rgba(var(--background-rgb), 0.5);
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 4px rgba(var(--secondary-rgb), 0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(var(--secondary-rgb), 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(var(--secondary-rgb), 0); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 128px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  color: var(--text);
  text-transform: uppercase;
  font-weight: 400;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.hero__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--secondary);
  text-transform: none;
  letter-spacing: -0.02em;
  font-size: 0.9em;
  line-height: 1;
  display: inline-block;
  margin-right: 0.06em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.6);
}
.hero__title-accent {
  color: var(--primary);
  display: block;
}

.hero__lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 0 40px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero__cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
}
.hero__cta .btn--primary {
  padding: 20px 34px;
  font-size: 15px;
  letter-spacing: 0.08em;
  box-shadow: 0 18px 40px -14px rgba(var(--primary-rgb), 0.7);
}
.hero__cta .btn--primary svg { width: 20px; height: 20px; }
.hero__cta .btn--ghost {
  padding: 18px 30px;
}

.hero__badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(var(--text-rgb), 0.12);
}
.hero__badges li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.badge-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--primary);
  letter-spacing: 0.02em;
  line-height: 1;
}

.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.2s var(--easing), transform 0.4s var(--easing);
  animation: floatDown 2.5s infinite;
}
.hero__scroll:hover { color: var(--secondary); }
@keyframes floatDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ======= EMERGENCY STRIP ======= */
.emergency-strip {
  background: var(--primary);
  color: #000000;
  padding: 18px 0;
  position: relative;
  overflow: hidden;
}
.emergency-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(0,0,0,0.05) 20px,
    rgba(0,0,0,0.05) 40px
  );
}
.emergency-strip__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.emergency-strip__pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #000000;
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.18);
  animation: pulseAlert 1.5s infinite;
  flex-shrink: 0;
}
@keyframes pulseAlert {
  0%, 100% { box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.18); }
  50% { box-shadow: 0 0 0 10px rgba(0, 0, 0, 0); }
}
.emergency-strip__text {
  margin: 0;
  font-size: 15px;
  color: #000000;
  flex: 1;
  min-width: 240px;
}
.emergency-strip__text strong {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 6px;
  color: #000000;
}
.emergency-strip__phone {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 26px;
  background: #000000;
  border: 2px solid #000000;
  border-radius: 999px;
  color: #ffffff;
  transition: transform 0.2s var(--easing), box-shadow 0.2s var(--easing), background 0.2s var(--easing);
  white-space: nowrap;
  box-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.55);
}
.emergency-strip__phone:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.7);
}
.emergency-strip__phone span {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary-light);
  font-weight: 700;
}
.emergency-strip__phone strong {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: #ffffff;
}

/* ======= SECTION HEAD ======= */
.section-head {
  max-width: 700px;
  margin-bottom: 64px;
}
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
  font-weight: 600;
}
.section-head__eyebrow--light { color: var(--secondary); }
.section-head__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  color: var(--text);
  text-transform: uppercase;
  font-weight: 400;
}
.section-head__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--secondary);
  text-transform: none;
  letter-spacing: -0.02em;
}
.section-head__lead {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
  max-width: 560px;
}

/* ======= SERVICES (image panels) ======= */
.services {
  padding: 120px 0 40px;
  background: var(--background);
}
.services__stack {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
}
.service-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 520px;
  border-top: var(--hairline);
}
.service-panel:last-child { border-bottom: var(--hairline); }
.service-panel--reverse .service-panel__media { order: 2; }
.service-panel--reverse .service-panel__body { order: 1; }

.service-panel__media {
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
  min-height: 380px;
}
.service-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.9s var(--easing);
}
.service-panel:hover .service-panel__media img { transform: scale(1.04); }

.service-panel__flag {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 8px 14px;
  background: var(--primary);
  color: var(--primary-ink);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  z-index: 2;
}

.service-panel__body {
  padding: 80px 8vw 80px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--background);
}
.service-panel--reverse .service-panel__body {
  padding: 80px 6vw 80px 8vw;
}

.service-panel__num {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 14px;
}
.service-panel__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 22px;
  text-transform: uppercase;
  font-weight: 400;
}
.service-panel__lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0 0 24px;
  max-width: 480px;
}
.service-panel__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  max-width: 480px;
}
.service-panel__list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.5;
}
.service-panel__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 2px;
  background: var(--primary);
}

/* ======= WHY US ======= */
.why {
  padding: 130px 0;
  background: var(--bg-alt);
  color: var(--bg-alt-ink);
}
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--bg-alt-ink);
  margin: 18px 0 24px;
  text-transform: uppercase;
  font-weight: 400;
}
.why__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--secondary);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95em;
}
.why__text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(var(--bg-alt-ink-rgb), 0.75);
  margin: 0 0 36px;
  max-width: 520px;
}
.why__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.why__values {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.why__values li {
  padding: 28px 24px;
  background: rgba(var(--bg-alt-ink-rgb), 0.04);
  border: 1px solid rgba(var(--bg-alt-ink-rgb), 0.08);
  border-radius: 8px;
  transition: border-color 0.3s var(--easing), transform 0.3s var(--easing);
}
.why__values li:hover {
  border-color: rgba(var(--primary-rgb), 0.5);
  transform: translateY(-4px);
}
.why__num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--primary);
  display: block;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.why__values h3 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--bg-alt-ink);
  letter-spacing: -0.01em;
}
.why__values p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(var(--bg-alt-ink-rgb), 0.7);
  margin: 0;
}

/* ======= CMMTQ TRUST BAND ======= */
.trust-band {
  padding: 100px 0;
  background: var(--surface);
  border-top: var(--hairline);
  border-bottom: var(--hairline);
}
.trust-band__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 72px;
  align-items: center;
}
.trust-band__cert {
  padding: 34px 28px 28px;
  background: linear-gradient(180deg, #ffffff 0%, var(--secondary) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 30px 70px -22px rgba(0, 0, 0, 0.7),
              inset 0 0 0 1px rgba(var(--primary-rgb), 0.25);
  position: relative;
}
.trust-band__cert::before {
  content: "Certifié";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 16px;
  background: var(--primary);
  color: var(--primary-ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 20px -6px rgba(var(--primary-rgb), 0.55);
}
.trust-band__cert::after {
  content: "Corporation des maîtres mécaniciens en tuyauterie du Québec";
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6a6259;
  text-align: center;
  line-height: 1.5;
  max-width: 220px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  width: 100%;
  font-weight: 600;
}
.trust-band__cert img {
  width: 100%;
  max-width: 180px;
  max-height: 88px;
  height: auto;
  object-fit: contain;
  display: block;
}
.trust-band__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--text);
  margin: 12px 0 20px;
  text-transform: uppercase;
  font-weight: 400;
}
.trust-band__copy p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.75;
  max-width: 620px;
  margin: 0 0 24px;
}

/* ======= ENGAGEMENTS / PILLARS ======= */
.pillars {
  padding: 130px 0;
  background: var(--background);
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.pillar {
  position: relative;
  padding: 0 0 40px;
  background: var(--surface);
  border: 1px solid rgba(var(--text-rgb), 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s var(--easing), transform 0.3s var(--easing);
}
.pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary);
  transition: width 0.4s var(--easing);
}
.pillar:hover {
  border-color: rgba(var(--secondary-rgb), 0.4);
  transform: translateY(-4px);
}
.pillar:hover::before { width: 100%; }
.pillar__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-alt);
  margin-bottom: 28px;
}
.pillar__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s var(--easing);
}
.pillar:hover .pillar__media img { transform: scale(1.04); }
.pillar__num {
  display: inline-block;
  margin-left: 34px;
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  color: var(--primary);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.pillar__title {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--text);
  margin: 0 34px 14px;
  text-transform: uppercase;
  font-weight: 400;
}
.pillar__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0 34px;
}
.pillar--accent {
  background: linear-gradient(160deg, rgba(var(--primary-rgb), 0.14) 0%, var(--surface) 100%);
  border-color: rgba(var(--primary-rgb), 0.3);
}
.pillar--accent .pillar__title { color: var(--secondary); }

/* ======= CONTACT ======= */
.contact {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  color: var(--text);
}
.contact__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.3) brightness(0.6);
}
.contact__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(120deg, rgba(var(--background-rgb), 0.94) 0%, rgba(var(--background-rgb), 0.82) 50%, rgba(var(--background-rgb), 0.65) 100%);
}
.contact__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 16px 0 20px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text);
}
.contact__lead {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0 0 40px;
  max-width: 460px;
}
.contact__details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact__details li {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(var(--text-rgb), 0.12);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact__details li:last-child { border-bottom: none; padding-bottom: 0; }
.contact__label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
}
.contact__value {
  color: var(--text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}
.contact__value--nowrap {
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--secondary);
}
.contact__value--nowrap:hover { color: var(--primary-light); }

/* Quote form */
.quote-form {
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(var(--text-rgb), 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-lg);
}
.quote-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.quote-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
}
.quote-form label em {
  color: var(--primary);
  font-style: normal;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  background: rgba(var(--background-rgb), 0.7);
  border: 1px solid rgba(var(--text-rgb), 0.15);
  color: var(--text);
  padding: 14px 16px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  transition: border-color 0.2s var(--easing), background 0.2s var(--easing);
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(var(--background-rgb), 0.9);
}
.quote-form textarea { resize: vertical; min-height: 100px; }
.quote-form select {
  appearance: none;
  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='%23f5f2ed' d='M6 8 0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.quote-form__note {
  font-size: 12.5px;
  color: var(--text-muted);
  margin: 4px 0 0;
  line-height: 1.55;
  text-align: center;
}

/* ======= FOOTER ======= */
.site-footer {
  background: #0a0908;
  color: var(--text);
  padding: 80px 0 0;
  border-top: 1px solid rgba(var(--text-rgb), 0.08);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
}
.site-footer h4 {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.16em;
  color: var(--primary);
  text-transform: uppercase;
  margin: 0 0 22px;
  font-weight: 400;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer ul a {
  color: var(--text);
  font-size: 14px;
  transition: color 0.2s var(--easing);
}
.site-footer ul a:hover { color: var(--primary-light); }

.brand--footer .brand__name { font-size: 22px; }
.brand--footer .brand__sub { font-size: 9px; }

.site-footer__tag {
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
  margin: 18px 0 20px;
  max-width: 340px;
  opacity: 0.85;
}
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid rgba(var(--primary-rgb), 0.5);
  border-radius: 8px;
  color: var(--text);
  transition: background 0.2s var(--easing), border-color 0.2s var(--easing);
  white-space: nowrap;
}
.footer-phone svg { color: var(--primary); }
.footer-phone span {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.footer-phone:hover { background: rgba(var(--primary-rgb), 0.15); border-color: var(--primary); }

.site-footer address {
  font-style: normal;
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
  opacity: 0.9;
}
.site-footer__hours {
  color: var(--text);
  font-size: 13px;
  line-height: 1.65;
  margin: 0 0 20px;
  opacity: 0.85;
}
.site-footer__hours strong {
  color: var(--secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  display: block;
  margin-bottom: 4px;
}
.site-footer__social {
  display: flex;
  gap: 10px;
}
.site-footer__social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--text-rgb), 0.2);
  border-radius: 50%;
  color: var(--text);
  transition: background 0.2s var(--easing), border-color 0.2s var(--easing);
}
.site-footer__social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-ink);
}

.site-footer__legal {
  border-top: 1px solid rgba(var(--text-rgb), 0.08);
  padding: 22px 0;
  background: var(--accent);
}
.site-footer__legal-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--text);
  opacity: 0.65;
}
.site-footer__legal p { margin: 0; }

/* ======= Sticky mobile call ======= */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 90;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary);
  color: var(--primary-ink);
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 30px -8px rgba(var(--primary-rgb), 0.6);
  white-space: nowrap;
}
.sticky-call svg { flex-shrink: 0; }

/* ======= RESPONSIVE ======= */
@media (max-width: 1080px) {
  .service-panel__body { padding: 60px 40px; }
  .service-panel--reverse .service-panel__body { padding: 60px 40px; }
}

@media (max-width: 980px) {
  :root { --nav-h: 68px; }

  .header-phone { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .primary-nav {
    position: fixed;
    inset: 0;
    background: var(--background);
    padding: 100px 32px 32px;
    transform: translateX(100%);
    transition: transform 0.35s var(--easing);
    overflow-y: auto;
    z-index: 200;
  }
  .primary-nav.is-open { transform: translateX(0); }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .nav-link {
    padding: 16px 20px;
    font-size: 18px;
    justify-content: space-between;
    border-radius: 8px;
    background: rgba(var(--text-rgb), 0.04);
  }
  .nav-link.active::after { display: none; }
  .nav-link.active { background: rgba(var(--primary-rgb), 0.15); }

  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    background: transparent;
    border: none;
    padding: 8px 0 8px 20px;
    box-shadow: none;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--easing);
  }
  .has-submenu.is-open .submenu {
    display: block;
    max-height: 500px;
  }
  .submenu li a { padding: 12px 16px; font-size: 15px; }

  .nav-close {
    display: flex;
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(var(--text-rgb), 0.2);
    color: var(--text);
    border-radius: 50%;
    font-size: 26px;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
  }

  body.nav-open { overflow: hidden; }

  .service-panel { grid-template-columns: 1fr; }
  .service-panel--reverse .service-panel__media { order: 1; }
  .service-panel--reverse .service-panel__body { order: 2; }
  .service-panel__media { min-height: 320px; aspect-ratio: 16/10; }
  .service-panel__body { padding: 50px 32px 60px; }
  .service-panel--reverse .service-panel__body { padding: 50px 32px 60px; }

  .why__grid { grid-template-columns: 1fr; gap: 50px; }
  .why__values { grid-template-columns: 1fr 1fr; }

  .trust-band__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .trust-band__cert { max-width: 260px; margin: 0 auto; }
  .trust-band__copy p { margin-left: auto; margin-right: auto; }

  .pillars__grid { grid-template-columns: 1fr; }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .site-footer__brand { grid-column: 1 / -1; }

  .sticky-call { display: inline-flex; }
  .site-footer { padding-bottom: 80px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }

  .topbar { display: none; }

  .hero { padding: 80px 0 100px; min-height: 620px; }
  .hero__eyebrow { font-size: 10.5px; padding: 6px 12px; letter-spacing: 0.1em; }
  .hero__title { font-size: clamp(48px, 14vw, 78px); }
  .hero__cta .btn { flex: 1; justify-content: center; }
  .hero__badges { gap: 20px 30px; }
  .badge-num { font-size: 24px; }
  .hero__scroll { display: none; }

  .emergency-strip__inner { justify-content: flex-start; }
  .emergency-strip__phone { align-items: flex-start; }

  .services { padding: 80px 0 20px; }
  .why { padding: 80px 0; }
  .why__values { grid-template-columns: 1fr; }

  .pillars, .contact, .trust-band { padding: 80px 0; }

  .quote-form { padding: 28px 22px; }
  .quote-form__row { grid-template-columns: 1fr; }

  .section-head { margin-bottom: 40px; }

  .service-panel__body { padding: 40px 24px 50px; }
  .service-panel--reverse .service-panel__body { padding: 40px 24px 50px; }
  .service-panel__list { grid-template-columns: 1fr; }

  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__legal-inner { flex-direction: column; gap: 8px; }
}

/* Focus styles */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 3px;
  border-radius: 4px;
}

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

/* =========================================
   PAGE: PLOMBERIE (service_detail — NarrativeWorkflow)
   ========================================= */
body.page-plomberie .service-hero {
  position: relative;
  min-height: 560px;
  padding: 120px 0 140px;
  overflow: hidden;
  color: var(--text);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body.page-plomberie .service-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
body.page-plomberie .service-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.18) brightness(0.62) contrast(1.05);
}
body.page-plomberie .service-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg,
      rgba(var(--background-rgb), 0.96) 0%,
      rgba(var(--background-rgb), 0.88) 45%,
      rgba(var(--background-rgb), 0.75) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.78) 100%);
}
body.page-plomberie .service-hero__scrim::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 30% 45%, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}
body.page-plomberie .service-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
body.page-plomberie .service-hero__crumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
body.page-plomberie .service-hero__crumb a { color: var(--secondary); }
body.page-plomberie .service-hero__crumb a:hover { color: var(--primary-light); }
body.page-plomberie .service-hero__crumb span[aria-hidden] { color: var(--text-muted); opacity: 0.7; }

body.page-plomberie .service-hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7.5vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  color: var(--text);
  text-transform: uppercase;
  font-weight: 400;
  text-shadow: 0 2px 30px rgba(0,0,0,0.55);
}
body.page-plomberie .service-hero__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--secondary);
  text-transform: none;
  letter-spacing: -0.02em;
  font-size: 0.88em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.85);
}
body.page-plomberie .service-hero__lead {
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.65;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 0 34px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.55);
}
body.page-plomberie .service-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
body.page-plomberie .service-hero__actions .btn--primary {
  padding: 20px 30px;
  font-size: 14px;
}
body.page-plomberie .service-hero__actions .btn--ghost {
  background: var(--secondary);
  color: var(--secondary-ink);
  border-color: var(--secondary);
  padding: 20px 30px;
  font-size: 14px;
  text-shadow: none;
  box-shadow: 0 8px 24px -12px rgba(0,0,0,0.7);
}
body.page-plomberie .service-hero__actions .btn--ghost:hover {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}
body.page-plomberie .service-hero__marks {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 44px;
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid rgba(var(--text-rgb), 0.12);
}
body.page-plomberie .service-hero__marks li {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
body.page-plomberie .service-hero__marks strong {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.04em;
  color: var(--secondary);
  line-height: 1;
}

/* Scenario intro */
body.page-plomberie .scenarios {
  padding: 120px 0;
  background: var(--background);
  border-top: var(--hairline);
  position: relative;
  overflow: hidden;
}
body.page-plomberie .scenarios::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  width: 64px;
  height: 3px;
  background: var(--primary);
}
body.page-plomberie .scenarios::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 92% 15%,
    rgba(var(--primary-rgb), 0.07) 0%,
    rgba(var(--primary-rgb), 0) 70%);
  pointer-events: none;
  z-index: 0;
}
body.page-plomberie .scenarios > .container { position: relative; z-index: 1; }
body.page-plomberie .scenarios__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}
body.page-plomberie .scenarios__intro-lead {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-light);
  margin: 0;
  padding-left: 28px;
  border-left: 2px solid var(--primary);
}
body.page-plomberie .scenarios__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
body.page-plomberie .scenario-card {
  padding: 32px 26px 30px;
  background:
    linear-gradient(160deg,
      rgba(var(--secondary-rgb), 0.06) 0%,
      rgba(var(--text-rgb), 0.04) 45%,
      rgba(var(--text-rgb), 0.02) 100%),
    var(--surface);
  border: 1px solid rgba(var(--text-rgb), 0.14);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s var(--easing), transform 0.3s var(--easing), background 0.3s var(--easing), box-shadow 0.3s var(--easing);
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 28px -22px rgba(0,0,0,0.9), inset 0 1px 0 rgba(var(--text-rgb), 0.05);
}
body.page-plomberie .scenario-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
  transition: width 0.4s var(--easing);
}
body.page-plomberie .scenario-card:hover {
  border-color: rgba(var(--secondary-rgb), 0.5);
  transform: translateY(-4px);
  box-shadow: 0 22px 40px -20px rgba(0,0,0,0.9), inset 0 1px 0 rgba(var(--text-rgb), 0.08);
}
body.page-plomberie .scenario-card:hover::before { width: 100%; }
body.page-plomberie .scenario-card__urgency {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--primary);
  margin-bottom: 14px;
}
body.page-plomberie .scenario-card__urgency--now { color: var(--primary); }
body.page-plomberie .scenario-card__urgency--soon { color: var(--secondary); }
body.page-plomberie .scenario-card__title {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.25;
  color: var(--text);
  margin: 0 0 12px;
  font-weight: 500;
}
body.page-plomberie .scenario-card__text {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* Process timeline */
body.page-plomberie .process {
  padding: 130px 0;
  background: var(--bg-alt);
  color: var(--bg-alt-ink);
  position: relative;
}
body.page-plomberie .process .section-head { margin-bottom: 72px; }
body.page-plomberie .process .section-head__title { color: var(--bg-alt-ink); }
body.page-plomberie .process .section-head__lead { color: rgba(var(--bg-alt-ink-rgb), 0.7); }
body.page-plomberie .process__timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  counter-reset: step;
}
body.page-plomberie .process__timeline::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: repeating-linear-gradient(90deg,
    rgba(var(--primary-rgb), 0.55) 0 10px,
    transparent 10px 20px);
  z-index: 0;
}
body.page-plomberie .process__step {
  position: relative;
  padding: 0 22px;
  z-index: 1;
}
body.page-plomberie .process__step + .process__step::after {
  content: "";
  position: absolute;
  top: 32px;
  left: -8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}
body.page-plomberie .process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(var(--primary-rgb), 0.5);
  background: var(--bg-alt);
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
body.page-plomberie .process__title {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.1;
  color: var(--bg-alt-ink);
  margin: 0 0 12px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.02em;
}
body.page-plomberie .process__body {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(var(--bg-alt-ink-rgb), 0.72);
  margin: 0 0 14px;
}
body.page-plomberie .process__eta {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 600;
  padding: 5px 12px;
  border: 1px solid rgba(var(--secondary-rgb), 0.35);
  border-radius: 999px;
}

/* Interventions block: what we handle */
body.page-plomberie .interventions {
  padding: 120px 0;
  background: var(--background);
  position: relative;
  overflow: hidden;
}
body.page-plomberie .interventions::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(var(--bg-alt-rgb), 0.55) 0%,
      rgba(var(--bg-alt-rgb), 0) 240px),
    radial-gradient(ellipse 55% 50% at 10% 90%,
      rgba(var(--secondary-rgb), 0.05) 0%,
      rgba(var(--secondary-rgb), 0) 70%);
  pointer-events: none;
  z-index: 0;
}
body.page-plomberie .interventions > .container { position: relative; z-index: 1; }
body.page-plomberie .interventions__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
body.page-plomberie .interventions__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-alt);
  border: 1px solid rgba(var(--text-rgb), 0.08);
}
body.page-plomberie .interventions__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.15) brightness(0.85);
  transition: transform 0.9s var(--easing);
}
body.page-plomberie .interventions__media:hover img { transform: scale(1.03); }
body.page-plomberie .interventions__caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 10px 16px;
  background: rgba(var(--background-rgb), 0.86);
  border: 1px solid rgba(var(--secondary-rgb), 0.35);
  color: var(--secondary);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
body.page-plomberie .interventions__list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
}
body.page-plomberie .interventions__list li {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: 22px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid rgba(var(--text-rgb), 0.1);
}
body.page-plomberie .interventions__list li:last-child { border-bottom: none; }
body.page-plomberie .interventions__list .item-num {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--primary);
  letter-spacing: 0.04em;
}
body.page-plomberie .interventions__list .item-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
  margin: 0 0 4px;
}
body.page-plomberie .interventions__list .item-desc {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
body.page-plomberie .interventions__list .item-tag {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  padding: 5px 12px;
  border: 1px solid rgba(var(--secondary-rgb), 0.35);
  border-radius: 999px;
  white-space: nowrap;
}

/* Advice / expertise strip */
body.page-plomberie .advice {
  padding: 110px 0;
  background: var(--surface);
  border-top: var(--hairline);
  border-bottom: var(--hairline);
}
body.page-plomberie .advice__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
body.page-plomberie .advice__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.05;
  color: var(--text);
  margin: 12px 0 20px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: -0.005em;
}
body.page-plomberie .advice__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--secondary);
  text-transform: none;
}
body.page-plomberie .advice__lead {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 24px;
}
body.page-plomberie .advice__tips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
body.page-plomberie .advice__tips li {
  padding: 18px 22px;
  background: rgba(var(--background-rgb), 0.55);
  border: 1px solid rgba(var(--text-rgb), 0.08);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.6;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
}
body.page-plomberie .advice__tips strong {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--primary);
  letter-spacing: 0.04em;
  line-height: 1;
}
body.page-plomberie .advice__tips span {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}
body.page-plomberie .advice__tips b {
  color: var(--text);
  font-weight: 600;
  display: block;
  margin-bottom: 3px;
  font-size: 14.5px;
}

/* FAQ */
body.page-plomberie .faq {
  padding: 130px 0;
  background: var(--background);
  position: relative;
  overflow: hidden;
  border-top: var(--hairline);
}
body.page-plomberie .faq::before {
  content: "";
  position: absolute;
  top: 0;
  right: 8%;
  width: 3px;
  height: 90px;
  background: var(--primary);
}
body.page-plomberie .faq::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 5% 55%,
    rgba(var(--primary-rgb), 0.05) 0%,
    rgba(var(--primary-rgb), 0) 65%);
  pointer-events: none;
  z-index: 0;
}
body.page-plomberie .faq > .container { position: relative; z-index: 1; }
body.page-plomberie .faq__grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: start;
}
body.page-plomberie .faq__intro-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1;
  color: var(--text);
  margin: 12px 0 18px;
  text-transform: uppercase;
  font-weight: 400;
}
body.page-plomberie .faq__intro-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--secondary);
  text-transform: none;
}
body.page-plomberie .faq__intro p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 26px;
}
body.page-plomberie .faq__phone-cta {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 26px;
  border: 1px solid rgba(var(--primary-rgb), 0.5);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(var(--primary-rgb), 0.06);
  transition: background 0.25s var(--easing), border-color 0.25s var(--easing);
  white-space: nowrap;
}
body.page-plomberie .faq__phone-cta:hover {
  background: rgba(var(--primary-rgb), 0.14);
  border-color: var(--primary);
}
body.page-plomberie .faq__phone-cta small {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 600;
}
body.page-plomberie .faq__phone-cta strong {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--text);
  white-space: nowrap;
}

body.page-plomberie .faq__list {
  border-top: 1px solid rgba(var(--text-rgb), 0.12);
}
body.page-plomberie .faq__item {
  border-bottom: 1px solid rgba(var(--text-rgb), 0.12);
  padding: 26px 0;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
}
body.page-plomberie .faq__item .faq__q-num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--primary);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
body.page-plomberie .faq__q {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 12px;
  line-height: 1.35;
  letter-spacing: -0.005em;
}
body.page-plomberie .faq__a {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}
body.page-plomberie .faq__a + .faq__a { margin-top: 10px; }

/* Closing CTA */
body.page-plomberie .closing-cta {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  color: var(--text);
}
body.page-plomberie .closing-cta__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
body.page-plomberie .closing-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.35) brightness(0.45);
}
body.page-plomberie .closing-cta__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(120deg,
      rgba(var(--background-rgb), 0.92) 0%,
      rgba(var(--background-rgb), 0.75) 50%,
      rgba(var(--background-rgb), 0.55) 100%);
}
body.page-plomberie .closing-cta__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
body.page-plomberie .closing-cta__eyebrow {
  color: var(--secondary);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 18px;
}
body.page-plomberie .closing-cta__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 0.95;
  color: var(--text);
  margin: 0 0 22px;
  text-transform: uppercase;
  font-weight: 400;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
body.page-plomberie .closing-cta__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--secondary);
  text-transform: none;
}
body.page-plomberie .closing-cta__text {
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 30px;
  max-width: 540px;
}
body.page-plomberie .closing-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  flex-direction: column;
  align-items: stretch;
  max-width: 320px;
  margin-left: auto;
  padding: 34px;
  background: rgba(var(--background-rgb), 0.75);
  border: 1px solid rgba(var(--secondary-rgb), 0.25);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
body.page-plomberie .closing-cta__actions .btn { justify-content: center; }
body.page-plomberie .closing-cta__actions .btn--ghost {
  background: var(--secondary);
  color: var(--secondary-ink);
  border-color: var(--secondary);
  text-shadow: none;
  box-shadow: 0 8px 24px -14px rgba(0,0,0,0.7);
}
body.page-plomberie .closing-cta__actions .btn--ghost:hover {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}
body.page-plomberie .closing-cta__actions small {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-top: 6px;
}

@media (max-width: 1080px) {
  body.page-plomberie .scenarios__grid { grid-template-columns: repeat(2, 1fr); }
  body.page-plomberie .process__timeline { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  body.page-plomberie .process__timeline::before { display: none; }
  body.page-plomberie .process__step + .process__step::after { display: none; }
}

@media (max-width: 980px) {
  body.page-plomberie .scenarios__head { grid-template-columns: 1fr; gap: 30px; }
  body.page-plomberie .interventions__grid { grid-template-columns: 1fr; gap: 40px; }
  body.page-plomberie .interventions__media { aspect-ratio: 16/10; max-width: 560px; }
  body.page-plomberie .advice__inner { grid-template-columns: 1fr; gap: 40px; }
  body.page-plomberie .faq__grid { grid-template-columns: 1fr; gap: 40px; }
  body.page-plomberie .closing-cta__inner { grid-template-columns: 1fr; gap: 40px; }
  body.page-plomberie .closing-cta__actions { margin-left: 0; max-width: 100%; }
}

@media (max-width: 640px) {
  body.page-plomberie .service-hero { padding: 80px 0 90px; min-height: 460px; }
  body.page-plomberie .service-hero__marks { gap: 20px 30px; margin-top: 30px; padding-top: 22px; }
  body.page-plomberie .scenarios,
  body.page-plomberie .process,
  body.page-plomberie .interventions,
  body.page-plomberie .advice,
  body.page-plomberie .faq,
  body.page-plomberie .closing-cta { padding: 80px 0; }
  body.page-plomberie .scenarios__grid { grid-template-columns: 1fr; }
  body.page-plomberie .process__timeline { grid-template-columns: 1fr; }
  body.page-plomberie .interventions__list li { grid-template-columns: 46px 1fr; }
  body.page-plomberie .interventions__list .item-tag { grid-column: 2; justify-self: start; margin-top: 8px; }
  body.page-plomberie .faq__item { grid-template-columns: 40px 1fr; gap: 14px; }
  body.page-plomberie .closing-cta__actions { padding: 24px; }
}

/* =========================================
   PAGE: RÉNOVATION CUISINE (service_detail — ConversationalFAQ)
   ========================================= */

/* Hero — editorial dark, kitchen-oriented */
body.page-renovationcuisine .kitchen-hero {
  position: relative;
  min-height: 620px;
  padding: 130px 0 150px;
  overflow: hidden;
  color: var(--text);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body.page-renovationcuisine .kitchen-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
body.page-renovationcuisine .kitchen-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.2) brightness(0.55) contrast(1.05);
}
body.page-renovationcuisine .kitchen-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(95deg,
      rgba(var(--background-rgb), 0.96) 0%,
      rgba(var(--background-rgb), 0.86) 50%,
      rgba(var(--background-rgb), 0.7) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.5) 60%, rgba(var(--background-rgb), 0.82) 100%);
}
body.page-renovationcuisine .kitchen-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
}
body.page-renovationcuisine .kitchen-hero__crumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
body.page-renovationcuisine .kitchen-hero__crumb a { color: var(--secondary); }
body.page-renovationcuisine .kitchen-hero__crumb a:hover { color: var(--primary-light); }
body.page-renovationcuisine .kitchen-hero__crumb span[aria-hidden] { color: var(--text-muted); opacity: 0.7; }

body.page-renovationcuisine .kitchen-hero__eyebrow {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid rgba(var(--secondary-rgb), 0.35);
  color: var(--secondary);
  border-radius: 999px;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 26px;
  background: rgba(var(--background-rgb), 0.5);
}
body.page-renovationcuisine .kitchen-hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7.4vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin: 0 0 26px;
  color: var(--text);
  text-transform: uppercase;
  font-weight: 400;
  text-shadow: 0 2px 30px rgba(0,0,0,0.55);
}
body.page-renovationcuisine .kitchen-hero__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--secondary);
  text-transform: none;
  letter-spacing: -0.02em;
  font-size: 0.9em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.85);
}
body.page-renovationcuisine .kitchen-hero__lead {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.7;
  color: var(--text);
  max-width: 640px;
  margin: 0 0 38px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.75), 0 1px 2px rgba(0,0,0,0.6);
}
body.page-renovationcuisine .kitchen-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 46px;
}
body.page-renovationcuisine .kitchen-hero__actions .btn--primary {
  padding: 20px 32px;
  font-size: 14px;
  box-shadow: 0 18px 40px -14px rgba(var(--primary-rgb), 0.55);
}
body.page-renovationcuisine .kitchen-hero__actions .btn--ghost {
  background: rgba(var(--background-rgb), 0.55);
  color: var(--text);
  border-color: rgba(var(--secondary-rgb), 0.5);
  padding: 20px 30px;
  font-size: 14px;
}
body.page-renovationcuisine .kitchen-hero__actions .btn--ghost:hover {
  background: var(--secondary);
  color: var(--secondary-ink);
  border-color: var(--secondary);
}

/* Hero meta as horizontal definition list — different from marks list */
body.page-renovationcuisine .kitchen-hero__meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 26px 0 0;
  border-top: 1px solid rgba(var(--text-rgb), 0.12);
}
body.page-renovationcuisine .kitchen-hero__meta-row {
  padding: 4px 24px 4px 0;
  border-right: 1px solid rgba(var(--text-rgb), 0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
body.page-renovationcuisine .kitchen-hero__meta-row:last-child { border-right: none; }
body.page-renovationcuisine .kitchen-hero__meta dt {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
body.page-renovationcuisine .kitchen-hero__meta dd {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--secondary);
  line-height: 1.25;
  font-weight: 500;
}

/* Objections — conversational Q&A opener */
body.page-renovationcuisine .objections {
  padding: 120px 0;
  background: var(--background);
  border-top: var(--hairline);
  position: relative;
  overflow: hidden;
}
body.page-renovationcuisine .objections::before {
  content: "";
  position: absolute;
  top: 0;
  right: 10%;
  width: 3px;
  height: 96px;
  background: var(--primary);
}
body.page-renovationcuisine .objections::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 55% at 90% 85%,
    rgba(var(--secondary-rgb), 0.05) 0%,
    rgba(var(--secondary-rgb), 0) 70%);
  pointer-events: none;
  z-index: 0;
}
body.page-renovationcuisine .objections__container { position: relative; z-index: 1; }
body.page-renovationcuisine .objections__head {
  max-width: 780px;
  margin-bottom: 60px;
}
body.page-renovationcuisine .objections__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.98;
  color: var(--text);
  margin: 14px 0 22px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: -0.005em;
}
body.page-renovationcuisine .objections__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--secondary);
  text-transform: none;
  letter-spacing: -0.02em;
}
body.page-renovationcuisine .objections__intro {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.75;
  margin: 0;
  max-width: 680px;
}

body.page-renovationcuisine .objections__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(var(--text-rgb), 0.12);
}
body.page-renovationcuisine .objection {
  display: grid;
  grid-template-columns: 200px 1fr 1.4fr;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(var(--text-rgb), 0.12);
  align-items: baseline;
  transition: background 0.3s var(--easing);
}
body.page-renovationcuisine .objection:hover {
  background: linear-gradient(90deg,
    rgba(var(--primary-rgb), 0.04) 0%,
    rgba(var(--primary-rgb), 0) 60%);
}
body.page-renovationcuisine .objection__tag {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--primary);
  text-transform: uppercase;
  line-height: 1;
}
body.page-renovationcuisine .objection__q {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 21px;
  line-height: 1.35;
  color: var(--text);
  margin: 0;
  font-weight: 500;
}
body.page-renovationcuisine .objection__a {
  color: var(--text-light);
  font-size: 15.5px;
  line-height: 1.75;
  margin: 0;
}

/* Scope — split layout with image + lettered pillars */
body.page-renovationcuisine .scope {
  padding: 130px 0;
  background: var(--bg-alt);
  color: var(--bg-alt-ink);
  position: relative;
  overflow: hidden;
}
body.page-renovationcuisine .scope::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  width: 3px;
  height: 96px;
  background: var(--secondary);
}
body.page-renovationcuisine .scope__container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
body.page-renovationcuisine .scope__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 0.98;
  color: var(--bg-alt-ink);
  margin: 14px 0 22px;
  text-transform: uppercase;
  font-weight: 400;
}
body.page-renovationcuisine .scope__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--secondary);
  text-transform: none;
  letter-spacing: -0.02em;
}
body.page-renovationcuisine .scope__text {
  color: rgba(var(--bg-alt-ink-rgb), 0.75);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 28px;
  max-width: 460px;
}
body.page-renovationcuisine .scope__visual {
  display: flex;
  flex-direction: column;
  gap: 44px;
}
body.page-renovationcuisine .scope__image {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 8;
  background: var(--surface);
  border: 1px solid rgba(var(--bg-alt-ink-rgb), 0.08);
}
body.page-renovationcuisine .scope__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.2) brightness(0.9);
  transition: transform 0.9s var(--easing);
}
body.page-renovationcuisine .scope__image:hover img { transform: scale(1.03); }
body.page-renovationcuisine .scope__image-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 12px 20px;
  background: rgba(0, 0, 0, 0.82);
  color: var(--secondary);
  font-size: 13.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  border: 1px solid rgba(var(--secondary-rgb), 0.5);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}
@media (max-width: 640px) {
  body.page-renovationcuisine .scope__image-caption {
    font-size: 12px;
    padding: 10px 14px;
    letter-spacing: 0.1em;
  }
}
body.page-renovationcuisine .scope__pillars {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
}
body.page-renovationcuisine .scope__pillars li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 22px 22px 20px;
  background: rgba(var(--bg-alt-ink-rgb), 0.04);
  border: 1px solid rgba(var(--bg-alt-ink-rgb), 0.08);
  border-radius: var(--radius);
  transition: border-color 0.3s var(--easing), transform 0.3s var(--easing);
}
body.page-renovationcuisine .scope__pillars li:hover {
  border-color: rgba(var(--secondary-rgb), 0.5);
  transform: translateY(-3px);
}
body.page-renovationcuisine .scope__pillar-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--secondary);
  line-height: 1;
  letter-spacing: 0.02em;
}
body.page-renovationcuisine .scope__pillars h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--bg-alt-ink);
  margin: 0 0 6px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
body.page-renovationcuisine .scope__pillars p {
  color: rgba(var(--bg-alt-ink-rgb), 0.72);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

/* Workflow — 5-phase project stages, distinct from plomberie's process */
body.page-renovationcuisine .workflow {
  padding: 130px 0;
  background: var(--background);
  position: relative;
  overflow: hidden;
}
body.page-renovationcuisine .workflow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 10% 20%,
    rgba(var(--primary-rgb), 0.06) 0%,
    rgba(var(--primary-rgb), 0) 70%);
  pointer-events: none;
  z-index: 0;
}
body.page-renovationcuisine .workflow > .container { position: relative; z-index: 1; }
body.page-renovationcuisine .workflow__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}
body.page-renovationcuisine .workflow__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 0.98;
  color: var(--text);
  margin: 14px 0 0;
  text-transform: uppercase;
  font-weight: 400;
}
body.page-renovationcuisine .workflow__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--secondary);
  text-transform: none;
  letter-spacing: -0.02em;
}
body.page-renovationcuisine .workflow__intro {
  font-size: 16.5px;
  color: var(--text-light);
  line-height: 1.75;
  margin: 0;
  padding-left: 28px;
  border-left: 2px solid var(--primary);
}
body.page-renovationcuisine .workflow__stages {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  border-top: 1px solid rgba(var(--text-rgb), 0.12);
}
body.page-renovationcuisine .workflow-stage {
  padding: 32px 24px 32px 0;
  border-right: 1px solid rgba(var(--text-rgb), 0.12);
  position: relative;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body.page-renovationcuisine .workflow-stage:first-child { padding-left: 0; }
body.page-renovationcuisine .workflow-stage:last-child { border-right: none; padding-right: 0; }
body.page-renovationcuisine .workflow-stage::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 22px;
  right: 20px;
  height: 3px;
  background: var(--primary);
  transition: right 0.4s var(--easing);
}
body.page-renovationcuisine .workflow-stage:first-child::before { left: 0; }
body.page-renovationcuisine .workflow-stage:last-child::before { right: 0; }
body.page-renovationcuisine .workflow-stage:hover::before { background: var(--secondary); }
body.page-renovationcuisine .workflow-stage__phase {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin-top: 8px;
}
body.page-renovationcuisine .workflow-stage__label {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.1;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
body.page-renovationcuisine .workflow-stage__desc {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
body.page-renovationcuisine .workflow-stage__meta {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 600;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(var(--secondary-rgb), 0.28);
}

/* Deep FAQ — details/summary based */
body.page-renovationcuisine .kitchen-faq {
  padding: 130px 0;
  background: var(--surface);
  border-top: var(--hairline);
  border-bottom: var(--hairline);
  position: relative;
  overflow: hidden;
}
body.page-renovationcuisine .kitchen-faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 6%;
  width: 96px;
  height: 3px;
  background: var(--primary);
}
body.page-renovationcuisine .kitchen-faq__container { position: relative; z-index: 1; }
body.page-renovationcuisine .kitchen-faq__head {
  max-width: 700px;
  margin-bottom: 56px;
}
body.page-renovationcuisine .kitchen-faq__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 0.98;
  color: var(--text);
  margin: 14px 0 22px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: -0.005em;
}
body.page-renovationcuisine .kitchen-faq__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--secondary);
  text-transform: none;
  letter-spacing: -0.02em;
}
body.page-renovationcuisine .kitchen-faq__lead {
  color: var(--text-light);
  font-size: 16.5px;
  line-height: 1.75;
  margin: 0;
  max-width: 620px;
}
body.page-renovationcuisine .kitchen-faq__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
body.page-renovationcuisine .kitchen-faq__item {
  background: rgba(var(--bg-alt-ink-rgb), 0.06);
  border: 1px solid rgba(var(--bg-alt-ink-rgb), 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s var(--easing), background 0.3s var(--easing), box-shadow 0.3s var(--easing);
}
body.page-renovationcuisine .kitchen-faq__item:hover {
  background: rgba(var(--bg-alt-ink-rgb), 0.09);
  border-color: rgba(var(--bg-alt-ink-rgb), 0.22);
}
body.page-renovationcuisine .kitchen-faq__item[open] {
  border-color: rgba(var(--secondary-rgb), 0.55);
  background: rgba(var(--bg-alt-ink-rgb), 0.1);
  box-shadow: 0 12px 28px -14px rgba(0,0,0,0.6);
}
body.page-renovationcuisine .kitchen-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-family: var(--font-sans);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: color 0.2s var(--easing);
}
body.page-renovationcuisine .kitchen-faq__item summary::-webkit-details-marker { display: none; }
body.page-renovationcuisine .kitchen-faq__item summary::marker { display: none; }
body.page-renovationcuisine .kitchen-faq__item summary:hover { color: var(--secondary); }
body.page-renovationcuisine .kitchen-faq__marker {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s var(--easing), color 0.3s var(--easing);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}
body.page-renovationcuisine .kitchen-faq__item[open] .kitchen-faq__marker {
  transform: rotate(90deg);
  color: var(--secondary);
}
body.page-renovationcuisine .kitchen-faq__body {
  padding: 4px 28px 26px 72px;
}
body.page-renovationcuisine .kitchen-faq__body p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}
body.page-renovationcuisine .kitchen-faq__inline-link {
  color: var(--secondary);
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--secondary-rgb), 0.4);
  transition: color 0.2s var(--easing), border-color 0.2s var(--easing);
}
body.page-renovationcuisine .kitchen-faq__inline-link:hover {
  color: var(--primary-light);
  border-color: var(--primary-light);
}

/* Next-step CTA — split layout with panel */
body.page-renovationcuisine .next-step {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  color: var(--text);
}
body.page-renovationcuisine .next-step__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
body.page-renovationcuisine .next-step__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.35) brightness(0.45);
}
body.page-renovationcuisine .next-step__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(115deg,
      rgba(var(--background-rgb), 0.94) 0%,
      rgba(var(--background-rgb), 0.78) 55%,
      rgba(var(--background-rgb), 0.55) 100%);
}
body.page-renovationcuisine .next-step__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 60px;
  align-items: center;
}
body.page-renovationcuisine .next-step__eyebrow {
  color: var(--secondary);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 18px;
}
body.page-renovationcuisine .next-step__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 0.95;
  color: var(--text);
  margin: 0 0 22px;
  text-transform: uppercase;
  font-weight: 400;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
body.page-renovationcuisine .next-step__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--secondary);
  text-transform: none;
  letter-spacing: -0.01em;
}
body.page-renovationcuisine .next-step__text {
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 26px;
  max-width: 540px;
}
body.page-renovationcuisine .next-step__nap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-style: normal;
  color: var(--text-light);
  font-size: 14px;
  padding: 14px 20px;
  border: 1px solid rgba(var(--text-rgb), 0.12);
  border-radius: 999px;
  background: rgba(var(--background-rgb), 0.55);
}
body.page-renovationcuisine .next-step__nap a {
  color: var(--secondary);
  white-space: nowrap;
  font-weight: 600;
}
body.page-renovationcuisine .next-step__nap a:hover { color: var(--primary-light); }
body.page-renovationcuisine .next-step__nap-divider {
  color: var(--text-muted);
  opacity: 0.7;
}
body.page-renovationcuisine .next-step__panel {
  background: rgba(var(--background-rgb), 0.82);
  border: 1px solid rgba(var(--secondary-rgb), 0.3);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.6);
}
body.page-renovationcuisine .next-step__panel-eyebrow {
  font-family: var(--font-sans);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
}
body.page-renovationcuisine .next-step__panel-title {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.1;
  color: var(--text);
  margin: 0 0 6px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.02em;
}
body.page-renovationcuisine .next-step__panel-text {
  color: var(--text-light);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0 0 8px;
}
body.page-renovationcuisine .next-step__panel .btn { justify-content: center; }
body.page-renovationcuisine .next-step__panel .btn--ghost {
  background: rgba(var(--secondary-rgb), 0.1);
  border-color: rgba(var(--secondary-rgb), 0.45);
  color: var(--text);
}
body.page-renovationcuisine .next-step__panel .btn--ghost:hover {
  background: var(--secondary);
  color: var(--secondary-ink);
  border-color: var(--secondary);
}
body.page-renovationcuisine .next-step__marks {
  list-style: none;
  padding: 18px 0 0;
  margin: 8px 0 0;
  border-top: 1px solid rgba(var(--text-rgb), 0.12);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.page-renovationcuisine .next-step__marks li {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}
body.page-renovationcuisine .next-step__marks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 2px;
  background: var(--primary);
}

/* Responsive */
@media (max-width: 1080px) {
  body.page-renovationcuisine .scope__container { grid-template-columns: 1fr; gap: 40px; }
  body.page-renovationcuisine .workflow__head { grid-template-columns: 1fr; gap: 28px; }
  body.page-renovationcuisine .workflow__stages { grid-template-columns: repeat(2, 1fr); }
  body.page-renovationcuisine .workflow-stage {
    border-right: none;
    border-bottom: 1px solid rgba(var(--text-rgb), 0.12);
    padding: 28px 0;
  }
  body.page-renovationcuisine .workflow-stage:nth-child(2n) { border-right: none; }
  body.page-renovationcuisine .workflow-stage::before {
    left: 0;
    right: 40%;
  }
  body.page-renovationcuisine .objection {
    grid-template-columns: 160px 1fr;
    gap: 24px 28px;
  }
  body.page-renovationcuisine .objection__a {
    grid-column: 1 / -1;
    padding-left: 160px;
    margin-top: -12px;
  }
  body.page-renovationcuisine .kitchen-hero__meta {
    grid-template-columns: repeat(2, 1fr);
  }
  body.page-renovationcuisine .kitchen-hero__meta-row {
    padding: 12px 20px 12px 0;
    border-right: 1px solid rgba(var(--text-rgb), 0.08);
    border-bottom: 1px solid rgba(var(--text-rgb), 0.08);
  }
  body.page-renovationcuisine .kitchen-hero__meta-row:nth-child(2n) { border-right: none; }
  body.page-renovationcuisine .kitchen-hero__meta-row:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 980px) {
  body.page-renovationcuisine .scope__pillars { grid-template-columns: 1fr; }
  body.page-renovationcuisine .next-step__inner { grid-template-columns: 1fr; gap: 40px; }
  body.page-renovationcuisine .workflow-stage::before { right: 0; }
}

@media (max-width: 640px) {
  body.page-renovationcuisine .kitchen-hero { padding: 80px 0 90px; min-height: 500px; }
  body.page-renovationcuisine .objections,
  body.page-renovationcuisine .scope,
  body.page-renovationcuisine .workflow,
  body.page-renovationcuisine .kitchen-faq,
  body.page-renovationcuisine .next-step { padding: 80px 0; }
  body.page-renovationcuisine .objection {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 26px 0;
  }
  body.page-renovationcuisine .objection__a {
    padding-left: 0;
    margin-top: 0;
  }
  body.page-renovationcuisine .workflow__stages { grid-template-columns: 1fr; }
  body.page-renovationcuisine .workflow-stage { padding: 22px 0; }
  body.page-renovationcuisine .workflow-stage::before {
    left: 0;
    right: 60%;
  }
  body.page-renovationcuisine .kitchen-faq__item summary {
    padding: 18px 20px;
    font-size: 15px;
    gap: 12px;
  }
  body.page-renovationcuisine .kitchen-faq__body {
    padding: 0 20px 22px 52px;
  }
  body.page-renovationcuisine .next-step__panel { padding: 26px 22px; }
  body.page-renovationcuisine .kitchen-hero__meta {
    grid-template-columns: 1fr;
  }
  body.page-renovationcuisine .kitchen-hero__meta-row {
    border-right: none;
    padding: 10px 0;
  }
  body.page-renovationcuisine .kitchen-hero__meta-row:last-child { border-bottom: none; }
}

/* ==========================================================
   PAGE: DEBOUCHAGE — LongDocument, service_detail
   ========================================================== */
body.page-debouchage main {
  background: var(--bg);
}

/* ---------- Drain Doc (text-led hero) ---------- */
body.page-debouchage .drain-doc {
  position: relative;
  padding: 96px 0 88px;
  background:
    linear-gradient(180deg,
      var(--surface) 0%,
      var(--bg-alt) 100%);
  border-bottom: 1px solid rgba(var(--text-rgb), 0.06);
  overflow: hidden;
}
body.page-debouchage .drain-doc::before {
  content: "";
  position: absolute;
  top: 0;
  right: -6vw;
  width: 34vw;
  height: 100%;
  background:
    radial-gradient(ellipse 80% 60% at 100% 40%, rgba(var(--primary-rgb), 0.09) 0%, rgba(var(--primary-rgb), 0) 70%);
  pointer-events: none;
}
body.page-debouchage .drain-doc__inner {
  position: relative;
  max-width: 920px;
}
body.page-debouchage .drain-doc__crumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
body.page-debouchage .drain-doc__crumb a {
  color: var(--secondary);
  text-decoration: none;
}
body.page-debouchage .drain-doc__crumb a:hover { color: var(--primary-light); }
body.page-debouchage .drain-doc__crumb span[aria-hidden] { color: var(--text-muted); opacity: 0.6; }

body.page-debouchage .drain-doc__meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 14px 8px 8px;
  border: 1px solid rgba(var(--secondary-rgb), 0.35);
  border-radius: 999px;
  margin-bottom: 30px;
  background: rgba(var(--secondary-rgb), 0.05);
}
body.page-debouchage .drain-doc__reading {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(var(--secondary-rgb), 0.14);
  padding: 6px 12px;
  border-radius: 999px;
}
body.page-debouchage .drain-doc__urgence {
  font-size: 12.5px;
  color: var(--text-light);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

body.page-debouchage .drain-doc__title {
  font-family: var(--font-display);
  font-size: clamp(46px, 6.8vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.01em;
  margin: 0 0 30px;
  color: var(--text);
  text-transform: uppercase;
  font-weight: 400;
}
body.page-debouchage .drain-doc__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--secondary);
  text-transform: none;
  letter-spacing: -0.02em;
  font-size: 0.9em;
}
body.page-debouchage .drain-doc__deck {
  font-family: var(--font-serif);
  font-size: clamp(19px, 2.1vw, 24px);
  line-height: 1.45;
  color: var(--text);
  margin: 0 0 30px;
  max-width: 780px;
  font-weight: 400;
}
body.page-debouchage .drain-doc__deck em {
  font-style: italic;
  color: var(--primary-light);
}
body.page-debouchage .drain-doc__lede {
  border-top: 1px solid rgba(var(--text-rgb), 0.1);
  border-bottom: 1px solid rgba(var(--text-rgb), 0.1);
  padding: 24px 0;
  margin: 0 0 32px;
  max-width: 740px;
}
body.page-debouchage .drain-doc__lede p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-light);
  margin: 0 0 14px;
}
body.page-debouchage .drain-doc__lede p:last-child { margin-bottom: 0; }
body.page-debouchage .drain-doc__lede strong {
  color: var(--text);
  font-weight: 600;
}

body.page-debouchage .drain-doc__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}
body.page-debouchage .drain-doc__tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
body.page-debouchage .drain-doc__tel-num { white-space: nowrap; }

body.page-debouchage .drain-doc__marks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(var(--text-rgb), 0.1);
  padding-top: 28px;
}
body.page-debouchage .drain-doc__marks > div {
  padding: 0 24px;
  border-right: 1px solid rgba(var(--text-rgb), 0.08);
}
body.page-debouchage .drain-doc__marks > div:first-child { padding-left: 0; }
body.page-debouchage .drain-doc__marks > div:last-child { border-right: none; padding-right: 0; }
body.page-debouchage .drain-doc__marks dt {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 6px;
}
body.page-debouchage .drain-doc__marks dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
  color: var(--secondary);
  letter-spacing: 0.02em;
}

/* ---------- Signals (scenario_intro) ---------- */
body.page-debouchage .drain-signals {
  padding: 110px 0;
  background: var(--bg);
}
body.page-debouchage .drain-signals__head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: end;
}
body.page-debouchage .drain-signals__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1;
  margin: 14px 0 0;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 400;
  letter-spacing: -0.01em;
}
body.page-debouchage .drain-signals__title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--secondary);
  text-transform: none;
  font-size: 0.86em;
  font-weight: 500;
  letter-spacing: -0.02em;
}
body.page-debouchage .drain-signals__intro {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

body.page-debouchage .drain-signals__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(var(--text-rgb), 0.1);
}
body.page-debouchage .drain-signal {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 32px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(var(--text-rgb), 0.1);
  align-items: start;
}
body.page-debouchage .drain-signal__index {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--primary);
  letter-spacing: 0.02em;
  padding-top: 4px;
}
body.page-debouchage .drain-signal__row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
body.page-debouchage .drain-signal__name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.01em;
}
body.page-debouchage .drain-signal__tag {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
}
body.page-debouchage .drain-signal__tag--early {
  background: rgba(var(--secondary-rgb), 0.14);
  border-color: rgba(var(--secondary-rgb), 0.4);
  color: var(--secondary);
}
body.page-debouchage .drain-signal__tag--warn {
  background: rgba(var(--primary-rgb), 0.14);
  border-color: rgba(var(--primary-rgb), 0.5);
  color: var(--primary-light);
}
body.page-debouchage .drain-signal__tag--urgent {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-ink);
  font-weight: 600;
}
body.page-debouchage .drain-signal__desc {
  font-size: 15px;
  line-height: 1.72;
  color: var(--text-light);
  margin: 0;
  max-width: 700px;
}

/* ---------- Decision matrix ---------- */
body.page-debouchage .drain-decision {
  padding: 110px 0;
  background: var(--bg-alt);
  color: var(--bg-alt-ink);
  position: relative;
}
body.page-debouchage .drain-decision__intro {
  max-width: 780px;
  margin: 0 0 56px;
}
body.page-debouchage .drain-decision__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1;
  margin: 14px 0 24px;
  text-transform: uppercase;
  color: var(--bg-alt-ink);
  font-weight: 400;
  letter-spacing: -0.01em;
}
body.page-debouchage .drain-decision__title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--secondary);
  text-transform: none;
  font-size: 0.86em;
  font-weight: 500;
  letter-spacing: -0.02em;
}
body.page-debouchage .drain-decision__text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(var(--bg-alt-ink-rgb), 0.72);
  margin: 0;
}
body.page-debouchage .drain-decision__text em {
  font-style: italic;
  color: var(--secondary);
}
body.page-debouchage .drain-decision__note {
  margin: 36px 0 0;
  padding: 20px 24px;
  border-left: 3px solid var(--secondary);
  background: rgba(var(--bg-alt-ink-rgb), 0.03);
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(var(--bg-alt-ink-rgb), 0.8);
}
body.page-debouchage .drain-decision__note strong {
  color: var(--bg-alt-ink);
  font-weight: 600;
}

body.page-debouchage .drain-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(var(--bg-alt-ink-rgb), 0.1);
}
body.page-debouchage .drain-matrix__col {
  padding: 34px 30px 38px;
  border-right: 1px solid rgba(var(--bg-alt-ink-rgb), 0.1);
  position: relative;
  background: rgba(var(--bg-alt-ink-rgb), 0.02);
}
body.page-debouchage .drain-matrix__col:last-child { border-right: none; }
body.page-debouchage .drain-matrix__col--A::before,
body.page-debouchage .drain-matrix__col--B::before,
body.page-debouchage .drain-matrix__col--C::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
body.page-debouchage .drain-matrix__col--A::before { background: var(--secondary); }
body.page-debouchage .drain-matrix__col--B::before { background: var(--primary-light); }
body.page-debouchage .drain-matrix__col--C::before { background: var(--primary); }

body.page-debouchage .drain-matrix__head {
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(var(--bg-alt-ink-rgb), 0.1);
}
body.page-debouchage .drain-matrix__level {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 10px;
}
body.page-debouchage .drain-matrix__col--B .drain-matrix__level { color: var(--primary-light); }
body.page-debouchage .drain-matrix__col--C .drain-matrix__level { color: var(--primary); }
body.page-debouchage .drain-matrix__label {
  font-family: var(--font-display);
  font-size: 26px;
  text-transform: uppercase;
  color: var(--bg-alt-ink);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
  font-weight: 400;
}
body.page-debouchage .drain-matrix__hint {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(var(--bg-alt-ink-rgb), 0.6);
  margin: 0;
}
body.page-debouchage .drain-matrix__body {
  margin: 0;
}
body.page-debouchage .drain-matrix__body dt {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(var(--bg-alt-ink-rgb), 0.55);
  margin: 0 0 6px;
}
body.page-debouchage .drain-matrix__body dd {
  margin: 0 0 18px;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(var(--bg-alt-ink-rgb), 0.88);
}
body.page-debouchage .drain-matrix__body dd:last-child { margin-bottom: 0; }

/* ---------- Method (service_process) ---------- */
body.page-debouchage .drain-method {
  padding: 110px 0;
  background: var(--bg);
}
body.page-debouchage .drain-method__container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}
body.page-debouchage .drain-method__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1;
  margin: 14px 0 24px;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 400;
  letter-spacing: -0.01em;
}
body.page-debouchage .drain-method__title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--secondary);
  text-transform: none;
  font-size: 0.86em;
  font-weight: 500;
  letter-spacing: -0.02em;
}
body.page-debouchage .drain-method__text {
  font-size: 15.5px;
  line-height: 1.72;
  color: var(--text-light);
  margin: 0 0 26px;
}
body.page-debouchage .drain-method__lead {
  position: sticky;
  top: 100px;
}

body.page-debouchage .drain-method__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: dstep;
}
body.page-debouchage .drain-step {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-top: 1px solid rgba(var(--text-rgb), 0.1);
  align-items: start;
}
body.page-debouchage .drain-step:first-child { border-top: none; padding-top: 0; }
body.page-debouchage .drain-step__num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--primary);
  padding: 8px 14px;
  border: 1px solid rgba(var(--primary-rgb), 0.45);
  background: rgba(var(--primary-rgb), 0.06);
  text-align: center;
  border-radius: 4px;
  letter-spacing: 0.04em;
}
body.page-debouchage .drain-step__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
body.page-debouchage .drain-step__desc {
  font-size: 15px;
  line-height: 1.72;
  color: var(--text-light);
  margin: 0 0 12px;
}
body.page-debouchage .drain-step__tool {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary);
  padding: 4px 10px;
  border: 1px solid rgba(var(--secondary-rgb), 0.35);
  border-radius: 999px;
}

/* ---------- Prevention (media-backed) ---------- */
body.page-debouchage .drain-prevention {
  position: relative;
  min-height: 520px;
  padding: 110px 0;
  overflow: hidden;
  color: var(--text);
}
body.page-debouchage .drain-prevention__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
body.page-debouchage .drain-prevention__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.35) brightness(0.5) contrast(1.05);
}
body.page-debouchage .drain-prevention__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg,
      rgba(0,0,0,0.85) 0%,
      rgba(0,0,0,0.62) 55%,
      rgba(0,0,0,0.4) 100%);
}
body.page-debouchage .drain-prevention__inner {
  position: relative;
  z-index: 2;
}
body.page-debouchage .drain-prevention__body {
  max-width: 680px;
}
body.page-debouchage .drain-prevention__eyebrow {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 18px;
  padding: 6px 12px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(var(--secondary-rgb), 0.5);
  border-radius: 999px;
}
body.page-debouchage .drain-prevention__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1;
  margin: 0 0 24px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.7);
}
body.page-debouchage .drain-prevention__title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--secondary);
  text-transform: none;
  font-size: 0.86em;
  font-weight: 500;
  letter-spacing: -0.02em;
}
body.page-debouchage .drain-prevention__text {
  font-size: 16px;
  line-height: 1.72;
  color: rgba(255,255,255,0.9);
  margin: 0 0 18px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
body.page-debouchage .drain-prevention__text--muted {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
}
body.page-debouchage .drain-prevention__list {
  list-style: none;
  padding: 24px 0 0;
  margin: 26px 0 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
body.page-debouchage .drain-prevention__list li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}
body.page-debouchage .drain-prevention__list strong {
  color: var(--secondary);
  font-weight: 600;
  margin-right: 4px;
}
body.page-debouchage .drain-prevention__dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 7px;
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.25);
}

/* ---------- FAQ (service_specific_faq) ---------- */
body.page-debouchage .drain-faq {
  padding: 110px 0;
  background: var(--bg);
}
body.page-debouchage .drain-faq__head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
body.page-debouchage .drain-faq__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1;
  margin: 14px 0 20px;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 400;
  letter-spacing: -0.01em;
}
body.page-debouchage .drain-faq__title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--secondary);
  text-transform: none;
  font-size: 0.9em;
  font-weight: 500;
  letter-spacing: -0.02em;
}
body.page-debouchage .drain-faq__lead {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}
body.page-debouchage .drain-faq__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(var(--text-rgb), 0.1);
  border-left: 1px solid rgba(var(--text-rgb), 0.1);
}
body.page-debouchage .drain-qa {
  padding: 32px 32px 34px;
  border-right: 1px solid rgba(var(--text-rgb), 0.1);
  border-bottom: 1px solid rgba(var(--text-rgb), 0.1);
  background: rgba(var(--text-rgb), 0.015);
}
body.page-debouchage .drain-qa__q {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: baseline;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(var(--text-rgb), 0.14);
}
body.page-debouchage .drain-qa__id {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--primary);
  letter-spacing: 0.02em;
}
body.page-debouchage .drain-qa__q h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin: 0;
  line-height: 1.35;
  letter-spacing: -0.005em;
}
body.page-debouchage .drain-qa__a {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-light);
  padding-left: 54px;
}
body.page-debouchage .drain-qa__link {
  color: var(--secondary);
  border-bottom: 1px solid rgba(var(--secondary-rgb), 0.45);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
body.page-debouchage .drain-qa__link:hover {
  color: var(--primary-light);
  border-color: var(--primary-light);
}

/* ---------- Scoped CTA ---------- */
body.page-debouchage .drain-cta {
  padding: 110px 0 120px;
  background: var(--surface);
  border-top: 1px solid rgba(var(--text-rgb), 0.08);
}
body.page-debouchage .drain-cta__container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: start;
}
body.page-debouchage .drain-cta__panel {
  padding: 44px 44px 42px;
  background: var(--bg-alt);
  border: 1px solid rgba(var(--secondary-rgb), 0.28);
  border-radius: 4px;
  position: relative;
}
body.page-debouchage .drain-cta__panel::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}
body.page-debouchage .drain-cta__eyebrow {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 16px;
}
body.page-debouchage .drain-cta__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.02;
  margin: 0 0 20px;
  text-transform: uppercase;
  color: var(--bg-alt-ink);
  font-weight: 400;
  letter-spacing: -0.01em;
}
body.page-debouchage .drain-cta__title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--secondary);
  text-transform: none;
  font-size: 0.9em;
  font-weight: 500;
  letter-spacing: -0.02em;
}
body.page-debouchage .drain-cta__text {
  font-size: 15.5px;
  line-height: 1.72;
  color: rgba(var(--bg-alt-ink-rgb), 0.78);
  margin: 0 0 28px;
}
body.page-debouchage .drain-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}
body.page-debouchage .drain-cta__tel {
  white-space: nowrap;
}
body.page-debouchage .drain-cta__nap {
  font-style: normal;
  font-size: 12.5px;
  color: rgba(var(--bg-alt-ink-rgb), 0.6);
  padding-top: 20px;
  border-top: 1px solid rgba(var(--bg-alt-ink-rgb), 0.12);
  line-height: 1.6;
}

body.page-debouchage .drain-cta__side {
  padding: 8px 4px 0;
}
body.page-debouchage .drain-cta__side-tag {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 24px;
}
body.page-debouchage .drain-cta__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
body.page-debouchage .drain-cta__list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 4px 20px;
  border-bottom: 1px solid rgba(var(--text-rgb), 0.08);
}
body.page-debouchage .drain-cta__list li:last-child { border-bottom: none; }
body.page-debouchage .drain-cta__list-key {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--secondary);
  letter-spacing: 0.02em;
}
body.page-debouchage .drain-cta__list strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
body.page-debouchage .drain-cta__list li > div {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
}

/* ---------- Responsive: DEBOUCHAGE ---------- */
@media (max-width: 1080px) {
  body.page-debouchage .drain-signals__head { grid-template-columns: 1fr; gap: 24px; }
  body.page-debouchage .drain-method__container { grid-template-columns: 1fr; gap: 40px; }
  body.page-debouchage .drain-method__lead { position: static; }
  body.page-debouchage .drain-cta__container { grid-template-columns: 1fr; gap: 40px; }
  body.page-debouchage .drain-matrix { grid-template-columns: 1fr; }
  body.page-debouchage .drain-matrix__col {
    border-right: none;
    border-bottom: 1px solid rgba(var(--bg-alt-ink-rgb), 0.1);
  }
  body.page-debouchage .drain-matrix__col:last-child { border-bottom: none; }
  body.page-debouchage .drain-faq__list { grid-template-columns: 1fr; }
  body.page-debouchage .drain-doc__marks { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
  body.page-debouchage .drain-doc__marks > div:nth-child(2) { border-right: none; }
  body.page-debouchage .drain-doc__marks > div:nth-child(3) { padding-left: 0; }
}

@media (max-width: 720px) {
  body.page-debouchage .drain-doc { padding: 72px 0 68px; }
  body.page-debouchage .drain-signals,
  body.page-debouchage .drain-decision,
  body.page-debouchage .drain-method,
  body.page-debouchage .drain-prevention,
  body.page-debouchage .drain-faq,
  body.page-debouchage .drain-cta { padding: 72px 0; }
  body.page-debouchage .drain-signal {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 26px 0;
  }
  body.page-debouchage .drain-signal__index {
    font-size: 22px;
    padding-top: 0;
  }
  body.page-debouchage .drain-signal__row { gap: 10px; }
  body.page-debouchage .drain-signal__name { font-size: 20px; }
  body.page-debouchage .drain-doc__meta { flex-wrap: wrap; gap: 8px; padding: 6px 12px 6px 6px; }
  body.page-debouchage .drain-doc__urgence { font-size: 11.5px; }
  body.page-debouchage .drain-doc__foot { flex-direction: column; align-items: stretch; }
  body.page-debouchage .drain-doc__foot .btn { text-align: center; }
  body.page-debouchage .drain-doc__marks { grid-template-columns: 1fr; padding-top: 22px; }
  body.page-debouchage .drain-doc__marks > div {
    padding: 12px 0;
    border-right: none;
    border-bottom: 1px solid rgba(var(--text-rgb), 0.08);
  }
  body.page-debouchage .drain-doc__marks > div:last-child { border-bottom: none; }
  body.page-debouchage .drain-matrix__col { padding: 26px 22px 30px; }
  body.page-debouchage .drain-step {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 0;
  }
  body.page-debouchage .drain-step__num {
    justify-self: start;
    padding: 6px 12px;
    font-size: 16px;
  }
  body.page-debouchage .drain-cta__panel { padding: 32px 24px 30px; }
  body.page-debouchage .drain-qa { padding: 26px 22px 28px; }
  body.page-debouchage .drain-qa__a { padding-left: 0; }
  body.page-debouchage .drain-prevention__list li {
    grid-template-columns: 14px 1fr;
    gap: 12px;
  }
}

/* =========================================
   RÉNOVATION SOUS-SOL — page-renovationsous-sol
   NarrativeWorkflow: hero → triggers → check → flow → scope → faq → close
   ========================================= */

body.page-renovationsous-sol main {
  background: var(--background);
}

/* --- Hero: split copy + brief panel --- */
body.page-renovationsous-sol .basement-hero {
  position: relative;
  padding: 68px 0 92px;
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(var(--primary-rgb), 0.14), transparent 60%),
    linear-gradient(180deg, var(--bg-alt) 0%, var(--background) 100%);
  border-bottom: var(--hairline);
  overflow: hidden;
}
body.page-renovationsous-sol .basement-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(var(--text-rgb), 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--text-rgb), 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.35;
  pointer-events: none;
}
body.page-renovationsous-sol .basement-hero__inner {
  position: relative;
  z-index: 1;
}
body.page-renovationsous-sol .basement-hero__crumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 38px;
}
body.page-renovationsous-sol .basement-hero__crumb a { color: var(--secondary); }
body.page-renovationsous-sol .basement-hero__crumb a:hover { color: var(--primary-light); }
body.page-renovationsous-sol .basement-hero__crumb span[aria-hidden] { color: var(--text-muted); opacity: 0.6; }
body.page-renovationsous-sol .basement-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
body.page-renovationsous-sol .basement-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  padding: 6px 14px;
  border: 1px solid rgba(var(--secondary-rgb), 0.35);
  border-radius: 999px;
  margin-bottom: 26px;
}
body.page-renovationsous-sol .basement-hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.3vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 30px;
  text-transform: none;
}
body.page-renovationsous-sol .basement-hero__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--primary-light);
  letter-spacing: -0.02em;
  display: inline-block;
}
body.page-renovationsous-sol .basement-hero__deck {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(var(--text-rgb), 0.85);
  max-width: 620px;
  margin: 0 0 32px;
}
body.page-renovationsous-sol .basement-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
body.page-renovationsous-sol .basement-hero__actions .btn--ghost {
  border-color: rgba(var(--secondary-rgb), 0.55);
  color: var(--text);
}

body.page-renovationsous-sol .basement-hero__brief {
  background: rgba(var(--bg-alt-rgb), 0.75);
  border: var(--hairline-strong);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
body.page-renovationsous-sol .basement-hero__brief-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.4);
  margin-bottom: 22px;
}
body.page-renovationsous-sol .basement-hero__brief-list {
  margin: 0 0 26px;
  display: grid;
  gap: 16px;
}
body.page-renovationsous-sol .basement-hero__brief-list > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(var(--text-rgb), 0.1);
}
body.page-renovationsous-sol .basement-hero__brief-list > div:last-child { border-bottom: none; padding-bottom: 0; }
body.page-renovationsous-sol .basement-hero__brief-list dt {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 2px;
}
body.page-renovationsous-sol .basement-hero__brief-list dd {
  margin: 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.45;
}
body.page-renovationsous-sol .basement-hero__brief-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--secondary);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-top: 1px solid rgba(var(--secondary-rgb), 0.3);
  padding-top: 18px;
  transition: color 0.25s var(--easing), gap 0.25s var(--easing);
}
body.page-renovationsous-sol .basement-hero__brief-cta:hover {
  color: var(--primary-light);
  gap: 14px;
}

/* --- Triggers: scenario_intro grid --- */
body.page-renovationsous-sol .basement-triggers {
  padding: 100px 0;
  background: var(--background);
  position: relative;
}
body.page-renovationsous-sol .basement-triggers__head {
  max-width: 780px;
  margin-bottom: 60px;
}
body.page-renovationsous-sol .basement-triggers__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 14px 0 22px;
  text-transform: none;
}
body.page-renovationsous-sol .basement-triggers__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--primary);
}
body.page-renovationsous-sol .basement-triggers__intro {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 720px;
  margin: 0;
}
body.page-renovationsous-sol .basement-triggers__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(var(--text-rgb), 0.12);
  border-bottom: 1px solid rgba(var(--text-rgb), 0.12);
}
body.page-renovationsous-sol .basement-trigger {
  position: relative;
  padding: 40px 26px 36px;
  border-right: 1px solid rgba(var(--text-rgb), 0.1);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.3s var(--easing);
}
body.page-renovationsous-sol .basement-trigger:last-child { border-right: none; }
body.page-renovationsous-sol .basement-trigger:hover { background: rgba(var(--bg-alt-rgb), 0.55); }
body.page-renovationsous-sol .basement-trigger__num {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--primary);
  letter-spacing: 0.02em;
}
body.page-renovationsous-sol .basement-trigger__label {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.25;
  color: var(--text);
  margin: 0;
  font-weight: 500;
}
body.page-renovationsous-sol .basement-trigger__desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0;
  flex: 1;
}
body.page-renovationsous-sol .basement-trigger__mark {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  padding-top: 14px;
  border-top: 1px dashed rgba(var(--secondary-rgb), 0.35);
  margin-top: auto;
}

/* --- Site check: two-column with priority-tagged list --- */
body.page-renovationsous-sol .basement-check {
  padding: 110px 0;
  background:
    linear-gradient(180deg, var(--bg-alt) 0%, #14120f 100%);
  position: relative;
}
body.page-renovationsous-sol .basement-check::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 40px;
  background: rgba(var(--secondary-rgb), 0.55);
}
body.page-renovationsous-sol .basement-check__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 64px;
  align-items: start;
}
body.page-renovationsous-sol .basement-check__intro {
  position: sticky;
  top: 130px;
}
body.page-renovationsous-sol .basement-check__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  color: var(--text);
  margin: 12px 0 22px;
  text-transform: none;
}
body.page-renovationsous-sol .basement-check__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--secondary);
}
body.page-renovationsous-sol .basement-check__text {
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(var(--text-rgb), 0.85);
  margin: 0 0 18px;
}
body.page-renovationsous-sol .basement-check__note {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  border-left: 2px solid var(--primary);
  padding-left: 14px;
  line-height: 1.55;
  margin: 0;
}
body.page-renovationsous-sol .basement-check__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}
body.page-renovationsous-sol .basement-check-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(var(--text-rgb), 0.09);
}
body.page-renovationsous-sol .basement-check-item:first-child { padding-top: 0; }
body.page-renovationsous-sol .basement-check-item:last-child { border-bottom: none; padding-bottom: 0; }
body.page-renovationsous-sol .basement-check-item__code {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--primary);
  line-height: 1;
  letter-spacing: 0.02em;
}
body.page-renovationsous-sol .basement-check-item__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.page-renovationsous-sol .basement-check-item__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  margin: 0;
  line-height: 1.3;
}
body.page-renovationsous-sol .basement-check-item__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-light);
  margin: 0;
}
body.page-renovationsous-sol .basement-check-item__flag {
  align-self: flex-start;
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-top: 4px;
}
body.page-renovationsous-sol .basement-check-item__flag--A {
  background: rgba(var(--primary-rgb), 0.15);
  color: var(--primary-light);
  border: 1px solid rgba(var(--primary-rgb), 0.35);
}
body.page-renovationsous-sol .basement-check-item__flag--B {
  background: rgba(var(--secondary-rgb), 0.1);
  color: var(--secondary);
  border: 1px solid rgba(var(--secondary-rgb), 0.3);
}

/* --- Flow: horizontal-flow timeline --- */
body.page-renovationsous-sol .basement-flow {
  padding: 110px 0;
  background: var(--background);
  border-top: var(--hairline);
}
body.page-renovationsous-sol .basement-flow__container { }
body.page-renovationsous-sol .basement-flow__head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}
body.page-renovationsous-sol .basement-flow__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  color: var(--text);
  margin: 12px 0 0;
  text-transform: none;
}
body.page-renovationsous-sol .basement-flow__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--primary);
}
body.page-renovationsous-sol .basement-flow__intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}
body.page-renovationsous-sol .basement-flow__timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  position: relative;
}
body.page-renovationsous-sol .basement-flow__timeline::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    rgba(var(--secondary-rgb), 0.4) 0 6px,
    transparent 6px 12px
  );
}
body.page-renovationsous-sol .basement-phase {
  position: relative;
  padding: 0 20px;
  border-right: 1px dashed rgba(var(--text-rgb), 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
body.page-renovationsous-sol .basement-phase:first-child { padding-left: 0; }
body.page-renovationsous-sol .basement-phase:last-child { border-right: none; padding-right: 0; }
body.page-renovationsous-sol .basement-phase::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--background);
  box-shadow: 0 0 0 1px rgba(var(--primary-rgb), 0.5);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
body.page-renovationsous-sol .basement-phase:hover::before { background: var(--secondary); }
body.page-renovationsous-sol .basement-phase__marker {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
body.page-renovationsous-sol .basement-phase__step {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
}
body.page-renovationsous-sol .basement-phase__eta {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
body.page-renovationsous-sol .basement-phase__title {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.25;
  color: var(--text);
  font-weight: 500;
  margin: 0;
}
body.page-renovationsous-sol .basement-phase__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0;
}

/* --- Scope: three-column task columns --- */
body.page-renovationsous-sol .basement-scope {
  padding: 110px 0;
  background:
    radial-gradient(900px 480px at 8% 20%, rgba(var(--accent-rgb), 0.08), transparent 60%),
    var(--bg-alt);
}
body.page-renovationsous-sol .basement-scope__container { }
body.page-renovationsous-sol .basement-scope__head {
  max-width: 800px;
  margin-bottom: 64px;
}
body.page-renovationsous-sol .basement-scope__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  color: var(--text);
  margin: 14px 0 22px;
  text-transform: none;
}
body.page-renovationsous-sol .basement-scope__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--secondary);
}
body.page-renovationsous-sol .basement-scope__text {
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(var(--text-rgb), 0.85);
  margin: 0;
}
body.page-renovationsous-sol .basement-scope__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
body.page-renovationsous-sol .basement-scope__col {
  background: rgba(var(--background-rgb), 0.55);
  border: 1px solid rgba(var(--text-rgb), 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body.page-renovationsous-sol .basement-scope__col-tag {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.3);
}
body.page-renovationsous-sol .basement-scope__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body.page-renovationsous-sol .basement-scope__list li {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-light);
  padding-left: 18px;
  position: relative;
}
body.page-renovationsous-sol .basement-scope__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 2px;
  background: var(--secondary);
}
body.page-renovationsous-sol .basement-scope__list li strong {
  color: var(--text);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

/* --- FAQ: alternating rows with Q markers --- */
body.page-renovationsous-sol .basement-faq {
  padding: 110px 0;
  background: var(--background);
  border-top: var(--hairline);
}
body.page-renovationsous-sol .basement-faq__container { }
body.page-renovationsous-sol .basement-faq__head {
  max-width: 780px;
  margin: 0 auto 60px;
  text-align: center;
}
body.page-renovationsous-sol .basement-faq__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  color: var(--text);
  margin: 14px 0 20px;
  text-transform: none;
}
body.page-renovationsous-sol .basement-faq__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--primary);
}
body.page-renovationsous-sol .basement-faq__lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}
body.page-renovationsous-sol .basement-faq__list {
  display: grid;
  gap: 0;
  max-width: 940px;
  margin: 0 auto;
  border-top: 1px solid rgba(var(--text-rgb), 0.12);
}
body.page-renovationsous-sol .basement-qa {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(var(--text-rgb), 0.12);
  transition: background 0.25s var(--easing);
}
body.page-renovationsous-sol .basement-qa:hover { background: rgba(var(--bg-alt-rgb), 0.35); }
body.page-renovationsous-sol .basement-qa__id {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--secondary);
  line-height: 1;
  letter-spacing: 0.02em;
}
body.page-renovationsous-sol .basement-qa__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body.page-renovationsous-sol .basement-qa__q {
  font-family: var(--font-serif);
  font-size: 21px;
  line-height: 1.35;
  font-weight: 500;
  color: var(--text);
  margin: 0;
}
body.page-renovationsous-sol .basement-qa__a {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}
body.page-renovationsous-sol .basement-qa__link {
  color: var(--secondary);
  border-bottom: 1px solid rgba(var(--secondary-rgb), 0.35);
  transition: color 0.2s var(--easing);
}
body.page-renovationsous-sol .basement-qa__link:hover { color: var(--primary-light); }

/* --- Close CTA: photo + panel --- */
body.page-renovationsous-sol .basement-close {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  isolation: isolate;
}
body.page-renovationsous-sol .basement-close__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
body.page-renovationsous-sol .basement-close__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.4) brightness(0.55);
}
body.page-renovationsous-sol .basement-close__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 60%, rgba(var(--primary-rgb), 0.2) 100%);
}
body.page-renovationsous-sol .basement-close__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}
body.page-renovationsous-sol .basement-close__body {
  color: var(--text);
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
body.page-renovationsous-sol .basement-close__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 18px;
  text-shadow: none;
}
body.page-renovationsous-sol .basement-close__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1;
  color: #fff;
  margin: 0 0 24px;
  text-transform: none;
}
body.page-renovationsous-sol .basement-close__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--secondary);
}
body.page-renovationsous-sol .basement-close__text {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin: 0 0 28px;
  max-width: 540px;
}
body.page-renovationsous-sol .basement-close__nap {
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
body.page-renovationsous-sol .basement-close__nap a {
  color: var(--secondary);
  white-space: nowrap;
}
body.page-renovationsous-sol .basement-close__nap a:hover { color: var(--primary-light); }

body.page-renovationsous-sol .basement-close__panel {
  background: rgba(15, 14, 12, 0.92);
  border: 1px solid rgba(var(--secondary-rgb), 0.35);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
}
body.page-renovationsous-sol .basement-close__panel-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
body.page-renovationsous-sol .basement-close__panel-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 14px;
  line-height: 1.25;
}
body.page-renovationsous-sol .basement-close__panel-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0 0 22px;
}
body.page-renovationsous-sol .basement-close__panel .btn {
  justify-content: center;
  margin-bottom: 10px;
}
body.page-renovationsous-sol .basement-close__panel .btn--ghost {
  border-color: rgba(var(--secondary-rgb), 0.55);
  color: var(--text);
}
body.page-renovationsous-sol .basement-close__panel .btn--ghost:hover {
  background: var(--secondary);
  color: var(--secondary-ink);
}
body.page-renovationsous-sol .basement-close__marks {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 8px;
}
body.page-renovationsous-sol .basement-close__marks li {
  position: relative;
  padding-left: 20px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--text-light);
}
body.page-renovationsous-sol .basement-close__marks li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* --- Responsive tuning --- */
@media (max-width: 1024px) {
  body.page-renovationsous-sol .basement-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  body.page-renovationsous-sol .basement-triggers__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.page-renovationsous-sol .basement-trigger {
    border-right: none;
    border-bottom: 1px solid rgba(var(--text-rgb), 0.1);
  }
  body.page-renovationsous-sol .basement-trigger:nth-child(2n) { border-right: none; }
  body.page-renovationsous-sol .basement-trigger:nth-child(odd) { border-right: 1px solid rgba(var(--text-rgb), 0.1); }
  body.page-renovationsous-sol .basement-check__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  body.page-renovationsous-sol .basement-check__intro { position: static; }
  body.page-renovationsous-sol .basement-flow__head {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }
  body.page-renovationsous-sol .basement-flow__timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }
  body.page-renovationsous-sol .basement-flow__timeline::before { display: none; }
  body.page-renovationsous-sol .basement-phase {
    padding: 24px;
    border: 1px solid rgba(var(--text-rgb), 0.1);
    border-radius: var(--radius);
  }
  body.page-renovationsous-sol .basement-phase::before { margin-bottom: 12px; }
  body.page-renovationsous-sol .basement-scope__grid {
    grid-template-columns: 1fr;
  }
  body.page-renovationsous-sol .basement-close__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 720px) {
  body.page-renovationsous-sol .basement-hero { padding: 48px 0 68px; }
  body.page-renovationsous-sol .basement-hero__brief { padding: 24px 22px; }
  body.page-renovationsous-sol .basement-hero__brief-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  body.page-renovationsous-sol .basement-triggers { padding: 68px 0; }
  body.page-renovationsous-sol .basement-triggers__grid { grid-template-columns: 1fr; }
  body.page-renovationsous-sol .basement-trigger {
    border-right: none;
    padding: 32px 0;
  }
  body.page-renovationsous-sol .basement-trigger:nth-child(odd) { border-right: none; }
  body.page-renovationsous-sol .basement-check { padding: 72px 0; }
  body.page-renovationsous-sol .basement-check-item {
    grid-template-columns: 56px 1fr;
    gap: 16px;
  }
  body.page-renovationsous-sol .basement-check-item__code { font-size: 32px; }
  body.page-renovationsous-sol .basement-flow { padding: 72px 0; }
  body.page-renovationsous-sol .basement-flow__timeline { grid-template-columns: 1fr; }
  body.page-renovationsous-sol .basement-scope { padding: 72px 0; }
  body.page-renovationsous-sol .basement-scope__col { padding: 26px 22px; }
  body.page-renovationsous-sol .basement-faq { padding: 72px 0; }
  body.page-renovationsous-sol .basement-qa {
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 26px 0;
  }
  body.page-renovationsous-sol .basement-qa__id { font-size: 28px; }
  body.page-renovationsous-sol .basement-qa__q { font-size: 18px; }
  body.page-renovationsous-sol .basement-close { padding: 72px 0; }
  body.page-renovationsous-sol .basement-close__panel { padding: 28px 22px; }
}

/* 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;
}

.site-header {
  width: 100%;
  max-width: 100%;
}

@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 */
