/* ═══════════════════════════════════════════
   LM COUVERTURE — PREMIUM EDITION
   Direction créative : "Silence du Toit"
   Typographie : Playfair Display + Outfit + Space Mono
   Palette : Charbon / Stone / Or brûlé
   ═══════════════════════════════════════════ */

:root {
    /* — Palette — */
    --ch: #0e0c0a; /* charbon profond */
    --ch2: #171310; /* charbon medium */
    --ch3: #211d19; /* charbon clair */
    --ch4: #2c2620; /* charbon surface */
    --stone: #e8e2d9; /* stone claire */
    --stone2: #f4f0eb; /* stone très claire */
    --or: #b8955a; /* or brûlé */
    --or2: #d4ad72; /* or clair */
    --or-dim: rgba(184, 149, 90, 0.1);
    --or-glow: rgba(184, 149, 90, 0.18);
    --muted: #8f8478; /* gris stone — WCAG AA ≥4.5:1 */
    --muted2: #9b9189;
    --line: rgba(232, 226, 217, 0.065);
    --line-or: rgba(184, 149, 90, 0.18);

    /* — Typo — */
    --serif: "Playfair Display", Georgia, serif;
    --sans: "Outfit", system-ui, sans-serif;
    --mono: "Space Mono", monospace;

    /* — Motion — */
    --e1: cubic-bezier(0.19, 1, 0.22, 1);
    --e2: cubic-bezier(0.77, 0, 0.175, 1);
    --e3: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* — Layout — */
    --max: 1280px;
    --gutter: clamp(1.25rem, 4vw, 3rem);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 80px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--sans);
    background: var(--ch);
    color: var(--stone);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none;
}
@media (pointer: coarse) {
    body {
        cursor: auto;
    }
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    font-family: inherit;
    cursor: none;
    border: none;
    background: none;
    color: inherit;
}
@media (pointer: coarse) {
    button {
        cursor: pointer;
    }
}

/* ── GRAIN ── */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px;
}

/* ── LAYOUT ── */
.wrap {
    width: min(var(--max), calc(100% - var(--gutter) * 2));
    margin-inline: auto;
}

/* ═══════════════════════════════════════════
   LOADER
   ═══════════════════════════════════════════ */
#loader {
    position: fixed;
    inset: 0;
    background: var(--ch);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    transition:
        opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.6s;
}
#loader.out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-word {
    overflow: hidden;
    line-height: 1;
}
.loader-word span {
    display: block;
    font-family: var(--serif);
    font-size: clamp(5rem, 14vw, 12rem);
    font-weight: 400;
    color: var(--stone2);
    letter-spacing: -0.04em;
    transform: translateY(110%);
    animation: liftup 0.9s var(--e1) 0.1s forwards;
}
.loader-word:nth-child(2) span {
    animation-delay: 0.22s;
    font-style: italic;
    color: var(--or);
}

.loader-bar-wrap {
    width: 200px;
    height: 1px;
    background: rgba(232, 226, 217, 0.12);
    margin-top: 2.4rem;
    overflow: hidden;
}
.loader-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--or), var(--or2));
    animation: loadBar 1.1s var(--e2) 0.5s forwards;
}
.loader-sub {
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 1.2rem;
    opacity: 0;
    animation: fadeup 0.5s ease 0.9s forwards;
}

@keyframes liftup {
    to {
        transform: none;
    }
}
@keyframes loadBar {
    to {
        width: 100%;
    }
}
@keyframes fadeup {
    to {
        opacity: 1;
    }
}

/* ═══════════════════════════════════════════
   CURSOR
   ═══════════════════════════════════════════ */
#cur {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--or);
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
    transition:
        transform 0.1s,
        width 0.3s var(--e3),
        height 0.3s var(--e3),
        background 0.3s;
}
#cur-trail {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(184, 149, 90, 0.45);
    pointer-events: none;
    z-index: 9996;
    transform: translate(-50%, -50%);
    transition:
        border-color 0.3s,
        background 0.3s;
}
body.hov #cur {
    width: 3px;
    height: 3px;
    background: var(--or2);
}
body.hov #cur-trail {
    width: 56px;
    height: 56px;
    border-color: var(--or);
    background: rgba(184, 149, 90, 0.06);
}
body.down #cur-trail {
    width: 30px;
    height: 30px;
}
@media (pointer: coarse) {
    #cur,
    #cur-trail {
        display: none;
    }
}

/* ═══════════════════════════════════════════
   SCROLL PROGRESS
   ═══════════════════════════════════════════ */
#sprog {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--or), var(--or2));
    z-index: 9000;
    box-shadow: 0 0 12px rgba(184, 149, 90, 0.55);
    transition: width 0.1s linear;
}

/* ═══════════════════════════════════════════════════════
   NAV — V4 REFACTORED (source unique, breakpoints propres)
   Testé : 1920 · 1440 · 1366 · 1280 · 1100 · 1024 · 768 · mobile
   ═══════════════════════════════════════════════════════ */

/* Variable de hauteur partagée avec scroll-padding et local-hero */
:root {
    --nav-h: 80px;
}

/* ── Structure ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition:
        background 0.4s var(--e1),
        border-color 0.4s,
        box-shadow 0.4s;
}
.nav.stuck {
    background: rgba(14, 12, 10, 0.96);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-bottom-color: var(--line-or);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.42);
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
}

/* ── Bloc marque (gauche) ── */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
    text-decoration: none;
}
.nav-brand-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    opacity: 0.92;
    flex-shrink: 0;
    display: block;
}
.nav-brand-copy {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.nav-brand-name {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--stone2);
    line-height: 1.1;
    white-space: nowrap;
}
.nav-brand-tag {
    font-family: var(--mono);
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    color: var(--muted);
    text-transform: uppercase;
    white-space: nowrap;
}

