/* =========================================================
   HOTTE CONSTRUCTION INC.
   Design DNA:
   - Deep charcoal + white alternating bands
   - Narrow center column, generous vertical breathing room
   - Text-first service cards (outlined dark rectangles)
   - Fully-rounded pill buttons with soft shadow
   - Real interior renovation photos as overlapping tilted collage
   - Highlighter-only accent; brand blue used sparingly
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Brand palette */
  --primary: #188bf6;
  --primary-rgb: 24, 139, 246;
  --primary-ink: #ffffff;
  --primary-dark: #155eef;
  --primary-dark-rgb: 21, 94, 239;
  --primary-darker: #0f4bc4;
  --primary-darker-rgb: 15, 75, 196;
  /* Light brand blue tint — for small accents on dark charcoal bands where --primary lacks contrast */
  --primary-light: #6cb6f9;
  --primary-light-rgb: 108, 182, 249;

  --secondary: #2d2d2d;
  --secondary-rgb: 45, 45, 45;
  --secondary-ink: #ffffff;

  /* Neutrals */
  --charcoal: #1e1e1e;
  --charcoal-rgb: 30, 30, 30;
  --charcoal-2: #262626;
  --ink: #ececec;
  --ink-2: #b8b8b8;

  --text: #1a1a1a;
  --text-rgb: 26, 26, 26;
  --text-light: #5c5c5c;
  --text-light-rgb: 92, 92, 92;

  --background: #ffffff;
  --background-rgb: 255, 255, 255;
  --surface: #f6f6f5;
  --surface-rgb: 246, 246, 245;
  --bg-alt: #2d2d2d;
  --bg-alt-rgb: 45, 45, 45;
  --bg-alt-ink: #ffffff;

  --border: rgba(0,0,0,0.12);
  --border-dark: rgba(255,255,255,0.22);

  /* Type */
  --font-heading: 'Outfit', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --font-body: 'Outfit', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --container: 1180px;
  --container-narrow: 880px;
  --radius-pill: 999px;
  --radius-sm: 10px;
  --radius-md: 14px;

  --shadow-pill: 0 6px 18px rgba(0,0,0,0.16);
  --shadow-pill-dark: 0 6px 22px rgba(0,0,0,0.5);
  --shadow-card: 0 24px 40px -30px rgba(0,0,0,0.28);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-heading); margin: 0; letter-spacing: -0.01em; font-weight: 600; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.skip-link {
  position: absolute; top: -100px; left: 8px;
  background: var(--charcoal); color: #fff;
  padding: 0 14px;
  height: 40px;
  line-height: 40px;
  border-radius: 6px; z-index: 999;
  white-space: nowrap;
}
.skip-link:focus { top: 8px; }

*:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 6px; }

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

/* ---------- Buttons (fully rounded pills) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 0 26px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  line-height: 43px;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
  cursor: pointer;
  min-height: 46px;
}
.btn--sm { padding: 0 20px; font-size: 14px; min-height: 40px; line-height: 37px; }
.btn--pill { border-radius: var(--radius-pill); }

.btn--dark {
  background: var(--charcoal);
  color: #fff;
  box-shadow: var(--shadow-pill);
}
.btn--dark:hover { background: #000; transform: translateY(-1px); }

.btn--light {
  background: #ffffff;
  color: var(--charcoal);
  box-shadow: var(--shadow-pill-dark);
}
.btn--light:hover { background: #f0f0f0; transform: translateY(-1px); }

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn--outline-light:hover { background: rgba(255,255,255,0.10); border-color: #fff; }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(0,0,0,0.15);
}
.btn--light-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(2px);
}
.btn--light-ghost:hover { background: rgba(255,255,255,0.14); }

.btn--nav {
  padding: 0 20px;
  font-size: 14px;
  min-height: 40px;
  line-height: 37px;
  background: var(--primary);
  color: #fff;
}
.btn--nav:hover { background: color-mix(in srgb, var(--primary) 85%, #000 15%); }

.btn__icon { display: inline-flex; }
.btn__phone { white-space: nowrap; }

/* ---------- Eyebrows & titles ---------- */
.eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 0 0 14px;
  font-weight: 500;
}
.eyebrow--light { color: rgba(255,255,255,0.72); }
.eyebrow--dark { color: var(--text-light); }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 12px;
}
.section-title--light { color: #ffffff; }
.section-title--dark { color: var(--text); }

.section-kicker {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 6px 0 0;
  font-weight: 500;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--charcoal);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar {
  background: #171717;
  color: #e8e8e8;
  font-size: 13px;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 24px;
  min-height: 40px;
}
.topbar__area { margin: 0; color: rgba(255,255,255,0.72); letter-spacing: 0.02em; }
.topbar__contact {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  flex-wrap: nowrap;
}
.topbar__phone {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
}
.topbar__phone-label { color: rgba(255,255,255,0.6); font-weight: 400; }
.topbar__phone-num { color: #fff; letter-spacing: 0.01em; white-space: nowrap; }
.topbar__phone:hover .topbar__phone-num { color: var(--ink); }
.topbar__sep { color: rgba(255,255,255,0.4); }
.topbar__rbq { color: rgba(255,255,255,0.72); letter-spacing: 0.02em; white-space: nowrap; }

.navbar { background: var(--charcoal); }
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  line-height: 3;
}
.brand__mark {
  height: 46px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand__wordmark { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: #fff;
  white-space: nowrap;
}
.brand__tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-top: 2px;
  white-space: nowrap;
}

/* Primary nav */
.primary-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  min-height: 40px;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-heading);
  font-size: 14px;
  line-height: 40px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: color .18s ease, background-color .18s ease;
  white-space: nowrap;
  position: relative;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-link.active { color: #fff; padding-right: 22px; }
.nav-link.active::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--primary);
}
.nav-caret { transition: transform .2s ease; }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 300px;
  background: #ffffff;
  color: var(--text);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.has-dropdown:hover .nav-caret { transform: rotate(180deg); }
.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text);
  transition: background-color .15s ease;
}
.dropdown a:hover { background: var(--surface); color: var(--charcoal); }

.primary-nav__cta { margin-left: 6px; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
  line-height: 44px;
  font-size: 0;
}
.nav-toggle__bar {
  display: block;
  width: 100%; height: 2px;
  background: #fff;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  color: #fff;
  background: var(--charcoal);
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute; inset: 0;
  z-index: -1;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85) contrast(1.05) saturate(0.9);
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,15,15,0.55) 0%, rgba(15,15,15,0.72) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.35) 100%);
}
.hero__inner {
  position: relative;
  max-width: 900px;
  padding-top: clamp(60px, 10vw, 120px);
  padding-bottom: clamp(60px, 10vw, 120px);
  text-align: center;
}
.hero__title {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #fff;
  margin: 6px 0 22px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero__title-accent { font-weight: 300; color: rgba(255,255,255,0.9); }
.hero__lede {
  max-width: 720px;
  margin: 0 auto 32px;
  color: rgba(255,255,255,0.92);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.65;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
.hero__cta {
  display: flex; flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 28px;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust span { color: var(--primary); font-weight: 700; }

/* =========================================================
   CREDENTIALS STRIP
   ========================================================= */
.creds {
  background: #f4f4f2;
  padding: 36px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.creds__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}
.creds__label {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
  margin: 0;
}
.creds__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 960px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.creds__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 14px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  min-height: 116px;
  justify-content: center;
}
.creds__item:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--primary-rgb), 0.45);
  box-shadow: 0 10px 24px -14px rgba(0,0,0,0.22);
}
.creds__abbr {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.06em;
  color: var(--secondary);
  line-height: 1;
}
.creds__abbr--apchq { color: var(--secondary); }
.creds__abbr--cnesst { color: var(--text-light); }
.creds__abbr--ccq { color: var(--primary-dark); }
.creds__name {
  font-family: var(--font-heading);
  font-size: 11.5px;
  line-height: 1.35;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.01em;
}

@media (max-width: 720px) {
  .creds { padding: 28px 0; }
  .creds__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .creds__item { padding: 14px 10px; min-height: 100px; }
  .creds__abbr { font-size: 18px; }
  .creds__name { font-size: 11px; }
}

/* =========================================================
   SERVICE CHOOSER (echo of source popup)
   ========================================================= */
.chooser {
  background: var(--charcoal);
  color: #fff;
  padding: clamp(52px, 6vw, 76px) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.chooser__inner { max-width: var(--container-narrow); text-align: center; }
.chooser__head { margin-bottom: 24px; }
.chooser__head .section-title { color: #fff; }
.chooser__head .section-kicker { color: rgba(255,255,255,0.6); }
.chooser__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 640px;
  margin: 0 auto;
}
.chooser__pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  padding: 15px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-align: left;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
  border: 1.5px solid rgba(255,255,255,0.45);
}
.chooser__pill::after {
  content: "→";
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  transition: transform .2s ease, color .2s ease;
  flex-shrink: 0;
  opacity: 0.9;
}
.chooser__pill:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
  border-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.chooser__pill:hover::after { transform: translateX(4px); opacity: 1; }

/* =========================================================
   SOLUTIONS — outlined dark service cards on charcoal
   ========================================================= */
.solutions {
  background: var(--charcoal);
  color: #fff;
  padding: clamp(72px, 10vw, 120px) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.solutions__inner { max-width: var(--container); }
.solutions__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.solutions__head .eyebrow { color: rgba(255,255,255,0.55); margin-bottom: 4px; }
.solutions__head .section-title { color: #fff; margin-bottom: 24px; }

/* Service card grid */
.service-grid {
  display: grid;
  gap: 20px;
}
.service-grid--four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 900px) {
  .service-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.service-grid.service-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  transition: border-color .2s ease, transform .2s ease, background-color .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, rgba(var(--primary-rgb), 0.4) 100%);
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 2;
}
.service-card:hover {
  border-color: rgba(var(--primary-rgb), 0.55);
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(var(--primary-rgb), 0.05) 100%);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(var(--primary-rgb), 0.35);
}
.service-card:hover::before { opacity: 1; }
.service-card__media {
  position: relative;
  margin: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #1a1a1a;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.service-card:hover .service-card__media img { transform: scale(1.05); }
.service-card__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-height: 0;
  min-width: 0;
}
.service-card__index {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  margin: 0;
}
.service-card__title {
  font-size: 15px;
  line-height: 1.35;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin: 0;
}
.service-card__copy {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0;
  flex: 1;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color .2s ease, border-color .2s ease;
}
.card-link:hover { color: var(--primary); border-color: var(--primary); }
.card-link__arrow { transition: transform .2s ease; }
.card-link:hover .card-link__arrow { transform: translateX(3px); }

/* =========================================================
   BENEFITS + COLLAGE (white)
   ========================================================= */
.benefits {
  background: #ffffff;
  padding: clamp(72px, 10vw, 120px) 0;
}
.benefits__inner {
  max-width: var(--container);
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .benefits__inner {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    align-items: center;
    gap: 72px;
  }
}
.benefits__copy .section-title { font-size: clamp(26px, 3.4vw, 36px); }
.benefits__lede {
  font-size: 17px;
  color: var(--text-light);
  margin: 0 0 20px;
  line-height: 1.6;
}
.benefits__intro { margin: 0 0 12px; color: var(--text); font-weight: 500; }
.dash-list {
  display: flex; flex-direction: column; gap: 6px;
  padding-left: 4px;
  margin-bottom: 18px;
  color: var(--text);
}
.dash-list li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.7;
}
.dash-list li::before {
  content: "—";
  position: absolute; left: 0; top: 0;
  color: var(--text-light);
}
.benefits__outro { color: var(--text-light); font-size: 15px; }

/* Collage — clean two-tile layout, matched framing */
.collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.collage--hero { grid-template-columns: 1fr; }
.collage__tile {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 44px -24px rgba(0,0,0,0.28);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
  background: #ececea;
  position: relative;
  aspect-ratio: 4/5;
  min-height: 440px;
  border: 1px solid rgba(0,0,0,0.05);
}
.collage__tile--main { aspect-ratio: 4/5; }
.collage__tile--side { aspect-ratio: 4/5; }
.collage__tile img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.collage__tile--side img { object-fit: cover; object-position: center; }
.collage__tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 58px -28px rgba(0,0,0,0.36);
}
.collage__tile:hover img { transform: scale(1.04); }

.collage__cap {
  position: absolute;
  left: 14px; bottom: 14px;
  padding: 8px 14px;
  background: rgba(15,15,15,0.78);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  font-weight: 500;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.08);
}
.collage__cap--top { top: 14px; bottom: auto; }

/* =========================================================
   PROCESS (charcoal)
   ========================================================= */
.process {
  background: var(--charcoal);
  color: #fff;
  padding: clamp(72px, 10vw, 120px) 0;
}
.process__inner {
  max-width: var(--container);
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .process__inner {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: 72px;
  }
}
.process__photo {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6);
  aspect-ratio: 4/5;
}
.process__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.process__body .section-title { font-size: clamp(26px, 3.4vw, 36px); }
.process__lede {
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  margin: 0 0 30px;
  line-height: 1.65;
}

.steps {
  display: flex; flex-direction: column;
  gap: 22px;
  padding-left: 0;
  list-style: none;
  margin: 0 0 32px;
}
.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: flex-start;
}
.step__num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.12);
  border: 1.5px solid rgba(var(--primary-rgb), 0.55);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
}
.step__title {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  margin: 4px 0 4px;
  letter-spacing: -0.005em;
}
.step__copy {
  color: rgba(255,255,255,0.72);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0;
}
.process__cta { text-align: left; }

/* =========================================================
   WHY US (white)
   ========================================================= */
.why {
  background: #ffffff;
  padding: clamp(72px, 10vw, 110px) 0;
}
.why__inner { max-width: var(--container-narrow); text-align: center; }
.why__head { margin-bottom: 32px; }
.why__lede {
  color: var(--text-light);
  font-size: 16px;
  max-width: 620px;
  margin: 0 auto;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px 12px 12px;
  background: #ffffff;
  color: var(--text);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1.5px solid rgba(30,30,30,0.14);
  box-shadow: 0 4px 14px -6px rgba(0,0,0,0.10);
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.badge:hover {
  transform: translateY(-2px);
  background: #fafafa;
  border-color: rgba(30,30,30,0.35);
  box-shadow: 0 10px 22px -8px rgba(0,0,0,0.18);
}
.badge__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--charcoal);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.20);
}

/* =========================================================
   CTA BAND (charcoal)
   ========================================================= */
.cta-band {
  background: var(--charcoal);
  color: #fff;
  padding: clamp(64px, 8vw, 96px) 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cta-band__inner { max-width: var(--container-narrow); }
.cta-band__title {
  font-size: clamp(24px, 3.4vw, 34px);
  color: #fff;
  margin: 0 0 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.cta-band__lede {
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  margin: 0 auto 24px;
  font-size: 15px;
}
.cta-band__actions {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}

/* =========================================================
   SERVICE AREA (white)
   ========================================================= */
.area {
  background: #ffffff;
  padding: clamp(72px, 10vw, 110px) 0;
}
.area__inner {
  max-width: var(--container);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) {
  .area__inner {
    grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
    align-items: center;
    gap: 72px;
  }
}
.area__copy .section-title { font-size: clamp(24px, 3vw, 32px); }
.area__lede {
  color: var(--text-light);
  font-size: 15.5px;
  line-height: 1.7;
  margin-top: 8px;
}
.area__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  border-top: 1px solid var(--border);
}
.area__list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--text);
  letter-spacing: 0.02em;
  position: relative;
  padding-left: 22px;
}
.area__list li::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary);
}

/* =========================================================
   PROMPT (charcoal, split row)
   ========================================================= */
.prompt {
  background: var(--charcoal);
  color: #fff;
  padding: 44px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.prompt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at right center, rgba(var(--primary-rgb), 0.10), transparent 60%);
  pointer-events: none;
}
.prompt__inner {
  max-width: var(--container-narrow);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}
