/* ==========================================================================
   city-page.css — gabarit des 14 pages villes historiques
   --------------------------------------------------------------------------
   Extrait tel quel du bloc <style> en ligne de couvreur-*.html, sans une seule
   déclaration modifiée : le rendu est identique au octet près.
   Ne pas charger avec brand.css sur la même page — .hero, .hero-grid,
   .eyebrow, .final-cta, .btn-terracotta et .faq-list y portent le même nom
   avec des valeurs différentes. La réconciliation des deux systèmes est un
   chantier à part.
   ========================================================================== */

picture { display: contents; }
    /* ── Tokens ──────────────────────────────────────────────────────── */
    :root {
      --slate: #1C2B3A;
      --slate-2: #2A3B4D;
      --terracotta: #E8761A;
      --terracotta-dk: #C9620F;
      /* Texte mono 10-12px sur fond clair : #E8761A plafonne à 2,7:1, sous le
         seuil WCAG AA. #A9500A donne 5,0:1 sur --bg sans changer la teinte perçue.
         Réservé au petit texte ; les gros titres gardent --terracotta. */
      --terracotta-ink: #A9500A;
      --bg: #F7F5F2;
      --surface: #FFFFFF;
      --line: #E8E2D8;
      --line-soft: #EFEAE0;
      --muted: #6B7480;
      --muted-2: #8A92A0;
      --ink: #1C2B3A;
      --success: #2F7A4D;
      --error: #B23A2E;

      --r-sm: 10px;
      --r-md: 12px;
      --r-lg: 14px;
      --r-xl: 20px;
      --r-2xl: 28px;

      --sh-sm: 0 1px 2px rgba(28, 43, 58, .04), 0 1px 1px rgba(28, 43, 58, .03);
      --sh-md: 0 6px 24px -8px rgba(28, 43, 58, .10), 0 2px 6px rgba(28, 43, 58, .04);
      --sh-lg: 0 24px 60px -20px rgba(28, 43, 58, .18), 0 6px 18px -8px rgba(28, 43, 58, .08);

      --max: 1180px;
      --pad: clamp(20px, 4vw, 40px);
    }

    * {
      box-sizing: border-box;
    }

    html,
    body {
      margin: 0;
      padding: 0;
      overflow-x: hidden;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: var(--bg);
      color: var(--ink);
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      line-height: 1.55;
      font-size: 16px;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: 'Sora', system-ui, sans-serif;
      color: var(--slate);
      letter-spacing: -0.015em;
      margin: 0;
      text-wrap: balance;
    }

    p {
      margin: 0;
      text-wrap: pretty;
    }

    .wrap {
      max-width: var(--max);
      margin: 0 auto;
      padding-left: var(--pad);
      padding-right: var(--pad);
    }

    /* ── Scroll animations ───────────────────────────────────────────── */
    [data-fade] {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity .55s ease, transform .55s ease;
    }

    [data-fade].visible {
      opacity: 1;
      transform: none;
    }

    [data-fade][data-d="1"] {
      transition-delay: .08s;
    }

    [data-fade][data-d="2"] {
      transition-delay: .16s;
    }

    [data-fade][data-d="3"] {
      transition-delay: .24s;
    }

    [data-fade][data-d="4"] {
      transition-delay: .32s;
    }

    [data-fade][data-d="5"] {
      transition-delay: .40s;
    }

    [data-fade][data-d="6"] {
      transition-delay: .48s;
    }

    @media (prefers-reduced-motion: reduce) {
      [data-fade] {
        opacity: 1;
        transform: none;
        transition: none;
      }

      * {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
      }

      html {
        scroll-behavior: auto;
      }
    }

    /* ── Nav transparent → capsule on scroll ────────────────────────── */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      padding: 14px var(--pad);
      pointer-events: none;
      transition: transform .4s cubic-bezier(.4, 0, .2, 1), opacity .3s ease;
    }

    .nav.hidden {
      transform: translateY(-130%);
      opacity: 0;
    }

    .nav .wrap {
      padding-left: 0;
      padding-right: 0;
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 56px;
      max-width: var(--max);
      margin: 0 auto;
      padding: 0;
      pointer-events: all;
      border-radius: 0;
      transition: background .3s ease, border-color .3s ease, box-shadow .3s ease,
        border-radius .3s ease, padding .3s ease, max-width .3s ease;
    }

    .nav.scrolled .nav-inner {
      max-width: 940px;
      background: rgba(18, 28, 40, .92);
      backdrop-filter: saturate(160%) blur(18px);
      -webkit-backdrop-filter: saturate(160%) blur(18px);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 999px;
      padding: 0 26px;
      box-shadow: 0 4px 28px rgba(0, 0, 0, .25), 0 1px 4px rgba(0, 0, 0, .15);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: #fff;
    }

    .brand-mark {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: rgba(255, 255, 255, .15);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, .2);
      display: grid;
      place-items: center;
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 15px;
      letter-spacing: -0.02em;
      flex-shrink: 0;
    }

    .brand-name {
      font-family: 'Sora', sans-serif;
      font-weight: 600;
      font-size: 16px;
      line-height: 1.1;
      color: #fff;
    }

    .brand-sub {
      font-size: 12px;
      color: rgba(255, 255, 255, .60);
      line-height: 1.1;
      margin-top: 2px;
    }

    .nav-links {
      display: none;
      gap: 32px;
    }

    @media (min-width: 860px) {
      .nav-links {
        display: flex;
      }
    }

    .nav-links a {
      color: rgba(255, 255, 255, .80);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      transition: color .15s ease;
    }

    .nav-links a:hover {
      color: #fff;
    }

    .nav-cta {
      background: var(--terracotta);
      color: #fff;
      text-decoration: none;
      padding: 9px 20px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 14px;
      transition: background .15s ease;
      display: none;
      flex-shrink: 0;
    }

    @media (min-width: 640px) {
      .nav-cta {
        display: inline-block;
      }
    }

    .nav-cta:hover {
      background: var(--terracotta-dk);
    }

    /* ── Hero ────────────────────────────────────────────────────────── */
    .hero {
      position: relative;
      padding: clamp(160px, 20vw, 220px) 0 clamp(80px, 10vw, 130px);
      overflow: hidden;
      min-height: clamp(600px, 90svh, 960px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: var(--slate);
      /* fallback if video unavailable */
    }

    html {
      scroll-padding-top: 84px;
    }

    /* ── Section CTA ─────────────────────────────────────────────────── */
    .section-cta {
      display: flex;
      justify-content: center;
      margin-top: clamp(28px, 4vw, 44px);
    }

    .btn-cta-section {
      background: var(--terracotta);
      color: #fff;
      text-decoration: none;
      padding: 14px 30px;
      border-radius: var(--r-lg);
      font-family: 'Sora', sans-serif;
      font-weight: 600;
      font-size: 15px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: background .15s ease, box-shadow .15s ease, transform .1s ease;
    }

    .btn-cta-section:hover {
      background: var(--terracotta-dk);
      box-shadow: 0 6px 22px -4px rgba(232, 118, 26, .38);
      transform: translateY(-1px);
    }

    .btn-cta-section:active {
      transform: translateY(0);
    }

    .about-section {
      background: var(--slate);
      position: relative;
      overflow: hidden;
    }
    .about-section::before {
      content: '';
      position: absolute; inset: 0; pointer-events: none;
      background-image: repeating-linear-gradient(-45deg,
        transparent 0, transparent 22px,
        rgba(255,255,255,.018) 22px, rgba(255,255,255,.018) 23px);
    }
    .about-grid {
      position: relative; z-index: 1;
      display: grid;
      grid-template-columns: 1fr;
      gap: clamp(28px, 4vw, 56px);
      align-items: center;
    }
    @media (min-width: 860px) {
      .about-grid { grid-template-columns: 0.8fr 1fr; }
    }
    .about-photo {
      border-radius: var(--r-2xl);
      overflow: hidden;
      box-shadow: var(--sh-lg);
      border: 1px solid rgba(255,255,255,.10);
    }
    .about-photo img {
      width: 100%; height: auto; display: block;
      aspect-ratio: 4/5; object-fit: cover; object-position: center 35%;
    }
    .about-text .section-eyebrow { color: var(--terracotta-ink); }
    .about-text h2 {
      color: #fff;
      font-size: clamp(28px, 3.6vw, 40px);
      font-weight: 700; line-height: 1.1;
    }
    .about-text p {
      color: rgba(255,255,255,.72);
      margin-top: 16px; font-size: 16px; line-height: 1.75;
      max-width: 56ch;
    }
    .about-points {
      list-style: none; padding: 0; margin: 26px 0 0;
      display: grid; gap: 13px;
    }
    .about-points li {
      display: flex; align-items: flex-start; gap: 12px;
      color: rgba(255,255,255,.88); font-size: 15px; line-height: 1.5;
    }
    .about-points svg { flex-shrink: 0; color: var(--terracotta); margin-top: 1px; }
    .about-signature {
      margin-top: 24px;
      font-family: 'Sora', sans-serif; font-weight: 600; font-size: 16px; color: #fff;
    }
    .about-signature span {
      display: block; font-family: 'Inter', sans-serif; font-weight: 400;
      font-size: 13px; color: rgba(255,255,255,.55); margin-top: 3px;
    }
    .about-text .btn-cta-section { margin-top: 28px; }

    /* Video background */
    .hero-video-wrap {
      position: absolute;
      inset: 0;
      overflow: hidden;
      z-index: 0;
    }

    .hero-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .hero-video-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(110deg,
          rgba(0, 0, 0, .55) 0%,
          rgba(0, 0, 0, .42) 50%,
          rgba(0, 0, 0, .25) 100%);
    }

    /* Hero text adapts to dark video background */
    .hero h1 {
      color: #fff;
    }

    .eyebrow {
      background: rgba(255, 255, 255, .18);
      border-color: rgba(255, 255, 255, .30);
      color: #fff;
    }

    .eyebrow .dot {
      background: var(--terracotta);
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      gap: clamp(32px, 5vw, 56px);
      grid-template-columns: 1fr;
      align-items: start;
    }

    @media (min-width: 960px) {
      .hero-grid {
        grid-template-columns: 1.1fr .9fr;
        align-items: center;
      }
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 500;
      color: var(--slate);
      background: var(--surface);
      border: 1px solid var(--line);
      padding: 6px 12px 6px 8px;
      border-radius: 999px;
      box-shadow: var(--sh-sm);
    }

    .eyebrow .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--terracotta);
    }

    .hero h1 {
      font-size: clamp(34px, 5.4vw, 60px);
      font-weight: 700;
      line-height: 1.05;
      margin-top: 20px;
    }

    .hero h1 .accent {
      color: var(--terracotta);
      display: inline-block;
      position: relative;
    }

    .hero h1 .accent::after {
      content: "";
      position: absolute;
      bottom: -3px;
      left: 0;
      right: 0;
      height: 3px;
      border-radius: 2px;
      background: var(--terracotta);
      opacity: .35;
    }

    .hero-sub {
      margin-top: 20px;
      font-size: clamp(16px, 1.6vw, 18px);
      color: rgba(255, 255, 255, .95);
      max-width: 52ch;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 20px 28px;
      margin-top: 28px;
    }

    .hero-meta .m {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 14px;
      color: #fff;
    }

    .hero-meta .m svg {
      color: var(--terracotta);
      flex-shrink: 0;
    }

    .hero-meta .m strong {
      font-weight: 600;
    }

    /* ── Form card ───────────────────────────────────────────────────── */
    .form-card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--r-2xl);
      padding: clamp(24px, 3vw, 32px);
      box-shadow: var(--sh-lg);
      position: relative;
    }

    .direct-contact {
      text-align: center;
    }

    .direct-title {
      color: var(--slate);
      font-size: clamp(24px, 2.6vw, 32px);
      font-weight: 700;
      line-height: 1.12;
      letter-spacing: -.025em;
      text-wrap: balance;
    }

    .direct-title span {
      color: var(--terracotta);
    }

    .direct-copy {
      max-width: 40ch;
      margin: 10px auto 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
    }

    .direct-phone {
      display: inline-block;
      margin-top: 14px;
      color: var(--slate);
      font-family: 'Sora', sans-serif;
      font-size: clamp(28px, 4vw, 38px);
      font-weight: 700;
      line-height: 1;
      letter-spacing: -.035em;
      text-decoration: none;
      font-variant-numeric: tabular-nums;
      transition: color .2s ease;
    }

    .direct-phone:hover {
      color: var(--terracotta);
    }

    .direct-actions {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(186px, 1fr));
      gap: 10px;
      margin-top: 18px;
    }

    .direct-action {
      min-height: 50px;
      border: 1px solid var(--slate);
      border-radius: var(--r-lg);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 12px 16px;
      color: var(--slate);
      font-family: 'Sora', sans-serif;
      font-size: 14px;
      font-weight: 600;
      white-space: nowrap;
      text-decoration: none;
      transition: background .2s ease, border-color .2s ease, color .2s ease, transform .1s ease;
    }

    .direct-action.primary {
      border-color: var(--terracotta);
      background: var(--terracotta);
      color: #fff;
      box-shadow: 0 8px 24px -8px rgba(232, 118, 26, .55);
    }

    .direct-action.primary:hover {
      border-color: var(--terracotta-dk);
      background: var(--terracotta-dk);
      transform: translateY(-1px);
    }

    .direct-action.secondary:hover {
      background: var(--slate);
      color: #fff;
      transform: translateY(-1px);
    }

    .direct-note {
      margin-top: 12px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.5;
    }

    .callback-details {
      margin-top: 20px;
      padding-top: 16px;
      border-top: 1px solid var(--line);
    }

    .callback-details summary {
      min-height: 44px;
      border-radius: var(--r-md);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      padding: 10px 12px;
      color: var(--slate);
      font-family: 'Sora', sans-serif;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      list-style: none;
      transition: background .2s ease, color .2s ease;
    }

    .callback-details summary::-webkit-details-marker {
      display: none;
    }

    .callback-details summary::after {
      content: '+';
      color: var(--terracotta);
      font-size: 18px;
      line-height: 1;
    }

    .callback-details[open] summary::after {
      content: '\2212';
    }

    .callback-details summary:hover {
      background: var(--bg);
    }

    .callback-content {
      padding-top: 18px;
    }

    @media (max-width: 420px) {
      .direct-actions {
        grid-template-columns: 1fr;
      }
    }

    .form-card::before {
      content: "";
      position: absolute;
      top: -1px;
      left: 24px;
      right: 24px;
      height: 4px;
      border-radius: 0 0 4px 4px;
      background: var(--terracotta);
    }

    .form-head {
      margin-bottom: 20px;
    }

    .form-head h2 {
      font-size: 22px;
      font-weight: 600;
      line-height: 1.2;
    }

    .form-head p {
      color: var(--muted);
      font-size: 14px;
      margin-top: 6px;
    }

    .field {
      margin-bottom: 14px;
    }

    .field-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    @media (max-width: 480px) {
      .field-row {
        grid-template-columns: 1fr;
      }
    }

    label {
      display: block;
      font-size: 13px;
      font-weight: 500;
      color: var(--slate);
      margin-bottom: 6px;
    }

    label .req {
      color: var(--terracotta);
      margin-left: 2px;
    }

    .input,
    .select,
    .textarea {
      width: 100%;
      font-family: inherit;
      font-size: 15px;
      color: var(--ink);
      background: var(--bg);
      border: 1px solid var(--line);
      border-radius: var(--r-md);
      padding: 11px 13px;
      transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
      outline: none;
      appearance: none;
      -webkit-appearance: none;
    }

    .input::placeholder,
    .textarea::placeholder {
      color: var(--muted-2);
    }

    .input:hover,
    .select:hover,
    .textarea:hover {
      border-color: #D8D0C0;
    }

    .input:focus,
    .select:focus,
    .textarea:focus {
      border-color: var(--terracotta);
      background: var(--surface);
      box-shadow: 0 0 0 4px rgba(232, 118, 26, .11);
    }

    .input.invalid,
    .select.invalid,
    .textarea.invalid {
      border-color: var(--error);
      box-shadow: 0 0 0 3px rgba(178, 58, 46, .09);
    }

    .textarea {
      resize: vertical;
      min-height: 96px;
    }

    .select {
      appearance: none;
      -webkit-appearance: none;
      cursor: pointer;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'><path d='M3.5 5.25L7 8.75L10.5 5.25' stroke='%231C2B3A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
      background-repeat: no-repeat;
      background-position: right 13px center;
      padding-right: 38px;
    }

    .err-msg {
      font-size: 12px;
      color: var(--error);
      margin-top: 5px;
      display: none;
    }

    .field.error .err-msg {
      display: block;
    }

    .submit-btn {
      width: 100%;
      background: var(--terracotta);
      color: #fff;
      border: none;
      cursor: pointer;
      padding: 15px 22px;
      margin-top: 6px;
      border-radius: var(--r-lg);
      font-family: 'Sora', sans-serif;
      font-weight: 600;
      font-size: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: background .15s ease, transform .08s ease, box-shadow .15s ease;
      letter-spacing: -0.005em;
    }

    .submit-btn:hover {
      background: var(--terracotta-dk);
      box-shadow: 0 6px 20px -4px rgba(232, 118, 26, .4);
    }

    .submit-btn:active {
      transform: translateY(1px);
    }

    .submit-btn:disabled {
      opacity: .7;
      cursor: wait;
    }

    .submit-btn .spin {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, .4);
      border-top-color: #fff;
      animation: spin .8s linear infinite;
      display: none;
    }

    .submit-btn.loading .spin {
      display: inline-block;
    }

    .submit-btn.loading .lbl {
      opacity: .85;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    .form-footnote {
      margin-top: 13px;
      font-size: 12px;
      color: var(--muted);
      text-align: center;
      line-height: 1.5;
    }

    .form-success {
      text-align: center;
      padding: 16px 8px 4px;
    }

    .form-success .check {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: rgba(47, 122, 77, .1);
      color: var(--success);
      display: grid;
      place-items: center;
      margin: 0 auto 16px;
    }

    .form-success h3 {
      font-size: 22px;
      font-weight: 600;
    }

    .form-success p {
      color: var(--muted);
      font-size: 15px;
      margin-top: 8px;
    }

    /* form error alert */
    .form-error-alert {
      display: none;
      margin-bottom: 12px;
      background: rgba(178, 58, 46, .08);
      border: 1px solid rgba(178, 58, 46, .2);
      border-radius: var(--r-md);
      padding: 10px 14px;
      font-size: 13px;
      color: var(--error);
      line-height: 1.5;
    }

    .form-error-alert.visible {
      display: block;
    }

    /* ── Trust band ──────────────────────────────────────────────────── */
    .trust {
      background: var(--slate);
      color: #fff;
      padding: 34px 0;
      position: relative;
      overflow: hidden;
    }

    .trust::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image: repeating-linear-gradient(-45deg,
          transparent 0, transparent 20px,
          rgba(255, 255, 255, .015) 20px, rgba(255, 255, 255, .015) 21px);
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px 16px;
      position: relative;
    }

    @media (min-width: 760px) {
      .trust-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
      }
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    @media (min-width: 760px) {
      .trust-item {
        padding: 0 24px;
        border-right: 1px solid rgba(255, 255, 255, .1);
      }

      .trust-item:last-child {
        border-right: none;
      }

      .trust-item:first-child {
        padding-left: 0;
      }
    }

    .trust-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(232, 118, 26, .16);
      color: var(--terracotta);
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .trust-text strong {
      display: block;
      font-family: 'Sora', sans-serif;
      font-weight: 600;
      font-size: 15px;
      color: #fff;
      line-height: 1.2;
    }

    .trust-text span {
      font-size: 12px;
      color: rgba(255, 255, 255, .58);
      margin-top: 3px;
      display: block;
    }

    /* ── Section headers ─────────────────────────────────────────────── */
    section.block {
      padding: clamp(64px, 9vw, 112px) 0;
    }

    .section-head {
      max-width: 720px;
      margin-bottom: clamp(32px, 5vw, 56px);
    }

    .section-eyebrow {
      font-family: 'JetBrains Mono', ui-monospace, monospace;
      font-size: 12px;
      color: var(--terracotta-ink);
      text-transform: uppercase;
      letter-spacing: .12em;
      margin-bottom: 14px;
    }

    .section-head h2 {
      font-size: clamp(28px, 3.6vw, 40px);
      font-weight: 700;
      line-height: 1.1;
    }

    .section-head p {
      color: var(--muted);
      margin-top: 14px;
      font-size: 16px;
      max-width: 56ch;
    }

    /* ── Section head row (title left + CTA right) ──────────────────── */
    .section-head-wrap {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: clamp(32px, 5vw, 56px);
    }

    .section-head-wrap .section-head {
      margin-bottom: 0;
      flex: 1;
      min-width: 0;
    }

    .section-head-cta {
      flex-shrink: 0;
      padding-top: clamp(72px, 8vw, 90px);
    }

    @media (max-width: 640px) {
      .section-head-wrap {
        flex-direction: column;
      }

      .section-head-cta {
        padding-top: 0;
      }
    }

    /* ── Services ────────────────────────────────────────────────────── */
    .services-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }

    @media (min-width: 640px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 960px) {
      .services-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .service {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--r-xl);
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
      position: relative;
      overflow: hidden;
    }

    .service::before {
      content: "";
      position: absolute;
      left: 0;
      top: 14px;
      bottom: 14px;
      width: 3px;
      border-radius: 0 3px 3px 0;
      background: var(--terracotta);
      transform: scaleY(0);
      transform-origin: center;
      transition: transform .25s ease;
    }

    .service:hover {
      transform: translateY(-3px);
      border-color: #D8D0C0;
      box-shadow: var(--sh-md);
    }

    .service:hover::before {
      transform: scaleY(1);
    }

    .service-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(232, 118, 26, .10);
      color: var(--terracotta);
      display: grid;
      place-items: center;
    }

    .service h3 {
      font-size: 18px;
      font-weight: 600;
    }

    .service p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
      flex-grow: 1;
    }

    .service-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 600;
      color: var(--terracotta);
      text-decoration: none;
      margin-top: 4px;
      transition: gap .15s ease;
    }

    .service-cta:hover {
      gap: 10px;
    }

    /* ── Réalisations (gallery4 carousel) ───────────────────────────── */
    .real-carousel-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 32px;
    }

    .real-carousel-header>div:first-child {
      flex: 1 1 auto;
    }

    .real-carousel-header h2 {
      font-size: clamp(28px, 3.6vw, 40px);
      font-weight: 700;
      line-height: 1.1;
    }

    .real-arrow-ol {
      display: none;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 5;
    }

    @media (min-width: 640px) {
      .real-arrow-ol {
        display: flex;
      }
    }

    #real-prev {
      left: 14px;
    }

    #real-next {
      right: 14px;
    }

    .real-arrow {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid var(--terracotta);
      background: var(--terracotta);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      transition: background .2s, border-color .2s;
    }

    .real-arrow:hover:not(:disabled) {
      background: var(--terracotta-dk);
      border-color: var(--terracotta-dk);
    }

    .real-arrow:disabled {
      opacity: 0.4;
      cursor: default;
    }

    .real-arrow svg {
      width: 20px;
      height: 20px;
    }

    .real-carousel-right {
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 12px;
      padding-top: clamp(72px, 8vw, 90px);
    }

    @media (max-width: 640px) {
      .real-carousel-header {
        flex-direction: column;
      }

      .real-carousel-right {
        padding-top: 0;
        width: 100%;
        align-items: flex-start;
      }
    }

    .real-carousel-outer {
      width: 100%;
      overflow: hidden;
      position: relative;
    }

    .real-carousel-track {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding-left: var(--pad);
      scroll-padding-left: var(--pad);
    }

    .real-carousel-track::-webkit-scrollbar {
      display: none;
    }

    @media (min-width: 1260px) {
      .real-carousel-track {
        padding-left: calc((100vw - var(--max)) / 2 + var(--pad));
        scroll-padding-left: calc((100vw - var(--max)) / 2 + var(--pad));
      }
    }

    .real-card {
      flex: 0 0 280px;
      scroll-snap-align: start;
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      min-height: 27rem;
      cursor: pointer;
      display: block;
      text-decoration: none;
      color: inherit;
    }

    @media (min-width: 640px) {
      .real-card {
        flex: 0 0 320px;
      }
    }

    @media (min-width: 960px) {
      .real-card {
        flex: 0 0 360px;
      }
    }

    .real-card:last-child {
      margin-right: var(--pad);
    }

    @media (min-width: 1260px) {
      .real-card:last-child {
        margin-right: calc((100vw - var(--max)) / 2 + var(--pad));
      }
    }

    .real-img {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }

    .real-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .3s ease;
    }

    .real-card:hover .real-img img {
      transform: scale(1.05);
    }

    .real-card-overlay {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(to bottom, transparent 30%, rgba(18, 28, 40, .5) 65%, rgba(18, 28, 40, .88) 100%);
    }

    .real-card-body {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 24px;
      color: #fff;
      pointer-events: none;
    }

    .real-card-tag {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px;
      letter-spacing: .1em;
      text-transform: uppercase;
      background: rgba(232, 118, 26, .85);
      color: #fff;
      padding: 3px 8px;
      border-radius: 4px;
      display: inline-block;
      margin-bottom: 10px;
    }

    .real-card-title {
      font-size: 17px;
      font-weight: 600;
      line-height: 1.3;
      margin-bottom: 4px;
    }

    .real-card-desc {
      font-size: 13px;
      color: rgba(255, 255, 255, .72);
      line-height: 1.5;
    }

    .real-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 24px;
    }

    .real-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      border: none;
      padding: 0;
      cursor: pointer;
      background: rgba(28, 43, 58, .2);
      transition: background .2s;
    }

    .real-dot.active {
      background: var(--terracotta);
    }

    /* ── Avis (Carousel) ───────────────────────────────────────────── */
    .reviews {
      background: #F1EDE5;
    }

    .reviews-rating {
      text-align: center;
      margin-bottom: 44px;
    }

    .rating-score {
      display: inline-flex;
      align-items: baseline;
      gap: 10px;
    }

    .rating-star {
      color: #F4B400;
      font-size: 34px;
      line-height: 1;
    }

    .rating-num {
      font-family: 'Sora', sans-serif;
      font-size: 42px;
      font-weight: 700;
      color: var(--slate);
      line-height: 1;
    }

    .rating-max {
      font-size: 20px;
      color: var(--muted);
      font-weight: 500;
    }

    .rating-label {
      color: var(--muted);
      font-size: 14px;
      margin-top: 8px;
    }

    .reviews-carousel-wrap {
      position: relative;
      padding: 0 28px;
    }

    .carousel-viewport {
      overflow: hidden;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.4s cubic-bezier(.25, .46, .45, .94);
      will-change: transform;
    }

    .carousel-slide {
      flex-shrink: 0;
      padding: 6px 9px;
      box-sizing: border-box;
    }

    .review {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--r-xl);
      padding: 24px 22px;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
      transition: transform .2s ease, box-shadow .2s ease;
      height: 100%;
      box-sizing: border-box;
    }

    .review:hover {
      transform: translateY(-2px);
      box-shadow: var(--sh-md);
    }

    .review-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }

    .avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--slate);
      color: #fff;
      display: grid;
      place-items: center;
      font-family: 'Sora', sans-serif;
      font-weight: 600;
      font-size: 15px;
      flex-shrink: 0;
    }

    .review-meta .who {
      font-weight: 600;
      font-size: 14px;
      color: var(--slate);
      line-height: 1.3;
    }

    .review-meta .where {
      font-size: 12px;
      color: var(--muted);
      margin-top: 2px;
    }

    .stars {
      display: flex;
      gap: 3px;
      color: #F4B400;
      margin-bottom: 12px;
    }

    .review p.body {
      color: var(--slate);
      font-size: 15px;
      line-height: 1.65;
      flex-grow: 1;
    }

    .review-date {
      font-size: 13px;
      color: var(--muted);
      margin-top: 16px;
    }

    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--surface);
      border: 1px solid var(--line);
      display: grid;
      place-items: center;
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
      transition: background .2s, color .2s, box-shadow .2s;
      color: var(--slate);
    }

    .carousel-btn:hover {
      background: var(--slate);
      color: #fff;
      box-shadow: var(--sh-md);
    }

    .carousel-btn:focus-visible {
      outline: 2px solid var(--terracotta);
      outline-offset: 2px;
    }

    .carousel-prev {
      left: -2px;
    }

    .carousel-next {
      right: -2px;
    }

    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 28px;
    }

    .cdot {
      width: 8px;
      height: 8px;
      border-radius: 4px;
      background: rgba(28, 43, 58, .2);
      cursor: pointer;
      border: none;
      padding: 0;
      transition: background .25s, width .25s;
    }

    .cdot.active {
      background: var(--terracotta);
      width: 24px;
    }

    .reviews-gmb {
      display: flex;
      justify-content: center;
      margin-top: 36px;
    }

    .btn-gmb {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 13px 26px;
      border: 1.5px solid var(--line);
      border-radius: 50px;
      background: var(--surface);
      font-size: 15px;
      font-weight: 500;
      color: var(--slate);
      text-decoration: none;
      transition: box-shadow .2s, border-color .2s;
      white-space: nowrap;
    }

    .btn-gmb:hover {
      box-shadow: var(--sh-md);
      border-color: #aaa;
    }

    /* ── Final CTA ───────────────────────────────────────────────────── */
    .final-cta {
      background: var(--slate);
      color: #fff;
      padding: clamp(56px, 8vw, 96px) 0;
      position: relative;
      overflow: hidden;
    }

    .final-cta::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(700px 400px at 100% 50%, rgba(232, 118, 26, .1), transparent 60%),
        radial-gradient(500px 500px at 0% 50%, rgba(232, 118, 26, .05), transparent 60%);
    }

    .final-cta-inner {
      display: grid;
      gap: 28px;
      grid-template-columns: 1fr;
      align-items: center;
      position: relative;
    }

    @media (min-width: 860px) {
      .final-cta-inner {
        grid-template-columns: 1.4fr auto;
        gap: 48px;
      }
    }

    .final-cta h2 {
      color: #fff;
      font-size: clamp(28px, 3.6vw, 38px);
      font-weight: 700;
      line-height: 1.15;
    }

    .final-cta p {
      color: rgba(255, 255, 255, .7);
      margin-top: 14px;
      font-size: 16px;
      max-width: 52ch;
    }

    .btn-terracotta {
      background: var(--terracotta);
      color: #fff;
      text-decoration: none;
      padding: 16px 26px;
      border-radius: var(--r-lg);
      font-family: 'Sora', sans-serif;
      font-weight: 600;
      font-size: 16px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: background .15s ease, box-shadow .15s ease;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .btn-terracotta:hover {
      background: var(--terracotta-dk);
      box-shadow: 0 8px 24px -6px rgba(232, 118, 26, .5);
    }

    /* ── FAQ accordion ──────────────────────────────────────────────── */
    .faq-list {
      margin-top: 48px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-item {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      overflow: hidden;
      transition: border-color .2s ease, box-shadow .2s ease;
    }

    .faq-item:hover {
      border-color: var(--terracotta);
      box-shadow: var(--sh-sm);
    }

    .faq-item.open {
      border-color: var(--terracotta);
      box-shadow: var(--sh-md);
    }

    .faq-q {
      width: 100%;
      background: none;
      border: none;
      padding: 20px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      cursor: pointer;
      text-align: left;
      font-family: 'Sora', system-ui, sans-serif;
      font-size: clamp(15px, 1.5vw, 16px);
      font-weight: 600;
      color: var(--slate);
      line-height: 1.4;
    }

    .faq-q-icon {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--bg);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s ease, transform .3s ease;
    }

    .faq-item.open .faq-q-icon {
      background: var(--terracotta);
      transform: rotate(45deg);
    }

    .faq-q-icon svg {
      display: block;
    }

    .faq-item.open .faq-q-icon svg path {
      stroke: #fff;
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s cubic-bezier(.4, 0, .2, 1);
    }

    .faq-a-inner {
      padding: 0 24px 20px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
    }

    .faq-a-inner strong {
      color: var(--slate);
    }

    .faq-a-inner a {
      color: var(--terracotta);
      text-decoration: none;
    }

    .faq-a-inner a:hover {
      text-decoration: underline;
    }

    /* ── Footer ──────────────────────────────────────────────────────── */
    footer {
      background: var(--bg);
      border-top: 1px solid var(--line);
      padding: 44px 0 32px;
    }

    /* Ce bloc @media était ouvert À L'INTÉRIEUR de `.foot`, avant ses
       déclarations — artefact de l'extraction du <style> en ligne. Les
       navigateurs le lisaient comme une imbrication CSS, donc en portée
       `.foot` : sans effet à l'écran, aucune page du site n'utilisant
       .hero-quick-contact, .hero-call-btn ni .hero-sms-link. Sorti ici au
       niveau supérieur, sans rien supprimer. home.css, extrait de la même
       façon depuis index.html, ne présente pas ce défaut. */
    @media (max-width: 480px) {
      .hero-quick-contact {
        display: grid;
      }

      .hero-call-btn {
        width: 100%;
      }

      .hero-sms-link {
        text-align: center;
      }
    }

    .foot {
      display: grid;
      grid-template-columns: 1fr;
      gap: 28px;
      align-items: start;
    }

    @media (min-width: 760px) {
      .foot {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
      }
    }

    .foot .col h5 {
      font-family: 'Sora', sans-serif;
      font-weight: 600;
      font-size: 12px;
      color: var(--slate);
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: .07em;
    }

    .foot .col p,
    .foot .col a {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.8;
      text-decoration: none;
      display: block;
    }

    .foot .col a:hover {
      color: var(--terracotta);
    }

    .foot-bottom {
      margin-top: 32px;
      padding-top: 20px;
      border-top: 1px solid var(--line);
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: space-between;
      font-size: 12px;
      color: var(--muted);
    }

    .foot-bottom a {
      color: var(--muted);
      text-decoration: none;
    }

    .foot-bottom a:hover {
      color: var(--terracotta);
    }

    /* ── Footer brand override (light bg) ───────────────────────────── */
    footer .brand {
      color: var(--slate);
    }

    footer .brand-mark {
      background: var(--terracotta);
      border-color: var(--terracotta);
      color: #fff;
    }

    footer .brand-name {
      color: var(--slate);
    }

    footer .brand-sub {
      color: var(--muted);
    }

    /* ── Hamburger button ────────────────────────────────────────────── */
    .nav-burger {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      padding: 9px;
      background: none;
      border: none;
      cursor: pointer;
      color: #fff;
      flex-shrink: 0;
    }

    @media (min-width: 860px) {
      .nav-burger {
        display: none;
      }
    }

    .nav-burger span {
      display: block;
      width: 22px;
      height: 2px;
      background: currentColor;
      border-radius: 2px;
      transition: transform .25s ease, opacity .2s ease;
    }

    .nav-burger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .nav-burger.open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .nav-burger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* ── Mobile fullscreen menu ──────────────────────────────────────── */
    .mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 48;
      background: rgba(18, 28, 40, .97);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s ease;
    }

    @media (min-width: 860px) {
      .mobile-menu {
        display: none !important;
      }
    }

    .mobile-menu.open {
      opacity: 1;
      pointer-events: all;
    }

    .mobile-menu a {
      color: rgba(255, 255, 255, .80);
      text-decoration: none;
      font-family: 'Sora', sans-serif;
      font-size: clamp(26px, 7vw, 38px);
      font-weight: 600;
      letter-spacing: -0.02em;
      padding: 10px 0;
      transition: color .15s ease;
    }

    .mobile-menu a:hover {
      color: #fff;
    }

    .mobile-menu .mobile-cta {
      margin-top: 28px;
      background: var(--terracotta);
      color: #fff !important;
      padding: 14px 34px;
      border-radius: var(--r-lg);
      font-size: clamp(16px, 4vw, 18px);
      box-shadow: 0 6px 24px rgba(232, 118, 26, .40);
    }

    .mobile-menu .mobile-cta:hover {
      background: var(--terracotta-dk);
    }

    /* ── Mobile sticky floating CTA ─────────────────────────────────── */
    .sticky-cta {
      position: fixed;
      bottom: 18px;
      left: 16px;
      right: 16px;
      z-index: 40;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 8px;
      transform: translateY(calc(100% + 40px));
      transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    }

    .sticky-cta.visible {
      transform: translateY(0);
    }

    .sticky-cta a {
      min-height: 50px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 18px;
      font-family: 'Sora', sans-serif;
      font-weight: 600;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(28, 43, 58, .22), 0 2px 6px rgba(0, 0, 0, .12);
    }

    .sticky-cta-call {
      background: var(--terracotta);
      color: #fff;
    }

    .sticky-cta-sms {
      border: 1px solid rgba(255, 255, 255, .22);
      background: rgba(28, 43, 58, .96);
      color: #fff;
    }

    @media (min-width: 640px) {
      .sticky-cta {
      justify-content: center;
        display: none !important;
      }
    }
      font-size: 14px;

    /* ── Mentions légales dialog ─────────────────────────────────────── */
    dialog {
      border: none;
      border-radius: var(--r-2xl);
      padding: 0;
      margin: auto;
      max-width: min(700px, 96vw);
      max-height: 90vh;
      box-shadow: var(--sh-lg);
      overflow: hidden;
    }

    dialog::backdrop {
      background: rgba(28, 43, 58, .55);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }

    .dialog-inner {
      display: flex;
      flex-direction: column;
      max-height: 90vh;
    }

    .dialog-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 28px;
      border-bottom: 1px solid var(--line);
      flex-shrink: 0;
    }

    .dialog-head h2 {
      font-size: 20px;
      font-weight: 600;
    }

    .dialog-close {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      border: 1px solid var(--line);
      background: transparent;
      cursor: pointer;
      display: grid;
      place-items: center;
      color: var(--muted);
      transition: background .15s ease, color .15s ease;
    }

    .dialog-close:hover {
      background: var(--bg);
      color: var(--slate);
    }

    .dialog-body {
      padding: 24px 28px 32px;
      overflow-y: auto;
      font-size: 14px;
      color: var(--muted);
      line-height: 1.75;
    }

    .dialog-body h3 {
      font-size: 15px;
      font-weight: 600;
      color: var(--slate);
      margin: 20px 0 6px;
    }

    .dialog-body h3:first-child {
      margin-top: 0;
    }

    .dialog-body p {
      margin-bottom: 8px;
    }

    .dialog-body a {
      color: var(--terracotta);
    }

    /* ── Accessibility ───────────────────────────────────────────────── */
    :focus-visible {
      outline: 2px solid var(--terracotta);
      outline-offset: 2px;
    }

    .nav-cta:focus-visible,
    .submit-btn:focus-visible,
    .btn-terracotta:focus-visible {
      outline-offset: 3px;
    }

    /* ── Lightbox ────────────────────────────────────────────── */
    #lightbox {
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(0, 0, 0, .88);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity .2s ease;
    }

    #lightbox.open {
      opacity: 1;
      pointer-events: all;
    }

    #lb-img {
      max-width: 90vw;
      max-height: 90vh;
      object-fit: contain;
      border-radius: var(--r-md);
      display: block;
    }

    #lb-close {
      position: absolute;
      top: 16px;
      right: 20px;
      background: rgba(255, 255, 255, .15);
      border: 1px solid rgba(255, 255, 255, .2);
      color: #fff;
      width: 40px;
      height: 40px;
      border-radius: 10px;
      cursor: pointer;
      display: grid;
      place-items: center;
      font-size: 22px;
      line-height: 1;
      transition: background .15s ease;
    }

    #lb-close:hover {
      background: rgba(255, 255, 255, .28);
    }

    #lb-prev,
    #lb-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, .15);
      border: 1px solid rgba(255, 255, 255, .2);
      color: #fff;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      cursor: pointer;
      display: grid;
      place-items: center;
      font-size: 28px;
      line-height: 1;
      transition: background .15s ease;
    }

    #lb-prev:hover,
    #lb-next:hover {
      background: rgba(255, 255, 255, .28);
    }

    #lb-prev {
      left: 16px;
    }

    #lb-next {
      right: 16px;
    }

    #lb-caption {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      color: rgba(255, 255, 255, .65);
      font-size: 13px;
      white-space: nowrap;
      max-width: 80vw;
      overflow: hidden;
      text-overflow: ellipsis;
      text-align: center;
    }

    @media (max-width: 600px) {
      #lb-prev {
        left: 6px;
      }

      #lb-next {
        right: 6px;
      }

      #lb-prev,
      #lb-next {
        width: 38px;
        height: 38px;
        font-size: 22px;
      }
    }

    /* ── Wizard 3-step ────────────────────────────────────────── */

    /* Stars + promo header */
    .wiz-stars {
      font-size: 13px;
      color: var(--slate);
      text-align: center;
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .wiz-promo {
      background: var(--terracotta);
      color: #fff;
      border-radius: var(--r-md);
      padding: 10px 14px;
      font-size: 13px;
      font-weight: 600;
      text-align: center;
      line-height: 1.4;
      margin-bottom: 14px;
    }

    .wiz-title {
      font-size: 20px;
      font-weight: 700;
      text-align: center;
      color: var(--slate);
    }

    .wiz-subtitle {
      font-size: 13px;
      color: var(--muted);
      text-align: center;
      margin-top: 4px;
      margin-bottom: 16px;
    }

    /* Progress circles */
    .wiz-progress {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .wiz-step-num {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 2px solid var(--line);
      background: var(--surface);
      color: var(--muted);
      display: grid;
      place-items: center;
      flex-shrink: 0;
      font-family: 'Sora', sans-serif;
      font-size: 14px;
      font-weight: 600;
      transition: background .2s ease, border-color .2s ease, color .2s ease;
    }

    .wiz-step-num.active {
      background: var(--slate);
      border-color: var(--slate);
      color: #fff;
    }

    .wiz-step-num.done {
      background: var(--terracotta);
      border-color: var(--terracotta);
      color: #fff;
    }

    .wiz-progress-line {
      flex: 1;
      max-width: 60px;
      height: 2px;
      background: var(--line);
      transition: background .3s ease;
    }

    .wiz-progress-line.done {
      background: var(--terracotta);
    }

    /* Step panels */
    .wizard-step {
      display: none;
    }

    .wizard-step.active {
      display: block;
    }

    /* Step 1 — type cards */
    .wiz-step-hint {
      font-size: 13px;
      color: var(--muted);
      text-align: center;
      margin-bottom: 14px;
    }

    .wiz-type-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 4px;
    }

    .wiz-type-card {
      background: var(--surface);
      border: 2px solid var(--line);
      border-radius: var(--r-lg);
      padding: 16px 10px;
      cursor: pointer;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      font-family: inherit;
      transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
    }

    .wiz-type-card:hover {
      border-color: var(--terracotta);
      box-shadow: 0 0 0 3px rgba(232, 118, 26, .10);
    }

    .wiz-type-card.selected {
      border-color: var(--terracotta);
      background: rgba(232, 118, 26, .06);
      box-shadow: 0 0 0 3px rgba(232, 118, 26, .15);
    }

    .wiz-card-icon {
      font-size: 28px;
      line-height: 1;
    }

    .wiz-card-label {
      font-size: 13px;
      font-weight: 600;
      color: var(--slate);
      line-height: 1.2;
    }

    .wiz-type-card.full {
      grid-column: 1 / -1;
      flex-direction: row;
      justify-content: center;
      gap: 12px;
    }

    .wiz-type-card.full .wiz-card-icon {
      font-size: 24px;
    }

    .wiz-type-card.full .wiz-card-label {
      font-size: 14px;
    }


    /* Nav buttons (Suivant / Retour) */
    .wiz-btn-row {
      display: flex;
      gap: 10px;
      margin-top: 14px;
    }

    .wiz-back-btn {
      background: var(--bg);
      color: var(--slate);
      border: 1px solid var(--line);
      cursor: pointer;
      padding: 13px 16px;
      border-radius: var(--r-lg);
      font-family: 'Sora', sans-serif;
      font-weight: 600;
      font-size: 15px;
      transition: background .15s ease;
      white-space: nowrap;
    }

    .wiz-back-btn:hover {
      background: var(--line);
    }

    .wiz-back-btn:active {
      transform: translateY(1px);
    }

    .wiz-next-btn {
      flex: 1;
      background: var(--slate);
      color: #fff;
      border: none;
      cursor: pointer;
      padding: 15px 22px;
      border-radius: var(--r-lg);
      font-family: 'Sora', sans-serif;
      font-weight: 600;
      font-size: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: background .15s ease, transform .08s ease;
    }

    .wiz-next-btn:hover {
      background: var(--slate-2);
    }

    .wiz-next-btn:active {
      transform: translateY(1px);
    }

    /* Form credential badges */
    .form-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 5px 14px;
      margin-top: 12px;
      margin-bottom: 4px;
      justify-content: center;
    }

    .form-badges span {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.7;
    }

    /* ── Zone d'intervention ─────────────────────────────────────── */
    .zone-layout {
      display: grid;
      grid-template-columns: 460px 1fr;
      gap: clamp(32px, 4vw, 56px);
      align-items: center;
    }

    @media (max-width: 960px) {
      .zone-layout {
        grid-template-columns: 1fr;
      }

      .zone-map-wrap {
        max-width: 460px;
        margin: 0 auto;
      }
    }

    .zone-map-inner {
      position: relative;
      display: block;
    }

    .zone-map-img {
      width: 100%;
      height: auto;
      display: block;
    }

    .map-pin {
      position: absolute;
      transform: translate(-50%, -50%);
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .map-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--terracotta);
      flex-shrink: 0;
      box-shadow: 0 0 0 3px rgba(232, 118, 26, .25), 0 0 0 2px #fff;
    }

    .map-label {
      font-size: 11px;
      font-weight: 700;
      color: var(--slate);
      white-space: nowrap;
      line-height: 1;
      background: rgba(255, 255, 255, .9);
      padding: 2px 6px;
      border-radius: 4px;
    }

    .zone-groups {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .zone-group-label {
      font-family: 'JetBrains Mono', ui-monospace, monospace;
      font-size: 11px;
      color: var(--terracotta);
      text-transform: uppercase;
      letter-spacing: .12em;
      margin-bottom: 10px;
      margin-top: 0;
    }

    .zone-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
    }

    .zone-pill {
      display: inline-block;
      background: rgba(28, 43, 58, .06);
      border: 1px solid rgba(28, 43, 58, .1);
      border-radius: 100px;
      padding: 5px 13px;
      font-size: 13px;
      color: var(--slate);
      line-height: 1.4;
      white-space: nowrap;
    }

    a.zone-pill {
      text-decoration: none;
      transition: background .15s ease, border-color .15s ease, color .15s ease;
    }

    a.zone-pill:hover {
      background: rgba(232, 118, 26, .10);
      border-color: rgba(232, 118, 26, .35);
      color: var(--terracotta);
    }

    .zone-closing {
      margin-top: 32px;
      font-size: 15px;
      color: var(--muted);
      font-style: italic;
    }

    .zone-closing a {
      color: var(--terracotta);
      text-decoration: none;
      font-style: normal;
      font-weight: 500;
    }

    .zone-closing a:hover {
      text-decoration: underline;
    }

    /* ── Blog Bento ──────────────────────────────────────────────── */
    .blog-bento {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 16px;
    }

    .blog-feat {
      grid-column: 1;
    }

    .blog-cta-t {
      grid-column: 2;
    }

    @media (max-width: 640px) {
      .blog-bento {
        grid-template-columns: 1fr;
      }

      .blog-feat,
      .blog-cta-t {
        grid-column: auto;
      }
    }

    .blog-card {
      border-radius: var(--r-xl);
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      transition: transform .2s ease, box-shadow .2s ease;
      cursor: pointer;
    }

    .blog-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--sh-lg);
    }

    .blog-card:focus-visible {
      outline: 2px solid var(--terracotta);
      outline-offset: 3px;
    }

    .blog-card-feat {
      background: var(--slate);
      padding: clamp(28px, 4vw, 44px);
      min-height: 320px;
      position: relative;
    }

    .blog-card-feat::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image: repeating-linear-gradient(-45deg,
          transparent 0, transparent 20px,
          rgba(255, 255, 255, .018) 20px, rgba(255, 255, 255, .018) 21px);
      border-radius: inherit;
    }

    .blog-body {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .blog-card-feat .blog-ttl {
      color: #fff;
      font-size: clamp(20px, 2.5vw, 28px);
    }

    .blog-card-feat .blog-exc {
      color: rgba(255, 255, 255, .6);
      line-clamp: 3;
      -webkit-line-clamp: 3;
    }

    .blog-card-feat .blog-meta-row {
      color: rgba(255, 255, 255, .4);
    }

    .blog-card-feat .blog-cat-tag {
      background: rgba(232, 118, 26, .18);
      color: var(--terracotta);
      border: 1px solid rgba(232, 118, 26, .3);
    }

    .blog-card-feat .blog-read-link {
      color: var(--terracotta);
    }

    .blog-card-sm {
      background: var(--surface);
      border: 1px solid var(--line);
      padding: 22px 24px;
      box-shadow: var(--sh-sm);
    }

    .blog-card-cta {
      background: var(--terracotta);
      padding: clamp(22px, 3vw, 36px);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .blog-cta-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      color: rgba(255, 255, 255, .65);
      text-transform: uppercase;
      letter-spacing: .12em;
      margin-bottom: 8px;
    }

    .blog-cta-title {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: clamp(20px, 2.2vw, 26px);
      color: #fff;
      line-height: 1.2;
      letter-spacing: -0.01em;
    }

    .blog-cta-arrow {
      margin-top: 28px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, .18);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, .28);
      border-radius: 999px;
      padding: 10px 20px;
      font-family: 'Sora', sans-serif;
      font-weight: 600;
      font-size: 14px;
      width: fit-content;
      transition: background .15s ease;
    }

    .blog-card-cta:hover .blog-cta-arrow {
      background: rgba(255, 255, 255, .28);
    }

    .blog-cat-tag {
      display: inline-flex;
      align-items: center;
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: .1em;
      background: rgba(232, 118, 26, .10);
      color: var(--terracotta);
      border-radius: 100px;
      padding: 3px 11px;
      margin-bottom: 12px;
      width: fit-content;
    }

    .blog-ttl {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: clamp(15px, 1.4vw, 18px);
      color: var(--slate);
      line-height: 1.3;
      letter-spacing: -0.01em;
      margin-bottom: 8px;
    }

    .blog-exc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
      display: -webkit-box;
      line-clamp: 2;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 12px;
    }

    .blog-meta-row {
      font-size: 12px;
      color: var(--muted-2);
      font-family: 'JetBrains Mono', monospace;
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: auto;
    }

    .blog-read-link {
      margin-top: 12px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-weight: 600;
      font-size: 14px;
      color: var(--terracotta);
      transition: gap .15s ease;
    }

    .blog-read-link:hover {
      gap: 10px;
    }

    /* ── Cookie consent banner ───────────────────────────────────────── */
    .cookie-banner {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: min(600px, calc(100vw - 32px));
      background: var(--slate);
      color: rgba(255, 255, 255, .9);
      padding: 20px 24px;
      border-radius: var(--r-xl);
      box-shadow: var(--sh-lg);
      z-index: 9999;
      display: flex;
      flex-direction: column;
      gap: 14px;
      font-size: 14px;
      line-height: 1.5;
      transition: opacity .35s ease, transform .35s ease, width .35s ease,
        padding .35s ease, bottom .35s ease, left .35s ease, right .35s ease;
    }

    .cookie-banner.hidden {
      opacity: 0;
      pointer-events: none;
      transform: translateX(-50%) translateY(20px);
    }

    .cookie-banner.minimized {
      left: auto;
      right: 20px;
      transform: none;
      width: auto;
      padding: 12px 18px;
      cursor: pointer;
      gap: 0;
      bottom: 20px;
    }

    .cookie-banner.minimized:hover {
      background: #243648;
    }

    .cookie-banner p {
      margin: 0;
      color: rgba(255, 255, 255, .80);
    }

    .cookie-banner strong {
      color: #fff;
    }

    .cookie-content {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .cookie-banner.minimized .cookie-content {
      display: none;
    }

    .cookie-mini {
      display: none;
      align-items: center;
      gap: 8px;
      font-family: 'Sora', sans-serif;
      font-weight: 600;
      font-size: 13px;
      color: #fff;
    }

    .cookie-banner.minimized .cookie-mini {
      display: flex;
    }

    .cookie-actions {
      display: flex;
      gap: 8px;
      justify-content: flex-end;
      flex-wrap: wrap;
    }

    .cookie-btn {
      padding: 9px 16px;
      border-radius: var(--r-md);
      font-family: 'Sora', sans-serif;
      font-weight: 600;
      font-size: 13px;
      border: none;
      cursor: pointer;
      transition: background .15s ease;
      white-space: nowrap;
    }

    .cookie-btn-essential {
      background: rgba(255, 255, 255, .10);
      color: rgba(255, 255, 255, .80);
    }

    .cookie-btn-essential:hover {
      background: rgba(255, 255, 255, .18);
    }

    .cookie-btn-refuse {
      background: rgba(255, 255, 255, .06);
      color: rgba(255, 255, 255, .55);
      font-weight: 500;
    }

    .cookie-btn-refuse:hover {
      background: rgba(255, 255, 255, .12);
      color: rgba(255, 255, 255, .80);
    }

    .cookie-btn-accept {
      background: var(--terracotta);
      color: #fff;
    }

    .cookie-btn-accept:hover {
      background: var(--terracotta-dk);
    }
    /* ── Paire de contact — composant partagé (voir brand.css) ──────── */
    .cta-pair {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(248px, 100%), 1fr));
      gap: 12px;
      max-width: 560px;
      margin-top: 24px;
    }

    .btn-call,
    .btn-sms {
      min-height: 64px;
      min-width: 0;
      border-radius: var(--r-lg);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 12px 20px;
      font-family: 'Sora', sans-serif;
      text-decoration: none;
      transition: background .2s ease, color .2s ease, border-color .2s ease,
        box-shadow .2s ease, transform .1s ease;
    }

    .btn-call svg,
    .btn-sms svg {
      flex-shrink: 0;
    }

    .btn-call {
      background: var(--terracotta);
      color: #fff;
      box-shadow: 0 8px 26px -8px rgba(232, 118, 26, .7);
    }

    .btn-call:hover {
      background: var(--terracotta-dk);
      transform: translateY(-1px);
    }

    .btn-call:active {
      transform: translateY(0);
    }

    .btn-sms {
      background: rgba(255, 255, 255, .10);
      border: 1px solid rgba(255, 255, 255, .34);
      color: #fff;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 8px 24px -12px rgba(0, 0, 0, .7);
    }

    .btn-sms:hover {
      background: rgba(255, 255, 255, .18);
      border-color: rgba(255, 255, 255, .6);
      color: #fff;
      transform: translateY(-1px);
    }

    .btn-sms:active {
      transform: translateY(0);
    }

    .btn-lines {
      display: flex;
      flex-direction: column;
      gap: 2px;
      min-width: 0;
    }

    .btn-lines b {
      font-weight: 600;
      font-size: 15px;
      line-height: 1.2;
      white-space: nowrap;
    }

    .btn-lines span {
      font-family: 'Inter', sans-serif;
      font-size: 12.5px;
      font-weight: 500;
      line-height: 1.2;
      white-space: nowrap;
    }

    .btn-call .btn-lines span {
      color: rgba(255, 255, 255, .82);
      font-variant-numeric: tabular-nums;
      letter-spacing: .02em;
    }

    .btn-sms .btn-lines span {
      color: rgba(255, 255, 255, .72);
    }