/* ── Liens (centre) ── */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: center;
}
.nav-links a {
    font-family: var(--mono);
    font-size: 0.66rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--muted2);
    padding: 0.55rem 0.7rem;
    border-radius: 2px;
    transition:
        color 0.22s,
        background 0.22s;
    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
}
.nav-links a:hover {
    color: var(--stone2);
    background: rgba(232, 226, 217, 0.05);
}
.nav-links a.active,
.nav-links a.cur {
    color: var(--or);
}

/* ── Actions (droite) ── */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}

/* Numéro de téléphone */
.nav-tel {
    font-family: var(--mono);
    font-size: 0.66rem;
    letter-spacing: 0.06em;
    color: var(--muted);
    transition: color 0.22s;
    white-space: nowrap;
    text-decoration: none;
}
.nav-tel:hover {
    color: var(--stone2);
}

/* Séparateur vertical */
.nav-sep {
    width: 1px;
    height: 1.2rem;
    background: rgba(232, 226, 217, 0.12);
    flex-shrink: 0;
}

/* Bouton urgence (outlined) */
.nav-urgence {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.85rem;
    border: 1px solid rgba(232, 226, 217, 0.2);
    color: var(--stone);
    background: transparent;
    font-family: var(--mono);
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 1px;
    transition:
        border-color 0.22s,
        color 0.22s,
        background 0.22s,
        box-shadow 0.22s;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}
.nav-urgence:hover {
    border-color: rgba(232, 226, 217, 0.5);
    color: var(--stone2);
    background: rgba(232, 226, 217, 0.04);
    box-shadow: 0 0 14px rgba(232, 226, 217, 0.06);
}
.nav-urgence svg {
    opacity: 0.75;
    flex-shrink: 0;
}

/* Bouton devis (solid or) */
.nav-devis {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.15rem;
    background: var(--or);
    color: var(--ch);
    font-family: var(--mono);
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 1px;
    transition:
        background 0.22s,
        color 0.22s,
        transform 0.2s var(--e3),
        box-shadow 0.22s;
    box-shadow: 0 4px 20px rgba(184, 149, 90, 0.28);
    text-decoration: none;
    white-space: nowrap;
}
.nav-devis:hover {
    background: var(--or2);
    transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(184, 149, 90, 0.4);
    color: var(--ch);
}

/* ── Burger ── */
.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border-radius: 3px;
    border: 1px solid rgba(232, 226, 217, 0.14);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: border-color 0.22s;
    flex-shrink: 0;
}
.nav-burger:hover {
    border-color: rgba(232, 226, 217, 0.35);
}
.nav-burger span {
    display: block;
    height: 1px;
    width: 19px;
    background: var(--stone);
    border-radius: 1px;
    transition:
        transform 0.3s var(--e1),
        opacity 0.28s,
        width 0.28s;
}
.nav-burger.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.nav-burger.open span:nth-child(2) {
    opacity: 0;
    width: 0;
}
.nav-burger.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* ── Drawer mobile ── */
.nav-drawer {
    position: fixed;
    inset: 0;
    background: rgba(10, 8, 6, 0.98);
    backdrop-filter: blur(24px);
    z-index: 895;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem var(--gutter) 3rem;
    gap: 0;
    transform: translateY(-100%);
    transition: transform 0.48s var(--e1);
    overflow-y: auto;
}
.nav-drawer.open {
    transform: none;
}

.nav-drawer a {
    font-family: var(--serif);
    font-size: clamp(1.75rem, 6vw, 3rem);
    font-weight: 400;
    color: var(--stone2);
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--line);
    transition:
        color 0.22s,
        padding-left 0.3s var(--e1);
    text-decoration: none;
    display: block;
}
.nav-drawer a:hover {
    color: var(--or);
    padding-left: 0.9rem;
}

.drawer-phone {
    font-family: var(--mono) !important;
    font-size: 0.78rem !important;
    color: var(--muted) !important;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 2rem;
    border-bottom: none !important;
    padding-bottom: 0.35rem !important;
}
.drawer-devis {
    font-family: var(--mono) !important;
    font-size: 0.72rem !important;
    color: var(--or) !important;
    background: transparent !important; /* annule le fond doré de .nav-devis */
    box-shadow: none !important; /* annule l'ombre de .nav-devis */
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-bottom: none !important;
    padding-top: 0.35rem !important;
}

/* Close button drawer */
.nav-drawer-close {
    position: fixed;
    top: 1.4rem;
    right: 1.4rem;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(184, 149, 90, 0.35);
    background: transparent;
    cursor: pointer;
    z-index: 900;
    transition:
        border-color 0.22s,
        background 0.22s;
}
.nav-drawer-close:hover {
    border-color: rgba(184, 149, 90, 0.7);
    background: rgba(184, 149, 90, 0.08);
}
.nav-drawer-close span {
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
    pointer-events: none;
}
/* Croix × via pseudo-éléments — fonctionne avec UN seul <span> */
.nav-drawer-close span::before,
.nav-drawer-close span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--stone2, #f4f0eb);
    border-radius: 1px;
}
.nav-drawer-close span::before {
    transform: translateY(-50%) rotate(45deg);
}
.nav-drawer-close span::after {
    transform: translateY(-50%) rotate(-45deg);
}

/* ── BREAKPOINTS NAV (ordre croissant, source unique) ── */

/* 1280px : masquer le tel + séparateur pour gagner de la place */
@media (max-width: 1280px) {
    .nav-tel,
    .nav-sep {
        display: none;
    }
}

/* 1100px : compresser les liens */
@media (max-width: 1100px) {
    .nav-links a {
        padding-inline: 0.5rem;
        font-size: 0.62rem;
        letter-spacing: 0.08em;
    }
    .nav-actions {
        gap: 0.5rem;
    }
}