.prompt__note {
  color: rgba(255,255,255,0.92);
  font-size: 15.5px;
  max-width: 520px;
  line-height: 1.55;
}
.prompt__actions { display: flex; gap: 12px; flex-shrink: 0; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #171717;
  color: #d8d8d8;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 36px;
}
@media (min-width: 720px) {
  .footer__inner { grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 40px; }
}
.footer__brand { color: #eaeaea; }
.footer__logo {
  height: 44px; width: auto; max-width: 220px; object-fit: contain; margin-bottom: 16px;
  filter: brightness(1.05);
}
.footer__about { color: #b8b8b8; font-size: 13.5px; line-height: 1.85; letter-spacing: 0.005em; }

.footer__title {
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 12px;
}
.footer__list { display: flex; flex-direction: column; gap: 6px; }
.footer__list a { color: #cfcfcf; font-size: 13.5px; transition: color .18s ease; }
.footer__list a:hover { color: #fff; }

.footer__contact { display: flex; flex-direction: column; gap: 10px; margin: 0 0 14px; }
.footer__contact li { display: flex; flex-direction: column; }
.footer__label {
  color: #888;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1px;
  font-weight: 500;
}
.footer__value { color: #dcdcdc; font-size: 13.5px; }
.footer__link { color: #fff; font-size: 14px; transition: color .18s ease; }
.footer__link:hover { color: rgba(var(--primary-rgb), 1); }
.footer__phone { font-weight: 600; white-space: nowrap; letter-spacing: 0.01em; }

.footer__social {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background-color .18s ease;
}
.footer__social:hover { background: rgba(255,255,255,0.06); }
.footer__social img { filter: invert(1) brightness(1.1); width: 18px; height: 18px; }

.footer__bar {
  background: #0f0f0f;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: #bcbcbc;
  font-size: 12px;
}
.footer__bar-inner p { margin: 0; }
.footer__legal { color: #8f8f8f; }

/* =========================================================
   FLOATING CALL (mobile only)
   ========================================================= */
.fab-call {
  position: fixed;
  right: 16px; bottom: 16px;
  z-index: 90;
  display: none;
  align-items: center; gap: 8px;
  padding: 14px 20px;
  background: var(--charcoal);
  color: #fff;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255,255,255,0.15);
  white-space: nowrap;
}
.fab-call:hover { background: #000; }

/* =========================================================
   HEADER ELEVATED STATE (on scroll)
   ========================================================= */
.site-header.is-scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.28); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--charcoal);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .primary-nav.is-open { max-height: 80vh; overflow: auto; }
  .primary-nav__list {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 20px;
    gap: 2px;
  }
  .nav-link {
    padding: 0 12px;
    min-height: 46px;
    line-height: 46px;
    border-radius: 8px;
    font-size: 15px;
    justify-content: space-between;
  }
  .nav-link.active { padding-right: 12px; }
  .nav-link.active::after {
    position: static;
    display: inline-block;
    transform: none;
    margin-left: auto;
  }
  .has-dropdown { position: static; }
  .dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    background: transparent;
    color: #fff;
    box-shadow: none;
    padding: 4px 0 8px 12px;
    border-left: 1px solid rgba(255,255,255,0.14);
    margin-left: 12px;
  }
  .dropdown a { color: rgba(255,255,255,0.85); padding: 10px 12px; }
  .dropdown a:hover { background: rgba(255,255,255,0.05); color: #fff; }
  .primary-nav__cta { margin: 8px 4px 4px; }
  .primary-nav__cta .btn { width: 100%; }

  .topbar__area { display: none; }
  .topbar__inner { justify-content: center; }

  .fab-call { display: inline-flex; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .hero__inner { padding-top: 56px; padding-bottom: 56px; }
  .hero__trust { gap: 12px 20px; font-size: 12.5px; }
  .prompt__inner { flex-direction: column; align-items: flex-start; }
  .collage {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .collage__tile { min-height: 260px; aspect-ratio: 4/3; }
  .collage__tile--main { min-height: 300px; aspect-ratio: 4/3; }
  .collage__tile--side { aspect-ratio: 4/3; }
  .footer__bar-inner { flex-direction: column; align-items: flex-start; }
  .brand__tag { display: none; }
  .brand__mark { height: 40px; width: auto; }
}

@media (max-width: 520px) {
  .service-grid--four { grid-template-columns: 1fr; }
  .service-card__body { padding: 22px 20px; }
  .badges { gap: 8px; }
  .badge { padding: 12px 18px; font-size: 13px; }
  .area__list { grid-template-columns: 1fr; }

  /* Compact mobile header: keep logo + menu button in one row without overflow.
     Preserve logo aspect ratio via width:auto; allow brand children to shrink;
     let the business name wrap in remaining width. */
  .navbar__inner { gap: 12px; padding: 12px 16px; }
  .brand { gap: 10px; min-width: 0; flex: 1 1 auto; }
  .brand__mark { height: 32px; width: auto; max-width: 44vw; flex-shrink: 0; }
  .brand__wordmark { min-width: 0; flex: 1 1 auto; }
  .brand__name { white-space: normal; overflow-wrap: anywhere; font-size: 15px; line-height: 1.2; }
  .nav-toggle { flex-shrink: 0; }
}

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


/* Solutions section — restore intended dark card theme
   (overrides the safety-net .service-card white background so the
   white title/copy/link inside .service-card__body stay legible). */
.solutions .service-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
}
.solutions .service-card:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(var(--primary-rgb), 0.05) 100%);
  border-color: rgba(var(--primary-rgb), 0.55);
}

/* Text-only service cards — used when the media strip is removed to
   avoid broken composite photos. Big numeric index anchors each card. */
.service-card--text .service-card__body {
  padding: 36px 26px 30px;
  gap: 14px;
  min-height: 320px;
}
.service-card--text .service-card__index {
  font-family: var(--font-heading);
  font-size: clamp(44px, 4vw, 56px);
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
  opacity: 0.95;
  text-transform: none;
  margin: 0 0 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.solutions .service-card--text::before { opacity: 1; height: 2px; }
.solutions .service-card--text:hover .service-card__index {
  color: var(--primary);
  opacity: 1;
  border-bottom-color: rgba(var(--primary-rgb), 0.35);
  transition: color .25s ease, border-color .25s ease, opacity .25s ease;
}
@media (max-width: 520px) {
  .service-card--text .service-card__body {
    min-height: 0;
    padding: 28px 22px 26px;
  }
  .service-card--text .service-card__index {
    margin-bottom: 14px;
    padding-bottom: 16px;
  }
}

/* Solutions cards with a real photo header — gives the four cards
   visual weight and differentiation on the dark background. Media is
   kept short so the numbered text block still leads. */
.solutions .service-card--photo { overflow: hidden; }
.solutions .service-card--photo .service-card__media {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #101010;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.solutions .service-card--photo .service-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,20,20,0.15) 0%, rgba(20,20,20,0.55) 70%, rgba(30,30,30,0.85) 100%);
  pointer-events: none;
}
.solutions .service-card--photo .service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
  filter: saturate(0.92) contrast(1.02);
}
.solutions .service-card--photo:hover .service-card__media img { transform: scale(1.05); }
.solutions .service-card--photo .service-card__body {
  padding: 24px 22px 26px;
  min-height: 0;
}
.solutions .service-card--photo .service-card__index {
  margin: 0 0 12px;
  padding-bottom: 12px;
  font-size: clamp(36px, 3.2vw, 44px);
}
@media (max-width: 520px) {
  .solutions .service-card--photo .service-card__media { aspect-ratio: 16 / 8; }
  .solutions .service-card--photo .service-card__body { padding: 22px 20px 22px; }
}

/* Why-us badges — 5-across on desktop so the trailing row is not short. */
@media (min-width: 960px) {
  .badges {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
  }
  .badge {
    padding: 12px 14px 12px 12px;
    font-size: 12.5px;
    line-height: 1.35;
    justify-content: flex-start;
    text-align: left;
    min-height: 66px;
  }
}

/* =========================================================
   PAGE: ACCUEIL (guide-style landing)
   Scoped to body.page-accueil — practical overview,
   grouped detail bands, related-nav cards.
   ========================================================= */

/* --- 1. Guide intro — light surface, no full hero image --- */
body.page-accueil .guide-intro {
  background: var(--surface);
  padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 72px);
  border-bottom: 1px solid var(--border);
  position: relative;
}
body.page-accueil .guide-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 12% 10%, rgba(var(--primary-rgb), 0.06), transparent 60%),
    radial-gradient(ellipse 40% 60% at 92% 90%, rgba(var(--charcoal-rgb), 0.05), transparent 65%);
  pointer-events: none;
}
body.page-accueil .guide-intro__inner {
  position: relative;
  max-width: var(--container-narrow);
  text-align: left;
}
body.page-accueil .guide-intro__title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--text);
  margin: 4px 0 20px;
  max-width: 800px;
}
body.page-accueil .guide-intro__lede {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.7;
  color: var(--text-light);
  margin: 0 0 32px;
  max-width: 720px;
}
body.page-accueil .guide-intro__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 32px;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--border);
}
@media (min-width: 720px) {
  body.page-accueil .guide-intro__meta {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }
}
body.page-accueil .guide-intro__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
}
body.page-accueil .guide-intro__meta-label {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
  margin: 0;
}
body.page-accueil .guide-intro__meta-value {
  font-family: var(--font-heading);
  font-size: 14.5px;
  line-height: 1.4;
  color: var(--text);
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.01em;
}
body.page-accueil .guide-intro__meta-link {
  color: var(--text);
  white-space: nowrap;
  border-bottom: 1px solid rgba(var(--text-rgb), 0.2);
  transition: color .18s ease, border-color .18s ease;
}
body.page-accueil .guide-intro__meta-link:hover {
  color: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* --- 2. Guide map — sticky-ish anchor nav for this page --- */
body.page-accueil .guide-map {
  background: var(--charcoal);
  color: #fff;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 112px;
  z-index: 20;
}
body.page-accueil .guide-map__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
}
body.page-accueil .guide-map__label {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  flex-shrink: 0;
}
body.page-accueil .guide-map__list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
  padding: 0;
  margin: 0;
}
body.page-accueil .guide-map__list a {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: color .18s ease, background-color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
body.page-accueil .guide-map__list a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.32);
}
@media (max-width: 720px) {
  body.page-accueil .guide-map { position: static; top: auto; padding: 12px 0; }
  body.page-accueil .guide-map__label { display: none; }
}

/* --- 3. Guide groups — alternating bands with grouped detail content --- */
body.page-accueil .guide-group {
  padding: clamp(64px, 8vw, 104px) 0;
  background: #fff;
  scroll-margin-top: 160px;
}
body.page-accueil .guide-group--dark {
  background: var(--charcoal);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
body.page-accueil .guide-group--tinted {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
body.page-accueil .guide-group__inner {
  max-width: var(--container);
}
body.page-accueil .guide-group__head {
  max-width: 720px;
  margin: 0 0 44px;
}
body.page-accueil .guide-group__lede {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 12px 0 0;
  max-width: 640px;
}
body.page-accueil .guide-group__lede--light {
  color: rgba(255, 255, 255, 0.72);
}

/* --- Grouped detail list — rows with big number + prose --- */
body.page-accueil .guide-detail-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
body.page-accueil .guide-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
@media (min-width: 760px) {
  body.page-accueil .guide-detail {
    grid-template-columns: 96px 1fr;
    gap: 32px 40px;
    padding: 36px 0;
  }
}
body.page-accueil .guide-detail__num {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--primary-dark);
  margin: 0;
}
body.page-accueil .guide-detail__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  min-width: 0;
}
body.page-accueil .guide-detail__title {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.3;
  color: var(--text);
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.005em;
}
body.page-accueil .guide-detail__copy {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
  max-width: 640px;
}
body.page-accueil .guide-detail__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding: 8px 0;
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid rgba(var(--text-rgb), 0.35);
  transition: color .18s ease, border-color .18s ease, gap .18s ease;
  white-space: nowrap;
}
body.page-accueil .guide-detail__link:hover {
  color: var(--primary-dark);
  border-color: var(--primary-dark);
  gap: 12px;
}

/* --- Compact brief prose block for topic intro --- */
body.page-accueil .guide-brief {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 720px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
body.page-accueil .guide-brief__copy {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  margin: 0;
}

/* --- Method track — three horizontal steps on dark band --- */
body.page-accueil .method-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: none;
}
@media (min-width: 760px) {
  body.page-accueil .method-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}
body.page-accueil .method-step {
  padding: 28px 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: border-color .2s ease, background-color .25s ease, transform .2s ease;
}
body.page-accueil .method-step:hover {
  border-color: rgba(var(--primary-rgb), 0.5);
  background: rgba(var(--primary-rgb), 0.06);
  transform: translateY(-3px);
}
body.page-accueil .method-step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.14);
  border: 1.5px solid rgba(var(--primary-rgb), 0.55);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
  flex-shrink: 0;
}
body.page-accueil .method-step__title {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.005em;
}
body.page-accueil .method-step__copy {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* --- Pledge list — five commitments as text-first blocks --- */
body.page-accueil .pledge-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (min-width: 720px) {
  body.page-accueil .pledge-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}
@media (min-width: 1080px) {
  body.page-accueil .pledge-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
body.page-accueil .pledge {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 22px 22px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
body.page-accueil .pledge:hover {
  border-color: rgba(var(--primary-rgb), 0.45);
  box-shadow: 0 14px 32px -20px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}
body.page-accueil .pledge__mark {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #fff;
  background: var(--charcoal);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
body.page-accueil .pledge__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
body.page-accueil .pledge__title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.005em;
  line-height: 1.35;
}
body.page-accueil .pledge__copy {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0;
}

/* --- Area grid — three regional blocks on tinted band --- */
body.page-accueil .area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 760px) {
  body.page-accueil .area-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}
body.page-accueil .area-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
body.page-accueil .area-block:hover {
  border-color: rgba(var(--primary-rgb), 0.45);
  box-shadow: 0 16px 34px -22px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}
body.page-accueil .area-block__title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 4px;
  letter-spacing: -0.005em;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
body.page-accueil .area-block__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}
body.page-accueil .area-block__list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  font-family: var(--font-heading);
  letter-spacing: 0.01em;
}
body.page-accueil .area-block__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
body.page-accueil .area-block__note {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-light);
  margin: 8px 0 0;
  font-style: italic;
}

/* --- Related nav — three curated next-step cards --- */
body.page-accueil .guide-next {
  background: #fff;
  padding: clamp(64px, 8vw, 104px) 0;
  scroll-margin-top: 160px;
}
body.page-accueil .guide-next__inner { max-width: var(--container); }
body.page-accueil .guide-next__head {
  text-align: left;
  max-width: 720px;
  margin: 0 0 44px;
}
body.page-accueil .guide-next__lede {
  font-size: 16px;
  color: var(--text-light);
  margin: 12px 0 0;
  line-height: 1.7;
  max-width: 620px;
}
body.page-accueil .next-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 760px) {
  body.page-accueil .next-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}
body.page-accueil .next-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 26px 60px;
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease, background-color .22s ease;
  min-height: 200px;
}
body.page-accueil .next-card:hover {
  border-color: var(--charcoal);
  transform: translateY(-3px);
  box-shadow: 0 20px 42px -24px rgba(0, 0, 0, 0.28);
  background: #fafafa;
}
body.page-accueil .next-card__kicker {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary-dark);
  font-weight: 600;
}
body.page-accueil .next-card__title {
  font-family: var(--font-heading);
  font-size: 19px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.005em;
}
body.page-accueil .next-card__copy {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-light);
  margin: 4px 0 0;
}
body.page-accueil .next-card__arrow {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--charcoal);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  transition: background-color .2s ease, transform .2s ease;
}
body.page-accueil .next-card:hover .next-card__arrow {
  background: var(--primary-dark);
  transform: translateX(3px);
}

@media (max-width: 720px) {
  body.page-accueil .guide-intro { padding: 44px 0 36px; }
  body.page-accueil .guide-intro__meta {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  body.page-accueil .pledge { padding: 20px; }
  body.page-accueil .next-card { padding: 24px 22px 58px; min-height: 180px; }
}

/* =========================================================
   PROPOS (À Propos) — page-scoped
   Body macrostructure: ProofSummary
   Lead = topic intro w/ verified proof panel
   Middle = source-grounded story + pillars + approach
   Close = single restrained CTA (page_specific voice)
   ========================================================= */

/* --- 1. Topic intro — two-column: prose + proof panel --- */
body.page-propos .about-lead {
  background: #ffffff;
  padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 72px);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
body.page-propos .about-lead::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 8%, rgba(var(--primary-rgb), 0.05), transparent 55%),
    radial-gradient(circle at 6% 92%, rgba(var(--charcoal-rgb), 0.04), transparent 60%);
  pointer-events: none;
}
body.page-propos .about-lead__inner {
  position: relative;
  max-width: var(--container);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 900px) {
  body.page-propos .about-lead__inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 1fr);
    gap: 64px;
  }
}
body.page-propos .about-lead__body { min-width: 0; }
body.page-propos .about-lead__title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4.6vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--text);
  margin: 6px 0 22px;
  max-width: 640px;
}
body.page-propos .about-lead__title em {
  font-style: normal;
  color: var(--primary-dark);
  font-weight: 500;
}
body.page-propos .about-lead__lede {
  font-size: clamp(15px, 1.55vw, 17.5px);
  line-height: 1.7;
  color: var(--text-light);
  margin: 0 0 18px;
  max-width: 560px;
}
body.page-propos .about-lead__lede strong {
  color: var(--text);
  font-weight: 600;
}
body.page-propos .about-lead__source {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  padding: 8px 14px 8px 12px;
  background: rgba(var(--primary-dark-rgb), 0.06);
  border: 1px solid rgba(var(--primary-dark-rgb), 0.18);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-dark);
  font-weight: 600;
}
body.page-propos .about-lead__source::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-dark);
  box-shadow: 0 0 0 4px rgba(var(--primary-dark-rgb), 0.14);
}
body.page-propos .about-lead__proof {
  background: var(--charcoal);
  color: #fff;
  border-radius: 18px;
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 60px -32px rgba(0, 0, 0, 0.4);
}
body.page-propos .about-lead__proof-label {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  margin: 0;
}
body.page-propos .about-lead__proof-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
body.page-propos .about-lead__proof-list li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  align-items: baseline;
}
body.page-propos .about-lead__proof-list li:first-child { border-top: 0; padding-top: 4px; }
body.page-propos .about-lead__proof-key {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}
body.page-propos .about-lead__proof-val {
  font-family: var(--font-heading);
  font-size: 14.5px;
  line-height: 1.45;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.005em;
  min-width: 0;
  word-break: break-word;
}
body.page-propos .about-lead__proof-val a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transition: color .18s ease, border-color .18s ease;
}
body.page-propos .about-lead__proof-val a[href^="tel:"] {
  white-space: nowrap;
}
body.page-propos .about-lead__proof-val a:hover {
  color: var(--primary);
  border-color: var(--primary);
}
body.page-propos .about-lead__proof-foot {
  margin: 4px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

/* --- 2. Story — source-grounded narrative on dark band with photo --- */
body.page-propos .about-story {
  background: var(--charcoal-2);
  color: #fff;
  padding: clamp(64px, 8vw, 104px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
body.page-propos .about-story__inner {
  max-width: var(--container);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 900px) {
  body.page-propos .about-story__inner {
    grid-template-columns: minmax(280px, 1fr) minmax(0, 1.35fr);
    gap: 56px;
    align-items: center;
  }
}
body.page-propos .about-story__media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--charcoal);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
body.page-propos .about-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.92) contrast(1.02) saturate(0.95);
  transition: transform .8s ease;
}
body.page-propos .about-story__media:hover img { transform: scale(1.03); }
body.page-propos .about-story__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.4));
  pointer-events: none;
}
body.page-propos .about-story__cap {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  z-index: 1;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.4;
}
body.page-propos .about-story__cap strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 600;
  margin-bottom: 4px;
}
body.page-propos .about-story__body { min-width: 0; }
body.page-propos .about-story__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 500;
  color: #fff;
  margin: 8px 0 22px;
  max-width: 560px;
}
body.page-propos .about-story__prose {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 580px;
}
body.page-propos .about-story__prose p {
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}
body.page-propos .about-story__prose p strong {
  color: #fff;
  font-weight: 600;
}
body.page-propos .about-story__quote {
  margin: 24px 0 0;
  padding: 20px 22px;
  border-left: 2px solid var(--primary);
  background: rgba(var(--primary-rgb), 0.05);
  border-radius: 4px 10px 10px 4px;
  font-family: var(--font-heading);
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
  font-style: italic;
  font-weight: 500;
  max-width: 580px;
}

/* --- 3. Pillars — 4 "pourquoi choisir" reasons (from source) --- */
body.page-propos .about-pillars {
  background: #ffffff;
  padding: clamp(64px, 8vw, 104px) 0;
}
body.page-propos .about-pillars__inner { max-width: var(--container); }
body.page-propos .about-pillars__head {
  max-width: 680px;
  margin: 0 0 44px;
}
body.page-propos .about-pillars__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 500;
  color: var(--text);
  margin: 6px 0 14px;
}
body.page-propos .about-pillars__lede {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
  max-width: 600px;
}
body.page-propos .about-pillars__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
@media (min-width: 720px) {
  body.page-propos .about-pillars__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 1px solid var(--border);
  }
}
body.page-propos .about-pillar {
  position: relative;
  padding: 32px 28px 34px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background-color .22s ease;
}
@media (min-width: 720px) {
  body.page-propos .about-pillar {
    border-right: 1px solid var(--border);
    padding: 38px 32px 40px;
  }
}
body.page-propos .about-pillar:hover {
  background: var(--surface);
}
body.page-propos .about-pillar::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
body.page-propos .about-pillar:hover::before { transform: scaleX(1); }
body.page-propos .about-pillar__label {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary-dark);
  font-weight: 700;
  margin: 0;
}
body.page-propos .about-pillar__title {
  font-family: var(--font-heading);
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}
body.page-propos .about-pillar__copy {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
  max-width: 460px;
}

/* --- 4. Approach — tinted band summary, single restrained column --- */
body.page-propos .about-approach {
  background: var(--surface);
  padding: clamp(56px, 7vw, 88px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
body.page-propos .about-approach__inner {
  max-width: 780px;
  text-align: left;
}
body.page-propos .about-approach__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: var(--text);
  margin: 6px 0 20px;
}
body.page-propos .about-approach__prose {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-light);
  margin: 0 0 20px;
  max-width: 680px;
}
body.page-propos .about-approach__prose strong {
  color: var(--text);
  font-weight: 600;
}
body.page-propos .about-approach__markers {
  list-style: none;
  padding: 20px 0 0;
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  border-top: 1px solid var(--border);
}
body.page-propos .about-approach__markers li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--text);
  font-weight: 500;
}
body.page-propos .about-approach__markers li::before {
  content: "✓";
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 14px;
}

/* --- responsive tightening --- */
@media (max-width: 720px) {
  body.page-propos .about-lead { padding: 44px 0 36px; }
  body.page-propos .about-lead__proof { padding: 22px 20px; }
  body.page-propos .about-lead__proof-list li {
    grid-template-columns: 84px 1fr;
    gap: 12px;
    padding: 10px 0;
  }
  body.page-propos .about-story__media { aspect-ratio: 4 / 3; }
  body.page-propos .about-pillar { padding: 28px 22px 30px; }
  body.page-propos .about-approach__markers { gap: 10px 18px; }
}

