    /* ── Tokens ──────────────────────────────────────── */
    :root {
      --bg:          #F7F8F9;
      --surface:     #FFFFFF;
      --surface-2:   #F0F2F4;
      --navy:        #061E38;
      --navy-light:  #0D3460;
      --orange:      #EA580C;
      --orange-h:    #C2410C;
      --orange-tint: #FFF3EE;
      --wa:          #25D366;
      --wa-h:        #1DA851;
      --wa-tint:     #EDFFF5;
      --text:        #0F172A;
      --muted:       #64748B;
      --light:       #94A3B8;
      --border:      #E2E8F0;
      --border-s:    #CBD5E1;
      --radius-sm:   4px;
      --radius-md:   8px;
      --radius-lg:   12px;
      --shadow-sm:   0 1px 3px rgba(6,30,56,.08), 0 1px 2px rgba(6,30,56,.05);
      --shadow-md:   0 4px 12px rgba(6,30,56,.10), 0 2px 4px rgba(6,30,56,.06);
    }

    /* ── Reset ───────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; overflow-x: clip; }
    body {
      font-family: 'DM Sans', system-ui, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: clip;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }

    /* ── Layout ──────────────────────────────────────── */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }
    @media (max-width: 768px) { .container { padding: 0 16px; } }

    /* ── NAV ─────────────────────────────────────────── */
    .nav {
      position: sticky;
      top: 0;
      z-index: 50;
      background: var(--navy);
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      height: 68px;
    }

    /* Logo */
    .nav-logo {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      gap: 0;
      text-decoration: none;
    }
    .nav-logo-icon { height: 34px; width: auto; display: block; }
    .nav-logo-sep {
      width: 1px;
      height: 22px;
      background: rgba(255,255,255,.18);
      margin: 0 13px;
      flex-shrink: 0;
    }
    .nav-logo-text { height: 30px; width: auto; display: block; }

    /* Links */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 2px;
      list-style: none;
      margin-left: auto;
      flex-shrink: 0;
    }
    .nav-item { position: relative; }
    .nav-link {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 14px;
      font-weight: 500;
      color: rgba(255,255,255,.72);
      padding: 8px 14px;
      border-radius: var(--radius-md);
      transition: color .15s, background .15s;
      text-decoration: none;
      white-space: nowrap;
    }
    .nav-link:hover,
    .nav-item:hover > .nav-link { color: #fff; background: rgba(255,255,255,.07); }
    .nav-link-chevron {
      width: 12px; height: 12px;
      stroke: currentColor; fill: none;
      stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
      transition: transform .2s ease;
      opacity: .6;
    }
    .nav-item:hover .nav-link-chevron { transform: rotate(180deg); }

    /* Dropdown */
    .nav-dropdown {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      padding-top: 10px;
      opacity: 0;
      pointer-events: none;
      transition: opacity .2s ease;
      z-index: 200;
    }
    .nav-item:hover .nav-dropdown {
      opacity: 1;
      pointer-events: auto;
    }
    .nav-dropdown-inner {
      background: var(--navy);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 24px 64px rgba(0,0,0,.45);
      min-width: 540px;
    }

    /* Mega services grid */
    .mega-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      padding: 8px;
    }
    .mega-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 12px 14px;
      border-radius: var(--radius-md);
      transition: background .15s;
      text-decoration: none;
    }
    .mega-item:hover { background: rgba(255,255,255,.06); }
    .mega-icon {
      width: 36px; height: 36px;
      background: rgba(234,88,12,.15);
      border-radius: var(--radius-md);
      display: flex; align-items: center; justify-content: center;
      font-size: 17px;
      flex-shrink: 0;
    }
    .mega-name {
      font-size: 13px; font-weight: 600;
      color: rgba(255,255,255,.9);
      margin-bottom: 2px;
    }
    .mega-desc {
      font-size: 12px;
      color: rgba(255,255,255,.42);
      line-height: 1.4;
    }
    .mega-footer {
      border-top: 1px solid rgba(255,255,255,.08);
      padding: 12px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .mega-footer-note {
      font-size: 12px;
      color: rgba(255,255,255,.35);
    }
    .mega-cta {
      font-size: 13px; font-weight: 600;
      color: #fff;
      background: var(--orange);
      padding: 8px 16px;
      border-radius: var(--radius-sm);
      text-decoration: none;
      transition: background .15s;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .mega-cta:hover { background: var(--orange-h); }

    /* Zone chips dans le mega menu */
    .zone-chip {
      display: block;
      font-size: 13px;
      font-weight: 500;
      color: rgba(255,255,255,.72);
      padding: 9px 12px;
      border-radius: var(--radius-md);
      white-space: nowrap;
      transition: background .15s, color .15s;
      text-decoration: none;
    }
    .zone-chip:hover { background: rgba(255,255,255,.07); color: #fff; }
    .zone-chip--primary {
      color: #FDBA74;
      font-weight: 600;
      background: rgba(234,88,12,.12);
    }
    .zone-chip--primary:hover { background: rgba(234,88,12,.2); }

    /* CTAs cachés par défaut, visibles au scroll */
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
      max-width: 0;
      overflow: hidden;
      opacity: 0;
      transform: translateY(-5px);
      pointer-events: none;
      transition: max-width .4s ease, opacity .25s ease, transform .25s ease;
    }
    .nav.scrolled .nav-actions {
      max-width: 400px;
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    .nav-cta {
      font-size: 13px; font-weight: 600;
      color: #fff;
      background: var(--orange);
      padding: 9px 18px;
      border-radius: var(--radius-sm);
      transition: background .15s;
      white-space: nowrap;
    }
    .nav-cta:hover { background: var(--orange-h); }
    .nav-wa {
      display: flex; align-items: center; gap: 7px;
      font-size: 13px; font-weight: 600;
      color: #fff;
      background: var(--wa);
      padding: 9px 16px;
      border-radius: var(--radius-sm);
      transition: background .15s;
      white-space: nowrap;
    }
    .nav-wa:hover { background: var(--wa-h); }
    .nav-wa svg { width: 15px; height: 15px; fill: #fff; flex-shrink: 0; }

    /* Mobile hamburger */
    .nav-mobile-toggle {
      display: none;
      width: 44px; height: 44px;
      background: transparent;
      border: none;
      cursor: pointer;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      padding: 0;
      flex-shrink: 0;
    }
    .nav-toggle-bar {
      background: #fff;
      height: 2px;
      border-radius: 2px;
      transition: transform .35s cubic-bezier(.6,-0.05,.3,1.5), opacity .25s ease, width .3s ease;
    }
    .nav-toggle-bar:nth-child(1) { width: 20px; }
    .nav-toggle-bar:nth-child(2) { width: 14px; align-self: flex-end; margin-right: 12px; }
    .nav-toggle-bar:nth-child(3) { width: 20px; }
    .nav-mobile-toggle.open .nav-toggle-bar:nth-child(1) { width: 22px; transform: translateY(7px) rotate(45deg); }
    .nav-mobile-toggle.open .nav-toggle-bar:nth-child(2) { opacity: 0; width: 22px; }
    .nav-mobile-toggle.open .nav-toggle-bar:nth-child(3) { width: 22px; transform: translateY(-7px) rotate(-45deg); }
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .nav-links.open {
        display: flex; flex-direction: column;
        position: absolute; top: 68px; left: 0; right: 0;
        background: var(--navy);
        padding: 12px 24px 24px;
        gap: 4px;
        border-top: 1px solid rgba(255,255,255,.1);
        max-height: calc(100vh - 68px);
        overflow-y: auto;
      }
      .nav-link { padding: 10px 14px; display: flex; align-items: center; justify-content: space-between; }
      .nav-link-chevron { transition: transform .25s ease; }
      .nav-item.is-expanded > .nav-link .nav-link-chevron { transform: rotate(180deg); }

      /* Sub-menus en accordéon mobile */
      .nav-dropdown {
        position: static !important;
        transform: none !important;
        padding-top: 0 !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        display: none;
        width: 100%;
      }
      .nav-item.is-expanded .nav-dropdown { display: block; }
      .nav-dropdown-inner {
        min-width: 0 !important;
        width: 100% !important;
        background: rgba(255,255,255,.035) !important;
        border: 1px solid rgba(255,255,255,.06) !important;
        box-shadow: none !important;
        border-radius: 8px;
        margin: 2px 0 10px;
      }
      .mega-grid { grid-template-columns: 1fr; padding: 6px; }
      .mega-item { padding: 11px 12px; }
      .mega-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 12px 14px;
      }
      .mega-cta { text-align: center; }
      /* Zone d'intervention chips — 2 colonnes sur mobile (au lieu de 3 inline) */
      .nav-dropdown div[style*="grid-template-columns"] {
        grid-template-columns: 1fr 1fr !important;
      }

      .nav-mobile-toggle { display: flex; }
      .nav-actions { margin-left: auto; }
      .nav-wa span { display: none; }
    }

    /* ── HERO ────────────────────────────────────────── */
    .hero {
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      padding: 80px 0;
      /* min-height défini par JS : 100vh - nav - stats */
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('/_photos/atelier-nuances-utilitaires.webp') center/cover no-repeat;
      z-index: 0;
    }
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        100deg,
        rgba(6,30,56,.93) 0%,
        rgba(6,30,56,.82) 38%,
        rgba(6,30,56,.45) 60%,
        rgba(6,30,56,.08) 100%
      );
    }
    .hero-inner {
      position: relative;
      z-index: 1;
      max-width: 620px;
    }
    .hero-eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255,255,255,.65);
      padding-left: 14px;
      border-left: 2px solid var(--orange);
      margin-bottom: 20px;
    }
    .hero-h1 {
      font-family: 'Inter', sans-serif;
      font-size: clamp(38px, 5vw, 62px);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.04em;
      color: #fff;
      margin-bottom: 10px;
    }
    .hero-subtitle {
      font-size: 15px;
      font-weight: 400;
      color: rgba(255,255,255,.65);
      margin-bottom: 28px;
    }
    .hero-body {
      font-size: 16px;
      line-height: 1.65;
      color: rgba(255,255,255,.78);
      margin-bottom: 32px;
    }
    .hero-body p {
      display: block;
      margin: 0 0 2px;
    }
    .hero-body strong { color: #fff; font-weight: 600; }
    @media (min-width: 901px) {
      .hero-body p { white-space: nowrap; }
    }
    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 36px;
    }
    .hero-badges {
      display: flex;
      flex-wrap: nowrap;
      gap: 16px;
    }
    .hero-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: rgba(255,255,255,.6);
    }
    .hero-badge::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--orange);
      flex-shrink: 0;
    }
    @media (max-width: 900px) {
      .hero {
        padding: 0;
        min-height: calc(100vh - 68px); /* tient dans une seule vue sous le nav */
        display: block;
        background: var(--navy);
      }
      /* Image confinée à 50vh du haut */
      .hero-bg {
        height: 40vh;
        inset: 0 0 auto 0;
        bottom: auto;
        background-size: var(--hero-mobile-size, 100% auto);
        background-position: var(--hero-mobile-pos, center center);
      }
      .hero-bg::after {
        background: linear-gradient(
          to bottom,
          transparent 0%,
          transparent 78%,
          rgba(6,30,56,.55) 90%,
          rgba(6,30,56,.95) 97%,
          rgba(6,30,56,1) 100%
        );
      }
      .hero-inner {
        margin-top: 30vh;
        background: var(--navy);
        padding: 20px 24px 32px;
        max-width: none;
        position: relative;
        z-index: 1;
      }

      /* Eyebrow hero : tenir sur 1 ligne sur mobile */
      .hero-eyebrow {
        font-size: 10px;
        letter-spacing: .08em;
        white-space: nowrap;
      }
      /* Cache CTAs du hero sur mobile (déjà disponibles via nav burger + WhatsApp float) */
      .hero-ctas { display: none; }
      /* Réduire les marges entre éléments pour tout faire tenir */
      .hero-eyebrow { margin-bottom: 12px; }
      .hero-h1 { margin-bottom: 12px; }
      .hero-subtitle { margin-bottom: 16px; }
      .hero-body { margin-bottom: 16px; font-size: 15px; }
      .hero-badges {
        flex-wrap: wrap;
        gap: 8px 14px;
      }
      .hero-badge { font-size: 12px; }
      /* Le bouton "Devis — visite gratuite" reste visible dans la top bar mobile */
    }

    /* ── BUTTONS ─────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: 15px;
      line-height: 1;
      padding: 14px 24px;
      border-radius: var(--radius-md);
      border: 2px solid transparent;
      cursor: pointer;
      text-decoration: none;
      transition: background .15s, box-shadow .15s, transform .1s;
      white-space: nowrap;
    }
    .btn:active { transform: translateY(1px); }
    .btn-orange {
      background: var(--orange);
      color: #fff;
      border-color: var(--orange);
    }
    .btn-orange:hover { background: var(--orange-h); border-color: var(--orange-h); box-shadow: 0 4px 14px rgba(234,88,12,.35); }
    .btn-wa {
      background: var(--wa);
      color: #fff;
      border-color: var(--wa);
    }
    .btn-wa:hover { background: var(--wa-h); border-color: var(--wa-h); box-shadow: 0 4px 14px rgba(37,211,102,.35); }
    .btn-outline {
      background: transparent;
      color: var(--text);
      border-color: var(--border-s);
    }
    .btn-outline:hover { border-color: var(--navy); }
    .btn-ghost-white {
      background: rgba(255,255,255,.08);
      color: #fff;
      border: 1.5px solid rgba(255,255,255,.2);
    }
    .btn-ghost-white:hover { background: rgba(255,255,255,.14); }
    .btn-sm { font-size: 13px; padding: 10px 18px; }
    .btn-lg { font-size: 16px; padding: 16px 32px; }
    .wa-icon { width: 17px; height: 17px; fill: currentColor; flex-shrink: 0; }

    /* ── STATS BAR ───────────────────────────────────── */
    .stats {
      background: var(--surface);
      border-bottom: 1px solid var(--border);
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      divide-x: 1px solid var(--border);
    }
    .stat {
      padding: 32px 28px;
      border-right: 1px solid var(--border);
      text-align: center;
    }
    .stat:last-child { border-right: none; }
    .stat-num {
      font-family: 'Inter', sans-serif;
      font-size: 40px;
      font-weight: 800;
      letter-spacing: -0.04em;
      color: var(--navy);
      line-height: 1;
      margin-bottom: 6px;
    }
    .stat-label {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.4;
    }
    @media (max-width: 768px) {
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat { padding: 24px 16px; }
      .stat:nth-child(2) { border-right: none; }
      .stat:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
      .stat:nth-child(4) { border-right: none; border-top: 1px solid var(--border); }
    }
    /* Très petit mobile : on garde 2 colonnes mais on réduit encore le padding */
    @media (max-width: 400px) {
      .stat { padding: 20px 10px; }
      .stat-num { font-size: 26px !important; }
      .stat-label { font-size: 11px !important; }
    }

    /* ── SECTION COMMONS ─────────────────────────────── */
    .section { padding: 80px 0; }
    .section-eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 12px;
    }
    .section-h2 {
      font-family: 'Inter', sans-serif;
      font-size: clamp(26px, 3vw, 40px);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.03em;
      color: var(--text);
      margin-bottom: 8px;
    }
    .section-lead {
      font-size: 16px;
      color: var(--muted);
      line-height: 1.65;
      max-width: 600px;
      margin-bottom: 48px;
    }

    /* ── SECTION PROCESS ─────────────────────────────── */
    .process { background: var(--surface); }
    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
    }
    .process-step {
      padding: 28px 28px 32px;
      border-right: 1px solid var(--border);
      position: relative;
    }
    .process-step:last-child { border-right: none; }

    .process-top {
      position: relative;
      height: 140px;
      margin-bottom: 12px;
      display: flex;
      align-items: flex-end;
      padding-bottom: 4px;
    }
    .process-num {
      position: absolute;
      top: -20px;
      left: 0;
      font-family: 'Inter', sans-serif;
      font-size: 96px;
      font-weight: 800;
      color: var(--orange);
      opacity: .22;
      line-height: 1;
      letter-spacing: -0.04em;
      user-select: none;
      z-index: 0;
    }
    .process-icon {
      position: relative;
      z-index: 1;
      height: 108px;
      width: auto;
      object-fit: contain;
      display: block;
      margin-left: 8px;
    }
    .process-icon--lg { height: 130px; }
    .process-title {
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 8px;
    }
    .process-title-num {
      color: var(--orange);
      font-weight: 700;
      margin-right: 4px;
    }
    .process-body {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
    }
    .process-arrow {
      position: absolute;
      right: -12px;
      top: 50%;
      transform: translateY(-50%);
      width: 24px;
      height: 24px;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: var(--muted);
      z-index: 2;
    }
    .process-step:last-child .process-arrow { display: none; }
    @media (max-width: 900px) {
      .process-grid { grid-template-columns: 1fr 1fr; }
      .process-step { border-right: none; border-bottom: 1px solid var(--border); padding: 20px 12px; }
      .process-step:nth-child(odd) { border-right: 1px solid var(--border); }
      .process-step:nth-child(3), .process-step:last-child { border-bottom: none; }
      .process-arrow { display: none; }
      /* Chiffres background MUCH plus petits sur mobile */
      .process-num { font-size: 56px; top: -8px; opacity: .18; }
      .process-top { height: 84px; margin-bottom: 8px; }
      .process-icon { height: 60px; }
      .process-icon--lg { height: 70px; }
      .process-title { font-size: 14px; margin-bottom: 6px; }
      .process-title-num { font-size: 14px; }
      .process-body { font-size: 13px; line-height: 1.5; }
    }
    /* On garde 2 colonnes même sur très petit mobile (plus dense) */
    @media (max-width: 380px) {
      .process-step { padding: 16px 8px; }
      .process-num { font-size: 44px; }
      .process-top { height: 64px; }
      .process-icon { height: 48px; }
      .process-title { font-size: 13px; }
      .process-body { font-size: 12px; }
    }

    /* ── SECTION RÉALISATIONS ────────────────────────── */
    .realisations { background: var(--bg); padding: 80px 0 0; }
    .realisations-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }
    .realisations-voir-tout {
      font-size: 13px;
      font-weight: 600;
      color: var(--navy);
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      flex-shrink: 0;
    }
    .realisations-voir-tout:hover { text-decoration: underline; }

    .bento-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: 340px 280px 280px;
      gap: 3px;
    }
    .bento-1 { grid-column: 1 / 6; }
    .bento-2 { grid-column: 6 / 9; }
    .bento-3 { grid-column: 9 / 13; }
    .bento-4 { grid-column: 1 / 4; }
    .bento-5 { grid-column: 4 / 9; }
    .bento-6 { grid-column: 9 / 13; }
    .bento-7 { grid-column: 1 / 5; }
    .bento-8 { grid-column: 5 / 9; }
    .bento-9 { grid-column: 9 / 13; }

    .bento-cell {
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }
    .bento-cell img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .5s ease;
    }
    .bento-cell:hover img { transform: scale(1.05); }
    .bento-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(6,30,56,.82) 0%, rgba(6,30,56,.4) 50%, transparent 75%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 20px 22px;
      opacity: 0;
      transition: opacity .3s ease;
    }
    .bento-cell:hover .bento-overlay { opacity: 1; }

    /* Cadrage optimisé par photo */
    .bento-1 img { object-position: center 50%; }
    .bento-2 img { object-position: center 20%; }
    .bento-4 img { object-position: center 40%; }
    .bento-7 img { object-position: center 25%; }
    .bento-8 img { object-position: center 20%; }
    .bento-tag {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: rgba(255,255,255,.85);
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.2);
      padding: 3px 9px;
      border-radius: 9999px;
      width: fit-content;
      margin-bottom: 7px;
    }
    .bento-title {
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
      letter-spacing: -0.01em;
    }
    .bento-desc {
      font-size: 13px;
      color: rgba(255,255,255,.72);
      line-height: 1.5;
      margin-top: 6px;
    }

    @media (max-width: 900px) {
      .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 4px;
      }
      .bento-1, .bento-2, .bento-3,
      .bento-4, .bento-5, .bento-6,
      .bento-7, .bento-8, .bento-9 {
        grid-column: auto;
        aspect-ratio: 1 / 1;
      }
      .bento-cell img { object-position: center center !important; }
      /* Overlay toujours visible (pas de hover sur mobile) */
      .bento-overlay { opacity: 1; padding: 12px 14px; }
      .bento-title { font-size: 13px; }
      .bento-desc { display: none; }
      .bento-tag { font-size: 9px; padding: 2px 7px; }
    }
    /* Très petit mobile : 2 cols mais ratio plus compact */
    @media (max-width: 380px) {
      .bento-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* ── SECTION SERVICES ─────────────────────────────── */
    .services { background: var(--bg); }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .service-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px;
      transition: border-color .15s, box-shadow .15s, transform .15s;
    }
    .service-card:hover {
      border-color: var(--orange);
      box-shadow: 0 4px 16px rgba(234,88,12,.1);
      transform: translateY(-2px);
    }
    .service-icon {
      width: 44px;
      height: 44px;
      background: var(--orange-tint);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      font-size: 22px;
    }
    .service-name {
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 8px;
    }
    .service-desc {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 16px;
    }
    .service-link {
      font-size: 13px;
      font-weight: 600;
      color: var(--navy);
      display: inline-flex;
      align-items: center;
      gap: 4px;
      transition: gap .15s;
    }
    .service-link:hover { gap: 8px; }
    @media (max-width: 900px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .service-card { padding: 18px 14px; }
      .service-card h2, .service-card h3 { font-size: 15px !important; margin: 10px 0 6px !important; }
      .service-card p { font-size: 12.5px !important; line-height: 1.45 !important; }
      .service-icon { width: 32px !important; height: 32px !important; font-size: 15px !important; }
    }
    /* Très petit mobile : 1 col seulement sous 380px */
    @media (max-width: 380px) { .services-grid { grid-template-columns: 1fr; } }

    /* ── SECTION CIBLES ──────────────────────────────── */
    .cibles { background: var(--surface); }
    .cibles-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .cible-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px 32px;
    }
    .cible-tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--navy);
      background: var(--surface-2);
      border: 1px solid var(--border-s);
      padding: 4px 10px;
      border-radius: var(--radius-full, 9999px);
      margin-bottom: 16px;
    }
    .cible-h3 {
      font-family: 'Inter', sans-serif;
      font-size: 22px;
      font-weight: 600;
      letter-spacing: -0.01em;
      color: var(--text);
      margin-bottom: 12px;
    }
    .cible-body {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.7;
    }
    @media (max-width: 680px) { .cibles-grid { grid-template-columns: 1fr; } }

    /* ── SECTION ZONE ─────────────────────────────────── */
    .zone { background: var(--navy); padding: 72px 0; }
    .zone .section-eyebrow { color: rgba(255,255,255,.5); }
    .zone .section-h2 { color: #fff; }
    .zone .section-lead { color: rgba(255,255,255,.6); }
    .communes-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .commune-chip {
      font-size: 13px;
      font-weight: 500;
      color: rgba(255,255,255,.75);
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      padding: 6px 14px;
      border-radius: 9999px;
      transition: background .15s, color .15s;
    }
    .commune-chip:hover { background: rgba(255,255,255,.15); color: #fff; }
    .commune-chip.primary {
      background: rgba(234,88,12,.2);
      border-color: rgba(234,88,12,.3);
      color: #FDBA74;
    }
    .zone-cta { margin-top: 40px; }

    /* ── SECTION AVIS ─────────────────────────────────── */
    .avis { background: var(--bg); }
    /* Stars */
    .stars { color: #F59E0B; letter-spacing: 2px; font-size: 18px; }

    /* Avis — carrousel défilant (pages services/villes) */
    .avis-head { text-align: center; }
    .avis-rating { margin-top: 12px; font-size: 15px; color: var(--muted); }
    .avis-rating .stars { font-size: 16px; vertical-align: middle; }
    .avis-rating strong { color: var(--text); }
    .avis-marquee {
      overflow: hidden;
      margin-top: 32px;
      -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
              mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    }
    .avis-track {
      display: flex;
      gap: 20px;
      width: max-content;
      animation: avis-scroll 55s linear infinite;
    }
    .avis-marquee:hover .avis-track { animation-play-state: paused; }
    .avis-card {
      flex: 0 0 320px;
      box-sizing: border-box;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .avis-card-text { font-size: 15px; line-height: 1.6; color: var(--text); margin: 0; flex: 1; }
    .avis-card-foot { display: flex; align-items: center; gap: 10px; }
    .avis-card-avatar {
      width: 34px; height: 34px; border-radius: 50%;
      background: var(--navy); color: #fff;
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 13px; font-weight: 600; flex-shrink: 0;
    }
    .avis-card-name { font-size: 14px; font-weight: 600; color: var(--navy); }
    .avis-card-src { font-size: 12px; color: var(--muted); margin-left: auto; }
    @keyframes avis-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    @media (prefers-reduced-motion: reduce) {
      .avis-track { animation: none; }
      .avis-marquee { overflow-x: auto; }
    }

    /* ── CTA FINAL ────────────────────────────────────── */
    .cta-final {
      background: var(--orange);
      padding: 72px 0;
    }
    .cta-final-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 28px;
      max-width: 720px;
      margin: 0 auto;
    }
    .cta-final-text { width: 100%; }
    .cta-final-h2 {
      font-family: 'Inter', sans-serif;
      font-size: clamp(26px, 2.8vw, 38px);
      font-weight: 800;
      letter-spacing: -0.03em;
      color: #fff;
      margin-bottom: 10px;
      line-height: 1.15;
    }
    .cta-final-sub {
      font-size: 16px;
      color: rgba(255,255,255,.85);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.6;
    }
    .cta-final-btns {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .btn-white {
      background: #fff;
      color: var(--orange);
      border: 2px solid #fff;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-white:hover { background: #FFF3EE; }
    .btn-outline-white {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255,255,255,.65);
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.08); }
    .btn-outline-white .wa-icon { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }
    @media (max-width: 600px) {
      .cta-final-btns { width: 100%; flex-direction: column; }
      .cta-final-btns .btn { justify-content: center; width: 100%; }
    }

    /* ── FOOTER ──────────────────────────────────────── */
    footer {
      background: var(--navy);
      color: rgba(255,255,255,.6);
      padding: 48px 0 32px;
      font-size: 14px;
    }
    .footer-inner {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 40px;
    }
    .footer-logo {
      height: 88px;
      width: auto;
      display: block;
      margin-bottom: 16px;
    }
    .footer-brand-desc { font-size: 13px; line-height: 1.65; margin-top: 8px; }
    .footer-col-title {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255,255,255,.4);
      margin-bottom: 16px;
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-links a { font-size: 13px; color: rgba(255,255,255,.6); transition: color .15s; }
    .footer-links a:hover { color: #fff; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 12px;
      color: rgba(255,255,255,.35);
    }
    .footer-bottom a { color: rgba(255,255,255,.35); }
    .footer-bottom a:hover { color: rgba(255,255,255,.6); }
    @media (max-width: 768px) {
      .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    }

    /* ── WhatsApp Float ──────────────────────────────── */
    .wa-float {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 40;
      width: 56px;
      height: 56px;
      background: var(--wa);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 2px 6px rgba(0,0,0,.2);
      transition: transform .2s, box-shadow .2s;
      cursor: pointer;
    }
    .wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,.55); }
    .wa-float svg { width: 26px; height: 26px; fill: #fff; }
    @media (min-width: 901px) { .wa-float { display: none; } }

    /* ── Divider ─────────────────────────────────────── */
    .divider { border: none; border-top: 1px solid var(--border); }

    /* ══════════════════════════════════════════════════
       PAGES SERVICE — composants additionnels
       ══════════════════════════════════════════════════ */

    /* Breadcrumb */
    .breadcrumb { font-size: 13px; color: var(--muted); padding: 16px 0 0; }
    .breadcrumb a { color: var(--muted); }
    .breadcrumb a:hover { color: var(--orange); text-decoration: underline; }
    .breadcrumb-sep { margin: 0 8px; opacity: .5; }

    /* Breadcrumb intégré dans le hero (fond navy → texte clair) */
    .breadcrumb--in-hero {
      position: relative;
      z-index: 2;
      padding: 24px 0 0;
      color: rgba(255,255,255,.55);
    }
    .breadcrumb--in-hero a { color: rgba(255,255,255,.6); }
    .breadcrumb--in-hero a:hover { color: var(--orange); }
    .breadcrumb--in-hero [aria-current="page"] { color: rgba(255,255,255,.85); }

    /* Mobile : breadcrumb sort du hero, en bandeau juste sous la top bar */
    @media (max-width: 900px) {
      /* Hero AVEC breadcrumb (services/villes/à-propos) : padding-top pour le bandeau */
      .hero:has(.breadcrumb--in-hero) {
        padding-top: 40px;
      }
      /* Bandeau breadcrumb pleine largeur, en absolute au top du hero */
      .breadcrumb--in-hero {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        margin: 0;
        padding: 11px 16px;
        background: var(--navy);
        border-bottom: 1px solid rgba(255,255,255,.08);
        font-size: 12px;
        z-index: 4;
        white-space: nowrap;
        overflow-x: auto;
      }
      /* Photo démarre sous le bandeau UNIQUEMENT si breadcrumb présent */
      .hero:has(.breadcrumb--in-hero) .hero-bg {
        top: 40px;
        height: calc(40vh - 40px);
      }
      /* hero-inner colle à la photo */
      .breadcrumb--in-hero + .hero-inner {
        margin-top: calc(30vh - 40px);
        padding-top: 16px;
      }
    }



    /* Frise verticale pages villes — "L'Atelier Nuances à [Ville]" */
    .ville-frise {
      position: relative;
      max-width: 720px;
      margin: 32px auto 0;
      padding: 0;
      list-style: none;
    }
    .ville-frise::before {
      content: '';
      position: absolute;
      left: 26px;
      top: 24px;
      bottom: 24px;
      width: 2px;
      background: var(--orange);
      opacity: .25;
    }
    .ville-frise li {
      position: relative;
      display: flex;
      align-items: flex-start;
      gap: 22px;
      padding: 14px 0;
    }
    .ville-frise .frise-icon {
      position: relative;
      z-index: 1;
      flex-shrink: 0;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: #fff;
      border: 2px solid var(--orange);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      box-shadow: 0 2px 10px rgba(6,30,56,.08);
    }
    .ville-frise .frise-body {
      flex: 1;
      padding-top: 14px;
      font-size: 16px;
      line-height: 1.6;
      color: var(--text);
    }
    .ville-frise .frise-body strong { color: var(--navy); font-weight: 700; }
    @media (max-width: 600px) {
      .ville-frise::before { left: 22px; top: 20px; bottom: 20px; }
      .ville-frise li { gap: 16px; padding: 10px 0; }
      .ville-frise .frise-icon { width: 46px; height: 46px; font-size: 18px; }
      .ville-frise .frise-body { padding-top: 12px; font-size: 15px; }
      /* Intro paragraphe "Nos prestations à [Ville]" — moins gros sur mobile */
      [aria-labelledby="connaissance-h2"] > .container > p { font-size: 15px !important; line-height: 1.6 !important; margin-bottom: 28px !important; }
    }

    /* Grille avant/après pour pages villes */
    .villes-avant-apres {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      max-width: 880px;
      margin: 32px auto 0;
    }
    .villes-avant-apres .ap-cell {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      aspect-ratio: 4/3;
      box-shadow: 0 4px 16px rgba(6,30,56,.08);
    }
    .villes-avant-apres .ap-cell img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .villes-avant-apres .ap-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: rgba(6,30,56,.92);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 6px 10px;
      border-radius: 4px;
    }
    .villes-avant-apres .ap-badge--apres {
      background: var(--orange);
    }
    @media (max-width: 600px) {
      .villes-avant-apres { gap: 10px; }
      .villes-avant-apres .ap-badge { font-size: 10px; padding: 4px 8px; top: 8px; left: 8px; }
    }

    /* Liste d'inclusion (Ce que comprend la prestation) */
    .feature-list { list-style: none; padding: 0; margin: 0; }
    .feature-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
      font-size: 16px;
      line-height: 1.55;
    }
    .feature-list li:last-child { border-bottom: 0; }
    .feature-list-check {
      flex-shrink: 0;
      width: 24px; height: 24px;
      border-radius: 50%;
      background: var(--orange-tint);
      color: var(--orange);
      display: flex; align-items: center; justify-content: center;
      font-size: 13px; font-weight: 700;
      margin-top: 1px;
    }
    .feature-list strong { color: var(--text); font-weight: 600; }
    .feature-note {
      margin-top: 24px;
      padding: 18px 22px;
      background: var(--orange-tint);
      border-left: 3px solid var(--orange);
      border-radius: var(--radius-md);
      font-size: 15px;
      color: var(--text);
    }

    /* Avant / Après gallery */
    .ba-section { background: var(--bg); }
    .ba-item {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      margin-bottom: 64px;
    }
    .ba-item:last-child { margin-bottom: 0; }
    .ba-item:nth-child(even) .ba-photo { order: 2; }
    .ba-photo {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      aspect-ratio: 4/3;
      box-shadow: var(--shadow-md);
    }
    .ba-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .ba-tag {
      position: absolute;
      top: 14px; left: 14px;
      font-size: 11px; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase;
      padding: 5px 11px;
      border-radius: 9999px;
      background: rgba(0,0,0,.7);
      color: #fff;
      backdrop-filter: blur(4px);
    }
    .ba-tag--apres { background: var(--orange); }
    .ba-caption {
      font-size: 12px;
      color: var(--muted);
      font-style: italic;
      margin-top: 10px;
    }
    .ba-text h3 {
      font-family: 'Inter', sans-serif;
      font-size: 22px;
      font-weight: 600;
      letter-spacing: -.01em;
      margin-bottom: 14px;
      color: var(--text);
    }
    .ba-text p {
      font-size: 16px;
      color: var(--muted);
      line-height: 1.7;
    }
    @media (max-width: 768px) {
      .ba-item { grid-template-columns: 1fr; gap: 18px; margin-bottom: 44px; }
      .ba-item:nth-child(even) .ba-photo { order: 0; }
      .ba-text h3 { font-size: 19px; }
    }

    /* Liste "Ce qui n'est pas inclus" */
    .exclusion-list { list-style: none; padding: 0; max-width: 720px; margin: 0 auto; }
    .exclusion-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
      font-size: 15px;
      color: var(--muted);
      line-height: 1.55;
    }
    .exclusion-list li:last-child { border-bottom: 0; }
    .exclusion-cross {
      flex-shrink: 0;
      width: 22px; height: 22px;
      border-radius: 50%;
      background: var(--surface-2);
      color: var(--light);
      display: flex; align-items: center; justify-content: center;
      font-size: 14px;
      margin-top: 1px;
    }

    /* Formulaire devis */
    .form-section { background: var(--surface); }
    .form-card {
      max-width: 680px;
      margin: 0 auto;
      padding: 40px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
    }
    .form-row { margin-bottom: 18px; }
    .form-row label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 6px;
    }
    .form-row input,
    .form-row textarea {
      width: 100%;
      padding: 12px 14px;
      font-family: inherit;
      font-size: 15px;
      color: var(--text);
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      transition: border-color .15s, background .15s;
    }
    .form-row input:focus,
    .form-row textarea:focus {
      outline: none;
      border-color: var(--orange);
      background: var(--surface);
    }
    .form-row textarea { resize: vertical; min-height: 100px; }
    .form-rgpd {
      margin-top: 14px;
      font-size: 12px;
      color: var(--light);
      line-height: 1.5;
    }
    .form-cta {
      width: 100%;
      padding: 14px 24px;
      font-size: 15px;
      font-weight: 600;
      color: #fff;
      background: var(--orange);
      border: none;
      border-radius: var(--radius-md);
      cursor: pointer;
      transition: background .15s;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .form-cta:hover { background: var(--orange-h); }
    .form-or {
      text-align: center;
      margin: 18px 0 14px;
      font-size: 13px;
      color: var(--muted);
    }
    @media (max-width: 600px) {
      .form-card { padding: 24px 20px; }
    }

    /* Zone d'intervention chips compactes */
    .communes-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      max-width: 920px;
      margin: 0 auto;
    }
    .commune-chip {
      display: inline-flex; align-items: center;
      padding: 8px 16px;
      font-size: 14px; font-weight: 500;
      color: rgba(255,255,255,.85);
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 9999px;
      transition: background .15s, border-color .15s, color .15s;
    }
    .commune-chip:hover {
      background: rgba(234,88,12,.18);
      border-color: var(--orange);
      color: #fff;
    }

    /* FAQ accordéon */
    .faq { max-width: 820px; margin: 0 auto; }
    .faq-item {
      border-bottom: 1px solid var(--border);
    }
    .faq-item:first-child { border-top: 1px solid var(--border); }
    .faq-question {
      width: 100%;
      padding: 22px 0;
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      text-align: left;
      font-family: inherit;
      font-size: 17px;
      font-weight: 600;
      color: var(--text);
      transition: color .15s;
    }
    .faq-question:hover { color: var(--orange); }
    .faq-question-icon {
      flex-shrink: 0;
      width: 24px; height: 24px;
      display: flex; align-items: center; justify-content: center;
      transition: transform .25s ease;
      color: var(--muted);
    }
    .faq-item[open] .faq-question-icon { transform: rotate(180deg); color: var(--orange); }
    .faq-answer {
      padding: 0 0 22px;
      font-size: 16px;
      color: var(--muted);
      line-height: 1.7;
    }

    /* CTA secondary section (page service) */
    .ba-section,
    .exclusion-section,
    .contact-section { padding: 80px 0; }
    .form-section { padding: 80px 0; }
    @media (max-width: 768px) {
      .ba-section,
      .exclusion-section,
      .contact-section,
      .form-section { padding: 56px 0; }
    }

    /* Contact section (iframe GHL + WhatsApp) */
    .contact-section { background: var(--surface); }
    .contact-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 32px;
      max-width: 1080px;
      margin: 0 auto;
      align-items: start;
    }
    .contact-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
      overflow: hidden;
    }
    .contact-card-iframe {
      padding: 0;
      min-height: 700px;
      position: relative;
    }
    .contact-card-iframe iframe {
      display: block;
      width: 100%;
      border: none;
      min-height: 700px;
    }
    .contact-side {
      display: flex;
      flex-direction: column;
      gap: 16px;
      position: sticky;
      top: 90px;
    }
    .contact-side-card {
      padding: 28px 26px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
    }
    .contact-side-card--wa {
      background: var(--wa-tint);
      border-color: rgba(37,211,102,.3);
    }
    .contact-side-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--wa);
      margin-bottom: 8px;
    }
    .contact-side-title {
      font-family: 'Inter', sans-serif;
      font-size: 19px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 8px;
      line-height: 1.25;
    }
    .contact-side-desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.55;
      margin-bottom: 16px;
    }
    .contact-side-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      padding: 12px 18px;
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      background: var(--wa);
      border-radius: var(--radius-md);
      transition: background .15s;
      white-space: nowrap;
    }
    .contact-side-btn:hover { background: var(--wa-h); }
    .contact-side-btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
    .contact-side-meta {
      margin-top: 14px;
      display: flex;
      flex-direction: column;
      gap: 6px;
      font-size: 13px;
      color: var(--muted);
    }
    .contact-side-meta strong { color: var(--text); }
    @media (max-width: 900px) {
      .contact-grid { grid-template-columns: 1fr; gap: 20px; }
      .contact-side { position: static; }
    }

    /* Card CTA dans grille services (combler la grille) */
    .service-card--cta {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      background: linear-gradient(135deg, var(--orange) 0%, var(--orange-h) 100%);
      color: #fff;
      border: none;
      text-decoration: none;
    }
    .service-card--cta h3 { color: #fff !important; }
    .service-card--cta p { color: rgba(255,255,255,.88) !important; }
    .service-card--cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(234,88,12,.32);
      border-color: transparent;
    }
    .service-card--cta .arrow-cta {
      margin-top: 14px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 14px;
      font-weight: 600;
      color: #fff;
    }

    /* Section heads unifiés (page service) */
    .section-head-center {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 40px;
    }
    .section-head-center p {
      font-size: 16px;
      color: var(--muted);
      line-height: 1.7;
      margin-top: 14px;
    }
    @media (max-width: 768px) {
      .section-head-center { margin: 0 auto 28px; }
    }

    /* ══════════════════════════════════════════════════
       MOBILE — ≤ 768px
       ══════════════════════════════════════════════════ */
    @media (max-width: 768px) {

      /* Sections — padding réduit */
      .section            { padding: 48px 0; }
      .realisations       { padding: 48px 0 0; }
      .zone               { padding: 48px 0; }
      .cta-final          { padding: 44px 0; }
      footer              { padding: 36px 0 24px; }
      .section-lead       { margin-bottom: 28px; font-size: 15px; }

      /* Hero */
      .hero               { padding: 44px 0 60px; }
      .hero-h1            { margin-bottom: 12px; }
      .hero-subtitle      { margin-bottom: 20px; }
      .hero-body          { font-size: 15px; margin-bottom: 24px; }
      .hero-ctas          { gap: 10px; margin-bottom: 24px; }
      .hero-ctas .btn     { width: 100%; justify-content: center; }
      .hero-badges        { flex-wrap: wrap; gap: 10px; }
      .hero-badge         { font-size: 12px; }

      /* Stats */
      .stat-num           { font-size: 30px; }
      .stat-label         { font-size: 12px; }

      /* Process */
      .process-top        { height: 110px; margin-bottom: 10px; }
      .process-icon       { height: 86px; }
      .process-icon--lg   { height: 106px; }
      .process-step       { padding: 22px 20px 26px; }
      .process-title      { font-size: 14px; }

      /* Services */
      .service-card       { padding: 20px; }
      .service-icon       { margin-bottom: 12px; }
      .service-desc       { font-size: 13px; }

      /* Cibles */
      .cible-card         { padding: 26px 20px; }
      .cible-h3           { font-size: 19px; }
      .cible-body         { font-size: 14px; }

      /* Avis placeholder */
      .avis-placeholder   { padding: 36px 20px; }

      /* CTA Final */
      .cta-final-btns     { width: 100%; }
      .cta-final-btns .btn { width: 100%; justify-content: center; }

      /* Footer */
      .footer-inner       { gap: 28px; }
      .footer-logo        { height: 72px; }
      .footer-bottom      { flex-direction: column; align-items: flex-start; gap: 8px; }

      /* Nav scroll CTAs — compacts sur mobile */
      .nav-cta            { font-size: 12px; padding: 8px 14px; }
      .nav-wa             { padding: 8px 10px; }

      /* Logo mobile — icône et séparateur masqués, texte agrandi */
      .nav-logo-icon      { display: none; }
      .nav-logo-sep       { display: none; }
      .nav-logo-text      { height: 38px; }
    }

    /* ══════════════════════════════════════════════════
       TRÈS PETIT — ≤ 480px
       ══════════════════════════════════════════════════ */
    @media (max-width: 480px) {
      .hero-h1            { font-size: 34px; }
      .section-h2         { font-size: 24px; }
      .cta-final-h2       { font-size: 22px; }
      /* WA float gère le contact — on masque l'icône nav sur très petit écran */
      .nav-actions .nav-wa { display: none; }
      /* Zone chips — un peu plus petits */
      .commune-chip       { font-size: 12px; padding: 5px 12px; }
    }


    /* ── Gallery Wall (mur de photos masonry) ──────────── */
    .gallery-wall {
      column-count: 4;
      column-gap: 14px;
      max-width: 1280px;
      margin: 40px auto 0;
    }
    .gallery-wall figure {
      break-inside: avoid;
      margin: 0 0 14px;
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-md);
      background: var(--surface-2);
      cursor: zoom-in;
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .gallery-wall figure:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }
    .gallery-wall img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform .4s ease;
    }
    .gallery-wall figure:hover img {
      transform: scale(1.03);
    }
    .gallery-wall figcaption {
      position: absolute;
      inset: auto 0 0 0;
      padding: 24px 12px 10px;
      font-size: 12px;
      color: #fff;
      background: linear-gradient(to top, rgba(6,30,56,.85) 0%, rgba(6,30,56,0) 100%);
      opacity: 0;
      transition: opacity .25s ease;
      font-weight: 500;
      letter-spacing: 0.01em;
    }
    .gallery-wall figure:hover figcaption { opacity: 1; }

    @media (max-width: 1100px) { .gallery-wall { column-count: 3; } }
    @media (max-width: 700px)  { .gallery-wall { column-count: 2; column-gap: 6px; } .gallery-wall figure { margin-bottom: 6px; } }
    /* Sur très petit mobile, on garde 2 colonnes (plus dense) au lieu de passer en 1 col */

    /* Lightbox avec <dialog> — centrage forcé */
    .gallery-lightbox {
      /* État fermé : on neutralise les valeurs par défaut du dialog */
      padding: 0;
      border: none;
      background: transparent;
    }
    .gallery-lightbox[open] {
      position: fixed;
      inset: 0;
      max-width: 100vw;
      max-height: 100vh;
      width: 100vw;
      height: 100vh;
      margin: 0;
      display: grid;
      place-items: center;
      overflow: hidden;
    }
    .gallery-lightbox::backdrop {
      background: rgba(6,30,56,.92);
      backdrop-filter: blur(4px);
    }
    .gallery-lightbox img,
    .gallery-lightbox video {
      max-width: 95vw;
      max-height: 95vh;
      width: auto;
      height: auto;
      object-fit: contain;
      border-radius: var(--radius-md);
      display: block;
    }
    #gallery-lightbox-content {
      display: grid;
      place-items: center;
      width: 100%;
      height: 100%;
    }
    .gallery-lightbox-close {
      position: fixed;
      top: 20px;
      right: 20px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(255,255,255,.15);
      border: none;
      color: #fff;
      font-size: 24px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .15s ease;
      z-index: 10;
    }
    .gallery-lightbox-close:hover { background: rgba(255,255,255,.3); }

    /* ── Avant/Après Vidéo (paires côte à côte) ──────── */
    .video-ba-section {
      padding: 64px 0;
      background: var(--bg-soft, var(--surface-2));
    }
    .video-ba-pair {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      max-width: 1100px;
      margin: 0 auto 32px;
    }
    .video-ba-pair:last-child { margin-bottom: 0; }
    .video-ba-item {
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden;
      background: #000;
      aspect-ratio: 9 / 16;
      max-height: 600px;
    }
    .video-ba-item video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .video-ba-tag {
      position: absolute;
      top: 12px;
      left: 12px;
      padding: 6px 14px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: #fff;
      background: rgba(6, 30, 56, 0.85);
      backdrop-filter: blur(8px);
      z-index: 2;
      pointer-events: none;
    }
    .video-ba-tag--apres { background: var(--orange); }
    .video-ba-caption {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 32px;
      font-size: 15px;
      color: var(--muted);
      line-height: 1.6;
    }
    @media (max-width: 700px) {
      .video-ba-pair { grid-template-columns: 1fr; gap: 12px; max-width: 480px; }
      .video-ba-item { aspect-ratio: 9 / 16; max-height: none; }
    }


    /* Vidéos dans le mur de photos */
    .gallery-wall video {
      width: 100%;
      height: auto;
      display: block;
      transition: transform .4s ease;
    }
    .gallery-wall figure[data-type="video"]::after {
      content: "▶";
      position: absolute;
      top: 12px;
      right: 12px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(6,30,56,0.85);
      color: #fff;
      font-size: 11px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-left: 2px;
      backdrop-filter: blur(4px);
      pointer-events: none;
      z-index: 2;
    }
    .gallery-wall figure:hover video {
      transform: scale(1.03);
    }

    /* ── Scroll offset pour les ancres (nav fixe) ─────── */
    #demande-devis,
    [id$="-h2"] {
      scroll-margin-top: 80px;
    }

    /* ── Frise chronologique gestion de chantier ──────── */
    .timeline-section {
      padding: 80px 0;
      background: var(--bg);
    }
    .timeline {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 24px;
      position: relative;
      max-width: 1100px;
      margin: 48px auto 0;
      padding: 0;
    }
    .timeline--6 { grid-template-columns: repeat(6, 1fr); max-width: 1200px; }
    .timeline--7 { grid-template-columns: repeat(7, 1fr); max-width: 1280px; }
    /* Ligne horizontale qui relie les étapes */
    .timeline::before {
      content: "";
      position: absolute;
      top: 35px;
      left: calc(10% + 10px);
      right: calc(10% + 10px);
      height: 2px;
      background: linear-gradient(to right, var(--orange) 0%, var(--orange) 100%);
      opacity: .3;
      z-index: 0;
    }
    .timeline-step {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 0 8px;
    }
    .timeline-icon {
      width: 70px;
      height: 70px;
      background: var(--surface);
      border: 2px solid var(--orange);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      margin: 0 auto 18px;
      position: relative;
      box-shadow: 0 2px 8px rgba(234, 88, 12, .12);
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .timeline-step:hover .timeline-icon {
      transform: translateY(-3px);
      box-shadow: 0 6px 16px rgba(234, 88, 12, .25);
    }
    .timeline-num {
      position: absolute;
      top: -6px;
      right: -6px;
      background: var(--orange);
      color: #fff;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: -0.02em;
    }
    .timeline-step h3 {
      font-size: 15px;
      font-weight: 700;
      color: var(--navy);
      margin: 0 0 8px;
      line-height: 1.3;
    }
    .timeline-step p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.55;
      margin: 0;
    }
    /* Mobile : disposition verticale */
    @media (max-width: 780px) {
      .timeline,
      .timeline--6,
      .timeline--7 {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 480px;
        padding: 0 8px;
      }
      /* Ligne verticale alignée au centre des icônes (14 padding + 34 = 48) */
      .timeline::before {
        top: 48px;
        bottom: 48px;
        left: calc(8px + 34px); /* padding container + half icon */
        right: auto;
        width: 2px;
        height: auto;
        background: var(--orange);
        opacity: .25;
      }
      .timeline-step {
        display: grid;
        grid-template-columns: 80px 1fr;
        grid-template-rows: auto auto;
        column-gap: 18px;
        row-gap: 4px;
        text-align: left;
        padding: 14px 0;
      }
      /* Icône occupe les 2 lignes pour rester centrée vis-à-vis h3+p */
      .timeline-step .timeline-icon {
        grid-column: 1;
        grid-row: 1 / span 2;
        margin: 0;
        width: 68px;
        height: 68px;
        align-self: start;
      }
      .timeline-step h3 {
        grid-column: 2;
        grid-row: 1;
        align-self: end;
        margin: 0;
        font-size: 16px;
      }
      .timeline-step p {
        grid-column: 2;
        grid-row: 2;
        margin: 0;
        font-size: 14px;
      }
    }