/* 1024px : masquer urgence pour garder les liens visibles */
@media (max-width: 1024px) {
    .nav-urgence {
        display: none;
    }
    .nav-links a {
        padding-inline: 0.42rem;
        font-size: 0.6rem;
    }
}

/* 900px : bascule en mode mobile */
@media (max-width: 900px) {
    :root {
        --nav-h: 72px;
    }
    .nav {
        height: 72px;
        background: rgba(14, 12, 10, 0.96);
        border-bottom-color: rgba(184, 149, 90, 0.14);
    }
    .nav-links {
        display: none;
    }
    .nav-urgence {
        display: none;
    }
    .nav-burger {
        display: flex;
    }
    html.menu-open,
    html.menu-open body {
        overflow: hidden;
    }
}

/* 520px : masquer bouton devis (burger suffit) */
@media (max-width: 520px) {
    .nav-devis {
        display: none;
    }
    .nav-brand-tag {
        display: none;
    }
    .nav-brand-img {
        width: 38px;
        height: 38px;
    }
}

/* ── Drawer styles mobile étendus ── */
@media (max-width: 900px) {
    .nav-drawer {
        padding-top: calc(env(safe-area-inset-top, 0px) + 90px);
        padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 2.5rem);
        padding-right: max(var(--gutter), env(safe-area-inset-right, 0px));
        padding-left: max(var(--gutter), env(safe-area-inset-left, 0px));
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }
    .nav-drawer-close {
        top: calc(env(safe-area-inset-top, 0px) + 13px);
        right: calc(env(safe-area-inset-right, 0px) + 14px);
    }
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
    min-height: max(760px, 100svh);
    display: grid;
    grid-template-columns: 1fr 48%;
    position: relative;
    overflow: hidden;
    background: var(--ch);
}

/* Left text column */
.hero-l {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 9rem 4rem 9rem 0;
    position: relative;
    z-index: 2;
}

/* Diagonal line accent */
.hero-l::before {
    content: "";
    position: absolute;
    top: 0;
    right: -1px;
    width: 1px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        var(--line-or) 25%,
        var(--line-or) 75%,
        transparent 100%
    );
}

.hero-overline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.2rem;
    opacity: 0;
}
.hero-overline-rule {
    width: 36px;
    height: 1px;
    background: var(--or);
}
.hero-overline span {
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--or);
}

.hero-h1 {
    font-family: var(--serif);
    font-size: clamp(2.6rem, 5.5vw, 5.2rem);
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: -0.03em;
    color: var(--stone2);
    margin-bottom: 2rem;
    overflow: hidden;
}
.hero-h1 em {
    font-style: italic;
    color: var(--or);
}

.hero-p {
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--muted2);
    max-width: 440px;
    margin-bottom: 2.8rem;
    opacity: 0;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    opacity: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 1px;
    transition:
        transform 0.22s var(--e3),
        box-shadow 0.22s,
        background 0.22s,
        color 0.22s,
        border-color 0.22s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.07);
    transform: translateX(-101%);
    transition: transform 0.35s var(--e1);
}
.btn:hover::after {
    transform: none;
}
.btn:hover {
    transform: translateY(-2px);
}

.btn-solid {
    background: var(--or);
    color: var(--ch);
    font-weight: 700;
    box-shadow: 0 6px 28px rgba(184, 149, 90, 0.28);
}
.btn-solid:hover {
    background: var(--or2);
    box-shadow: 0 14px 48px rgba(184, 149, 90, 0.4);
    color: var(--ch);
}

.btn-line {
    border: 1px solid rgba(232, 226, 217, 0.22);
    color: var(--stone);
    background: transparent;
    margin-top: 10px;
}
.btn-line:hover {
    border-color: rgba(232, 226, 217, 0.55);
    color: var(--stone2);
}

/* Hero stats ribbon */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    z-index: 1;
    opacity: 0;
    pointer-events: none;
}
.hero-stat {
    padding: 1.6rem 2rem;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    background: rgba(14, 12, 10, 0.6);
    backdrop-filter: blur(8px);
}
.hero-stat:last-child {
    border-right: none;
}
.hero-stat-n {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 500;
    color: var(--stone2);
    line-height: 1;
    letter-spacing: -0.03em;
}
.hero-stat-n sup {
    font-size: 0.55em;
    color: var(--or);
    vertical-align: top;
    margin-top: 0.15em;
}
.hero-stat-l {
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}

/* Hero right — image */
.hero-r {
    position: relative;
    overflow: hidden;
}
.hero-r-img {
    position: absolute;
    inset: 0;
    background: url("../../img/couverture-lauzach.jpg") center / cover no-repeat;
    transform: scale(1.06);
    transition: transform 0.12s linear;
}
.hero-r-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, var(--ch) 0%, rgba(14, 12, 10, 0.2) 35%, transparent 65%),
        linear-gradient(to top, rgba(14, 12, 10, 0.5) 0%, transparent 40%);
}
.hero-r-tag {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
    font-family: var(--mono);
    font-size: 0.58rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(232, 226, 217, 0.3);
    white-space: nowrap;
    z-index: 2;
}

/* Vertical scrolling hint */
.hero-scroll {
    position: absolute;
    bottom: 6rem;
    left: 0;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    opacity: 0;
    z-index: 4;
}
.hero-scroll-line {
    width: 40px;
    height: 1px;
    background: var(--or);
    transform-origin: left;
    animation: drawLine 0.8s var(--e1) 2.4s forwards;
    transform: scaleX(0);
}
.hero-scroll-txt {
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
}
@keyframes drawLine {
    to {
        transform: scaleX(1);
    }
}