/* =========================================================
   PAGE: SERVICES (Catalog / comparison index)
   Body macrostructure: CatalogIndex
   Lead = catalog intro w/ at-a-glance snapshot
   Middle = four comparison-focused catalog cards
   Close = compact method note + single restrained CTA
   ========================================================= */

/* --- 1. Services lead — prose + at-a-glance snapshot side panel --- */
body.page-services .services-lead {
  background: #ffffff;
  padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 72px);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
body.page-services .services-lead::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 8%, rgba(var(--primary-rgb), 0.05), transparent 55%),
    radial-gradient(circle at 4% 92%, rgba(var(--charcoal-rgb), 0.04), transparent 60%);
  pointer-events: none;
}
body.page-services .services-lead__inner {
  position: relative;
  max-width: var(--container);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 900px) {
  body.page-services .services-lead__inner {
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 1fr);
    gap: 64px;
  }
}
body.page-services .services-lead__body { min-width: 0; }
body.page-services .services-lead__title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4.6vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--text);
  margin: 6px 0 20px;
  max-width: 640px;
}
body.page-services .services-lead__lede {
  font-size: clamp(15px, 1.55vw, 17.5px);
  line-height: 1.7;
  color: var(--text-light);
  margin: 0 0 26px;
  max-width: 580px;
}
body.page-services .services-lead__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 20px;
  padding: 20px 0 0;
  border-top: 1px solid var(--border);
  max-width: 640px;
}
body.page-services .services-lead__meta-item {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-heading);
}
body.page-services .services-lead__meta-label {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
body.page-services .services-lead__meta-name {
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--text-light);
  text-transform: none;
}
body.page-services .services-lead__meta-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(var(--text-rgb), 0.25);
  display: inline-block;
}

/* Snapshot side panel — dark comparison card */
body.page-services .services-snapshot {
  background: var(--charcoal);
  color: #fff;
  border-radius: 18px;
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 60px -32px rgba(0, 0, 0, 0.4);
}
body.page-services .services-snapshot__label {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  margin: 0;
}
body.page-services .services-snapshot__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
body.page-services .services-snapshot__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
body.page-services .services-snapshot__row:first-child {
  border-top: 0;
  padding-top: 4px;
}
body.page-services .services-snapshot__key {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}
body.page-services .services-snapshot__val {
  font-family: var(--font-heading);
  font-size: 14.5px;
  line-height: 1.45;
  color: #fff;
  font-weight: 500;
}
body.page-services .services-snapshot__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background-color .18s ease, border-color .18s ease;
}
body.page-services .services-snapshot__cta:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

/* --- 2. Services catalog — four comparison cards on charcoal band --- */
body.page-services .services-catalog {
  background: var(--charcoal);
  color: #fff;
  padding: clamp(72px, 10vw, 120px) 0;
  scroll-margin-top: 130px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
body.page-services .services-catalog__inner { max-width: var(--container); }
body.page-services .services-catalog__head {
  max-width: 720px;
  margin: 0 0 48px;
}
body.page-services .services-catalog__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #fff;
  margin: 6px 0 14px;
}
body.page-services .services-catalog__lede {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  max-width: 640px;
}
body.page-services .services-catalog__guide {
  margin: 26px 0 0;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  max-width: 720px;
}
body.page-services .services-catalog__guide-label {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin: 0 0 12px;
}
body.page-services .services-catalog__guide-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.page-services .services-catalog__guide-list li {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 14px;
  position: relative;
}
body.page-services .services-catalog__guide-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.7);
}
body.page-services .services-catalog__guide-list strong {
  color: #fff;
  font-weight: 600;
}
body.page-services .services-catalog__guide-note {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
}

body.page-services .catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) {
  body.page-services .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

body.page-services .catalog-card {
  display: grid;
  grid-template-columns: 1fr;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .22s ease, background-color .25s ease, transform .22s ease, box-shadow .25s ease;
  position: relative;
}
@media (min-width: 900px) {
  body.page-services .catalog-card {
    grid-template-columns: minmax(180px, 260px) 1fr;
    align-items: stretch;
  }
}
body.page-services .catalog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, rgba(var(--primary-rgb), 0.4) 100%);
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 2;
}
body.page-services .catalog-card:hover {
  border-color: rgba(var(--primary-rgb), 0.5);
  background: rgba(var(--primary-rgb), 0.05);
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -22px rgba(var(--primary-rgb), 0.32);
}
body.page-services .catalog-card:hover::before { opacity: 1; }

body.page-services .catalog-card__media {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0f0f0f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 900px) {
  body.page-services .catalog-card__media {
    aspect-ratio: auto;
    height: 100%;
    border-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
}
body.page-services .catalog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
  filter: saturate(0.92) contrast(1.02) brightness(0.92);
}
body.page-services .catalog-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.15) 0%, rgba(20, 20, 20, 0.5) 100%);
  pointer-events: none;
}
body.page-services .catalog-card:hover .catalog-card__media img { transform: scale(1.05); }

body.page-services .catalog-card__body {
  padding: 26px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
@media (min-width: 900px) {
  body.page-services .catalog-card__body {
    padding: 30px 28px 28px;
  }
}
body.page-services .catalog-card__num {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
}
body.page-services .catalog-card__title {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #fff;
  font-weight: 600;
  margin: 0;
}
body.page-services .catalog-card__copy {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}
body.page-services .catalog-card__copy strong {
  color: #fff;
  font-weight: 600;
}
body.page-services .catalog-card__specs {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 6px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
body.page-services .catalog-card__spec {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: baseline;
}
body.page-services .catalog-card__spec:last-child { border-bottom: 0; }
body.page-services .catalog-card__spec dt {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  margin: 0;
}
body.page-services .catalog-card__spec dd {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
body.page-services .catalog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 6px;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  align-self: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 4px;
  transition: color .2s ease, border-color .2s ease, gap .2s ease;
}
body.page-services .catalog-card__link:hover {
  color: var(--primary);
  border-color: var(--primary);
  gap: 12px;
}

/* --- 3. Services method — compact note on white band --- */
body.page-services .services-method {
  background: #ffffff;
  padding: clamp(64px, 8vw, 100px) 0;
}
body.page-services .services-method__inner {
  max-width: var(--container);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 900px) {
  body.page-services .services-method__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    gap: 72px;
  }
}
body.page-services .services-method__col--head { min-width: 0; }
body.page-services .services-method__col--body { min-width: 0; }
body.page-services .services-method__title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text);
  font-weight: 500;
  margin: 6px 0 0;
  max-width: 420px;
}
body.page-services .services-method__prose {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-light);
  margin: 0 0 22px;
  max-width: 620px;
}
body.page-services .services-method__note-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
body.page-services .services-method__note-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
body.page-services .services-method__note-key {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary-dark);
  font-weight: 700;
}
body.page-services .services-method__note-val {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
}
body.page-services .services-method__foot {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0;
  font-style: italic;
  max-width: 560px;
}

/* --- 4. Services close — single restrained CTA on charcoal band --- */
body.page-services .services-close {
  background: var(--charcoal);
  color: #fff;
  padding: clamp(64px, 8vw, 100px) 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}
body.page-services .services-close::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(var(--primary-rgb), 0.10), transparent 65%);
  pointer-events: none;
}
body.page-services .services-close__inner {
  position: relative;
  max-width: var(--container-narrow);
}
body.page-services .services-close__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.25;
  color: #fff;
  margin: 6px 0 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
body.page-services .services-close__lede {
  color: rgba(255, 255, 255, 0.78);
  max-width: 600px;
  margin: 0 auto 26px;
  font-size: 15.5px;
  line-height: 1.65;
}
body.page-services .services-close__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* --- Responsive tightening for the services page --- */
@media (max-width: 720px) {
  body.page-services .services-lead { padding: 44px 0 36px; }
  body.page-services .services-snapshot { padding: 22px 20px; }
  body.page-services .services-lead__meta { gap: 14px 16px; }
  body.page-services .services-lead__meta-sep { display: none; }
  body.page-services .catalog-card__body { padding: 22px 20px 22px; }
  body.page-services .catalog-card__spec { grid-template-columns: 88px 1fr; gap: 10px; }
  body.page-services .services-method__note-item { grid-template-columns: 80px 1fr; gap: 14px; }
}

/* =========================================================
   CONTACT — page-scoped
   Body macrostructure: FunctionalContact
   Lead = topic intro (short, no marketing scaffolding)
   Middle = contact channels grid + form
   Close = source-grounded FAQ + direct-reach block
   ========================================================= */

body.page-contact .visually-hidden-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- 1. Intro --- */
body.page-contact .contact-intro {
  background: #ffffff;
  padding: clamp(56px, 8vw, 96px) 0 clamp(36px, 5vw, 56px);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
body.page-contact .contact-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 6%, rgba(var(--primary-rgb), 0.05), transparent 55%),
    radial-gradient(circle at 4% 94%, rgba(var(--charcoal-rgb), 0.04), transparent 60%);
  pointer-events: none;
}
body.page-contact .contact-intro__inner {
  position: relative;
  max-width: var(--container-narrow);
}
body.page-contact .contact-intro__title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4.6vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--text);
  margin: 6px 0 22px;
}
body.page-contact .contact-intro__title em {
  font-style: normal;
  color: var(--primary-dark);
  font-weight: 500;
}
body.page-contact .contact-intro__lede {
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 16px;
  max-width: 640px;
  font-weight: 500;
}
body.page-contact .contact-intro__note {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
  max-width: 640px;
}

/* --- 2. Channels panel --- */
body.page-contact .contact-panel {
  background: #ffffff;
  padding: clamp(28px, 4vw, 48px) 0 clamp(56px, 7vw, 88px);
  border-bottom: 1px solid var(--border);
}
body.page-contact .contact-panel__inner {
  max-width: var(--container);
}
body.page-contact .contact-channels {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) {
  body.page-contact .contact-channels {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (min-width: 1024px) {
  body.page-contact .contact-channels {
    grid-template-columns: repeat(4, 1fr);
  }
}
body.page-contact .contact-channel {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
body.page-contact .contact-channel:hover {
  border-color: rgba(var(--charcoal-rgb), 0.35);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -28px rgba(0, 0, 0, 0.25);
}
body.page-contact .contact-channel--primary {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: #fff;
}
body.page-contact .contact-channel--primary:hover {
  border-color: rgba(var(--primary-rgb), 0.45);
}
body.page-contact .contact-channel__label {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
  margin: 0;
}
body.page-contact .contact-channel--primary .contact-channel__label {
  color: rgba(255, 255, 255, 0.55);
}
body.page-contact .contact-channel__value {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.2;
  color: var(--text);
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.005em;
  text-decoration: none;
  word-break: break-word;
}
body.page-contact .contact-channel__value--phone { white-space: nowrap; }
body.page-contact .contact-channel__value--email { font-size: clamp(15px, 1.5vw, 17px); }
body.page-contact .contact-channel--primary .contact-channel__value {
  color: #fff;
}
body.page-contact a.contact-channel__value {
  border-bottom: 1px solid transparent;
  transition: color .18s ease, border-color .18s ease;
}
body.page-contact a.contact-channel__value:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
body.page-contact .contact-channel--primary a.contact-channel__value:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.6);
}
body.page-contact .contact-channel__note {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0;
  flex: 1;
}
body.page-contact .contact-channel--primary .contact-channel__note {
  color: rgba(255, 255, 255, 0.72);
}
body.page-contact .contact-channel__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 700;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(var(--text-rgb), 0.35);
  align-self: flex-start;
  max-width: 100%;
  transition: color .2s ease, border-color .2s ease, gap .2s ease;
}
body.page-contact a.contact-channel__cta[href^="tel:"] { white-space: nowrap; }
body.page-contact a.contact-channel__cta[href^="mailto:"] {
  letter-spacing: 0.08em;
  overflow-wrap: anywhere;
  word-break: break-all;
}
body.page-contact .contact-channel--primary .contact-channel__cta {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.4);
}
body.page-contact .contact-channel__cta:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
  gap: 12px;
}
body.page-contact .contact-channel--primary .contact-channel__cta:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
body.page-contact .contact-channel__list,
body.page-contact .contact-channel__stamps {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
}
body.page-contact .contact-channel__list li,
body.page-contact .contact-channel__stamps li {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
}

/* --- 3. Form section --- */
body.page-contact .contact-form-section {
  background: var(--surface);
  padding: clamp(56px, 8vw, 96px) 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
body.page-contact .contact-form-section__inner {
  max-width: var(--container);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 900px) {
  body.page-contact .contact-form-section__inner {
    grid-template-columns: minmax(280px, 1fr) minmax(0, 1.6fr);
    gap: 56px;
  }
}

body.page-contact .contact-form-aside {
  background: var(--charcoal);
  color: #fff;
  border-radius: 20px;
  padding: 32px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 60px -32px rgba(0, 0, 0, 0.4);
  position: sticky;
  top: 24px;
}
@media (max-width: 899px) {
  body.page-contact .contact-form-aside { position: static; }
}
body.page-contact .contact-form-aside__title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.8vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
  font-weight: 500;
  margin: 4px 0 6px;
}
body.page-contact .contact-form-aside__lede {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 8px;
}
body.page-contact .contact-form-aside__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}
body.page-contact .contact-form-aside__list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}
body.page-contact .contact-form-aside__list li span {
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}
body.page-contact .contact-form-aside__direct {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
body.page-contact .contact-form-aside__direct-label {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  margin: 0;
}
body.page-contact .contact-form-aside__phone {
  font-family: var(--font-heading);
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.005em;
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  align-self: flex-start;
  padding-bottom: 2px;
  transition: color .18s ease, border-color .18s ease;
}
body.page-contact .contact-form-aside__phone:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
body.page-contact .contact-form-aside__email {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  align-self: flex-start;
  padding-bottom: 2px;
  word-break: break-word;
  transition: color .18s ease, border-color .18s ease;
}
body.page-contact .contact-form-aside__email:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* Form itself */
body.page-contact .contact-form {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 30px 30px;
  box-shadow: 0 24px 60px -32px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 480px) {
  body.page-contact .contact-form { padding: 24px 20px 22px; }
  body.page-contact .contact-form-aside { padding: 24px 22px 22px; }
}
body.page-contact .contact-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  body.page-contact .contact-form__grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
  }
}
body.page-contact .contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
body.page-contact .contact-form__field--full { grid-column: 1 / -1; }
body.page-contact .contact-form__label {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 700;
}
body.page-contact .contact-form__req {
  color: var(--primary-dark);
  margin-left: 2px;
}
body.page-contact .contact-form__input {
  width: 100%;
  border: 1px solid var(--border);
  background: #ffffff;
  border-radius: 10px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  line-height: 1.4;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
  min-height: 46px;
  -webkit-appearance: none;
  appearance: none;
}
body.page-contact .contact-form__input::placeholder {
  color: rgba(var(--text-light-rgb), 0.7);
}
body.page-contact .contact-form__input:hover {
  border-color: rgba(var(--charcoal-rgb), 0.4);
}
body.page-contact .contact-form__input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.18);
  background: #fff;
}
body.page-contact .contact-form__input--select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text-light) 50%),
    linear-gradient(135deg, var(--text-light) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 55%,
    calc(100% - 13px) 55%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
  cursor: pointer;
}
body.page-contact .contact-form__textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.55;
}
body.page-contact .contact-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
}
body.page-contact .contact-form__consent:hover {
  border-color: rgba(var(--charcoal-rgb), 0.3);
}
body.page-contact .contact-form__consent-box {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--primary);
  flex-shrink: 0;
  cursor: pointer;
}
body.page-contact .contact-form__consent-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-light);
}
body.page-contact .contact-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  padding-top: 4px;
}
body.page-contact .contact-form__submit {
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
body.page-contact .contact-form__hint {
  font-size: 12.5px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}

/* --- 4. FAQ --- */
body.page-contact .contact-faq {
  background: #ffffff;
  padding: clamp(56px, 8vw, 96px) 0;
  border-bottom: 1px solid var(--border);
}
body.page-contact .contact-faq__inner {
  max-width: var(--container-narrow);
}
body.page-contact .contact-faq__head {
  margin-bottom: 32px;
}
body.page-contact .contact-faq__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: var(--text);
  margin: 6px 0 12px;
}
body.page-contact .contact-faq__lede {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
  max-width: 560px;
}
body.page-contact .contact-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
body.page-contact .contact-faq__item {
  border-bottom: 1px solid var(--border);
  background: #ffffff;
  transition: background-color .2s ease;
}
body.page-contact .contact-faq__item[open] {
  background: var(--surface);
}
body.page-contact .contact-faq__q {
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.4;
  color: var(--text);
  font-weight: 600;
  padding: 22px 48px 22px 4px;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color .18s ease;
}
body.page-contact .contact-faq__q::-webkit-details-marker { display: none; }
body.page-contact .contact-faq__q:hover { color: var(--primary-dark); }
body.page-contact .contact-faq__toggle {
  position: absolute;
  right: 4px;
  top: 50%;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
}
body.page-contact .contact-faq__toggle::before,
body.page-contact .contact-faq__toggle::after {
  content: "";
  position: absolute;
  background: var(--text);
  transition: transform .2s ease, background-color .2s ease;
  border-radius: 2px;
}
body.page-contact .contact-faq__toggle::before {
  left: 0; right: 0;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
}
body.page-contact .contact-faq__toggle::after {
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
}
body.page-contact .contact-faq__item[open] .contact-faq__toggle::after {
  transform: translateX(-50%) scaleY(0);
}
body.page-contact .contact-faq__a {
  padding: 0 48px 24px 4px;
}
body.page-contact .contact-faq__a p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-light);
  margin: 0;
  max-width: 680px;
}
body.page-contact .contact-faq__a p strong {
  color: var(--text);
  font-weight: 600;
}
body.page-contact .contact-faq__a a {
  color: var(--primary-dark);
  border-bottom: 1px solid rgba(var(--primary-dark-rgb), 0.35);
  transition: color .18s ease, border-color .18s ease;
}
body.page-contact .contact-faq__a a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* --- 5. Direct reach close band --- */
body.page-contact .contact-reach {
  background: var(--charcoal);
  color: #fff;
  padding: clamp(48px, 6vw, 72px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}
body.page-contact .contact-reach::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 90% 0%, rgba(var(--primary-rgb), 0.12), transparent 60%),
    radial-gradient(ellipse at 10% 100%, rgba(var(--primary-dark-rgb), 0.10), transparent 60%);
  pointer-events: none;
}
body.page-contact .contact-reach__inner {
  position: relative;
  max-width: var(--container);
}
body.page-contact .contact-reach__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  body.page-contact .contact-reach__row {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 48px;
  }
}
body.page-contact .contact-reach__col { min-width: 0; }
body.page-contact .contact-reach__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.2vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: #fff;
  margin: 6px 0 12px;
  max-width: 560px;
}
body.page-contact .contact-reach__lede {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 540px;
}
body.page-contact .contact-reach__actions {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
body.page-contact .contact-reach__actions li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
body.page-contact .contact-reach__k {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
}
body.page-contact .contact-reach__v {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 22px);
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  align-self: flex-start;
  padding-bottom: 2px;
  word-break: break-word;
  transition: color .18s ease, border-color .18s ease;
}
body.page-contact a.contact-reach__v[href^="tel:"] { white-space: nowrap; }
body.page-contact .contact-reach__v:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* --- Responsive tightening for the contact page --- */
@media (max-width: 720px) {
  body.page-contact .contact-intro { padding: 44px 0 30px; }
  body.page-contact .contact-panel { padding: 24px 0 44px; }
  body.page-contact .contact-channel { padding: 20px 18px 18px; }
  body.page-contact .contact-form-section { padding: 44px 0; }
  body.page-contact .contact-faq { padding: 44px 0; }
  body.page-contact .contact-faq__q { padding: 18px 40px 18px 4px; font-size: 15.5px; }
  body.page-contact .contact-faq__a { padding: 0 40px 20px 4px; }
  body.page-contact .contact-reach { padding: 44px 0; }
}