/* ═══════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════ */
.marquee {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--ch2);
    overflow: hidden;
    padding: 0.8rem 0;
}
.marquee-inner {
    display: flex;
    gap: 0;
    width: max-content;
    animation: marquee 30s linear infinite;
}
.marquee:hover .marquee-inner {
    animation-play-state: paused;
}
.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0 2.2rem;
    border-right: 1px solid var(--line);
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
}
.marquee-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--or);
    flex-shrink: 0;
}
@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}

/* ═══════════════════════════════════════════
   SECTION UTILS
   ═══════════════════════════════════════════ */
.s {
    padding: clamp(4rem, 9vw, 8rem) 0;
    position: relative;
    overflow: hidden;
}
.s-alt {
    background: var(--ch2);
}
.s-dark {
    background: var(--ch3);
}

/* Ambient glow */
.s::before,
.s-alt::before,
.s-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        ellipse 50% 35% at 50% 0%,
        rgba(184, 149, 90, 0.04),
        transparent 60%
    );
}

.s-label {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    margin-bottom: 1.6rem;
}
.s-label-n {
    font-family: var(--mono);
    font-size: 0.6rem;
    color: var(--or);
    letter-spacing: 0.1em;
}
.s-label-rule {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--line-or), transparent);
}
.s-label-txt {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
}

h2.headline {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4.5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: -0.03em;
    color: var(--stone2);
}
h2.headline em {
    font-style: italic;
    color: var(--or);
    font-weight: 400;
}
h3.subhead {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: var(--stone2);
}

.body-copy {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--muted2);
}

/* [data-reveal] → défini dans premium-v4.css (global) */

/* ═══════════════════════════════════════════
   SERVICES — EDITORIAL ACCORDION
   ═══════════════════════════════════════════ */
.services-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: end;
    margin-bottom: 3.5rem;
}

.services-accordion {
    border-top: 1px solid var(--line);
}
.svc {
    border-bottom: 1px solid var(--line);
}

.svc-hd {
    display: grid;
    grid-template-columns: 4rem 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 1.7rem 0;
    cursor: pointer;
    position: relative;
    transition: padding-left 0.3s var(--e1);
}
.svc-hd:hover {
    padding-left: 0.6rem;
}

.svc-n {
    font-family: var(--mono);
    font-size: 0.68rem;
    color: var(--or);
    letter-spacing: 0.1em;
}
.svc-title {
    font-family: var(--serif);
    font-size: clamp(1.3rem, 2.8vw, 2rem);
    font-weight: 400;
    color: var(--stone2);
    letter-spacing: -0.02em;
    transition: color 0.25s;
}
.svc.open .svc-title {
    color: var(--or);
}

.svc-ico {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--muted);
    flex-shrink: 0;
    transition:
        transform 0.4s var(--e1),
        border-color 0.3s,
        background 0.3s,
        color 0.3s;
}
.svc.open .svc-ico {
    transform: rotate(45deg);
    border-color: var(--line-or);
    background: var(--or-dim);
    color: var(--or);
}

.svc-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.48s var(--e1);
}
.svc.open .svc-body {
    grid-template-rows: 1fr;
}

.svc-body-in {
    overflow: hidden;
    padding-left: 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.svc-body-in-pad {
    padding-bottom: 2.2rem;
}

.svc-desc {
    font-size: 0.87rem;
    font-weight: 300;
    line-height: 1.88;
    color: var(--muted2);
}

.svc-tags {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding-top: 0.2rem;
}
.svc-tags li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    font-family: var(--mono);
    color: rgba(232, 226, 217, 0.45);
    letter-spacing: 0.03em;
}
.svc-tags li::before {
    content: "";
    width: 18px;
    height: 1px;
    background: var(--or);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   GALLERY — CINEMATIC GRID
   ═══════════════════════════════════════════ */
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 340px 300px;
    gap: 3px;
}
.gf {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
}
.gf:first-child {
    grid-row: span 2;
}

.gf img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.07);
    transition: transform 0.7s var(--e1);
}
.gf:hover img {
    transform: scale(1.13);
}

.gf-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 12, 10, 0.65) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.35s;
}
.gf:hover .gf-veil {
    opacity: 1;
}

.gf-cap {
    position: absolute;
    bottom: 1.2rem;
    left: 1.4rem;
    right: 1.4rem;
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stone);
    transform: translateY(8px);
    opacity: 0;
    transition:
        transform 0.35s var(--e1),
        opacity 0.35s;
    z-index: 1;
}
.gf:hover .gf-cap {
    transform: none;
    opacity: 1;
}

.gallery-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0 0;
}
.gallery-foot p {
    font-size: 0.83rem;
    font-weight: 300;
    color: var(--muted);
}

/* ═══════════════════════════════════════════
   NUMBERS
   ═══════════════════════════════════════════ */
.numbers {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.numbers-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.num-cell {
    padding: 3.5rem 2.5rem;
    border-right: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}
.num-cell:last-child {
    border-right: none;
}

.num-cell::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--or);
    transition: width 0.9s var(--e1);
}
.num-cell.on::after {
    width: 100%;
}

.num-v {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 4.5vw, 4.5rem);
    font-weight: 400;
    color: var(--stone2);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 0.5rem;
}
.num-v em {
    font-style: normal;
    color: var(--or);
    font-size: 0.55em;
    vertical-align: top;
    margin-top: 0.25em;
}
.num-l {
    font-family: var(--mono);
    font-size: 0.63rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testi-stage {
    position: relative;
    padding: 5rem 0;
    text-align: center;
    overflow: hidden;
}
.testi-bg-quote {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--serif);
    font-size: clamp(8rem, 18vw, 16rem);
    color: rgba(184, 149, 90, 0.04);
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

.testi-slide {
    display: none;
}
.testi-slide.on {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    animation: fadeSlide 0.45s var(--e1);
}
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
}

.testi-txt {
    font-family: var(--serif);
    font-size: clamp(1.35rem, 3.2vw, 2.4rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.42;
    color: var(--stone2);
    max-width: 820px;
    letter-spacing: -0.018em;
}
.testi-auth {
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--or);
}
.testi-auth::before {
    content: "— ";
}

.testi-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2.4rem;
}
.testi-pip {
    height: 1px;
    background: var(--muted2);
    transition:
        width 0.35s var(--e1),
        background 0.35s;
    cursor: pointer;
}
.testi-pip {
    width: 20px;
}
.testi-pip.on {
    width: 44px;
    background: var(--or);
}

/* ═══════════════════════════════════════════
   PROCESS — TIMELINE HORIZONTAL
   ═══════════════════════════════════════════ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}
.process-grid::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--line-or) 15%,
        var(--line-or) 85%,
        transparent
    );
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
    position: relative;
}
.process-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--line-or);
    background: var(--ch);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-size: 0.68rem;
    color: var(--or);
    z-index: 1;
    transition:
        background 0.3s,
        box-shadow 0.3s;
}
.process-step:hover .process-circle {
    background: var(--or-dim);
    box-shadow: 0 0 0 8px rgba(184, 149, 90, 0.06);
}
.process-step h3 {
    font-family: var(--serif);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--stone2);
    letter-spacing: -0.01em;
}
.process-step p {
    font-size: 0.78rem;
    font-weight: 300;
    line-height: 1.72;
    color: var(--muted);
}

/* ═══════════════════════════════════════════
   ZONE
   ═══════════════════════════════════════════ */
.zone-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.zone-vis {
    max-width: 380px;
    margin: 0 auto;
}

.zone-txt h2 {
    margin-bottom: 1.4rem;
}
.zone-txt .body-copy {
    margin-bottom: 0.8rem;
}
.zone-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 1.5rem 0 2rem;
}
.zone-chip {
    padding: 0.28rem 0.75rem;
    border: 1px solid var(--line);
    border-radius: 1px;
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    transition:
        border-color 0.2s,
        color 0.2s;
}
.zone-chip:hover {
    border-color: var(--line-or);
    color: var(--or);
}

/* ═══════════════════════════════════════════
   ENTREPRISE
   ═══════════════════════════════════════════ */
.entreprise-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.engag-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 2rem;
}
.engag {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.2rem 1.4rem;
    border-left: 2px solid var(--or);
    background: rgba(184, 149, 90, 0.04);
    transition:
        background 0.25s,
        border-color 0.25s;
}
.engag:hover {
    background: var(--or-dim);
}
.engag-ico {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.engag h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--stone2);
    margin-bottom: 0.3rem;
}
.engag p {
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq-list {
    max-width: 740px;
    margin: 3rem auto 0;
}
.faq-row {
    border-top: 1px solid var(--line);
}
.faq-row:last-child {
    border-bottom: 1px solid var(--line);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.5rem 0;
    cursor: pointer;
    text-align: left;
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--stone2);
    letter-spacing: -0.01em;
    transition:
        color 0.25s,
        padding-left 0.28s var(--e1);
}
.faq-q:hover {
    padding-left: 0.5rem;
}
.faq-row.open .faq-q {
    color: var(--or);
}

.faq-arr {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--muted);
    flex-shrink: 0;
    transition:
        transform 0.4s var(--e1),
        border-color 0.3s,
        background 0.3s,
        color 0.3s;
}
.faq-row.open .faq-arr {
    transform: rotate(45deg);
    border-color: var(--line-or);
    background: var(--or-dim);
    color: var(--or);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition:
        max-height 0.42s var(--e1),
        opacity 0.28s ease,
        visibility 0s linear 0.42s;
}
.faq-row.open .faq-a {
    max-height: 220px;
    opacity: 1;
    visibility: visible;
    transition:
        max-height 0.42s var(--e1),
        opacity 0.28s ease,
        visibility 0s;
}
.faq-a p {
    margin: 0;
    padding: 0 0 1.4rem;
    font-size: 0.87rem;
    font-weight: 300;
    line-height: 1.88;
    color: var(--muted2);
}

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */
.contact-shell {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    border: 1px solid var(--line-or);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 3rem;
}

.contact-l {
    padding: 4rem 3.5rem;
    background: var(--ch3);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.4rem;
    border-right: 1px solid var(--line-or);
}
/* Gold top accent */
.contact-l::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--or), var(--or2) 50%, transparent);
}

.contact-l h2 {
    margin-bottom: 0;
}
.contact-l > p {
    font-size: 0.87rem;
    font-weight: 300;
    line-height: 1.88;
    color: var(--muted2);
}

.contact-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.cm-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.cm-label {
    font-family: var(--mono);
    font-size: 0.58rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--or);
}
.cm-val {
    font-size: 0.87rem;
    font-weight: 300;
    color: var(--muted2);
    line-height: 1.5;
}
.cm-val a {
    transition: color 0.22s;
}
.cm-val a:hover {
    color: var(--stone2);
}

.contact-quote {
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}
.contact-quote q {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 400;
    color: var(--stone2);
    line-height: 1.6;
    letter-spacing: -0.01em;
    quotes: none;
}