/* =========================================================
   PAGE: RENOVATION CUISINE / SDB / SOUS-SOL (service_detail)
   Macrostructure: NarrativeWorkflow
   Sequence: scenario_intro → scope → service_process
             → readiness → proof strip → service_specific_faq
             → installation_project_quote close
   ========================================================= */

/* --- 1. Scenario intro — two-col: prose lead + "cases" panel --- */
body.page-reno .reno-scenario {
  background: #ffffff;
  padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 72px);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
body.page-reno .reno-scenario::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 8%, rgba(var(--primary-rgb), 0.05), transparent 55%),
    radial-gradient(circle at 6% 92%, rgba(var(--charcoal-rgb), 0.04), transparent 60%);
  pointer-events: none;
}
body.page-reno .reno-scenario__inner {
  position: relative;
  max-width: var(--container);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 900px) {
  body.page-reno .reno-scenario__inner {
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 1fr);
    gap: 64px;
  }
}
body.page-reno .reno-scenario__body { min-width: 0; }
body.page-reno .reno-scenario__title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--text);
  margin: 6px 0 20px;
  max-width: 700px;
}
body.page-reno .reno-scenario__lede {
  font-size: clamp(15px, 1.55vw, 17.5px);
  line-height: 1.7;
  color: var(--text-light);
  margin: 0 0 16px;
  max-width: 620px;
}
body.page-reno .reno-scenario__lede strong {
  color: var(--text);
  font-weight: 600;
}
body.page-reno .reno-scenario__note {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0 0 22px;
  max-width: 600px;
}
body.page-reno .reno-scenario__markers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 0 0;
  margin: 8px 0 0;
  border-top: 1px solid var(--border);
}
body.page-reno .reno-scenario__markers li {
  font-family: var(--font-heading);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 600;
  padding: 7px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
}

/* Cases panel — three room scenarios "if you..." */
body.page-reno .reno-scenario__cases {
  background: var(--charcoal);
  color: #fff;
  border-radius: 18px;
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 60px -32px rgba(0, 0, 0, 0.4);
}
body.page-reno .reno-scenario__cases-label {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  margin: 0;
}
body.page-reno .reno-scenario__cases-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
body.page-reno .reno-case {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  align-items: baseline;
}
body.page-reno .reno-case:first-child { border-top: 0; padding-top: 6px; }
body.page-reno .reno-case__key {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
}
body.page-reno .reno-case__val {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* --- 2. Scope — three room cards (kitchen / bathroom / basement) --- */
body.page-reno .reno-scope {
  background: var(--charcoal);
  color: #fff;
  padding: clamp(72px, 10vw, 120px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
body.page-reno .reno-scope__inner { max-width: var(--container); }
body.page-reno .reno-scope__head {
  max-width: 720px;
  margin: 0 0 44px;
}
body.page-reno .reno-scope__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #fff;
  margin: 6px 0 14px;
}
body.page-reno .reno-scope__lede {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  max-width: 640px;
}
body.page-reno .reno-scope__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) {
  body.page-reno .reno-scope__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}
@media (min-width: 1024px) {
  body.page-reno .reno-scope__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
body.page-reno .reno-room {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .22s ease, background-color .25s ease, transform .22s ease, box-shadow .25s ease;
  position: relative;
}
body.page-reno .reno-room::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, rgba(var(--primary-rgb), 0.4) 100%);
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 2;
}
body.page-reno .reno-room:hover {
  border-color: rgba(var(--primary-rgb), 0.5);
  background: rgba(var(--primary-rgb), 0.05);
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -22px rgba(var(--primary-rgb), 0.32);
}
body.page-reno .reno-room:hover::before { opacity: 1; }
body.page-reno .reno-room__media {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0f0f0f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}
body.page-reno .reno-room__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
  filter: saturate(0.92) contrast(1.02) brightness(0.94);
}
body.page-reno .reno-room__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.15) 0%, rgba(20, 20, 20, 0.55) 100%);
  pointer-events: none;
}
body.page-reno .reno-room:hover .reno-room__media img { transform: scale(1.05); }
body.page-reno .reno-room__body {
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  min-width: 0;
}
body.page-reno .reno-room--text {
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.05) 0%, rgba(255, 255, 255, 0.04) 40%);
}
body.page-reno .reno-room--text .reno-room__body {
  padding-top: 40px;
}
body.page-reno .reno-room--text .reno-room__num {
  color: rgba(var(--primary-light-rgb), 0.9);
}
body.page-reno .reno-room__num {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  margin: 0;
}
body.page-reno .reno-room__title {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #fff;
  font-weight: 600;
  margin: 0;
}
body.page-reno .reno-room__copy {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}
body.page-reno .reno-room__list {
  list-style: none;
  padding: 0;
  margin: 4px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
body.page-reno .reno-room__list li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}
body.page-reno .reno-room__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 1px;
  background: var(--primary);
}
body.page-reno .reno-room__specs {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 6px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
body.page-reno .reno-room__spec {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: baseline;
}
body.page-reno .reno-room__spec:last-child { border-bottom: 0; }
body.page-reno .reno-room__spec dt {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  margin: 0;
}
body.page-reno .reno-room__spec dd {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* --- 3. Process — vertical timeline of steps (installation project) --- */
body.page-reno .reno-process {
  background: #ffffff;
  padding: clamp(72px, 10vw, 120px) 0;
}
body.page-reno .reno-process__inner { max-width: var(--container); }
body.page-reno .reno-process__head {
  max-width: 720px;
  margin: 0 0 44px;
}
body.page-reno .reno-process__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--text);
  margin: 6px 0 14px;
}
body.page-reno .reno-process__lede {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
  max-width: 640px;
}
body.page-reno .reno-track {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  counter-reset: none;
  border-top: 1px solid var(--border);
}
@media (min-width: 900px) {
  body.page-reno .reno-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 40px;
  }
}
body.page-reno .reno-track__step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
body.page-reno .reno-track__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(var(--primary-dark-rgb), 0.08);
  border: 1.5px solid rgba(var(--primary-dark-rgb), 0.45);
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
  flex-shrink: 0;
}
body.page-reno .reno-track__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
body.page-reno .reno-track__title {
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.3;
  color: var(--text);
  font-weight: 600;
  margin: 4px 0 0;
  letter-spacing: -0.005em;
}
body.page-reno .reno-track__copy {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-light);
  margin: 0;
  max-width: 480px;
}
body.page-reno .reno-track__meta {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-dark);
  font-weight: 600;
  margin-top: 2px;
}

/* --- 4. Readiness — checklist to prepare the project --- */
body.page-reno .reno-ready {
  background: var(--surface);
  padding: clamp(64px, 8vw, 100px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
body.page-reno .reno-ready__inner {
  max-width: var(--container);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 900px) {
  body.page-reno .reno-ready__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    gap: 64px;
  }
}
body.page-reno .reno-ready__col--head { min-width: 0; }
body.page-reno .reno-ready__title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text);
  font-weight: 500;
  margin: 6px 0 16px;
  max-width: 420px;
}
body.page-reno .reno-ready__prose {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-light);
  margin: 0;
  max-width: 420px;
}
body.page-reno .reno-ready__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 720px) {
  body.page-reno .reno-ready__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}
body.page-reno .reno-ready__item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 20px 20px 22px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
body.page-reno .reno-ready__item:hover {
  border-color: rgba(var(--primary-rgb), 0.45);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -20px rgba(0, 0, 0, 0.18);
}
body.page-reno .reno-ready__mark {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #fff;
  background: var(--charcoal);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
body.page-reno .reno-ready__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
body.page-reno .reno-ready__item-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.005em;
  line-height: 1.35;
}
body.page-reno .reno-ready__item-copy {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0;
}

/* --- 5. Proof strip — thin band with verified facts --- */
body.page-reno .reno-proof {
  background: #f4f4f2;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
body.page-reno .reno-proof__inner {
  max-width: var(--container);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
body.page-reno .reno-proof__label {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
  margin: 0;
}
body.page-reno .reno-proof__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 20px;
  width: 100%;
  border-top: 1px solid var(--border);
}
@media (min-width: 720px) {
  body.page-reno .reno-proof__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }
}
body.page-reno .reno-proof__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0 0;
}
@media (min-width: 720px) {
  body.page-reno .reno-proof__item {
    padding: 16px 20px 4px 0;
    border-right: 1px solid var(--border);
  }
  body.page-reno .reno-proof__item:last-child { border-right: 0; }
}
body.page-reno .reno-proof__k {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
}
body.page-reno .reno-proof__v {
  font-family: var(--font-heading);
  font-size: 14.5px;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.35;
}

/* --- 6. Service-specific FAQ --- */
body.page-reno .reno-faq {
  background: #ffffff;
  padding: clamp(64px, 8vw, 104px) 0;
}
body.page-reno .reno-faq__inner {
  max-width: var(--container-narrow);
}
body.page-reno .reno-faq__head {
  margin-bottom: 32px;
}
body.page-reno .reno-faq__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: var(--text);
  margin: 6px 0 12px;
  max-width: 700px;
}
body.page-reno .reno-faq__lede {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
  max-width: 620px;
}
body.page-reno .reno-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
body.page-reno .reno-faq__item {
  border-bottom: 1px solid var(--border);
  background: #ffffff;
  transition: background-color .2s ease;
}
body.page-reno .reno-faq__item[open] {
  background: var(--surface);
}
body.page-reno .reno-faq__q {
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.4;
  color: var(--text);
  font-weight: 600;
  padding: 22px 48px 22px 4px;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color .18s ease;
}
body.page-reno .reno-faq__q::-webkit-details-marker { display: none; }
body.page-reno .reno-faq__q:hover { color: var(--primary-dark); }
body.page-reno .reno-faq__toggle {
  position: absolute;
  right: 4px;
  top: 50%;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
}
body.page-reno .reno-faq__toggle::before,
body.page-reno .reno-faq__toggle::after {
  content: "";
  position: absolute;
  background: var(--text);
  transition: transform .2s ease, background-color .2s ease;
  border-radius: 2px;
}
body.page-reno .reno-faq__toggle::before {
  left: 0; right: 0;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
}
body.page-reno .reno-faq__toggle::after {
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
}
body.page-reno .reno-faq__item[open] .reno-faq__toggle::after {
  transform: translateX(-50%) scaleY(0);
}
body.page-reno .reno-faq__a {
  padding: 0 48px 24px 4px;
}
body.page-reno .reno-faq__a p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-light);
  margin: 0;
  max-width: 680px;
}
body.page-reno .reno-faq__a p strong {
  color: var(--text);
  font-weight: 600;
}

/* --- 7. Close band — installation quote CTA + related services aside --- */
body.page-reno .reno-close {
  background: var(--charcoal);
  color: #fff;
  padding: clamp(64px, 8vw, 100px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}
body.page-reno .reno-close::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 90% 0%, rgba(var(--primary-rgb), 0.12), transparent 60%),
    radial-gradient(ellipse at 10% 100%, rgba(var(--primary-dark-rgb), 0.10), transparent 60%);
  pointer-events: none;
}
body.page-reno .reno-close__inner {
  position: relative;
  max-width: var(--container);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 900px) {
  body.page-reno .reno-close__inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 56px;
  }
}
body.page-reno .reno-close__body { min-width: 0; }
body.page-reno .reno-close__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 6px 0 14px;
  font-weight: 500;
  max-width: 620px;
}
body.page-reno .reno-close__lede {
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
  margin: 0 0 26px;
  font-size: 15.5px;
  line-height: 1.7;
}
body.page-reno .reno-close__lede strong {
  color: #fff;
  font-weight: 600;
}
body.page-reno .reno-close__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
body.page-reno .reno-close__aside {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
body.page-reno .reno-close__aside-label {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
  margin: 0;
}
body.page-reno .reno-close__aside-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
body.page-reno .reno-close__aside-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
body.page-reno .reno-close__aside-list li:last-child { border-bottom: 0; }
body.page-reno .reno-close__aside-link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  color: #fff;
  line-height: 52px;
  transition: color .18s ease, padding-left .18s ease;
}
body.page-reno .reno-close__aside-link:hover {
  color: var(--primary);
  padding-left: 4px;
}
body.page-reno .reno-close__aside-link::after {
  content: "→";
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  transition: transform .18s ease, color .18s ease;
  flex-shrink: 0;
}
body.page-reno .reno-close__aside-link:hover::after {
  color: var(--primary);
  transform: translateX(4px);
}
body.page-reno .reno-close__aside-name {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 600;
  color: inherit;
  letter-spacing: -0.005em;
}
body.page-reno .reno-close__aside-hint {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  margin-top: 2px;
}

/* --- Compact scope note after CTA (replaces former services aside) --- */
body.page-reno .reno-close__inner { grid-template-columns: 1fr; }
@media (min-width: 900px) {
  body.page-reno .reno-close__inner { grid-template-columns: 1fr; }
}
body.page-reno .reno-close__scope {
  margin: 18px 0 0;
  padding: 14px 18px;
  border-left: 2px solid rgba(255, 255, 255, 0.25);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
}

/* --- Responsive tightening for the reno page --- */
@media (max-width: 720px) {
  body.page-reno .reno-scenario { padding: 44px 0 36px; }
  body.page-reno .reno-scenario__cases { padding: 22px 20px; }
  body.page-reno .reno-case { grid-template-columns: 82px 1fr; gap: 12px; }
  body.page-reno .reno-scope { padding: 56px 0; }
  body.page-reno .reno-room__body { padding: 22px 20px 22px; }
  body.page-reno .reno-room__spec { grid-template-columns: 88px 1fr; gap: 10px; }
  body.page-reno .reno-process { padding: 56px 0; }
  body.page-reno .reno-track__step { grid-template-columns: 44px 1fr; gap: 16px; padding: 22px 0; }
  body.page-reno .reno-ready { padding: 48px 0; }
  body.page-reno .reno-ready__item { padding: 18px 18px 20px; }
  body.page-reno .reno-proof__list { grid-template-columns: repeat(2, 1fr); gap: 8px 16px; }
  body.page-reno .reno-proof__item {
    padding: 12px 0 0;
    border-right: 0;
    border-top: 1px solid var(--border);
  }
  body.page-reno .reno-proof__list { border-top: 0; }
  body.page-reno .reno-faq { padding: 48px 0; }
  body.page-reno .reno-faq__q { padding: 18px 40px 18px 4px; font-size: 15.5px; }
  body.page-reno .reno-faq__a { padding: 0 40px 20px 4px; }
  body.page-reno .reno-close { padding: 48px 0; }
  body.page-reno .reno-close__aside { padding: 20px 18px 16px; }
}

/* =========================================================
   PAGE: POSE DE PLANCHER (service_detail)
   Macrostructure: ConversationalFAQ
   Sequence: open (scenario intro) → primary Q&A lead
             → materials list → compact 4-step process
             → proof strip → next-step CTA close
   ========================================================= */

/* --- 1. Open — conversational lead + short summary aside --- */
body.page-plancher .plancher-open {
  background: #ffffff;
  padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 5vw, 60px);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
body.page-plancher .plancher-open::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 92% 6%, rgba(var(--primary-rgb), 0.05), transparent 55%),
    radial-gradient(circle at 4% 96%, rgba(var(--charcoal-rgb), 0.04), transparent 60%);
  pointer-events: none;
}
body.page-plancher .plancher-open__inner {
  position: relative;
  max-width: var(--container);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 960px) {
  body.page-plancher .plancher-open__inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, 1fr);
    gap: 64px;
  }
}
body.page-plancher .plancher-open__body { min-width: 0; }
body.page-plancher .plancher-open__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--text);
  margin: 6px 0 22px;
  max-width: 720px;
}
body.page-plancher .plancher-open__title em {
  font-style: normal;
  color: var(--text);
  background-image: linear-gradient(180deg, transparent 62%, rgba(var(--primary-rgb), 0.22) 62%, rgba(var(--primary-rgb), 0.22) 92%, transparent 92%);
  padding: 0 2px;
}
body.page-plancher .plancher-open__lede {
  font-size: clamp(15px, 1.55vw, 17px);
  line-height: 1.7;
  color: var(--text-light);
  margin: 0 0 14px;
  max-width: 640px;
}
body.page-plancher .plancher-open__lede:last-of-type { margin-bottom: 26px; }
body.page-plancher .plancher-open__lede strong {
  color: var(--text);
  font-weight: 600;
}
body.page-plancher .plancher-open__jump {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: background-color .18s ease, border-color .18s ease;
}
body.page-plancher .plancher-open__jump:hover {
  background: var(--surface);
  border-color: rgba(0, 0, 0, 0.32);
}
body.page-plancher .plancher-open__jump:focus-visible { outline-offset: 4px; }

/* Aside summary card */
body.page-plancher .plancher-open__aside {
  background: var(--charcoal);
  color: #fff;
  border-radius: 18px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 60px -32px rgba(0, 0, 0, 0.4);
  min-width: 0;
}
body.page-plancher .plancher-open__aside-media {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  background: #0f0f0f;
}
body.page-plancher .plancher-open__aside-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02) brightness(0.95);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
body.page-plancher .plancher-open__aside:hover .plancher-open__aside-media img { transform: scale(1.04); }
body.page-plancher .plancher-open__aside-label {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
  margin: 0;
}
body.page-plancher .plancher-open__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
body.page-plancher .plancher-open__chip {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: #fff;
  font-weight: 500;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}
body.page-plancher .plancher-open__facts {
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
body.page-plancher .plancher-open__fact {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: baseline;
}
body.page-plancher .plancher-open__fact:last-child { border-bottom: 0; padding-bottom: 2px; }
body.page-plancher .plancher-open__fact dt {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
  margin: 0;
}
body.page-plancher .plancher-open__fact dd {
  font-family: var(--font-heading);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  line-height: 1.45;
  font-weight: 500;
}

/* --- 2. QA — leading Q&A grid (ConversationalFAQ core) --- */
body.page-plancher .plancher-qa {
  background: var(--charcoal);
  color: #fff;
  padding: clamp(72px, 10vw, 120px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
body.page-plancher .plancher-qa__inner { max-width: var(--container); }
body.page-plancher .plancher-qa__head {
  max-width: 780px;
  margin: 0 0 46px;
}
body.page-plancher .plancher-qa__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #fff;
  margin: 6px 0 14px;
}
body.page-plancher .plancher-qa__lede {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  max-width: 640px;
}
body.page-plancher .plancher-qa__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 900px) {
  body.page-plancher .plancher-qa__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}
body.page-plancher .plancher-qa__item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .22s ease, background-color .22s ease, transform .22s ease, box-shadow .22s ease;
  position: relative;
}
body.page-plancher .plancher-qa__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, rgba(var(--primary-rgb), 0.35) 100%);
  opacity: 0;
  transition: opacity .22s ease;
}
body.page-plancher .plancher-qa__item:hover {
  border-color: rgba(var(--primary-rgb), 0.45);
  background: rgba(var(--primary-rgb), 0.05);
  transform: translateY(-2px);
  box-shadow: 0 22px 40px -24px rgba(var(--primary-rgb), 0.3);
}
body.page-plancher .plancher-qa__item:hover::before { opacity: 1; }
body.page-plancher .plancher-qa__mark {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary-light);
  font-weight: 700;
  margin: 0;
}
body.page-plancher .plancher-qa__q {
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.8vw, 19px);
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: #fff;
  font-weight: 600;
  margin: 0;
}
body.page-plancher .plancher-qa__a {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}
body.page-plancher .plancher-qa__a strong {
  color: #fff;
  font-weight: 600;
}

/* --- 3. Types — flooring materials list (text-first) --- */
body.page-plancher .plancher-types {
  background: #ffffff;
  padding: clamp(72px, 10vw, 120px) 0;
}
body.page-plancher .plancher-types__inner {
  max-width: var(--container);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) {
  body.page-plancher .plancher-types__inner {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.4fr);
    gap: 64px;
    align-items: start;
  }
}
body.page-plancher .plancher-types__head { min-width: 0; }
body.page-plancher .plancher-types__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.6vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--text);
  margin: 6px 0 16px;
}
body.page-plancher .plancher-types__prose {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
  max-width: 460px;
}
body.page-plancher .plancher-types__body { min-width: 0; }
body.page-plancher .plancher-types__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
  padding: 0;
  margin: 0;
  list-style: none;
}
body.page-plancher .plancher-type {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left .22s ease;
}
body.page-plancher .plancher-type:hover { padding-left: 6px; }
@media (min-width: 720px) {
  body.page-plancher .plancher-type {
    grid-template-columns: 200px 1fr;
    gap: 24px;
    align-items: baseline;
  }
}
body.page-plancher .plancher-type__name {
  font-family: var(--font-heading);
  font-size: 15.5px;
  letter-spacing: -0.005em;
  color: var(--text);
  font-weight: 600;
  margin: 0;
}
body.page-plancher .plancher-type__desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-light);
  margin: 0;
}

/* --- 4. Steps — compact 4-step installation process --- */
body.page-plancher .plancher-steps {
  background: var(--surface);
  padding: clamp(72px, 10vw, 120px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
body.page-plancher .plancher-steps__inner { max-width: var(--container); }
body.page-plancher .plancher-steps__head {
  max-width: 720px;
  margin: 0 0 42px;
}
body.page-plancher .plancher-steps__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--text);
  margin: 6px 0 14px;
}
body.page-plancher .plancher-steps__lede {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
  max-width: 640px;
}
body.page-plancher .plancher-steps__list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  counter-reset: none;
}
@media (min-width: 720px) {
  body.page-plancher .plancher-steps__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}
@media (min-width: 1024px) {
  body.page-plancher .plancher-steps__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }
}
body.page-plancher .plancher-steps__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}
body.page-plancher .plancher-steps__item:hover {
  border-color: rgba(var(--primary-rgb), 0.35);
  transform: translateY(-2px);
  box-shadow: 0 22px 40px -28px rgba(0, 0, 0, 0.22);
}
body.page-plancher .plancher-steps__num {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary-dark);
  font-weight: 700;
  margin: 0;
}
body.page-plancher .plancher-steps__name {
  font-family: var(--font-heading);
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--text);
  font-weight: 600;
  margin: 0;
}
body.page-plancher .plancher-steps__copy {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0;
}

/* --- 5. Proof — service-specific proof strip --- */
body.page-plancher .plancher-proof {
  background: #ffffff;
  padding: clamp(56px, 7vw, 80px) 0;
}
body.page-plancher .plancher-proof__inner { max-width: var(--container); }
body.page-plancher .plancher-proof__label {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
  margin: 0 0 22px;
}
body.page-plancher .plancher-proof__list {
  list-style: none;
  padding: 22px 0 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
  border-top: 1px solid var(--border);
}
@media (min-width: 900px) {
  body.page-plancher .plancher-proof__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }
}
body.page-plancher .plancher-proof__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 22px;
  border-right: 1px solid var(--border);
  min-width: 0;
}
body.page-plancher .plancher-proof__item:last-child { border-right: 0; padding-right: 0; }
body.page-plancher .plancher-proof__k {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
}
body.page-plancher .plancher-proof__v {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.4;
}

/* --- 6. Close — next-step CTA --- */
body.page-plancher .plancher-close {
  background: var(--charcoal);
  color: #fff;
  padding: clamp(64px, 8vw, 100px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}
body.page-plancher .plancher-close::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 25%, rgba(var(--primary-rgb), 0.08), transparent 55%),
    radial-gradient(circle at 92% 85%, rgba(255, 255, 255, 0.03), transparent 55%);
  pointer-events: none;
}
body.page-plancher .plancher-close__inner {
  position: relative;
  max-width: var(--container);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 900px) {
  body.page-plancher .plancher-close__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}
body.page-plancher .plancher-close__body { min-width: 0; }
body.page-plancher .plancher-close__scope {
  margin: 18px 0 0;
  padding: 14px 18px;
  border-left: 2px solid rgba(255, 255, 255, 0.25);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
}
body.page-plancher .plancher-close__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #fff;
  margin: 6px 0 16px;
  max-width: 640px;
}
body.page-plancher .plancher-close__lede {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 26px;
  max-width: 560px;
}
body.page-plancher .plancher-close__lede strong {
  color: #fff;
  font-weight: 600;
}
body.page-plancher .plancher-close__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
body.page-plancher a.plancher-close__actions .btn--outline-light,
body.page-plancher .plancher-close__actions a[href^="tel:"] { white-space: nowrap; }
body.page-plancher .plancher-close__aside {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
body.page-plancher .plancher-close__aside-label {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
  margin: 0;
}
body.page-plancher .plancher-close__aside-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
body.page-plancher .plancher-close__aside-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
body.page-plancher .plancher-close__aside-list li:last-child { border-bottom: 0; }
body.page-plancher .plancher-close__aside-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  color: #fff;
  transition: color .18s ease, padding-left .18s ease;
}
body.page-plancher .plancher-close__aside-link:hover {
  color: var(--primary);
  padding-left: 4px;
}
body.page-plancher .plancher-close__aside-link::after {
  content: "→";
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  transition: transform .18s ease, color .18s ease;
  flex-shrink: 0;
}
body.page-plancher .plancher-close__aside-link:hover::after {
  color: var(--primary);
  transform: translateX(4px);
}
body.page-plancher .plancher-close__aside-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 600;
  color: inherit;
  letter-spacing: -0.005em;
}
body.page-plancher .plancher-close__aside-hint {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  margin-top: 2px;
}

/* --- Responsive tightening for the plancher page --- */
@media (max-width: 720px) {
  body.page-plancher .plancher-open { padding: 44px 0 32px; }
  body.page-plancher .plancher-open__aside { padding: 20px 18px 18px; }
  body.page-plancher .plancher-open__fact { grid-template-columns: 88px 1fr; gap: 12px; }
  body.page-plancher .plancher-qa { padding: 56px 0; }
  body.page-plancher .plancher-qa__item { padding: 22px 20px 20px; }
  body.page-plancher .plancher-types { padding: 56px 0; }
  body.page-plancher .plancher-type { padding: 18px 0; }
  body.page-plancher .plancher-steps { padding: 56px 0; }
  body.page-plancher .plancher-steps__item { padding: 20px 18px 18px; }
  body.page-plancher .plancher-proof { padding: 44px 0; }
  body.page-plancher .plancher-proof__list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 20px; }
  body.page-plancher .plancher-proof__item {
    border-right: 0;
    padding-right: 0;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
  }
  body.page-plancher .plancher-proof__item:last-child { border-bottom: 0; padding-bottom: 0; }
  body.page-plancher .plancher-proof__item:nth-last-child(2) { border-bottom: 0; padding-bottom: 0; }
  body.page-plancher .plancher-close { padding: 48px 0; }
  body.page-plancher .plancher-close__aside { padding: 20px 18px 16px; }
}

/* =========================================================
   PAGE: FINITION INTÉRIEURE (service_detail)
   Macrostructure: LongDocument
   Sequence: article lead (text-first editorial intro)
             → scope grid of finishing trades
             → quality criteria (A/B/C/D standards)
             → 3-phase workflow (diagnostic → execution → contrôle)
             → verifiable info strip → service-specific FAQ
             → scoped CTA close ("Planifier mes travaux de finition intérieure")
   ========================================================= */

/* --- 1. Article lead — long-form text-led intro with pull-quote aside --- */
body.page-finition .fin-article {
  background: #ffffff;
  padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 72px);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
body.page-finition .fin-article::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(var(--primary-rgb), 0.05), transparent 45%),
    radial-gradient(circle at 0% 100%, rgba(var(--charcoal-rgb), 0.04), transparent 50%);
  pointer-events: none;
}
body.page-finition .fin-article__inner {
  position: relative;
  max-width: var(--container);
}
body.page-finition .fin-article__head {
  max-width: 820px;
  margin: 0 0 clamp(28px, 4vw, 44px);
}
body.page-finition .fin-article__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.022em;
  font-weight: 500;
  color: var(--text);
  margin: 6px 0 20px;
}
body.page-finition .fin-article__standfirst {
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.65;
  color: var(--text-light);
  margin: 0;
  max-width: 720px;
}
body.page-finition .fin-article__standfirst strong { color: var(--text); font-weight: 600; }
body.page-finition .fin-article__standfirst em {
  font-style: normal;
  background-image: linear-gradient(180deg, transparent 62%, rgba(var(--primary-rgb), 0.22) 62%, rgba(var(--primary-rgb), 0.22) 92%, transparent 92%);
  padding: 0 2px;
}
body.page-finition .fin-article__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 16px;
  margin: 28px 0 14px;
}
body.page-finition .fin-article__cta {
  padding: 15px 28px;
  font-weight: 600;
  letter-spacing: 0.005em;
  min-height: 50px;
  box-shadow: 0 14px 32px -14px rgba(var(--primary-rgb), 0.45), var(--shadow-pill);
}
body.page-finition .fin-article__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -14px rgba(var(--primary-rgb), 0.55), var(--shadow-pill);
}
body.page-finition .fin-article__phone {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 14px 22px;
  min-height: 50px;
  color: var(--text);
  border-color: rgba(0, 0, 0, 0.16);
  background: #ffffff;
  white-space: nowrap;
}
body.page-finition .fin-article__phone:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}
body.page-finition .fin-article__phone-label {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
}
body.page-finition .fin-article__phone-num {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: inherit;
  letter-spacing: 0.01em;
}
body.page-finition .fin-article__reassure {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
  margin: 0;
}
body.page-finition .fin-article__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 960px) {
  body.page-finition .fin-article__body {
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, 1fr);
    gap: 64px;
  }
}
body.page-finition .fin-article__prose {
  min-width: 0;
  color: var(--text);
}
body.page-finition .fin-article__prose p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  margin: 0 0 18px;
  max-width: 640px;
}
body.page-finition .fin-article__prose p:last-child { margin-bottom: 0; }
body.page-finition .fin-article__prose strong { color: var(--text); font-weight: 600; }

/* Pull-quote aside — softer than sibling dark aside cards */
body.page-finition .fin-article__pull {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: 4px 14px 14px 4px;
  padding: 24px 26px 22px;
  min-width: 0;
  position: relative;
}
body.page-finition .fin-article__pull-label {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
  margin: 0 0 12px;
}
body.page-finition .fin-article__pull-quote {
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.75vw, 19px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--text);
  font-weight: 500;
  font-style: italic;
  margin: 0 0 20px;
}
body.page-finition .fin-article__pull-meta {
  list-style: none;
  padding: 18px 0 0;
  margin: 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.page-finition .fin-article__pull-meta li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: baseline;
}
body.page-finition .fin-article__pull-meta span {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
}
body.page-finition .fin-article__pull-meta strong {
  font-family: var(--font-heading);
  font-size: 13.5px;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.4;
}

/* --- 2. Scope grid — dense list of finishing trades (text-first, no photos) --- */
body.page-finition .fin-scope {
  background: var(--charcoal);
  color: #fff;
  padding: clamp(72px, 10vw, 120px) 0;
}
body.page-finition .fin-scope__inner { max-width: var(--container); }
body.page-finition .fin-scope__head {
  max-width: 780px;
  margin: 0 0 44px;
}
body.page-finition .fin-scope__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #ffffff;
  margin: 6px 0 14px;
}
body.page-finition .fin-scope__lede {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
  margin: 0;
  max-width: 620px;
}
body.page-finition .fin-scope__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
@media (min-width: 720px) {
  body.page-finition .fin-scope__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 32px;
  }
}
@media (min-width: 1024px) {
  body.page-finition .fin-scope__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 40px;
  }
}
body.page-finition .fin-trade {
  padding: 26px 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  min-width: 0;
  transition: padding-left .22s ease;
}
body.page-finition .fin-trade:hover { padding-left: 4px; }
body.page-finition .fin-trade__tag {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin: 0 0 10px;
}
body.page-finition .fin-trade__name {
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #ffffff;
  font-weight: 600;
  margin: 0 0 10px;
}
body.page-finition .fin-trade__desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 34em;
}

/* --- 3. Criteria — decision rules (A/B/C/D standards, asymmetric grid) --- */
body.page-finition .fin-criteria {
  background: #ffffff;
  padding: clamp(72px, 10vw, 120px) 0;
}
body.page-finition .fin-criteria__inner {
  max-width: var(--container);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 960px) {
  body.page-finition .fin-criteria__inner {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.4fr);
    gap: 64px;
    align-items: start;
  }
}
body.page-finition .fin-criteria__head {
  min-width: 0;
  position: sticky;
  top: 130px;
}
body.page-finition .fin-criteria__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--text);
  margin: 6px 0 14px;
}
body.page-finition .fin-criteria__lede {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
  max-width: 420px;
}
body.page-finition .fin-criteria__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  min-width: 0;
}
@media (min-width: 720px) {
  body.page-finition .fin-criteria__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}
body.page-finition .fin-standard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease, background-color .22s ease;
}
body.page-finition .fin-standard:hover {
  border-color: rgba(var(--primary-rgb), 0.4);
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 22px 40px -28px rgba(0, 0, 0, 0.22);
}
body.page-finition .fin-standard__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--charcoal);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  flex-shrink: 0;
}
body.page-finition .fin-standard__body { min-width: 0; }
body.page-finition .fin-standard__title {
  font-family: var(--font-heading);
  font-size: 16.5px;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--text);
  font-weight: 600;
  margin: 0 0 8px;
}
body.page-finition .fin-standard__copy {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-light);
  margin: 0;
}

/* --- 4. Phases — 3-phase timeline (larger prose blocks, differs from sibling step lists) --- */
body.page-finition .fin-phases {
  background: var(--bg-alt);
  color: var(--bg-alt-ink);
  padding: clamp(72px, 10vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
body.page-finition .fin-phases::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(var(--primary-rgb), 0.07), transparent 55%),
    radial-gradient(circle at 92% 88%, rgba(255, 255, 255, 0.03), transparent 55%);
  pointer-events: none;
}
body.page-finition .fin-phases__inner {
  position: relative;
  max-width: var(--container);
}
body.page-finition .fin-phases__head {
  max-width: 760px;
  margin: 0 0 42px;
}
body.page-finition .fin-phases__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #ffffff;
  margin: 6px 0 14px;
}
body.page-finition .fin-phases__lede {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  max-width: 620px;
}
body.page-finition .fin-phases__timeline {
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding-left: 28px;
}
@media (min-width: 720px) {
  body.page-finition .fin-phases__timeline {
    padding-left: 42px;
    gap: 28px;
  }
}
body.page-finition .fin-phase {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 24px 24px 22px;
  color: inherit;
  position: relative;
  transition: border-color .22s ease, background-color .22s ease;
}
body.page-finition .fin-phase::before {
  content: "";
  position: absolute;
  top: 30px;
  left: -35px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 4px var(--bg-alt), 0 0 0 5px rgba(255, 255, 255, 0.14);
}
@media (max-width: 719px) {
  body.page-finition .fin-phase::before { left: -34px; }
}
body.page-finition .fin-phase:hover {
  border-color: rgba(var(--primary-rgb), 0.35);
  background: rgba(var(--primary-rgb), 0.06);
}
body.page-finition .fin-phase__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
@media (min-width: 720px) {
  body.page-finition .fin-phase__head {
    flex-direction: row;
    align-items: baseline;
    gap: 20px;
  }
}
body.page-finition .fin-phase__num {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  flex-shrink: 0;
}
body.page-finition .fin-phase__title {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #ffffff;
  font-weight: 600;
  margin: 0;
}
body.page-finition .fin-phase__body p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 16px;
  max-width: 640px;
}
body.page-finition .fin-phase__deliverables {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.page-finition .fin-phase__deliverables li {
  font-family: var(--font-heading);
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.9);
  padding-left: 20px;
  position: relative;
  letter-spacing: 0;
  line-height: 1.5;
}
body.page-finition .fin-phase__deliverables li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* --- 5. Proof — verifiable info strip (4-cell definition list) --- */
body.page-finition .fin-proof {
  background: #ffffff;
  padding: clamp(56px, 7vw, 80px) 0;
  border-bottom: 1px solid var(--border);
}
body.page-finition .fin-proof__inner { max-width: var(--container); }
body.page-finition .fin-proof__label {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
  margin: 0 0 22px;
}
body.page-finition .fin-proof__grid {
  padding: 22px 0 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
  border-top: 1px solid var(--border);
}
@media (min-width: 900px) {
  body.page-finition .fin-proof__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }
}
body.page-finition .fin-proof__cell {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 22px;
  border-right: 1px solid var(--border);
  min-width: 0;
}
body.page-finition .fin-proof__cell:last-child { border-right: 0; padding-right: 0; }
body.page-finition .fin-proof__cell dt {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
  margin: 0;
}
body.page-finition .fin-proof__cell dd {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.4;
  margin: 0;
}

/* --- 6. FAQ — service-specific questions (details/summary accordion, light band) --- */
body.page-finition .fin-faq {
  background: var(--surface);
  padding: clamp(72px, 10vw, 120px) 0;
}
body.page-finition .fin-faq__inner {
  max-width: var(--container);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 960px) {
  body.page-finition .fin-faq__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.6fr);
    gap: 60px;
    align-items: start;
  }
}
body.page-finition .fin-faq__head { min-width: 0; }
body.page-finition .fin-faq__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--text);
  margin: 6px 0 14px;
}
body.page-finition .fin-faq__lede {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
  max-width: 400px;
}
body.page-finition .fin-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
body.page-finition .fin-faq__item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .22s ease, box-shadow .22s ease;
}
body.page-finition .fin-faq__item[open] {
  border-color: rgba(var(--primary-rgb), 0.35);
  box-shadow: 0 20px 40px -30px rgba(var(--primary-rgb), 0.35);
}
body.page-finition .fin-faq__q {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--text);
  font-weight: 600;
}
body.page-finition .fin-faq__q::-webkit-details-marker { display: none; }
body.page-finition .fin-faq__toggle {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
body.page-finition .fin-faq__toggle::before,
body.page-finition .fin-faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--text);
  transition: transform .22s ease, opacity .22s ease;
}
body.page-finition .fin-faq__toggle::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}
body.page-finition .fin-faq__toggle::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}
body.page-finition .fin-faq__item[open] .fin-faq__toggle::after { transform: translate(-50%, -50%) scaleY(0); opacity: 0; }
body.page-finition .fin-faq__a {
  padding: 0 24px 22px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
body.page-finition .fin-faq__a p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
  max-width: 640px;
}
body.page-finition .fin-faq__a p strong {
  color: var(--text);
  font-weight: 600;
}

/* --- 7. Close — scoped CTA (unique voice for this service) --- */
body.page-finition .fin-close {
  background: var(--charcoal);
  color: #fff;
  padding: clamp(64px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
}
body.page-finition .fin-close::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 92% 8%, rgba(var(--primary-rgb), 0.1), transparent 55%),
    radial-gradient(circle at 6% 90%, rgba(255, 255, 255, 0.03), transparent 55%);
  pointer-events: none;
}
body.page-finition .fin-close__inner {
  position: relative;
  max-width: var(--container);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 960px) {
  body.page-finition .fin-close__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}