.contact-r {
    padding: 4rem 3.5rem;
    background: var(--ch2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    min-width: 0;
}

/* Form — underline style */
.form-lux .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
}
.form-lux .f-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1.4rem;
}
.form-lux .f-label {
    font-family: var(--mono);
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
}
.form-lux input,
.form-lux select,
.form-lux textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(232, 226, 217, 0.12);
    padding: 0.7rem 0;
    font-family: var(--sans);
    font-size: 0.87rem;
    font-weight: 300;
    color: var(--stone);
    outline: none;
    transition: border-color 0.28s;
    -webkit-appearance: none;
    width: 100%;
    border-radius: 0;
}
.form-lux input:focus,
.form-lux select:focus,
.form-lux textarea:focus {
    border-bottom-color: var(--or);
}
.form-lux input::placeholder,
.form-lux textarea::placeholder {
    color: rgba(124, 112, 104, 0.5);
}
.form-lux select option {
    background: var(--ch2);
    color: var(--stone);
}
.form-lux textarea {
    resize: none;
    height: 85px;
}

.f-check {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    align-items: start;
    gap: 0.7rem;
    margin: 0.5rem 0 1.8rem;
    width: 100%;
    overflow: hidden;
}
.f-check input[type="checkbox"] {
    width: 14px;
    height: 14px;
    min-width: 14px;
    max-width: 14px;
    margin-top: 0.22rem;
    accent-color: var(--or);
    flex-shrink: 0;
    padding: 0;
    -webkit-appearance: checkbox;
    appearance: auto;
}
.f-check span {
    font-size: 0.76rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.65;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
}
.form-note-sm {
    font-size: 0.68rem;
    font-weight: 300;
    color: var(--muted);
    text-align: center;
    margin-top: 0.75rem;
    line-height: 1.55;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
    background: #090706;
    border-top: 1px solid rgba(184, 149, 90, 0.12);
    padding: 4.5rem 0 1.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--line);
}
.footer-brand-name {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--stone2);
    margin-bottom: 0.55rem;
}
.footer-brand-desc {
    font-size: 0.78rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--muted);
    max-width: 265px;
}
.footer-col h4 {
    font-family: var(--mono);
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.2rem;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.footer-links a,
.footer-links li {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.5;
    transition:
        color 0.22s,
        transform 0.22s;
    display: inline-block;
}
.footer-links a:hover {
    color: var(--stone2);
    transform: translateX(3px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1.8rem;
}
.footer-bottom p {
    font-size: 0.7rem;
    font-weight: 300;
    color: rgba(124, 112, 104, 0.5);
}

/* ═══════════════════════════════════════════
   FIXED UI
   ═══════════════════════════════════════════ */
/* WA Button */

/* Scroll top */
#scroll-top {
    position: fixed;
    right: 1.6rem;
    bottom: 5.6rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line-or);
    background: var(--ch2);
    color: var(--or);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition:
        opacity 0.28s,
        transform 0.28s;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
#scroll-top.on {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}
#scroll-top:hover {
    background: var(--or-dim);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1100px) {
    .hero {
        grid-template-columns: 1fr;
    }
    .hero-r {
        display: none;
    }
    .hero-l {
        padding: 9rem 0 5rem;
    }
    .hero-stats {
        position: static;
    }
    .gallery-grid {
        grid-template-rows: 300px 260px;
    }
    .numbers-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .num-cell:nth-child(2) {
        border-right: none;
    }
    .num-cell:nth-child(3) {
        border-top: 1px solid var(--line);
    }
    .zone-layout,
    .entreprise-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .zone-vis {
        max-width: 280px;
    }
    .contact-shell {
        grid-template-columns: 1fr;
    }
    .contact-l {
        border-right: none;
        border-bottom: 1px solid var(--line-or);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-intro {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .svc-body-in {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-grid::before {
        display: none;
    }
}

@media (max-width: 680px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .gf:first-child {
        grid-row: auto;
        min-height: 320px;
    }
    .gf {
        min-height: 220px;
    }
    .numbers-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .num-cell:nth-child(2) {
        border-right: none;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    .svc-hd {
        grid-template-columns: 3rem 1fr auto;
        gap: 0.75rem;
    }
    .svc-body-in {
        padding-left: 0;
        padding: 0 0 0.5rem;
    }
    .svc-body-in .svc-body-in-pad {
        padding-bottom: 1.2rem;
    }
    .form-lux .form-row {
        grid-template-columns: 1fr;
    }
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    .hero-ctas .btn {
        width: 100%;
    }
    .contact-l,
    .contact-r {
        padding: 2.2rem 1.6rem;
    }
    .contact-shell {
        border-radius: 2px;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
    .f-check {
        align-items: flex-start;
    }
    .f-check span {
        font-size: 0.73rem;
        line-height: 1.55;
        word-break: break-word;
    }
    .zone-vis {
        max-width: 240px;
    }
    .testi-txt {
        font-size: 1.15rem;
    }
    .hero-stat {
        padding: 1.2rem 1rem;
    }
    .hero-stat-n {
        font-size: 1.6rem;
    }
    .marquee-item {
        padding: 0 1.5rem;
        font-size: 0.58rem;
    }
}

/* Extra small */
@media (max-width: 420px) {
    .wrap {
        width: calc(100% - 2rem);
    }
    .hero-l {
        padding-top: 7.5rem;
        padding-bottom: 3rem;
    }
    .contact-l,
    .contact-r {
        padding: 1.8rem 1.3rem;
    }
}

/* scrollbar */
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-track {
    background: var(--ch);
}
::-webkit-scrollbar-thumb {
    background: rgba(184, 149, 90, 0.22);
    border-radius: 2px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(184, 149, 90, 0.42);
}
:focus-visible {
    outline: 2px solid var(--or);
    outline-offset: 4px;
}

/* Patch V3 — contact RGPD + autocomplete + zone links */
.form-lux .f-check {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    align-items: start;
    column-gap: 0.75rem;
    width: 100%;
}
.form-lux .f-check input[type="checkbox"] {
    width: 14px;
    min-width: 14px;
    max-width: 14px;
    height: 14px;
    margin: 0.22rem 0 0 0;
    padding: 0;
    appearance: auto;
    -webkit-appearance: checkbox;
}
.form-lux .f-check span {
    display: block;
    width: auto;
    max-width: 100%;
    min-width: 0;
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
}
.commune-suggest {
    margin-top: 0.6rem;
    display: none;
    gap: 0.45rem;
    flex-wrap: wrap;
}
.commune-suggest.is-open {
    display: flex;
}
.commune-suggest button {
    border: 1px solid rgba(184, 149, 90, 0.24);
    background: rgba(184, 149, 90, 0.06);
    color: var(--stone2);
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.52rem 0.7rem;
    cursor: pointer;
    transition:
        border-color 0.22s,
        background 0.22s,
        color 0.22s;
}
.commune-suggest button:hover,
.commune-suggest button:focus {
    border-color: rgba(184, 149, 90, 0.65);
    background: rgba(184, 149, 90, 0.12);
    color: var(--or2);
}
a.zone-chip {
    text-decoration: none;
}
a.zone-chip:hover {
    border-color: rgba(184, 149, 90, 0.65);
    color: var(--or2);
    background: rgba(184, 149, 90, 0.08);
}
@media (max-width: 760px) {
    .form-lux .f-check {
        grid-template-columns: 16px minmax(0, 1fr);
    }
}

.locality-seo-links {
    margin-top: 2.2rem;
    border: 1px solid rgba(184, 149, 90, 0.16);
    background: rgba(184, 149, 90, 0.035);
    padding: 1.4rem 1.6rem;
}
.locality-seo-links h3 {
    margin: 0 0 0.45rem;
    font-family: var(--serif);
    font-size: 1.2rem;
    color: var(--stone2);
}
.locality-seo-links p {
    margin: 0 0 1rem;
    color: var(--muted2);
    font-size: 0.86rem;
    line-height: 1.7;
}
.locality-seo-links div {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}
.locality-seo-links a {
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.55rem 0.72rem;
    border: 1px solid rgba(184, 149, 90, 0.2);
    color: var(--or2);
    text-decoration: none;
}
.locality-seo-links a:hover {
    background: rgba(184, 149, 90, 0.1);
    border-color: rgba(184, 149, 90, 0.55);
}

/* Patch V4 — autocomplete pro, loader non rogné, navigation cohérente */
.loader-word {
    overflow: visible;
    padding: 0.02em 0.12em 0.14em;
}
.loader-word span {
    font-size: clamp(4.5rem, 12vw, 10.5rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
}
.loader-word:nth-child(2) span {
    padding-right: 0.1em;
}

.form-lux .f-group {
    position: relative;
}
.form-lux input:-webkit-autofill,
.form-lux input:-webkit-autofill:hover,
.form-lux input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--stone2);
    -webkit-box-shadow: 0 0 0 1000px transparent inset;
    transition: background-color 9999s ease-in-out 0s;
}
.commune-suggest {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.55rem);
    z-index: 40;
    margin-top: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    max-height: 280px;
    overflow: auto;
    border: 1px solid rgba(184, 149, 90, 0.32);
    background: rgba(18, 15, 12, 0.98);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(18px);
}
.commune-suggest.is-open {
    display: flex;
}
.commune-suggest button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border: 0;
    border-bottom: 1px solid rgba(184, 149, 90, 0.14);
    background: transparent;
    color: var(--stone2);
    font-family: var(--sans);
    font-size: 0.86rem;
    letter-spacing: 0;
    text-transform: none;
    padding: 0.82rem 0.95rem;
    text-align: left;
}
.commune-suggest button:last-child {
    border-bottom: 0;
}
.commune-suggest button strong {
    font-weight: 600;
    color: var(--stone2);
}
.commune-suggest button span {
    color: var(--muted2);
    font-size: 0.78rem;
}
.commune-suggest button:hover,
.commune-suggest button:focus {
    background: rgba(184, 149, 90, 0.12);
    color: var(--or2);
    outline: none;
}
.form-lux .f-check {
    margin-top: 0.3rem;
    margin-bottom: 1.4rem;
}
.form-lux .f-check span {
    line-height: 1.55;
    overflow-wrap: normal;
}
@media (max-width: 760px) {
    .commune-suggest {
        max-height: 240px;
    }
    .loader-word span {
        font-size: clamp(4rem, 17vw, 7rem);
    }
}

.local-hero {
    min-height: 72vh;
    display: grid;
    align-items: end;
    padding: 10rem 0 5rem;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 80% 15%, rgba(184, 149, 90, 0.16), transparent 30%), var(--ch);
}
.local-kicker {
    font-family: var(--mono);
    color: var(--or);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 0.72rem;
    margin-bottom: 1.1rem;
}
.local-hero h1 {
    font-family: var(--serif);
    font-size: clamp(3.4rem, 8vw, 7.5rem);
    line-height: 0.92;
    color: var(--stone2);
    max-width: 980px;
}
.local-hero h1 em {
    color: var(--or);
    font-style: italic;
    font-weight: 400;
}
.local-lead {
    max-width: 760px;
    color: var(--muted2);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-top: 1.7rem;
}
.local-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}
.local-section {
    padding: 5rem 0;
}
.local-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}
.local-card {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.018);
    padding: 1.6rem;
}
.local-card h2,
.local-card h3 {
    font-family: var(--serif);
    color: var(--stone2);
    font-size: 1.55rem;
    margin-bottom: 0.8rem;
}
.local-card p,
.local-card li {
    color: var(--muted2);
    line-height: 1.8;
}
.local-card ul {
    padding-left: 1.1rem;
}
.local-near {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1rem;
}
.local-near a {
    border: 1px solid rgba(184, 149, 90, 0.25);
    color: var(--stone);
    padding: 0.45rem 0.7rem;
    text-decoration: none;
}
.local-near a:hover {
    color: var(--or2);
    border-color: rgba(184, 149, 90, 0.6);
}
@media (max-width: 760px) {
    .local-grid {
        grid-template-columns: 1fr;
    }
    .local-hero {
        padding-top: 8rem;
    }
    .local-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* V8 — le petit "Découvrir" ne doit pas se retrouver coincé entre les CTA sur mobile. */
@media (max-width: 1100px) {
    .hero-scroll {
        display: none;
    }
}

/* V8 — CTA localités plus visible, sans casser le style premium. */
.local-contact-btn {
    width: fit-content;
    margin-top: 0.7rem;
}
@media (max-width: 560px) {
    .local-actions {
        display: grid;
        gap: 0.8rem;
    }
    .local-actions .btn,
    .local-contact-btn {
        width: 100%;
    }
}

/* V9 — fix iPhone : la croix de fermeture doit rester visible, même avec Safari et le notch.
   Je la pose en fixe, bien grosse, avec un fond clair pour qu'on ne la cherche pas. */
/* .nav-drawer mobile styles → intégrés dans le bloc NAV principal ci-dessus */

/* --- V10 perf/accessibilité : petit polish sans toucher au design --- */
:root {
    --muted: #a99f96;
    --muted2: #c3bab2;
}
.svc-hd {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
    border: 0;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
}
.testi-pip {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    cursor: pointer;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}
.engag h3,
.footer h3 {
    font-family: var(--mono);
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.2rem;
}
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        scroll-behavior: auto;
        transition-duration: 0.01ms;
    }
}