body.page-finition .fin-close__body { min-width: 0; }
body.page-finition .fin-close__scope {
  margin: 18px 0 0;
  padding: 14px 18px;
  border-left: 2px solid rgba(255, 255, 255, 0.25);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
}
body.page-finition .fin-close__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #ffffff;
  margin: 6px 0 16px;
  max-width: 640px;
}
body.page-finition .fin-close__lede {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 26px;
  max-width: 580px;
}
body.page-finition .fin-close__lede strong { color: #fff; font-weight: 600; }
body.page-finition .fin-close__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
body.page-finition .fin-close__actions a[href^="tel:"] { white-space: nowrap; }
body.page-finition .fin-close__reassure {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  margin: 0;
}
body.page-finition .fin-close__aside {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
body.page-finition .fin-close__aside-label {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
  margin: 0;
}
body.page-finition .fin-close__aside-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
body.page-finition .fin-close__aside-list li { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
body.page-finition .fin-close__aside-list li:last-child { border-bottom: 0; }
body.page-finition .fin-close__aside-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  color: #ffffff;
  transition: color .18s ease, padding-left .18s ease;
}
body.page-finition .fin-close__aside-link:hover {
  color: var(--primary);
  padding-left: 4px;
}
body.page-finition .fin-close__aside-link::after {
  content: "→";
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  transition: transform .18s ease, color .18s ease;
  flex-shrink: 0;
}
body.page-finition .fin-close__aside-link:hover::after {
  color: var(--primary);
  transform: translateX(4px);
}
body.page-finition .fin-close__aside-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 600;
  color: inherit;
  letter-spacing: -0.005em;
}
body.page-finition .fin-close__aside-hint {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  margin-top: 2px;
}

/* --- Responsive tightening for the finition page --- */
@media (max-width: 720px) {
  body.page-finition .fin-article { padding: 44px 0 32px; }
  body.page-finition .fin-article__pull { padding: 20px 20px 18px; }
  body.page-finition .fin-scope { padding: 56px 0; }
  body.page-finition .fin-trade { padding: 22px 0 20px; }
  body.page-finition .fin-criteria { padding: 56px 0; }
  body.page-finition .fin-criteria__head { position: static; top: auto; }
  body.page-finition .fin-standard { padding: 20px 18px 18px; }
  body.page-finition .fin-phases { padding: 56px 0; }
  body.page-finition .fin-phases__timeline { padding-left: 22px; gap: 20px; }
  body.page-finition .fin-phase { padding: 20px 18px 18px; }
  body.page-finition .fin-phase::before { left: -28px; top: 24px; width: 10px; height: 10px; }
  body.page-finition .fin-proof { padding: 44px 0; }
  body.page-finition .fin-proof__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 20px; }
  body.page-finition .fin-proof__cell {
    border-right: 0;
    padding-right: 0;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
  }
  body.page-finition .fin-proof__cell:last-child { border-bottom: 0; padding-bottom: 0; }
  body.page-finition .fin-proof__cell:nth-last-child(2) { border-bottom: 0; padding-bottom: 0; }
  body.page-finition .fin-faq { padding: 56px 0; }
  body.page-finition .fin-faq__q { padding: 16px 18px; font-size: 15px; }
  body.page-finition .fin-faq__a { padding: 14px 18px 18px; }
  body.page-finition .fin-close { padding: 48px 0; }
  body.page-finition .fin-close__aside { padding: 20px 18px 16px; }
}

/* =========================================================
   PAGE: CHARPENTE DE MAISON
   Scoped to body.page-charpente — ConversationalFAQ shape:
   scenario → positioning → Q&A → project types → process
   → proof → close. Deliberately distinct from sibling
   service pages (finition / plancher / reno).
   ========================================================= */

/* --- 1. Scenario opener --- */
body.page-charpente .char-scenario {
  background: #ffffff;
  padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 72px);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
body.page-charpente .char-scenario::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 6%, rgba(var(--primary-rgb), 0.05), transparent 50%),
    radial-gradient(circle at 4% 92%, rgba(var(--charcoal-rgb), 0.05), transparent 55%);
  pointer-events: none;
}
body.page-charpente .char-scenario__inner {
  position: relative;
  max-width: var(--container);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 960px) {
  body.page-charpente .char-scenario__inner {
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 1fr);
    gap: 56px;
  }
}
body.page-charpente .char-scenario__visual {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
body.page-charpente .char-scenario__frame {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, #f4f7fb 0%, #e5ebf3 100%);
  border: 1px solid var(--border);
  box-shadow:
    0 30px 60px -34px rgba(0, 0, 0, 0.28),
    0 10px 24px -14px rgba(var(--primary-rgb), 0.22);
  position: relative;
  isolation: isolate;
}
body.page-charpente .char-scenario__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 85% 12%, rgba(var(--primary-rgb), 0.08), transparent 65%);
  pointer-events: none;
}
body.page-charpente .char-scenario__frame-svg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 420 / 340;
}
body.page-charpente .char-scenario__frame-caption {
  padding: 12px 18px 14px;
  font-family: var(--font-heading);
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-light);
  letter-spacing: 0.02em;
  background: #ffffff;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
body.page-charpente .char-scenario__frame-tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary-darker);
  background: rgba(var(--primary-rgb), 0.10);
  padding: 4px 8px;
  border-radius: 999px;
}
body.page-charpente .char-scenario__body { min-width: 0; }
body.page-charpente .char-scenario__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.022em;
  font-weight: 500;
  color: var(--text);
  margin: 6px 0 20px;
}
body.page-charpente .char-scenario__title em {
  font-style: normal;
  background-image: linear-gradient(180deg, transparent 62%, rgba(var(--primary-rgb), 0.22) 62%, rgba(var(--primary-rgb), 0.22) 92%, transparent 92%);
  padding: 0 2px;
}
body.page-charpente .char-scenario__lede {
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.7;
  color: var(--text-light);
  margin: 0 0 14px;
  max-width: 640px;
}
body.page-charpente .char-scenario__lede strong { color: var(--text); font-weight: 600; }
body.page-charpente .char-scenario__note {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-light);
  margin: 0 0 20px;
  max-width: 620px;
}
body.page-charpente .char-scenario__markers-wrap { margin-top: 22px; }
body.page-charpente .char-scenario__markers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
body.page-charpente .char-scenario__markers li {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
}
body.page-charpente .char-scenario__cta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 18px 22px;
  flex-wrap: wrap;
}
body.page-charpente .char-scenario__cta-primary {
  background: var(--primary-dark);
  color: var(--primary-ink);
  border-color: var(--primary-dark);
  padding: 15px 26px 15px 28px;
  min-height: 50px;
  font-weight: 600;
  letter-spacing: 0.005em;
  box-shadow:
    0 18px 34px -14px rgba(var(--primary-dark-rgb), 0.55),
    0 8px 18px -10px rgba(0, 0, 0, 0.35);
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
body.page-charpente .char-scenario__cta-primary:hover {
  background: var(--primary-darker);
  border-color: var(--primary-darker);
  transform: translateY(-1px);
  box-shadow:
    0 22px 44px -14px rgba(var(--primary-dark-rgb), 0.6),
    0 10px 24px -10px rgba(0, 0, 0, 0.4);
}
body.page-charpente .char-scenario__cta-arrow {
  transition: transform .22s ease;
}
body.page-charpente .char-scenario__cta-primary:hover .char-scenario__cta-arrow {
  transform: translateX(3px);
}
body.page-charpente .char-scenario__cta-phone {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 14.5px;
  line-height: 1.3;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.005em;
  padding: 6px 2px;
  border-bottom: 1.5px solid rgba(var(--primary-rgb), 0.35);
  transition: color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
body.page-charpente .char-scenario__cta-phone:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary-dark);
}
body.page-charpente .char-scenario__cta-phone-label {
  color: var(--text-light);
  font-weight: 400;
  letter-spacing: 0.005em;
}
body.page-charpente .char-scenario__cta-phone-num {
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
body.page-charpente .char-scenario__aside {
  min-width: 0;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  box-shadow:
    0 24px 48px -28px rgba(0, 0, 0, 0.22),
    0 8px 18px -12px rgba(var(--primary-rgb), 0.18);
}
body.page-charpente .char-scenario__aside::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 22px;
  right: 22px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary) 40%, transparent 100%);
  border-radius: 3px;
}
body.page-charpente .char-scenario__aside-label {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary-darker);
  font-weight: 700;
  margin: 4px 0 0;
}
body.page-charpente .char-scenario__facts {
  margin: 0;
  padding: 2px 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
body.page-charpente .char-scenario__fact {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
body.page-charpente .char-scenario__fact:last-child { border-bottom: 0; padding-bottom: 2px; }
body.page-charpente .char-scenario__fact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(var(--primary-rgb), 0.10);
  color: var(--primary);
  flex-shrink: 0;
}
body.page-charpente .char-scenario__fact-icon svg { display: block; }
body.page-charpente .char-scenario__fact-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
body.page-charpente .char-scenario__fact dt {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
}
body.page-charpente .char-scenario__fact dd {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.005em;
}

/* --- 2. Positioning band — Do / Don't columns on dark surface --- */
body.page-charpente .char-position {
  background: var(--charcoal);
  color: #fff;
  padding: clamp(72px, 10vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
body.page-charpente .char-position::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 100%, rgba(var(--primary-rgb), 0.07), transparent 55%),
    radial-gradient(circle at 90% 0%, rgba(255,255,255,0.035), transparent 55%);
  pointer-events: none;
}
body.page-charpente .char-position__inner {
  position: relative;
  max-width: var(--container);
}
body.page-charpente .char-position__head {
  max-width: 780px;
  margin: 0 0 44px;
}
body.page-charpente .char-position__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #ffffff;
  margin: 6px 0 14px;
}
body.page-charpente .char-position__lede {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 640px;
}
body.page-charpente .char-position__lede strong { color: #fff; font-weight: 600; }
body.page-charpente .char-position__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 860px) {
  body.page-charpente .char-position__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
}
body.page-charpente .char-position__card {
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  padding: 28px 26px 26px;
  color: #fff;
  min-width: 0;
  position: relative;
  transition: border-color .22s ease, background-color .22s ease, transform .22s ease, box-shadow .22s ease;
  box-shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.55);
}
body.page-charpente .char-position__card:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-2px);
  box-shadow: 0 22px 48px -22px rgba(0, 0, 0, 0.6);
}
body.page-charpente .char-position__card--do {
  border-left: 4px solid var(--primary);
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.09) 0%, rgba(255, 255, 255, 0.075) 60%);
}
body.page-charpente .char-position__card--dont {
  border-left: 4px solid rgba(255, 255, 255, 0.55);
}
body.page-charpente .char-position__flag {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.7);
}
body.page-charpente .char-position__card--do .char-position__flag { color: var(--primary-light); }
body.page-charpente .char-position__card-title {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #ffffff;
  font-weight: 600;
  margin: 0 0 18px;
}
body.page-charpente .char-position__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body.page-charpente .char-position__list li {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 22px;
  position: relative;
}
body.page-charpente .char-position__card--do .char-position__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
body.page-charpente .char-position__card--dont .char-position__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 2px;
}
body.page-charpente .char-position__closing {
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  max-width: 720px;
  margin: 30px 0 0;
}
body.page-charpente .char-position__closing em {
  font-style: normal;
  color: #fff;
  font-weight: 500;
  background-image: linear-gradient(180deg, transparent 62%, rgba(var(--primary-rgb), 0.35) 62%, rgba(var(--primary-rgb), 0.35) 92%, transparent 92%);
  padding: 0 2px;
}

/* --- 3. Q&A — the conversational core --- */
body.page-charpente .char-qa {
  background: #ffffff;
  padding: clamp(72px, 10vw, 120px) 0;
}
body.page-charpente .char-qa__inner { max-width: var(--container); }
body.page-charpente .char-qa__head {
  max-width: 820px;
  margin: 0 0 48px;
}
body.page-charpente .char-qa__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--text);
  margin: 6px 0 14px;
}
body.page-charpente .char-qa__lede {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
  max-width: 640px;
}
body.page-charpente .char-qa__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
@media (min-width: 860px) {
  body.page-charpente .char-qa__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 48px;
    row-gap: 0;
  }
}
body.page-charpente .char-qa__item {
  padding: 28px 0 26px;
  border-bottom: 1px solid var(--border);
  min-width: 0;
}
body.page-charpente .char-qa__mark {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary-darker);
  font-weight: 700;
  margin: 0 0 10px;
}
body.page-charpente .char-qa__q {
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.85vw, 20px);
  line-height: 1.32;
  letter-spacing: -0.01em;
  color: var(--text);
  font-weight: 600;
  margin: 0 0 12px;
}
body.page-charpente .char-qa__a {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
  max-width: 40em;
}
body.page-charpente .char-qa__a strong { color: var(--text); font-weight: 600; }
body.page-charpente .char-qa__a em {
  font-style: italic;
  color: var(--text);
}

/* --- 4. Project types — three cards on light band --- */
body.page-charpente .char-types {
  background: var(--surface);
  padding: clamp(72px, 10vw, 120px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
body.page-charpente .char-types__inner { max-width: var(--container); }
body.page-charpente .char-types__head {
  max-width: 780px;
  margin: 0 0 44px;
}
body.page-charpente .char-types__head .eyebrow--light {
  color: var(--text-light);
}
body.page-charpente .char-types__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--text);
  margin: 6px 0 14px;
}
body.page-charpente .char-types__lede {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
  max-width: 640px;
}
body.page-charpente .char-types__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  counter-reset: none;
}
@media (min-width: 860px) {
  body.page-charpente .char-types__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}
body.page-charpente .char-project {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}
body.page-charpente .char-project:hover {
  border-color: rgba(var(--primary-rgb), 0.45);
  transform: translateY(-2px);
  box-shadow: 0 24px 40px -30px rgba(0, 0, 0, 0.24);
}
body.page-charpente .char-project__head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
body.page-charpente .char-project__num {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
}
body.page-charpente .char-project__name {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: var(--text);
  font-weight: 600;
  margin: 0;
}
body.page-charpente .char-project__copy {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}
body.page-charpente .char-project__specs {
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.page-charpente .char-project__specs > div {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 12px;
  align-items: baseline;
}
body.page-charpente .char-project__specs dt {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
}
body.page-charpente .char-project__specs dd {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.005em;
}

/* --- 5. Process — five milestone rail on dark surface --- */
body.page-charpente .char-process {
  background: var(--bg-alt);
  color: var(--bg-alt-ink);
  padding: clamp(72px, 10vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
body.page-charpente .char-process::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 92% 8%, rgba(var(--primary-rgb), 0.08), transparent 55%),
    radial-gradient(circle at 4% 92%, rgba(255,255,255,0.03), transparent 55%);
  pointer-events: none;
}
body.page-charpente .char-process__inner {
  position: relative;
  max-width: var(--container);
}
body.page-charpente .char-process__head {
  max-width: 780px;
  margin: 0 0 44px;
}
body.page-charpente .char-process__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #ffffff;
  margin: 6px 0 14px;
}
body.page-charpente .char-process__lede {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 640px;
}
body.page-charpente .char-process__flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
body.page-charpente .char-milestone {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 26px 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media (min-width: 820px) {
  body.page-charpente .char-milestone {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
  }
}
body.page-charpente .char-milestone__mark {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
body.page-charpente .char-milestone__num {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1;
}
body.page-charpente .char-milestone__phase {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
}
body.page-charpente .char-milestone__body { min-width: 0; }
body.page-charpente .char-milestone__title {
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.85vw, 20px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #ffffff;
  font-weight: 600;
  margin: 0 0 10px;
}
body.page-charpente .char-milestone__copy {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 42em;
}

/* --- 6. Proof strip --- */
body.page-charpente .char-proof {
  background: #ffffff;
  padding: clamp(48px, 6vw, 72px) 0;
  border-bottom: 1px solid var(--border);
}
body.page-charpente .char-proof__inner {
  max-width: var(--container);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body.page-charpente .char-proof__label {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
  margin: 0;
}
body.page-charpente .char-proof__grid {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px 32px;
}
@media (min-width: 720px) {
  body.page-charpente .char-proof__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  body.page-charpente .char-proof__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
body.page-charpente .char-proof__cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 22px;
  border-right: 1px solid var(--border);
}
body.page-charpente .char-proof__cell:last-child { border-right: 0; padding-right: 0; }
body.page-charpente .char-proof__cell dt {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
}
body.page-charpente .char-proof__cell dd {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 14px;
  line-height: 1.45;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.005em;
}

/* --- 7. Close — dark CTA band with related-services aside --- */
body.page-charpente .char-close {
  background: var(--charcoal);
  color: #fff;
  padding: clamp(72px, 9vw, 108px) 0;
  position: relative;
  overflow: hidden;
}
body.page-charpente .char-close::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 12% 12%, rgba(var(--primary-rgb), 0.09), transparent 60%),
    radial-gradient(ellipse 60% 80% at 92% 88%, rgba(255,255,255,0.03), transparent 55%);
  pointer-events: none;
}
body.page-charpente .char-close__inner {
  position: relative;
  max-width: var(--container);
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
@media (min-width: 960px) {
  body.page-charpente .char-close__inner {
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr);
    gap: 56px;
  }
}
body.page-charpente .char-close__body { min-width: 0; }
body.page-charpente .char-close__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #ffffff;
  margin: 6px 0 16px;
}
body.page-charpente .char-close__lede {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 26px;
  max-width: 620px;
}
body.page-charpente .char-close__lede strong { color: #fff; font-weight: 600; }
body.page-charpente .char-close__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 16px;
  margin: 0 0 18px;
}
body.page-charpente .char-close__reassure {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  margin: 0;
}
body.page-charpente .char-close__aside {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 22px 20px 18px;
  min-width: 0;
}
body.page-charpente .char-close__aside-label {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  margin: 0 0 14px;
}
body.page-charpente .char-close__aside-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
body.page-charpente .char-close__aside-list li { margin: 0; }
body.page-charpente .char-close__aside-link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color .18s ease, padding-left .18s ease;
  color: #fff;
}
body.page-charpente .char-close__aside-list li:last-child .char-close__aside-link { border-bottom: 0; }
body.page-charpente .char-close__aside-link:hover {
  color: var(--primary);
  padding-left: 4px;
}
body.page-charpente .char-close__aside-name {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 600;
  color: inherit;
  letter-spacing: -0.005em;
}
body.page-charpente .char-close__aside-hint {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  margin-top: 2px;
}

/* --- Responsive tightening for the charpente page --- */
@media (max-width: 720px) {
  body.page-charpente .char-scenario { padding: 44px 0 32px; }
  body.page-charpente .char-scenario__aside { padding: 14px; }
  body.page-charpente .char-position { padding: 56px 0; }
  body.page-charpente .char-position__card { padding: 22px 20px 20px; }
  body.page-charpente .char-qa { padding: 56px 0; }
  body.page-charpente .char-qa__item { padding: 22px 0 20px; }
  body.page-charpente .char-types { padding: 56px 0; }
  body.page-charpente .char-project { padding: 22px 20px 20px; }
  body.page-charpente .char-project__specs > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  body.page-charpente .char-process { padding: 56px 0; }
  body.page-charpente .char-milestone { padding: 22px 0 20px; }
  body.page-charpente .char-proof { padding: 44px 0; }
  body.page-charpente .char-proof__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 20px; }
  body.page-charpente .char-proof__cell {
    border-right: 0;
    padding-right: 0;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
  }
  body.page-charpente .char-proof__cell:last-child { border-bottom: 0; padding-bottom: 0; }
  body.page-charpente .char-proof__cell:nth-last-child(2) { border-bottom: 0; padding-bottom: 0; }
  body.page-charpente .char-close { padding: 48px 0; }
  body.page-charpente .char-close__aside { padding: 18px 16px 14px; }
}