/* ── Cursor pointer pour accessibilité ── */
@media (pointer: fine) {
    a,
    button,
    [role="button"],
    [tabindex="0"],
    .filter-btn,
    .svc-hd,
    .faq-q,
    .testi-pip,
    .gallery-item {
        cursor: pointer;
    }
}

/* ═══════════════════════════════════════════
   COMPOSANTS GLOBAUX (urgence, blog-strip, skip)
   Intégrés depuis inline-extracted.css
   ═══════════════════════════════════════════ */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 10000;
    padding: 0.6rem 1.2rem;
    background: var(--or, #b8955a);
    color: var(--ch, #0e0c0a);
    font-family: var(--mono, "Space Mono", monospace);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 1px;
    transition: top 0.2s;
}
.skip-to-content:focus {
    top: 1rem;
}

/* ── STICKY MOBILE CALL CTA (V3) ── */
.cta-sticky-mobile {
    display: none;
    position: fixed;
    bottom: 1.4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 700;
    background: var(--or, #b8955a);
    color: #0e0c0a;
    padding: 0.85rem 2rem;
    font-family: "Space Mono", monospace;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
    box-shadow:
        0 8px 32px rgba(184, 149, 90, 0.45),
        0 2px 8px rgba(0, 0, 0, 0.3);
    align-items: center;
    gap: 0.55rem;
    border-radius: 1px;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}
.cta-sticky-mobile svg {
    flex-shrink: 0;
}
.cta-sticky-mobile.hide {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(1rem);
}
@media (max-width: 768px) {
    .cta-sticky-mobile {
        display: flex;
    }
}

/* ── URGENCE BANDEAU (V3) ── */
.urgence-band {
    background: linear-gradient(135deg, #1a0f0a 0%, #211408 100%);
    border-top: 1px solid rgba(184, 149, 90, 0.25);
    border-bottom: 1px solid rgba(184, 149, 90, 0.12);
    padding: 0.9rem 0;
}
.urgence-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem;
}
.urgence-left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.urgence-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e05050;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(224, 80, 80, 0.6);
    animation: pulse-red 1.8s ease-in-out infinite;
}
@keyframes pulse-red {
    0%,
    100% {
        box-shadow: 0 0 8px rgba(224, 80, 80, 0.6);
    }
    50% {
        box-shadow: 0 0 16px rgba(224, 80, 80, 0.9);
    }
}
.urgence-txt {
    font-family: "Space Mono", monospace;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #f4f0eb;
}
.urgence-txt em {
    color: var(--or, #b8955a);
    font-style: normal;
    font-weight: 700;
}
.urgence-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: "Space Mono", monospace;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    color: #0e0c0a;
    background: var(--or, #b8955a);
    padding: 0.45rem 1.1rem;
    text-decoration: none;
    transition: background 0.2s;
    flex-shrink: 0;
}
.urgence-cta:hover {
    background: #d4ad72;
}

/* ── BADGE RÉPONSE 24H (V3) ── */
.badge-24h {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Space Mono", monospace;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--or, #b8955a);
    padding: 0.5rem 1rem;
    border: 1px solid rgba(184, 149, 90, 0.25);
    background: rgba(184, 149, 90, 0.06);
    margin-bottom: 1rem;
}
.badge-24h svg {
    color: #5fce8b;
}

/* ── BLOG TEASER (V3) ── */
.blog-strip {
    background: var(--ch2, #171310);
    border-top: 1px solid rgba(232, 226, 217, 0.06);
    border-bottom: 1px solid rgba(232, 226, 217, 0.06);
}
.blog-card-mini {
    background: var(--ch3, #211d19);
    border: 1px solid rgba(232, 226, 217, 0.07);
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: border-color 0.25s;
}
.blog-card-mini:hover {
    border-color: rgba(184, 149, 90, 0.3);
}
.blog-tag {
    font-family: "Space Mono", monospace;
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--or, #b8955a);
}
.blog-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--stone2, #f4f0eb);
    line-height: 1.4;
}
.blog-read {
    font-family: "Space Mono", monospace;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted, #8f8478);
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-grid-mini {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1px;
    background: rgba(232, 226, 217, 0.06);
}