/* =========================================================
   PAGE: PATIO (service_detail)
   Macrostructure: NarrativeWorkflow
   Sequence: scenario intro (when needed)
             → balanced 2-column material compare
             → cost breakdown → upkeep expectations
             → 5-step process → proof strip
             → service-specific FAQ → scoped CTA close
   ========================================================= */

/* --- 1. Scenario intro --- */
body.page-patio .patio-scenario {
  background: #ffffff;
  padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 5vw, 60px);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
body.page-patio .patio-scenario::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 8%, rgba(var(--primary-rgb), 0.05), transparent 55%),
    radial-gradient(circle at 6% 92%, rgba(var(--charcoal-rgb), 0.04), transparent 60%);
  pointer-events: none;
}
body.page-patio .patio-scenario__inner {
  position: relative;
  max-width: var(--container);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 960px) {
  body.page-patio .patio-scenario__inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, 1fr);
    gap: 64px;
  }
}
body.page-patio .patio-scenario__body { min-width: 0; }
body.page-patio .patio-scenario__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--text);
  margin: 6px 0 22px;
  max-width: 720px;
}
body.page-patio .patio-scenario__title em {
  font-style: normal;
  color: var(--text);
  background-image: linear-gradient(180deg, transparent 62%, rgba(var(--primary-rgb), 0.22) 62%, rgba(var(--primary-rgb), 0.22) 92%, transparent 92%);
  padding: 0 2px;
}
body.page-patio .patio-scenario__lede {
  font-size: clamp(15px, 1.55vw, 17px);
  line-height: 1.7;
  color: var(--text-light);
  margin: 0 0 14px;
  max-width: 640px;
}
body.page-patio .patio-scenario__lede:last-of-type { margin-bottom: 26px; }
body.page-patio .patio-scenario__lede strong {
  color: var(--text);
  font-weight: 600;
}
body.page-patio .patio-scenario__jump {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  min-height: 48px;
  background: transparent;
  border: 2px solid var(--charcoal);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
body.page-patio .patio-scenario__jump:hover {
  background: var(--charcoal);
  color: #fff;
  border-color: var(--charcoal);
}
body.page-patio .patio-scenario__jump:focus-visible { outline-offset: 4px; }
body.page-patio .patio-scenario__aside {
  background: var(--charcoal);
  color: #fff;
  border-radius: 18px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 60px -32px rgba(0, 0, 0, 0.4);
  min-width: 0;
}
body.page-patio .patio-scenario__aside-label {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
  margin: 0;
}
body.page-patio .patio-scenario__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
body.page-patio .patio-scenario__chip {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: #fff;
  font-weight: 500;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}
body.page-patio .patio-scenario__facts {
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
body.page-patio .patio-scenario__fact {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: baseline;
}
body.page-patio .patio-scenario__fact:last-child { border-bottom: 0; padding-bottom: 2px; }
body.page-patio .patio-scenario__fact dt {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
  margin: 0;
}
body.page-patio .patio-scenario__fact dd {
  font-family: var(--font-heading);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  line-height: 1.45;
  font-weight: 500;
}
body.page-patio .patio-scenario__aside-note {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  margin: 4px 0 0;
  padding: 12px 14px;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 8px 8px 0;
}

/* --- 2. Compare — balanced 2-card material comparison --- */
body.page-patio .patio-compare {
  background: var(--charcoal);
  color: #fff;
  padding: clamp(72px, 10vw, 120px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
body.page-patio .patio-compare__inner { max-width: var(--container); }
body.page-patio .patio-compare__head {
  max-width: 780px;
  margin: 0 0 46px;
}
body.page-patio .patio-compare__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #fff;
  margin: 6px 0 14px;
}
body.page-patio .patio-compare__lede {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  max-width: 640px;
}
body.page-patio .patio-compare__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 900px) {
  body.page-patio .patio-compare__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
  }
}
body.page-patio .patio-compare__card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 28px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color .22s ease, background-color .22s ease, transform .22s ease, box-shadow .22s ease;
}
body.page-patio .patio-compare__card:hover {
  border-color: rgba(var(--primary-rgb), 0.45);
  background: rgba(var(--primary-rgb), 0.05);
  transform: translateY(-2px);
  box-shadow: 0 22px 40px -24px rgba(var(--primary-rgb), 0.3);
}
body.page-patio .patio-compare__mark {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary-light);
  font-weight: 700;
  margin: 0;
}
body.page-patio .patio-compare__name {
  font-family: var(--font-heading);
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: #fff;
  font-weight: 600;
  margin: 0;
}
body.page-patio .patio-compare__desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}
body.page-patio .patio-compare__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
body.page-patio .patio-compare__group-label {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
  margin: 0;
}
body.page-patio .patio-compare__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
body.page-patio .patio-compare__list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}
body.page-patio .patio-compare__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}
body.page-patio .patio-compare__note {
  margin: 32px 0 0;
  padding: 14px 18px;
  border-left: 2px solid rgba(var(--primary-rgb), 0.55);
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  max-width: 780px;
  background: rgba(var(--primary-rgb), 0.04);
  border-radius: 0 8px 8px 0;
}

/* --- 3. Cost — honest cost breakdown, no numbers invented --- */
body.page-patio .patio-cost {
  background: #ffffff;
  padding: clamp(72px, 10vw, 120px) 0;
}
body.page-patio .patio-cost__inner {
  max-width: var(--container);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) {
  body.page-patio .patio-cost__inner {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.4fr);
    gap: 64px;
    align-items: start;
  }
}
body.page-patio .patio-cost__head { min-width: 0; }
body.page-patio .patio-cost__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.6vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--text);
  margin: 6px 0 16px;
}
body.page-patio .patio-cost__prose {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
  max-width: 460px;
}
body.page-patio .patio-cost__body { min-width: 0; }
body.page-patio .patio-cost__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
}
body.page-patio .patio-cost__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 720px) {
  body.page-patio .patio-cost__row {
    grid-template-columns: 240px 1fr;
    gap: 24px;
    align-items: baseline;
  }
}
body.page-patio .patio-cost__k {
  font-family: var(--font-heading);
  font-size: 15.5px;
  letter-spacing: -0.005em;
  color: var(--text);
  font-weight: 600;
  margin: 0;
}
body.page-patio .patio-cost__v {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-light);
  margin: 0;
}
body.page-patio .patio-cost__disclaimer {
  margin: 22px 0 0;
  padding: 14px 18px;
  border-left: 2px solid rgba(0, 0, 0, 0.14);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-light);
  background: var(--surface);
  border-radius: 0 8px 8px 0;
}

/* --- 4. Upkeep — 2-column honest expectations --- */
body.page-patio .patio-upkeep {
  background: var(--surface);
  padding: clamp(72px, 10vw, 120px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
body.page-patio .patio-upkeep__inner { max-width: var(--container); }
body.page-patio .patio-upkeep__head {
  max-width: 780px;
  margin: 0 0 42px;
}
body.page-patio .patio-upkeep__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--text);
  margin: 6px 0 14px;
}
body.page-patio .patio-upkeep__lede {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
  max-width: 640px;
}
body.page-patio .patio-upkeep__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 820px) {
  body.page-patio .patio-upkeep__cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}
body.page-patio .patio-upkeep__col {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
body.page-patio .patio-upkeep__col-title {
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 700;
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
body.page-patio .patio-upkeep__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body.page-patio .patio-upkeep__list li {
  position: relative;
  padding-left: 18px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-light);
}
body.page-patio .patio-upkeep__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 1px;
  background: rgba(0, 0, 0, 0.25);
}
body.page-patio .patio-upkeep__note {
  margin: 26px 0 0;
  padding: 14px 18px;
  border-left: 2px solid rgba(var(--primary-rgb), 0.5);
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-light);
  background: #ffffff;
  border-radius: 0 8px 8px 0;
  max-width: 780px;
}

/* --- 5. Process — 5-step timeline --- */
body.page-patio .patio-process {
  background: var(--charcoal);
  color: #fff;
  padding: clamp(72px, 10vw, 120px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
body.page-patio .patio-process__inner { max-width: var(--container); }
body.page-patio .patio-process__head {
  max-width: 780px;
  margin: 0 0 42px;
}
body.page-patio .patio-process__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #fff;
  margin: 6px 0 14px;
}
body.page-patio .patio-process__lede {
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  max-width: 640px;
}
body.page-patio .patio-process__list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  counter-reset: none;
}
@media (min-width: 720px) {
  body.page-patio .patio-process__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}
@media (min-width: 1080px) {
  body.page-patio .patio-process__list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
  }
}
body.page-patio .patio-process__item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  transition: border-color .22s ease, background-color .22s ease, transform .22s ease, box-shadow .22s ease;
}
body.page-patio .patio-process__item:hover {
  border-color: rgba(var(--primary-rgb), 0.45);
  background: rgba(var(--primary-rgb), 0.05);
  transform: translateY(-2px);
  box-shadow: 0 22px 40px -24px rgba(var(--primary-rgb), 0.3);
}
body.page-patio .patio-process__num {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary-light);
  font-weight: 700;
  margin: 0;
}
body.page-patio .patio-process__name {
  font-family: var(--font-heading);
  font-size: 16.5px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: #fff;
  font-weight: 600;
  margin: 0;
}
body.page-patio .patio-process__copy {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

/* --- 6. Proof strip --- */
body.page-patio .patio-proof {
  background: #ffffff;
  padding: clamp(56px, 7vw, 80px) 0;
}
body.page-patio .patio-proof__inner { max-width: var(--container); }
body.page-patio .patio-proof__label {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
  margin: 0 0 22px;
}
body.page-patio .patio-proof__list {
  list-style: none;
  padding: 22px 0 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
  border-top: 1px solid var(--border);
}
@media (min-width: 900px) {
  body.page-patio .patio-proof__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }
}
body.page-patio .patio-proof__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 22px;
  border-right: 1px solid var(--border);
  min-width: 0;
}
body.page-patio .patio-proof__item:last-child { border-right: 0; padding-right: 0; }
body.page-patio .patio-proof__k {
  font-family: var(--font-heading);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
}
body.page-patio .patio-proof__v {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.4;
}

/* --- 7. FAQ — service-specific --- */
body.page-patio .patio-faq {
  background: var(--surface);
  padding: clamp(72px, 10vw, 120px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
body.page-patio .patio-faq__inner { max-width: var(--container); }
body.page-patio .patio-faq__head {
  max-width: 780px;
  margin: 0 0 42px;
}
body.page-patio .patio-faq__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--text);
  margin: 6px 0 14px;
}
body.page-patio .patio-faq__lede {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
  max-width: 640px;
}
body.page-patio .patio-faq__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 900px) {
  body.page-patio .patio-faq__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}
body.page-patio .patio-faq__item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}
body.page-patio .patio-faq__item:hover {
  border-color: rgba(var(--primary-rgb), 0.35);
  transform: translateY(-2px);
  box-shadow: 0 22px 40px -28px rgba(0, 0, 0, 0.22);
}
body.page-patio .patio-faq__item h3 {
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--text);
  font-weight: 600;
  margin: 0;
}
body.page-patio .patio-faq__item p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-light);
  margin: 0;
}

/* --- 8. Close — scoped CTA --- */
body.page-patio .patio-close {
  background: var(--charcoal);
  color: #fff;
  padding: clamp(64px, 8vw, 100px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}
body.page-patio .patio-close::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(var(--primary-rgb), 0.08), transparent 55%),
    radial-gradient(circle at 92% 82%, rgba(255, 255, 255, 0.03), transparent 55%);
  pointer-events: none;
}
body.page-patio .patio-close__inner {
  position: relative;
  max-width: var(--container);
}
body.page-patio .patio-close__body { min-width: 0; max-width: 780px; }
body.page-patio .patio-close__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #fff;
  margin: 6px 0 16px;
  max-width: 640px;
}
body.page-patio .patio-close__lede {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 26px;
  max-width: 620px;
}
body.page-patio .patio-close__lede strong {
  color: #fff;
  font-weight: 600;
}
body.page-patio .patio-close__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
body.page-patio .patio-close__actions a[href^="tel:"] { white-space: nowrap; }
body.page-patio .patio-close__scope {
  margin: 18px 0 0;
  padding: 14px 18px;
  border-left: 2px solid rgba(255, 255, 255, 0.25);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
}

/* --- Hero body media --- */
body.page-patio .patio-scenario__media {
  position: relative;
  margin: 6px 0 26px;
  max-width: 640px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 48px -28px rgba(0, 0, 0, 0.35);
  background: var(--surface);
}
body.page-patio .patio-scenario__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}
body.page-patio .patio-scenario__media-caption {
  padding: 10px 14px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-light);
  background: #fff;
  border-top: 1px solid var(--border);
}

/* --- Hero decorative media --- */
body.page-patio .patio-scenario__deco {
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  max-height: 25%;
  color: var(--primary);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  max-width: 100%;
}
body.page-patio .patio-scenario__deco svg { display: block; width: 100%; height: 100%; max-width: 100%; max-height: 100%; }
body.page-patio .patio-scenario__body,
body.page-patio .patio-scenario__aside { position: relative; z-index: 1; }
body.page-patio .patio-scenario__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 6px;
}
body.page-patio .patio-scenario__cta {
  background: var(--charcoal);
  color: #fff;
  padding: 0 24px;
  min-height: 48px;
  font-weight: 600;
  border: 2px solid var(--charcoal);
  box-shadow: 0 14px 32px -14px rgba(var(--charcoal-rgb), 0.5);
}
body.page-patio .patio-scenario__cta:hover {
  background: #000;
  border-color: #000;
  transform: translateY(-1px);
  box-shadow: 0 18px 36px -14px rgba(0, 0, 0, 0.55);
}

/* --- 2b. Quick-check — decision anchors --- */
body.page-patio .patio-quick {
  background: #ffffff;
  padding: clamp(56px, 8vw, 96px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-image:
    radial-gradient(ellipse 60% 80% at 10% 20%, rgba(var(--primary-rgb), 0.05), transparent 60%),
    radial-gradient(ellipse 60% 80% at 100% 80%, rgba(var(--primary-rgb), 0.04), transparent 60%);
}
body.page-patio .patio-quick__inner { max-width: var(--container); }
body.page-patio .patio-quick__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--text);
  margin: 6px 0 32px;
  max-width: 640px;
}
body.page-patio .patio-quick__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 820px) {
  body.page-patio .patio-quick__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }
}
body.page-patio .patio-quick__card {
  position: relative;
  padding: 26px 24px 22px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-top: 3px solid rgba(var(--primary-rgb), 0.55);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  box-shadow: 0 12px 32px -22px rgba(0, 0, 0, 0.18);
}
body.page-patio .patio-quick__num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(var(--primary-rgb), 0.55);
  line-height: 1;
}
body.page-patio .patio-quick__q {
  font-family: var(--font-heading);
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--text);
  font-weight: 600;
  margin: 0;
}
body.page-patio .patio-quick__a {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-light);
  margin: 0;
}

/* --- 8. Close — primary CTA emphasis --- */
body.page-patio .patio-close__cta {
  background: var(--charcoal);
  color: #fff;
  padding: 0 26px;
  min-height: 50px;
  font-weight: 600;
  border: 2px solid var(--charcoal);
  box-shadow: 0 16px 36px -14px rgba(var(--charcoal-rgb), 0.55);
}
body.page-patio .patio-close__cta:hover {
  background: #000;
  border-color: #000;
  transform: translateY(-1px);
  box-shadow: 0 22px 44px -14px rgba(0, 0, 0, 0.6);
}

/* --- Responsive tightening --- */
@media (max-width: 720px) {
  body.page-patio .patio-scenario { padding: 44px 0 32px; }
  body.page-patio .patio-quick { padding: 44px 0; }
  body.page-patio .patio-quick__card { padding: 22px 20px 20px; }
  body.page-patio .patio-scenario__aside { padding: 20px 18px 18px; }
  body.page-patio .patio-scenario__fact { grid-template-columns: 96px 1fr; gap: 12px; }
  body.page-patio .patio-compare { padding: 56px 0; }
  body.page-patio .patio-compare__card { padding: 22px 20px 20px; }
  body.page-patio .patio-cost { padding: 56px 0; }
  body.page-patio .patio-cost__row { padding: 18px 0; }
  body.page-patio .patio-upkeep { padding: 56px 0; }
  body.page-patio .patio-upkeep__col { padding: 22px 20px 20px; }
  body.page-patio .patio-process { padding: 56px 0; }
  body.page-patio .patio-process__item { padding: 20px 18px 18px; }
  body.page-patio .patio-proof { padding: 44px 0; }
  body.page-patio .patio-proof__list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 20px; }
  body.page-patio .patio-proof__item {
    border-right: 0;
    padding-right: 0;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
  }
  body.page-patio .patio-proof__item:last-child { border-bottom: 0; padding-bottom: 0; }
  body.page-patio .patio-proof__item:nth-last-child(2) { border-bottom: 0; padding-bottom: 0; }
  body.page-patio .patio-faq { padding: 56px 0; }
  body.page-patio .patio-faq__item { padding: 20px 20px 18px; }
  body.page-patio .patio-close { padding: 48px 0; }
}


/* W17 deterministic card text contrast repair: patio span.patio-quick__num */
.page-patio span.patio-quick__num {
  color: var(--text);
}


/* patio page: nav CTA contrast fix (WCAG AA) */
body.page-patio .btn--nav-strong {
  background: #0a66c2;
  color: #fff;
}
body.page-patio .btn--nav-strong:hover {
  background: #084f97;
}


/* W175 generated nav submenu */
.generated-nav-parent { position: relative; }
.generated-nav-submenu {
  display: none;
  position: absolute;
  z-index: 1000;
  inset-block-start: 100%;
  inset-inline-start: 0;
  min-width: max-content;
  max-width: min(20rem, calc(100vw - 2rem));
  margin: 0;
  padding: .5rem;
  list-style: none;
  background: var(--background, Canvas);
  color: var(--text, inherit);
  box-shadow: 0 .5rem 1.5rem rgb(0 0 0 / 15%);
}
.generated-nav-parent:hover > .generated-nav-submenu,
.generated-nav-parent:focus-within > .generated-nav-submenu { display: block; }
@media (max-width: 900px) {
  .generated-nav-submenu {
    display: block;
    position: static;
    min-width: 0;
    max-width: 100%;
    box-shadow: none;
  }
}

/* W176 generated nav submenu theme:begin */
.generated-nav-submenu {
  box-sizing: border-box;
  background: var(--background, Canvas);
  color: var(--text, inherit);
  border: 1px solid var(--border-light, var(--border, currentColor));
  border-radius: var(--radius, .5rem);
  font-family: var(--font-sans, inherit);
  overflow-wrap: anywhere;
}
.generated-nav-submenu > li { margin: 0; padding: 0; }
.generated-nav-submenu > li > a {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  padding: .65rem .85rem;
  color: var(--text, inherit);
  font-family: var(--font-sans, inherit);
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  white-space: normal;
  overflow-wrap: anywhere;
}
.generated-nav-submenu > li > a:hover {
  background: transparent;
  background: var(--bg-alt, color-mix(in srgb, currentColor 8%, transparent));
  color: var(--primary, currentColor);
}
.generated-nav-submenu > li > a:focus-visible {
  outline: 2px solid var(--primary, currentColor);
  outline-offset: -2px;
  background: transparent;
  background: var(--bg-alt, color-mix(in srgb, currentColor 8%, transparent));
}
/* W176 generated nav submenu theme:end */


/* ==========================================================
   PAGE: Services connexes (body.page-services-connexes)
   Scoped only under main; alternating charcoal/white bands.
   ========================================================== */
body.page-services-connexes main { display: block; }

/* Section 1 — Scenario opener */
body.page-services-connexes .connexes-scenario {
  background: var(--charcoal);
  color: var(--ink);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}
body.page-services-connexes .connexes-scenario__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) {
  body.page-services-connexes .connexes-scenario__inner { grid-template-columns: 1fr; }
}
body.page-services-connexes .connexes-scenario__title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0.35rem 0 1.25rem;
  color: #fff;
  font-weight: 600;
}
body.page-services-connexes .connexes-scenario__title em {
  font-style: italic;
  color: var(--primary-light);
  font-weight: 500;
}
body.page-services-connexes .connexes-scenario__lede {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  margin: 0 0 1rem;
}
body.page-services-connexes .connexes-scenario__note {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.66);
  margin: 0 0 1.5rem;
  padding-left: 0.9rem;
  border-left: 2px solid rgba(var(--primary-rgb), 0.55);
}
body.page-services-connexes .connexes-scenario__markers {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
body.page-services-connexes .connexes-scenario__markers li {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
}
body.page-services-connexes .connexes-scenario__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}
body.page-services-connexes .connexes-scenario__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  color: var(--charcoal);
  padding: 0.9rem 1.4rem;
  box-shadow: var(--shadow-pill-dark);
}
body.page-services-connexes .connexes-scenario__cta-primary:hover {
  background: var(--primary-light);
  color: var(--charcoal);
}
body.page-services-connexes .connexes-scenario__cta-arrow { flex-shrink: 0; }
body.page-services-connexes .connexes-scenario__cta-phone {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 2px;
}
body.page-services-connexes .connexes-scenario__cta-phone:hover { color: var(--primary-light); border-color: var(--primary-light); }

body.page-services-connexes .connexes-scenario__aside {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}
body.page-services-connexes .connexes-scenario__aside-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin: 0 0 1rem;
}
body.page-services-connexes .connexes-scenario__facts { margin: 0; display: grid; gap: 1rem; }
body.page-services-connexes .connexes-scenario__fact { display: grid; gap: 0.15rem; }
body.page-services-connexes .connexes-scenario__fact dt {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
body.page-services-connexes .connexes-scenario__fact dd {
  margin: 0;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.45;
}
/* Eyebrow readability on dark charcoal bands (scenario, process) — fixes 2.49:1 contrast fail */
body.page-services-connexes .connexes-scenario .eyebrow.eyebrow--dark,
body.page-services-connexes .connexes-process .eyebrow.eyebrow--dark {
  color: var(--primary-light);
}

/* Section 2 — Who (three roles) */
body.page-services-connexes .connexes-who {
  background: #fff;
  color: var(--text);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}
body.page-services-connexes .connexes-who__head {
  max-width: var(--container-narrow);
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  text-align: center;
}
body.page-services-connexes .connexes-who__title {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.2;
  margin: 0.4rem 0 1rem;
  color: var(--charcoal);
  font-weight: 600;
}
body.page-services-connexes .connexes-who__lede {
  font-size: 1.02rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}
body.page-services-connexes .connexes-who__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 900px) {
  body.page-services-connexes .connexes-who__grid { grid-template-columns: 1fr; }
}
body.page-services-connexes .connexes-who__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
body.page-services-connexes .connexes-who__role {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 0;
}
body.page-services-connexes .connexes-who__name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.25;
}
body.page-services-connexes .connexes-who__copy {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
}
body.page-services-connexes .connexes-who__note {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin: auto 0 0;
}

/* Section 3 — Process (numbered steps) */
body.page-services-connexes .connexes-process {
  background: var(--charcoal);
  color: var(--ink);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}
body.page-services-connexes .connexes-process__head {
  max-width: var(--container-narrow);
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}
body.page-services-connexes .connexes-process__title {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.2;
  margin: 0.4rem 0 1rem;
  color: #fff;
  font-weight: 600;
}
body.page-services-connexes .connexes-process__lede {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin: 0;
}
body.page-services-connexes ol.connexes-process__list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
  counter-reset: connexes-step;
}
body.page-services-connexes .connexes-process__item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  display: grid;
  grid-template-columns: minmax(0, 0.28fr) minmax(0, 1fr);
  gap: 0 1.5rem;
  align-items: start;
}
@media (max-width: 720px) {
  body.page-services-connexes .connexes-process__item { grid-template-columns: 1fr; gap: 0.35rem; }
}
body.page-services-connexes .connexes-process__num {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin: 0;
  grid-row: span 2;
}
@media (max-width: 720px) {
  body.page-services-connexes .connexes-process__num { grid-row: auto; }
}
body.page-services-connexes .connexes-process__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.4rem;
  line-height: 1.3;
}
body.page-services-connexes .connexes-process__copy {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  margin: 0;
}

/* Section 4 — Boundaries (two-column contrast) */
body.page-services-connexes .connexes-boundaries {
  background: #fff;
  color: var(--text);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}
body.page-services-connexes .connexes-boundaries__head {
  max-width: var(--container-narrow);
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  text-align: center;
}
body.page-services-connexes .connexes-boundaries__title {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.2;
  margin: 0.4rem 0 1rem;
  color: var(--charcoal);
  font-weight: 600;
}
body.page-services-connexes .connexes-boundaries__lede {
  font-size: 1.02rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}
body.page-services-connexes .connexes-boundaries__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 780px) {
  body.page-services-connexes .connexes-boundaries__grid { grid-template-columns: 1fr; }
}
body.page-services-connexes .connexes-boundaries__card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  background: #fff;
}
body.page-services-connexes .connexes-boundaries__card--us { border-left: 3px solid var(--primary); }
body.page-services-connexes .connexes-boundaries__card--them { border-left: 3px solid var(--charcoal); }
body.page-services-connexes .connexes-boundaries__flag {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 0 0 0.5rem;
}
body.page-services-connexes .connexes-boundaries__card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 1rem;
  line-height: 1.3;
}
body.page-services-connexes .connexes-boundaries__list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}
body.page-services-connexes .connexes-boundaries__list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text);
}
body.page-services-connexes .connexes-boundaries__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--primary);
}
body.page-services-connexes .connexes-boundaries__card--them .connexes-boundaries__list li::before { background: var(--charcoal); }
body.page-services-connexes .connexes-boundaries__closing {
  max-width: var(--container-narrow);
  margin: 2rem auto 0;
  text-align: center;
  font-size: 0.98rem;
  color: var(--text-light);
  line-height: 1.65;
  font-style: italic;
}

/* Section 5 — FAQ (service-specific) */
body.page-services-connexes .connexes-faq {
  background: var(--surface);
  color: var(--text);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}
body.page-services-connexes .connexes-faq__head {
  max-width: var(--container-narrow);
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  text-align: center;
}
body.page-services-connexes .connexes-faq__title {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.2;
  margin: 0.4rem 0 1rem;
  color: var(--charcoal);
  font-weight: 600;
}
body.page-services-connexes .connexes-faq__lede {
  font-size: 1.02rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}
body.page-services-connexes .connexes-faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}
body.page-services-connexes .connexes-faq__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
}
body.page-services-connexes .connexes-faq__q {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 0.65rem;
  line-height: 1.35;
}
body.page-services-connexes .connexes-faq__a {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
}

/* Section 6 — Proof strip */
body.page-services-connexes .connexes-proof {
  background: var(--charcoal);
  color: var(--ink);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}
body.page-services-connexes .connexes-proof__label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin: 0 0 1.25rem;
}
body.page-services-connexes .connexes-proof__list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (max-width: 780px) {
  body.page-services-connexes .connexes-proof__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  body.page-services-connexes .connexes-proof__list { grid-template-columns: 1fr; }
}
body.page-services-connexes .connexes-proof__item {
  display: grid;
  gap: 0.2rem;
  padding-right: 1rem;
  border-right: 1px solid rgba(255,255,255,0.14);
}
body.page-services-connexes .connexes-proof__item:last-child { border-right: none; }
@media (max-width: 780px) {
  body.page-services-connexes .connexes-proof__item { border-right: none; }
}
body.page-services-connexes .connexes-proof__k {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
}
body.page-services-connexes .connexes-proof__v {
  font-size: 0.98rem;
  color: #fff;
  line-height: 1.4;
}

/* Section 7 — Close CTA (light band) */
body.page-services-connexes .connexes-close {
  background: var(--primary);
  color: #fff;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}
body.page-services-connexes .connexes-close__body {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
body.page-services-connexes .connexes-close__title {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.2;
  margin: 0.4rem 0 1rem;
  color: #fff;
  font-weight: 600;
}
body.page-services-connexes .connexes-close__lede {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.92);
  margin: 0 0 1.75rem;
}
body.page-services-connexes .connexes-close__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
body.page-services-connexes .connexes-close__scope {
  margin-top: 1.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
body.page-services-connexes .connexes-close__scope a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
body.page-services-connexes .connexes-close__scope a:hover { color: rgba(255,255,255,0.85); }

/* Contrast repair — scoped to services-connexes:
   - Nav CTA (btn--nav) and outline-light CTA + inline scope links sit on
     --primary (#188bf6). White on that fill = 3.46:1 (fails 4.5:1). Swap
     the Close CTA band to --charcoal so white text/CTAs pass; keep nav CTA
     dark ink on primary for the same reason. */
body.page-services-connexes .btn.btn--pill.btn--nav {
  color: var(--charcoal);
}
body.page-services-connexes .btn.btn--pill.btn--nav:hover {
  color: var(--charcoal);
}
body.page-services-connexes .connexes-close {
  background: var(--charcoal);
}
body.page-services-connexes .connexes-close .btn.btn--pill.btn--outline-light {
  border-color: #ffffff;
}
/* PAGE: Services connexes:end */

/* Mobile overflow repair — scoped: .connexes-scenario only, ≤600px */
@media (max-width: 600px) {
  body.page-services-connexes .connexes-scenario {
    min-width: 0;
    max-width: 100%;
  }
  body.page-services-connexes .connexes-scenario__inner {
    min-width: 0;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }
  body.page-services-connexes .connexes-scenario__body,
  body.page-services-connexes .connexes-scenario__aside {
    min-width: 0;
    max-width: 100%;
  }
  body.page-services-connexes .connexes-scenario__title,
  body.page-services-connexes .connexes-scenario__lede,
  body.page-services-connexes .connexes-scenario__note {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
  }
  body.page-services-connexes .connexes-scenario__markers-wrap,
  body.page-services-connexes .connexes-scenario__markers {
    min-width: 0;
    max-width: 100%;
  }
  body.page-services-connexes .connexes-scenario__markers li {
    max-width: 100%;
    overflow-wrap: break-word;
  }
  body.page-services-connexes .connexes-scenario__cta {
    min-width: 0;
    max-width: 100%;
  }
  body.page-services-connexes .connexes-scenario__cta-primary {
    max-width: 100%;
    white-space: normal;
    text-align: left;
    line-height: 1.3;
    padding: 0.85rem 1.25rem;
  }
  body.page-services-connexes .connexes-scenario__cta-primary span {
    min-width: 0;
    overflow-wrap: break-word;
  }
  body.page-services-connexes .connexes-scenario__cta-phone {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
  }
  body.page-services-connexes .connexes-scenario__facts {
    min-width: 0;
    max-width: 100%;
  }
  body.page-services-connexes .connexes-scenario__fact {
    min-width: 0;
    max-width: 100%;
  }
  body.page-services-connexes .connexes-scenario__fact dd {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

/* =========================================================
   PAGE: /realisations/ — honest "coming soon" gallery scaffold
   All rules scoped to body.page-realisations to avoid leaking.
   ========================================================= */

/* 1. LEAD — topic intro + honest proof panel */
body.page-realisations .rea-lead {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #111418;
  padding: clamp(72px, 10vw, 120px) 0;
  border-bottom: 1px solid var(--border);
}
body.page-realisations .rea-lead--media .rea-lead__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(15,18,22,0.55) 0%, rgba(26,33,48,0.35) 55%, rgba(15,18,22,0.6) 100%),
    url("../assets/img_5f7a4200a764.webp") center/cover no-repeat,
    #0f1216;
  filter: brightness(0.85) contrast(1.05) saturate(0.9);
}
body.page-realisations .rea-lead--media .rea-lead__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px, 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
  opacity: 0.6;
}
body.page-realisations .rea-lead__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.65) 100%);
}
body.page-realisations .rea-lead__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
@media (min-width: 900px) {
  body.page-realisations .rea-lead__inner {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: clamp(36px, 5vw, 72px);
  }
}
body.page-realisations .rea-lead__body {
  min-width: 0;
}
body.page-realisations .rea-lead__eyebrow {
  color: rgba(255,255,255,0.72);
}
body.page-realisations .rea-lead__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: #ffffff;
  font-weight: 500;
  margin: 10px 0 22px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.55);
  max-width: 22ch;
}
body.page-realisations .rea-lead__lede {
  font-size: clamp(15px, 1.55vw, 16.5px);
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  margin: 0 0 16px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.45);
}
body.page-realisations .rea-lead__lede strong {
  color: #ffffff;
  font-weight: 600;
}
body.page-realisations .rea-lead__note {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-light);
  margin: 0;
  padding: 14px 16px;
  border-left: 3px solid rgba(var(--primary-rgb), 0.45);
  background: rgba(255,255,255,0.55);
  border-radius: 0 8px 8px 0;
}
body.page-realisations .rea-lead__proof {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(22px, 3vw, 30px);
  box-shadow: 0 24px 40px -30px rgba(0,0,0,0.22);
  min-width: 0;
}
body.page-realisations .rea-lead__proof-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin: 0 0 14px;
}
body.page-realisations .rea-lead__proof-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
body.page-realisations .rea-lead__proof-list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--border);
}
body.page-realisations .rea-lead__proof-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
body.page-realisations .rea-lead__proof-key {
  font-family: var(--font-heading);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
}
body.page-realisations .rea-lead__proof-val {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text);
  min-width: 0;
  overflow-wrap: break-word;
}
body.page-realisations .rea-lead__proof-foot {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-light);
  font-style: italic;
}
@media (max-width: 620px) {
  body.page-realisations .rea-lead__proof-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* Hero CTA contrast — page-scoped, over dark scrim */
body.page-realisations .rea-lead__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}
body.page-realisations .rea-lead .btn.rea-lead__cta-primary {
  background: #ffffff;
  color: var(--primary-dark);
  border: 1px solid #ffffff;
  box-shadow: 0 8px 22px -12px rgba(0,0,0,0.55);
}
body.page-realisations .rea-lead .btn.rea-lead__cta-primary:hover {
  background: rgba(255,255,255,0.92);
  color: var(--primary-dark);
}
body.page-realisations .rea-lead .btn.rea-lead__cta-secondary {
  background: rgba(255,255,255,0.10);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
}
body.page-realisations .rea-lead .btn.rea-lead__cta-secondary:hover {
  background: rgba(255,255,255,0.20);
  color: #ffffff;
  border-color: #ffffff;
}

/* Nav CTA button contrast — page-scoped; primary #188bf6 on white text = 3.46:1 fails AA.
   primary-darker #0f4bc4 on #fff = 5.3:1 passes 4.5. */
body.page-realisations .btn.btn--pill.btn--nav {
  background: var(--primary-darker);
  color: #ffffff;
}
body.page-realisations .btn.btn--pill.btn--nav:hover {
  background: color-mix(in srgb, var(--primary-darker) 88%, #000 12%);
}

/* 2. DETAIL — question-based section, slots grid, editorial charter */
body.page-realisations .rea-detail {
  background: #ffffff;
  padding: clamp(72px, 10vw, 120px) 0;
}
body.page-realisations .rea-detail__inner {
  max-width: var(--container);
}
body.page-realisations .rea-detail__head {
  max-width: 820px;
  margin: 0 0 clamp(28px, 4vw, 42px);
}
body.page-realisations .rea-detail__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--text);
  margin: 6px 0 14px;
}
body.page-realisations .rea-detail__answer {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
  max-width: 780px;
}
body.page-realisations .rea-detail__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: clamp(36px, 5vw, 56px);
}
@media (min-width: 780px) {
  body.page-realisations .rea-detail__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}
body.page-realisations .rea-slot {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  min-width: 0;
}
body.page-realisations .rea-slot::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: rgba(var(--primary-rgb), 0.55);
}
body.page-realisations .rea-slot__meta {
  font-family: var(--font-heading);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-dark);
  font-weight: 700;
  margin: 6px 0 0;
}
body.page-realisations .rea-slot__title {
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.9vw, 20px);
  line-height: 1.3;
  color: var(--text);
  font-weight: 600;
  margin: 0;
}
body.page-realisations .rea-slot__body {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-light);
  margin: 0;
}
body.page-realisations .rea-slot__status {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
  font-size: 12.5px;
  color: var(--text-light);
  font-style: italic;
}

body.page-realisations .rea-detail__charter {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: clamp(22px, 3vw, 30px);
}
body.page-realisations .rea-detail__charter-title {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.3;
  color: var(--text);
  font-weight: 600;
  margin: 0 0 14px;
}
body.page-realisations .rea-detail__charter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
body.page-realisations .rea-detail__charter-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-light);
}
body.page-realisations .rea-detail__charter-list li strong {
  color: var(--text);
  font-weight: 600;
}
body.page-realisations .rea-detail__charter-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

/* 3. FAQ — page-scoped visual, structurally uses .faq + .faq-item */
body.page-realisations .rea-faq {
  background: var(--surface);
  padding: clamp(72px, 10vw, 120px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
body.page-realisations .rea-faq__inner { max-width: var(--container); }
body.page-realisations .rea-faq__head {
  max-width: 780px;
  margin: 0 0 clamp(28px, 4vw, 42px);
}
body.page-realisations .rea-faq__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--text);
  margin: 6px 0 14px;
}
body.page-realisations .rea-faq__lede {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
  max-width: 640px;
}
body.page-realisations .rea-faq__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 900px) {
  body.page-realisations .rea-faq__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}
body.page-realisations .rea-faq__item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}
body.page-realisations .rea-faq__item:hover {
  border-color: rgba(var(--primary-rgb), 0.35);
  transform: translateY(-2px);
  box-shadow: 0 22px 40px -28px rgba(0,0,0,0.22);
}
body.page-realisations .rea-faq__item h3 {
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--text);
  font-weight: 600;
  margin: 0;
  padding: 0;
}
body.page-realisations .rea-faq__item p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-light);
  margin: 0;
  padding: 0;
}
body.page-realisations .rea-faq__item a {
  color: var(--primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
body.page-realisations .rea-faq__item a:hover {
  color: var(--primary-darker);
}


/* Mobile overflow fix: benefits section grid children must shrink within viewport.
   Grid items default to min-width:auto, so wide content (images, long words) can
   force the section wider than the viewport at ~390px. */
@media (max-width: 600px) {
  .benefits { min-width: 0; max-width: 100%; }
  .benefits__inner {
    min-width: 0;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }
  .benefits__inner > * { min-width: 0; max-width: 100%; }
  .benefits__copy,
  .benefits__copy > * { min-width: 0; max-width: 100%; }
  .benefits .collage,
  .benefits .collage--hero {
    min-width: 0;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }
  .benefits .collage__tile { min-width: 0; max-width: 100%; }
  .benefits .dash-list,
  .benefits .dash-list li { min-width: 0; max-width: 100%; overflow-wrap: anywhere; }
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(1.25rem, 2vw, 1.75rem);
  align-items: stretch;
}

.service-card {
  background: var(--background, #fff);
  border: 1px solid var(--border, #e1e6ed);
  border-radius: var(--radius, 12px);
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: auto;
  overflow: hidden;
}

.service-card__body > .card-link {
  margin-top: auto;
}

.faq-item > h3 {
  margin: 0;
  padding: clamp(1.1rem, 2vw, 1.5rem) clamp(1.2rem, 2.5vw, 1.75rem) .4rem;
}

.faq-item > p {
  margin: 0;
  padding: 0 clamp(1.2rem, 2.5vw, 1.75rem) clamp(1.1rem, 2vw, 1.5rem);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-weight: 700;
}

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