:root {
    /* --- Palette Allo Débarras — orange, noir, papier ivoire --- */

    /* Surfaces */
    --fond-blanc: 252 250 246;
    --fond-creme: 245 240 232;
    --fond-doux: 236 230 220;
    --fond-gris-pale: 220 214 204;
    --fond-bordure: 210 200 188;

    /* Orange atelier */
    --couleur-primaire: 255 90 0;
    --couleur-primaire-hover: 224 70 0;
    --couleur-primaire-clair: 255 232 214;
    --couleur-primaire-tres-clair: 255 244 236;

    /* Noir charbon */
    --couleur-sauge: 17 17 17;
    --couleur-sauge-hover: 8 8 8;
    --couleur-sauge-clair: 245 240 232;

    /* Orange (alias) */
    --couleur-orange: 255 90 0;
    --couleur-orange-hover: 224 70 0;
    --couleur-orange-clair: 255 232 214;

    /* Texte */
    --texte-principal: 17 17 17;
    --texte-secondaire: 55 50 45;
    --texte-tertiaire: 110 100 90;
    --texte-clair: 140 130 118;

    /* Marque texte */
    --logo-violet: 17 17 17;
    --logo-accent: 255 90 0;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: rgb(var(--fond-blanc));
}

body {
    font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
    color: rgb(var(--texte-principal));
    -webkit-font-smoothing: antialiased;
    background-color: rgb(var(--fond-blanc));
    line-height: 1.6;
}

:focus-visible {
    outline: 3px solid rgb(var(--couleur-primaire) / 62%);
    outline-offset: 3px;
}

main:focus {
    outline: none;
}

section[id] {
    scroll-margin-top: 6rem;
}

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 100;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    background: #ffffff;
    color: rgb(var(--couleur-sauge));
    font-weight: 800;
    box-shadow: 0 10px 30px rgb(0 0 0 / 22%);
    transform: translateY(-150%);
    transition: transform 150ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

/* ===== Typo titres ===== */
.font-display {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-optical-sizing: auto;
    font-variation-settings: normal;
    letter-spacing: -0.02em;
    font-weight: 600;
    line-height: 1.12;
    text-wrap: balance;
}

p,
li,
a {
    overflow-wrap: break-word;
}

/* Sous-titres / labels : garde la classe utilitaire `font-mono` du HTML mais sans pile "code" (Tailwind CDN écrase sinon). */
.font-mono {
    font-family: 'Sora', 'Outfit', system-ui, -apple-system, sans-serif !important;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-variant-ligatures: none;
}

/* ===== HERO ===== */
.hero-bg {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(900px 600px at 15% 10%, rgb(var(--couleur-primaire) / 14%), transparent 65%),
        radial-gradient(700px 500px at 92% 85%, rgb(var(--couleur-sauge) / 12%), transparent 70%),
        linear-gradient(180deg, rgb(var(--fond-blanc)) 0%, rgb(var(--fond-doux)) 100%);
    isolation: isolate;
}

.hero-blob {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-blob::before,
.hero-blob::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.55;
}

.hero-blob::before {
    top: -120px;
    left: -160px;
    width: 520px;
    height: 520px;
    background: rgb(var(--couleur-primaire) / 28%);
}

.hero-blob::after {
    bottom: -160px;
    right: -120px;
    width: 460px;
    height: 460px;
    background: rgb(var(--couleur-sauge) / 28%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: rgb(var(--texte-principal));
}

.hero-mini {
    position: relative;
    background:
        radial-gradient(700px 400px at 8% 0%, rgb(var(--couleur-primaire) / 15%), transparent 60%),
        radial-gradient(600px 400px at 95% 100%, rgb(var(--couleur-sauge) / 12%), transparent 60%),
        linear-gradient(180deg, rgb(var(--fond-blanc)) 0%, rgb(var(--fond-creme)) 100%);
    border-bottom: 1px solid rgb(var(--fond-bordure));
    overflow: hidden;
    isolation: isolate;
}

.hero-mini > * {
    position: relative;
    z-index: 2;
}

.hero-mini::before {
    content: '';
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgb(var(--couleur-primaire) / 18%);
    filter: blur(70px);
    z-index: 0;
}

/* ===== SECTIONS ===== */
.section-light {
    background-color: rgb(var(--fond-blanc));
    color: rgb(var(--texte-principal));
    position: relative;
}

.section-cream {
    background-color: rgb(var(--fond-creme));
    color: rgb(var(--texte-principal));
}

.section-bleute {
    background:
        radial-gradient(800px 500px at 90% 10%, rgb(var(--couleur-primaire) / 10%), transparent 65%),
        linear-gradient(180deg, rgb(var(--fond-doux)) 0%, rgb(var(--fond-blanc)) 100%);
    color: rgb(var(--texte-principal));
    position: relative;
}

.section-vert {
    background:
        radial-gradient(800px 500px at 10% 90%, rgb(var(--couleur-sauge) / 12%), transparent 65%),
        linear-gradient(180deg, rgb(var(--fond-blanc)) 0%, rgb(var(--couleur-sauge-clair) / 35%) 100%);
    color: rgb(var(--texte-principal));
    position: relative;
}

.section-dark {
    position: relative;
    background:
        radial-gradient(900px 600px at 15% 10%, rgb(var(--couleur-primaire) / 18%), transparent 60%),
        radial-gradient(700px 500px at 90% 85%, rgb(var(--couleur-primaire) / 8%), transparent 60%),
        linear-gradient(135deg, rgb(var(--couleur-sauge)) 0%, rgb(26 26 32) 100%);
    color: #f5f5f4;
    overflow: hidden;
    isolation: isolate;
}

.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 28px 28px;
    opacity: 0.4;
}

.section-dark > * {
    position: relative;
    z-index: 1;
}

/* ===== Pills / badges ===== */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    background-color: rgb(var(--couleur-primaire-clair));
    color: rgb(var(--couleur-primaire-hover));
    border: 1px solid rgb(var(--couleur-primaire) / 22%);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pill-sauge {
    background-color: rgb(var(--couleur-sauge-clair));
    color: rgb(var(--couleur-sauge-hover));
    border-color: rgb(var(--couleur-sauge) / 30%);
}

.pill-dark {
    background-color: rgb(255 255 255 / 12%);
    color: #ffffff;
    border-color: rgb(255 255 255 / 22%);
}

.pill-light {
    background-color: rgb(var(--fond-gris-pale));
    color: rgb(var(--texte-principal));
    border-color: rgb(var(--fond-bordure));
}

/* ===== Boutons ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    background-color: rgb(var(--couleur-primaire));
    color: #ffffff;
    font-weight: 800;
    font-family: 'Bricolage Grotesque', 'Outfit', sans-serif;
    font-optical-sizing: none;
    font-variation-settings: "opsz" 48, "wght" 800;
    letter-spacing: -0.03em;
    font-size: 0.95rem;
    box-shadow:
        0 8px 28px -8px rgb(var(--couleur-primaire) / 70%),
        0 0 0 1px rgb(255 255 255 / 12%) inset;
    transition: transform 180ms ease, box-shadow 220ms ease, background-color 150ms ease, filter 180ms ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: rgb(var(--couleur-primaire-hover));
    box-shadow:
        0 12px 24px -8px rgb(var(--couleur-primaire) / 70%),
        0 0 0 1px rgb(var(--couleur-primaire-hover) / 30%) inset;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    background-color: rgb(var(--couleur-orange));
    color: #ffffff;
    font-weight: 800;
    font-family: 'Bricolage Grotesque', 'Outfit', sans-serif;
    font-optical-sizing: none;
    font-variation-settings: "opsz" 48, "wght" 800;
    letter-spacing: -0.03em;
    font-size: 0.95rem;
    box-shadow: 0 6px 18px -6px rgb(var(--couleur-orange) / 55%);
    transition: transform 150ms ease, box-shadow 200ms ease, background-color 150ms ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background-color: rgb(var(--couleur-orange-hover));
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 12px;
    background: rgb(var(--fond-blanc));
    color: rgb(var(--texte-principal));
    font-weight: 700;
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 0.95rem;
    border: 1px solid rgb(var(--fond-bordure));
    transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}

.btn-ghost:hover {
    border-color: rgb(var(--couleur-primaire));
    color: rgb(var(--couleur-primaire-hover));
    background: rgb(var(--couleur-primaire-tres-clair));
}

.btn-ghost-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 12px;
    background: transparent;
    color: #ffffff;
    font-weight: 700;
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 0.95rem;
    border: 1.5px solid rgb(255 255 255 / 35%);
    transition: background 150ms ease, border-color 150ms ease;
}

.btn-ghost-dark:hover {
    background: rgb(255 255 255 / 12%);
    border-color: #ffffff;
}

/* ===== Icon badges ===== */
.icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgb(var(--couleur-primaire-clair));
    color: rgb(var(--couleur-primaire-hover));
    font-size: 22px;
}

.icon-badge-primaire {
    background: linear-gradient(135deg, rgb(var(--couleur-primaire) / 18%) 0%, rgb(var(--couleur-primaire) / 8%) 100%);
    color: rgb(var(--couleur-primaire-hover));
    border: 1px solid rgb(var(--couleur-primaire) / 18%);
}

.icon-badge-sauge {
    background: linear-gradient(135deg, rgb(var(--couleur-sauge) / 18%) 0%, rgb(var(--couleur-sauge) / 8%) 100%);
    color: rgb(var(--couleur-sauge-hover));
    border: 1px solid rgb(var(--couleur-sauge) / 20%);
}

.icon-badge-fill-primaire {
    background: linear-gradient(135deg, rgb(var(--couleur-primaire)) 0%, rgb(var(--couleur-primaire-hover)) 100%);
    color: #ffffff;
    box-shadow: 0 6px 16px -4px rgb(var(--couleur-primaire) / 55%);
}

.icon-badge-fill-sauge {
    background: linear-gradient(135deg, rgb(var(--couleur-sauge)) 0%, rgb(var(--couleur-sauge-hover)) 100%);
    color: #ffffff;
    box-shadow: 0 6px 16px -4px rgb(var(--couleur-sauge) / 55%);
}

/* ===== Cartes ===== */
.card-light {
    background: rgb(var(--fond-blanc));
    border: 1px solid rgb(var(--fond-bordure));
    border-radius: 16px;
    padding: 24px;
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.card-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px -22px rgb(0 0 0 / 18%);
    border-color: rgb(var(--couleur-primaire) / 32%);
}

.card-soft {
    background: rgb(var(--fond-doux));
    border: 1px solid rgb(var(--fond-bordure));
    border-radius: 16px;
    padding: 24px;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.card-soft:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px -22px rgb(var(--couleur-primaire) / 25%);
}

.card-dark {
    background: rgb(255 255 255 / 6%);
    border: 1px solid rgb(255 255 255 / 14%);
    border-radius: 16px;
    padding: 24px;
    color: #f1f5f9;
    backdrop-filter: blur(8px);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.card-dark:hover {
    transform: translateY(-3px);
    border-color: rgb(255 255 255 / 28%);
}

/* ===== Liste check ===== */
.check-list li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 12px;
    color: rgb(var(--texte-secondaire));
    line-height: 1.6;
}

.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: rgb(var(--couleur-primaire-clair));
    color: rgb(var(--couleur-primaire-hover));
    font-size: 10px;
}

.check-list-sauge li::before {
    background-color: rgb(var(--couleur-sauge-clair));
    color: rgb(var(--couleur-sauge-hover));
}

.check-list-dark li {
    color: #cbd5e1;
}

.check-list-dark li::before {
    background-color: rgb(255 255 255 / 12%);
    color: #ffffff;
}

/* ===== Step number ===== */
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgb(var(--couleur-primaire)) 0%, rgb(var(--couleur-primaire-hover)) 100%);
    color: #ffffff;
    font-weight: 800;
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    line-height: 1;
    box-shadow: 0 8px 16px -8px rgb(var(--couleur-primaire) / 55%);
}

.step-number-sauge {
    background: linear-gradient(135deg, rgb(var(--couleur-sauge)) 0%, rgb(var(--couleur-sauge-hover)) 100%);
    box-shadow: 0 8px 16px -8px rgb(var(--couleur-sauge) / 55%);
}

.step-number-light {
    background: rgb(var(--couleur-primaire-clair));
    color: rgb(var(--couleur-primaire-hover));
    box-shadow: none;
}

/* ===== Accents textuels ===== */
.text-accent {
    color: rgb(var(--couleur-orange));
}

.text-sauge {
    color: rgb(var(--couleur-sauge-hover));
}

.text-marker {
    background: linear-gradient(180deg, transparent 60%, rgb(var(--couleur-primaire) / 25%) 60%);
    padding: 0 4px;
}

.text-marker-vert {
    background: linear-gradient(180deg, transparent 60%, rgb(var(--couleur-sauge) / 30%) 60%);
    padding: 0 4px;
}

/* ===== Image frames ===== */
.img-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 30px 60px -30px rgb(15 23 42 / 25%),
        0 8px 16px -8px rgb(15 23 42 / 8%);
}

.img-frame.rounded-soft {
    border-radius: 24px;
}

.img-cover {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}

/* ===== Hero gallery (accueil) ===== */
.hero-gallery {
    min-width: 0;
}

.hero-gallery figure {
    min-height: 0;
}

/* Remplissage sans bande : image en cover, cadrée dans le cadre arrondi */
.hero-gallery .hero-gallery-tile {
    position: relative;
}

.hero-gallery .hero-gallery-tile > .hero-gallery-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Recadrage pour limiter une zone trop sombre ou vide en bas ou sur les côtés */
.hero-gallery .hero-gallery-plage .hero-gallery-img {
    object-position: center 22%;
}

.hero-gallery .hero-gallery-catenes .hero-gallery-img {
    object-position: center 42%;
}

.hero-gallery .hero-gallery-equipe .hero-gallery-img {
    object-position: center 38%;
}

/* ===== FAQ ===== */
details.faq-item {
    border: 1px solid rgb(var(--fond-bordure));
    border-radius: 14px;
    padding: 18px 22px;
    background: rgb(var(--fond-blanc));
    color: rgb(var(--texte-secondaire));
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

details.faq-item[open] {
    border-color: rgb(var(--couleur-primaire) / 50%);
    box-shadow: 0 12px 30px -16px rgb(var(--couleur-primaire) / 32%);
}

details.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    color: rgb(var(--texte-principal));
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

details.faq-item summary::-webkit-details-marker {
    display: none;
}

details.faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: rgb(var(--couleur-primaire));
    transition: transform 200ms ease;
}

details.faq-item[open] summary::after {
    transform: rotate(180deg);
}

details.faq-item > *:not(summary) {
    margin-top: 14px;
    color: rgb(var(--texte-secondaire));
    line-height: 1.65;
}

/* ===== City chips ===== */
.city-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgb(var(--fond-blanc));
    border: 1px solid rgb(var(--fond-bordure));
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgb(var(--texte-principal));
    transition: transform 150ms ease, border-color 150ms ease, color 150ms ease, background-color 150ms ease;
}

.city-chip:hover {
    transform: translateY(-2px);
    border-color: rgb(var(--couleur-primaire));
    color: rgb(var(--couleur-primaire-hover));
    background: rgb(var(--couleur-primaire-tres-clair));
}

.city-chip--highlight {
    background: rgb(var(--couleur-primaire-tres-clair));
    border-color: rgb(var(--couleur-primaire));
    color: rgb(var(--couleur-primaire-hover));
}

/* ===== Réalisations avant / après ===== */
.realisations-list {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .realisations-list {
        max-width: 48rem; /* ~768px — légèrement plus compact sur desktop */
    }

    .realisation-block + .realisation-block {
        margin-top: 2.25rem;
        padding-top: 2.25rem;
    }
}

.realisation-block + .realisation-block {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgb(var(--fond-bordure));
}

.realisation-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}

.realisation-badge--avant {
    background: rgb(var(--couleur-sauge) / 92%);
    color: white;
}

.realisation-badge--apres {
    background: rgb(var(--couleur-primaire) / 95%);
    color: white;
}

.realisation-montage {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* ===== Sub-service chips ===== */
.sub-service-chip {
    padding: 14px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    color: rgb(var(--texte-principal));
    background: rgb(var(--fond-blanc));
    border: 1px solid rgb(var(--fond-bordure));
    transition: transform 150ms ease, border-color 150ms ease;
    line-height: 1.4;
}

.sub-service-chip i {
    color: rgb(var(--couleur-primaire));
    display: block;
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.sub-service-chip.is-sauge i {
    color: rgb(var(--couleur-sauge));
}

.sub-service-chip:hover {
    transform: translateY(-3px);
    border-color: rgb(var(--couleur-primaire) / 50%);
}

/* ===== Trust strip ===== */
.trust-strip {
    background: rgb(var(--fond-blanc));
    border-top: 1px solid rgb(var(--fond-bordure));
    border-bottom: 1px solid rgb(var(--fond-bordure));
    color: rgb(var(--texte-secondaire));
}

.trust-strip .trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.trust-strip .trust-item i {
    color: rgb(var(--couleur-primaire));
}

/* ===== Callouts ===== */
.callout-primaire {
    background:
        linear-gradient(120deg, rgb(var(--couleur-primaire) / 12%), rgb(var(--couleur-primaire) / 4%) 70%),
        rgb(var(--fond-blanc));
    border: 1px solid rgb(var(--couleur-primaire) / 25%);
    border-radius: 20px;
    padding: 28px;
}

.callout-sauge {
    background:
        linear-gradient(120deg, rgb(var(--couleur-sauge) / 14%), rgb(var(--couleur-sauge) / 4%) 70%),
        rgb(var(--fond-blanc));
    border: 1px solid rgb(var(--couleur-sauge) / 25%);
    border-radius: 20px;
    padding: 28px;
}

.callout-dark {
    background:
        linear-gradient(120deg, rgb(var(--couleur-primaire) / 30%), rgb(var(--couleur-sauge) / 18%) 100%),
        linear-gradient(135deg, #0f1f3a 0%, #14294a 100%);
    border: 1px solid rgb(255 255 255 / 12%);
    border-radius: 20px;
    padding: 28px;
    color: #f1f5f9;
}

/* ===== Animations subtiles ===== */
.lift {
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px -22px rgb(15 23 42 / 18%);
}

/* ===== Pricing card ===== */
.pricing-card {
    background: rgb(var(--fond-blanc));
    border: 1px solid rgb(var(--fond-bordure));
    border-radius: 20px;
    padding: 28px;
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.pricing-card.featured {
    border-color: rgb(var(--couleur-primaire));
    box-shadow:
        0 28px 50px -28px rgb(var(--couleur-primaire) / 38%),
        0 0 0 1px rgb(var(--couleur-primaire) / 30%);
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 40px -22px rgb(15 23 42 / 18%);
}

/* ===== Scroll bar ===== */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: rgb(var(--fond-doux));
}

::-webkit-scrollbar-thumb {
    background: rgb(var(--couleur-primaire) / 40%);
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgb(var(--couleur-primaire) / 70%);
}

/* ===== Liens texte ===== */
.link-primary {
    color: rgb(var(--couleur-primaire-hover));
    font-weight: 600;
    border-bottom: 1px dashed rgb(var(--couleur-primaire) / 40%);
}

.link-primary:hover {
    color: rgb(var(--couleur-primaire));
    border-bottom-color: rgb(var(--couleur-primaire));
}

/* ===== Form fields ===== */
.field {
    background-color: rgb(var(--fond-blanc));
    border: 1px solid rgb(var(--fond-bordure));
    color: rgb(var(--texte-principal));
    border-radius: 10px;
    min-height: 48px;
    padding: 12px 15px;
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field:focus {
    outline: none;
    border-color: rgb(var(--couleur-primaire));
    box-shadow: 0 0 0 4px rgb(var(--couleur-primaire) / 14%);
}

.field::placeholder {
    color: rgb(var(--texte-clair));
}

.field[aria-invalid="true"] {
    border-color: rgb(185 28 28);
    box-shadow: 0 0 0 3px rgb(185 28 28 / 12%);
}

.field-error {
    min-height: 1.15rem;
    margin-top: 0.35rem;
    color: rgb(185 28 28);
    font-size: 0.76rem;
    font-weight: 650;
    line-height: 1.35;
}

.form-status:empty {
    display: none;
}

.form-status:not(:empty) {
    padding: 0.8rem 0;
    border-radius: 0;
    background: transparent;
    border-top: 1px solid rgb(var(--fond-bordure));
    font-weight: 600;
}

select.field {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
}

/* ===== Service tags ===== */
.tag-primaire {
    display: inline-flex;
    padding: 5px 12px;
    background: rgb(var(--couleur-primaire-clair));
    color: rgb(var(--couleur-primaire-hover));
    font-family: 'Manrope', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
}

.tag-sauge {
    display: inline-flex;
    padding: 5px 12px;
    background: rgb(var(--couleur-sauge-clair));
    color: rgb(var(--couleur-sauge-hover));
    font-family: 'Manrope', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
}

/* ===== Marque (logo + nom) ===== */
.brand-lockup {
    text-decoration: none;
    overflow: visible;
}

.brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    gap: 1px;
}

.brand-name__initials {
    font-family: 'Manrope', 'Inter', system-ui, sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
    color: rgb(var(--logo-violet));
}

.brand-name__sub {
    font-family: 'Manrope', 'Inter', system-ui, sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.01em;
    color: rgb(var(--logo-accent));
}

.brand-name--footer .brand-name__initials {
    font-size: 1.45rem;
}

.brand-name--footer .brand-name__sub {
    font-size: 0.875rem;
}

.brand-inline {
    color: rgb(var(--logo-violet));
    font-weight: 600;
}

/* ===== Logo header ===== */
.logo-aura {
    position: relative;
}

.logo-aura::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(var(--couleur-primaire) / 18%), transparent 70%);
    z-index: -1;
}

.cta-banner {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

/* ===== Animation entrance for menu items ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
    animation: fadeUp 500ms ease-out backwards;
}

/* ===== Hero plein écran (paysage alpin) ===== */
.hero-cover {
    position: relative;
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    overflow: hidden;
    isolation: isolate;
}

.hero-cover__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-cover__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
}

.hero-cover__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(105deg, rgb(var(--couleur-sauge) / 95%) 0%, rgb(var(--couleur-sauge) / 72%) 45%, rgb(0 0 0 / 52%) 100%);
}

.hero-cover__content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    width: 100%;
}

.hero-cover .pill-dark {
    background: rgb(var(--couleur-primaire) / 22%);
    border-color: rgb(var(--couleur-primaire) / 45%);
    color: #fff;
}

.hero-cover .btn-ghost {
    background: transparent;
    color: #ffffff;
    border-color: rgb(255 255 255 / 45%);
}

.hero-cover .btn-ghost:hover {
    background: rgb(255 255 255 / 12%);
    color: #ffffff;
    border-color: #ffffff;
}

/* ===== Cartes service avec photo ===== */
.service-photo-card {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    min-height: 320px;
    isolation: isolate;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-photo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 50px -24px rgb(0 0 0 / 35%);
}

.service-photo-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.service-photo-card:hover img {
    transform: scale(1.04);
}

.service-photo-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 25%, rgb(0 0 0 / 78%) 100%);
    z-index: 1;
}

.service-photo-card__body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 24px;
    color: #ffffff;
}

.service-photo-card__icon {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgb(var(--couleur-primaire));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 8px 20px -6px rgb(0 0 0 / 40%);
}

/* ===== Header CALL Prod ===== */
#site-header,
.site-header {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgb(var(--fond-blanc) / 94%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgb(var(--fond-bordure));
    font-family: 'Bricolage Grotesque', 'Outfit', sans-serif;
    font-optical-sizing: none;
    font-variation-settings: "opsz" 56, "wght" 800;
}

.site-header__top {
    display: none;
    background: rgb(var(--couleur-sauge));
    color: rgb(255 255 255 / 88%);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.site-header__top span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.45rem 1.5rem;
}

.site-header__top i {
    color: rgb(var(--couleur-orange));
}

.site-header__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: min(1200px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 0.85rem 0;
}

.site-header__nav {
    display: none;
    align-items: center;
    gap: 0.15rem;
}

.site-header__link,
.site-header__phone,
.site-header__cta,
.site-header__drawer a,
#site-header .nav-link,
#site-header .header-phone,
#site-header .btn-primary,
#mobile-menu a {
    font-family: 'Bricolage Grotesque', 'Outfit', sans-serif !important;
    font-optical-sizing: none;
    font-variation-settings: "opsz" 56, "wght" 800;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.site-header__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.7rem;
    color: rgb(var(--texte-principal));
    font-size: 1.05rem;
    line-height: 1;
    background: transparent;
    border: 0;
    cursor: pointer;
    transition: color 160ms ease;
}

.site-header__link i {
    font-size: 0.62rem;
    margin-top: 1px;
}

.site-header__link:hover {
    color: rgb(var(--couleur-primaire));
}

.site-header__phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.45rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    color: rgb(var(--texte-principal));
    font-size: 1.05rem;
    line-height: 1;
    border: 1.5px solid rgb(var(--couleur-primaire) / 22%);
    background: rgb(var(--couleur-primaire) / 6%);
}

.site-header__phone i {
    color: rgb(var(--couleur-primaire));
    font-size: 0.82rem;
}

.site-header__phone:hover {
    color: rgb(var(--couleur-primaire));
    border-color: rgb(var(--couleur-primaire) / 45%);
}

.site-header__cta {
    margin-left: 0.35rem;
    padding: 0.7rem 1.15rem !important;
    font-size: 1.05rem !important;
    white-space: nowrap;
}

.site-header__tools {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    position: relative;
    z-index: 70;
    flex-shrink: 0;
    margin-left: auto;
}

.site-header__icon-btn,
.site-header__burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border-radius: 0;
    border: 1px solid rgb(var(--fond-bordure));
    background: transparent;
    color: var(--luxe-forest-deep);
    cursor: pointer;
    line-height: 1;
}

.site-header__icon-btn i,
.site-header__burger i {
    color: currentColor;
    line-height: 1;
}

.site-header__icon-btn i {
    font-size: 1rem;
}

.site-header__burger .menu-icon-open {
    display: inline-block;
    font-size: 1.15rem;
}

.site-header__burger .menu-icon-close {
    display: none;
    font-size: 1.25rem;
}

#site-header.is-nav-open .site-header__burger .menu-icon-open {
    display: none;
}

#site-header.is-nav-open .site-header__burger .menu-icon-close {
    display: inline-block;
}

.site-header__drawer {
    display: none;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.5rem 1rem 1.1rem;
    background: #fff;
    border-top: 1px solid rgb(var(--fond-bordure));
}

.site-header__drawer.is-open {
    display: flex !important;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 80;
    max-height: min(75vh, 32rem);
    overflow-y: auto;
    box-shadow: 0 24px 40px -20px rgb(0 0 0 / 35%);
}

.site-header__drawer a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.85rem 0.9rem;
    border-radius: 0.9rem;
    color: rgb(var(--texte-principal));
    font-size: 1.12rem;
}

.site-header__drawer a i {
    width: 1.1rem;
    color: rgb(var(--couleur-primaire));
}

.site-header__drawer a:hover {
    background: rgb(var(--couleur-primaire-tres-clair));
}

.site-header__drawer .btn-primary {
    justify-content: center;
    margin-top: 0.45rem;
    color: #fff !important;
}

@media (max-width: 1023.98px) {
    .site-header__nav {
        display: none !important;
    }

    .site-header__tools {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .site-header__icon-btn,
    .site-header__burger {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media (min-width: 1024px) {
    .site-header__top {
        display: block;
    }

    .site-header__nav {
        display: flex;
    }

    .site-header__tools,
    .site-header__drawer,
    .site-header__drawer.is-open {
        display: none !important;
    }
}

.nav-dropdown-panel {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 60;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel,
.nav-dropdown.is-open .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-dropdown button i {
    transition: transform 160ms ease;
}

.nav-dropdown.is-open button i {
    transform: rotate(180deg);
}

body.mobile-menu-open {
    overflow: hidden;
}

#site-header.header-hero {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 50;
    background: transparent !important;
    border-bottom-color: transparent !important;
}

#site-header.header-solid {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 50;
    background: rgb(var(--fond-blanc) / 98%) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgb(var(--fond-bordure)) !important;
    box-shadow: 0 4px 24px -8px rgb(0 0 0 / 12%);
}

#site-header.is-nav-open {
    background: rgb(var(--fond-blanc) / 98%) !important;
    border-bottom: 1px solid rgb(var(--fond-bordure)) !important;
    overflow: visible !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

#site-header.header-hero .site-header__top {
    display: none;
}

#site-header.header-hero .site-header__nav > .site-header__link,
#site-header.header-hero .site-header__nav > .nav-dropdown > .site-header__link,
#site-header.header-hero .site-header__phone,
#site-header.header-hero .site-header__burger,
#site-header.header-hero .site-header__nav > .nav-link,
#site-header.header-hero .header-phone {
    color: rgb(var(--texte-principal));
}

#site-header.header-hero .site-header__phone {
    border-color: rgb(var(--fond-bordure));
    background: transparent;
}

#site-header.header-hero .site-header__phone i,
#site-header.header-hero .site-header__icon-btn i,
#site-header.header-hero .header-phone i,
#site-header.header-hero .site-header__burger i {
    color: var(--luxe-forest-deep);
}

#site-header.header-hero .site-header__icon-btn,
#site-header.header-hero .site-header__burger {
    border-color: rgb(var(--fond-bordure));
    color: var(--luxe-forest-deep);
    background: transparent;
}

#site-header.header-hero .site-header__nav > .site-header__link:hover,
#site-header.header-hero .site-header__nav > .nav-dropdown > .site-header__link:hover,
#site-header.header-hero .site-header__phone:hover,
#site-header.header-hero .header-phone:hover {
    color: rgb(var(--couleur-orange));
}

.nav-dropdown-panel .nav-dropdown-title {
    display: block;
    color: rgb(var(--texte-principal)) !important;
    font-family: 'Bricolage Grotesque', 'Outfit', sans-serif;
    font-optical-sizing: none;
    font-variation-settings: "opsz" 56, "wght" 800;
    font-weight: 800;
    letter-spacing: -0.04em;
    font-size: 0.98rem;
    line-height: 1.2;
}

#site-header.header-hero .nav-dropdown-panel .nav-dropdown-title {
    color: rgb(var(--texte-principal)) !important;
}

#site-header.is-nav-open .site-header__link,
#site-header.is-nav-open .site-header__burger,
#site-header.is-nav-open .header-phone {
    color: rgb(var(--texte-principal));
}

#site-header.is-nav-open .site-header__icon-btn,
#site-header.is-nav-open .site-header__burger {
    border-color: rgb(var(--fond-bordure));
    color: var(--luxe-forest-deep);
    background: transparent;
}

#site-header.is-nav-open .site-header__icon-btn i,
#site-header.is-nav-open .site-header__burger i {
    color: currentColor;
}

/* ===== Direction artistique KS CAR ===== */
:root {
    --ks-radius-lg: 28px;
    --ks-radius-md: 18px;
    --ks-shadow: 0 24px 70px -34px rgb(13 38 62 / 42%);
    --ks-shadow-soft: 0 16px 40px -24px rgb(13 38 62 / 28%);
}

::selection {
    background: rgb(var(--couleur-primaire));
    color: #ffffff;
}

a,
button,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

.hero-cover {
    min-height: min(820px, 92vh);
    background: rgb(var(--couleur-sauge));
}

.hero-cover__bg img {
    object-position: center;
    filter: saturate(0.92) contrast(1.04);
}

.hero-cover__overlay {
    background:
        linear-gradient(90deg, rgb(5 5 16 / 90%) 0%, rgb(3 12 201 / 42%) 48%, rgb(8 8 22 / 32%) 100%),
        linear-gradient(180deg, rgb(3 12 201 / 22%) 0%, rgb(255 107 20 / 28%) 100%);
}

.hero-cover__content {
    padding-top: 10rem;
    padding-bottom: 8rem;
}

.hero-cover__content h1 {
    max-width: 760px;
    font-size: clamp(2.5rem, 5.4vw, 4.65rem);
    text-wrap: balance;
}

.hero-cover__content p {
    max-width: 650px;
}

.hero-mini h1 {
    max-width: 900px;
    font-size: clamp(2.35rem, 5.2vw, 4.5rem);
    text-wrap: balance;
}

.hero-cover .brand-inline {
    color: #ffffff !important;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 15px;
    border: 1px solid rgb(255 255 255 / 24%);
    border-radius: 999px;
    background: rgb(255 255 255 / 10%);
    color: rgb(255 255 255 / 92%);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.hero-kicker i {
    color: rgb(var(--couleur-primaire));
}

.hero-route {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 34px;
    color: rgb(255 255 255 / 72%);
    font-size: 0.86rem;
}

.hero-route::before,
.hero-route::after {
    content: '';
    display: block;
    width: 26px;
    height: 1px;
    background: rgb(255 255 255 / 35%);
}

.hero-route i {
    color: rgb(var(--couleur-primaire));
    font-size: 0.75rem;
}

.trust-strip {
    background: rgb(var(--fond-blanc));
    border-top: 0;
    box-shadow: 0 18px 36px -30px rgb(13 38 62 / 55%);
}

.trust-strip .trust-item {
    color: rgb(var(--texte-secondaire));
    font-weight: 700;
}

.trust-strip .trust-item i {
    color: rgb(var(--couleur-primaire));
}

.section-reassure {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(720px 480px at 0% 0%, rgb(var(--couleur-primaire) / 14%), transparent 62%),
        radial-gradient(640px 420px at 100% 100%, rgb(255 196 140 / 28%), transparent 58%),
        linear-gradient(165deg, rgb(255 250 247) 0%, rgb(247 249 252) 48%, rgb(239 244 248) 100%);
}

.section-reassure::before {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 18% 22%, rgb(255 255 255 / 70%) 0 2px, transparent 3px),
        radial-gradient(circle at 72% 64%, rgb(198 46 58 / 10%) 0 1.5px, transparent 2.5px);
    background-size: 120px 120px, 90px 90px;
    content: '';
    opacity: 0.55;
    pointer-events: none;
}

.section-reassure > * {
    position: relative;
    z-index: 1;
}

.reassure-intro {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem 3rem;
    align-items: center;
}

.reassure-points {
    display: grid;
    gap: 0.9rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.reassure-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 0.95rem 1.1rem;
    border: 1px solid rgb(var(--couleur-primaire) / 14%);
    border-radius: 16px;
    background: rgb(255 255 255 / 78%);
    box-shadow: 0 12px 28px -24px rgb(13 38 62 / 40%);
    color: rgb(var(--texte-secondaire));
    font-size: 0.95rem;
    line-height: 1.45;
}

.reassure-points li i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 12px;
    background: rgb(var(--couleur-primaire));
    color: #fff;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

.reassure-points strong {
    color: rgb(var(--texte-principal));
    font-weight: 800;
}

.reassure-intro__media {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow:
        0 28px 60px -28px rgb(13 38 62 / 45%),
        0 0 0 1px rgb(255 255 255 / 55%) inset;
}

.reassure-intro__media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

.reassure-intro__caption {
    position: absolute;
    left: 1.1rem;
    right: 1.1rem;
    bottom: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 1rem 1.15rem;
    border-radius: 16px;
    background: rgb(255 255 255 / 92%);
    backdrop-filter: blur(8px);
    box-shadow: 0 16px 36px -24px rgb(13 38 62 / 55%);
}

.reassure-intro__caption span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgb(var(--couleur-primaire-hover));
}

.reassure-intro__caption strong {
    font-size: 1.05rem;
    color: rgb(var(--texte-principal));
}

.reassure-services {
    align-items: stretch;
}

.reassure-service {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    padding: 1.1rem 1.15rem;
    border: 1px solid rgb(var(--fond-bordure));
    border-radius: 18px;
    background: rgb(255 255 255 / 86%);
    box-shadow: 0 12px 28px -24px rgb(13 38 62 / 35%);
    transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.reassure-service:hover {
    transform: translateY(-3px);
    border-color: rgb(var(--couleur-primaire) / 35%);
    box-shadow: 0 18px 36px -22px rgb(13 38 62 / 40%);
}

.reassure-service i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 14px;
    background: rgb(var(--couleur-primaire-clair));
    color: rgb(var(--couleur-primaire-hover));
    flex-shrink: 0;
}

.reassure-service strong {
    display: block;
    color: rgb(var(--texte-principal));
    font-size: 1rem;
    font-weight: 800;
}

.reassure-service em {
    display: block;
    margin-top: 0.2rem;
    color: rgb(var(--texte-tertiaire));
    font-size: 0.86rem;
    font-style: normal;
    line-height: 1.4;
}

@media (max-width: 1023px) {
    .reassure-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .reassure-intro__media,
    .reassure-intro__media img {
        min-height: 300px;
    }
}

.section-ice {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(640px 420px at 100% 0%, rgb(var(--couleur-primaire) / 8%), transparent 70%),
        linear-gradient(180deg, rgb(var(--fond-doux)) 0%, rgb(var(--fond-blanc)) 100%);
}

.section-ice::after {
    position: absolute;
    right: -120px;
    bottom: -220px;
    width: 480px;
    height: 480px;
    border: 1px solid rgb(var(--couleur-sauge) / 8%);
    border-radius: 50%;
    content: '';
    pointer-events: none;
}

.section-navy {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(800px 460px at 0% 0%, rgb(var(--couleur-primaire) / 28%), transparent 66%),
        radial-gradient(620px 420px at 100% 100%, rgb(var(--couleur-orange) / 18%), transparent 62%),
        linear-gradient(135deg, rgb(var(--couleur-sauge)) 0%, rgb(12 18 42) 100%);
    color: #ffffff;
}

.section-navy::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
        linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px);
    background-size: 44px 44px;
    content: '';
    mask-image: linear-gradient(135deg, black, transparent 70%);
    pointer-events: none;
}

.section-navy > * {
    position: relative;
    z-index: 1;
}

.section-red {
    background: linear-gradient(135deg, rgb(var(--couleur-primaire)) 0%, rgb(var(--couleur-primaire-hover)) 100%);
    color: #ffffff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgb(var(--couleur-primaire-hover));
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 24px;
    height: 2px;
    background: currentColor;
    content: '';
}

.eyebrow--light {
    color: rgb(255 255 255 / 76%);
}

.section-heading {
    max-width: 720px;
    text-wrap: balance;
}

.section-heading p {
    max-width: 640px;
}

.service-photo-card {
    min-height: 340px;
    border: 1px solid rgb(255 255 255 / 12%);
    box-shadow: var(--ks-shadow-soft);
}

.service-photo-card:hover {
    box-shadow: 0 28px 56px -26px rgb(13 38 62 / 48%);
}

.service-photo-card__overlay {
    background:
        linear-gradient(180deg, rgb(13 38 62 / 4%) 15%, rgb(13 38 62 / 88%) 100%),
        linear-gradient(90deg, rgb(13 38 62 / 30%), transparent 70%);
}

.service-photo-card__icon {
    position: static;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: rgb(var(--couleur-primaire));
    box-shadow: none;
}

.service-photo-card__body {
    padding: 26px;
}

.service-photo-card__body .font-display {
    font-size: 1.45rem;
}

.service-photo-card__body > span:last-child {
    max-width: 260px;
    line-height: 1.5;
}

.journey-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border: 1px solid rgb(var(--fond-bordure));
    border-radius: var(--ks-radius-md);
    background: rgb(var(--fond-blanc));
    box-shadow: 0 10px 30px -24px rgb(13 38 62 / 28%);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.journey-card:hover {
    transform: translateY(-5px);
    border-color: rgb(var(--couleur-primaire) / 32%);
    box-shadow: var(--ks-shadow);
}

.journey-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgb(var(--couleur-primaire-clair));
    color: rgb(var(--couleur-primaire-hover));
    font-size: 1.15rem;
}

.destination-directory {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
}

.destination-directory__intro {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

.destination-directory__copy {
    max-width: 42rem;
}

.destination-directory__image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--ks-radius-lg);
    box-shadow: var(--ks-shadow);
}

.destination-directory__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-directory__links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
}

.destination-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    min-height: 3.35rem;
    padding: 0.85rem 0.95rem;
    border: 1px solid rgb(var(--fond-bordure));
    border-radius: 14px;
    background: rgb(255 255 255 / 90%);
    box-shadow: 0 12px 28px -26px rgb(13 38 62 / 38%);
    color: rgb(var(--texte-principal));
    text-decoration: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.destination-card:hover {
    border-color: rgb(var(--couleur-primaire) / 38%);
    background: rgb(var(--couleur-primaire-tres-clair));
    box-shadow: 0 18px 34px -26px rgb(13 38 62 / 40%);
    transform: translateY(-2px);
    color: rgb(var(--couleur-primaire-hover));
}

.destination-card__name {
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.25;
}

.destination-card i {
    flex-shrink: 0;
    color: rgb(var(--couleur-primaire));
    font-size: 0.72rem;
    transition: transform 180ms ease;
}

.destination-card:hover i {
    transform: translateX(3px);
}

.destination-card--cta {
    background: rgb(var(--couleur-sauge));
    border-color: rgb(var(--couleur-sauge));
    color: #fff;
    box-shadow: 0 14px 30px -22px rgb(13 38 62 / 55%);
}

.destination-card--cta .destination-card__name,
.destination-card--cta i {
    color: #fff;
}

.destination-card--cta:hover {
    background: rgb(var(--couleur-sauge-hover));
    border-color: rgb(var(--couleur-sauge-hover));
    color: #fff;
}

.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--ks-radius-lg);
    box-shadow: var(--ks-shadow);
    min-height: 280px;
    aspect-ratio: 16 / 10;
}

.image-frame img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.parallax-panel {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border-radius: var(--ks-radius-lg);
    background-position: center;
    background-size: cover;
    isolation: isolate;
}

.parallax-panel::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(8 8 22 / 86%), rgb(3 12 201 / 28%), rgb(8 8 22 / 18%));
    content: '';
    z-index: -1;
}

.parallax-panel__content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 360px;
    max-width: 530px;
    flex-direction: column;
    justify-content: center;
    padding: 42px;
    color: #ffffff;
}

.process-line {
    position: relative;
}

.process-line::before {
    position: absolute;
    top: 28px;
    right: 12%;
    left: 12%;
    height: 1px;
    background: rgb(var(--couleur-primaire) / 26%);
    content: '';
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.process-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border: 5px solid rgb(var(--fond-blanc));
    border-radius: 50%;
    background: rgb(var(--couleur-primaire));
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    box-shadow: 0 8px 20px -10px rgb(var(--couleur-primaire) / 80%);
}

.form-shell {
    border: 1px solid rgb(var(--fond-bordure));
    border-radius: var(--ks-radius-lg);
    background: rgb(var(--fond-blanc));
    box-shadow: var(--ks-shadow);
}

.form-shell .field {
    border-radius: 13px;
    background: rgb(var(--fond-doux) / 45%);
}

.form-shell .field:focus {
    background: rgb(var(--fond-blanc));
}

.contact-direct {
    border-radius: var(--ks-radius-lg);
    background:
        linear-gradient(145deg, rgb(var(--couleur-sauge)) 0%, rgb(12 18 42) 100%);
    box-shadow: var(--ks-shadow);
    color: #ffffff;
}

.contact-direct a:hover {
    color: rgb(255 255 255 / 78%);
}

.cookie-consent__panel {
    border: 1px solid rgb(255 255 255 / 14%);
    border-radius: 18px;
    background: rgb(var(--couleur-sauge) / 97%);
    box-shadow: 0 24px 70px -28px rgb(0 0 0 / 70%);
    backdrop-filter: blur(12px);
}

.cookie-button {
    min-height: 42px;
    padding: 0.65rem 1.1rem;
    border: 1px solid rgb(255 255 255 / 24%);
    border-radius: 10px;
    background: rgb(255 255 255 / 8%);
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 800;
    transition: background-color 150ms ease, border-color 150ms ease;
}

.cookie-button:hover {
    border-color: rgb(255 255 255 / 48%);
    background: rgb(255 255 255 / 14%);
}

.cookie-button--accept {
    border-color: rgb(var(--couleur-primaire));
    background: rgb(var(--couleur-primaire));
}

.cookie-button--accept:hover {
    border-color: rgb(var(--couleur-primaire-hover));
    background: rgb(var(--couleur-primaire-hover));
}

.seo-article {
    max-width: 850px;
}

.seo-article h2 {
    margin-top: 2.6rem;
    color: rgb(var(--texte-principal));
    font-family: 'Plus Jakarta Sans', 'Manrope', system-ui, sans-serif;
    font-size: clamp(1.45rem, 2vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.seo-article > h2:first-child {
    margin-top: 0;
}

.seo-article p,
.seo-article li {
    color: rgb(var(--texte-secondaire));
    font-size: 1.03rem;
    line-height: 1.85;
}

.seo-article strong {
    color: rgb(var(--texte-principal));
}

.seo-article ul {
    padding-left: 1.4rem;
}

.seo-article li::marker {
    color: rgb(var(--couleur-primaire));
}

.breadcrumb {
    color: rgb(var(--texte-tertiaire));
    font-size: 0.78rem;
    font-weight: 700;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb li + li::before {
    content: '/';
    color: rgb(var(--texte-clair));
    font-weight: 500;
}

.breadcrumb a {
    color: rgb(var(--couleur-primaire-hover));
}

.cta-banner {
    border-radius: var(--ks-radius-lg);
    box-shadow: var(--ks-shadow);
}

.link-primary {
    color: rgb(var(--couleur-primaire-hover));
}

.link-primary:hover {
    color: rgb(var(--couleur-primaire));
}

@media (max-width: 767px) {
    .hero-cover {
        min-height: min(700px, 100svh);
    }

    .hero-cover__content {
        padding-top: 7.5rem;
        padding-bottom: 5rem;
    }

    .process-line::before {
        display: none;
    }

    .parallax-panel__content {
        min-height: 360px;
        padding: 1.5rem;
    }

    .service-photo-card {
        min-height: 300px;
    }

    .form-shell {
        padding: 1.5rem !important;
    }
}

@media (max-width: 1023px) {
    .destination-directory__intro {
        grid-template-columns: 1fr;
        max-width: 760px;
    }

    .destination-directory__links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 639px) {
    .hero-cover {
        min-height: auto;
    }

    .hero-cover__content {
        padding-bottom: 4.5rem;
    }

    .destination-directory__links {
        grid-template-columns: 1fr;
    }

    .reassure-intro__media,
    .reassure-intro__media img {
        min-height: 260px;
    }
}

@media (max-width: 479px) {
    .btn-primary,
    .btn-secondary,
    .btn-ghost,
    .btn-ghost-dark {
        width: 100%;
        padding-right: 1.15rem;
        padding-left: 1.15rem;
    }

    .allo-hero__actions .btn-primary,
    .allo-hero__actions .btn-ghost-light {
        width: auto;
    }

    .destination-card {
        min-height: 3.1rem;
        padding: 0.8rem 0.9rem;
    }

    .parallax-panel__content {
        min-height: 410px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

.brand-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    flex: 0 0 auto;
    border-radius: 13px;
    background: linear-gradient(145deg, rgb(var(--couleur-primaire)) 0%, rgb(var(--couleur-primaire-hover)) 100%);
    color: #ffffff;
    box-shadow: 0 8px 18px -10px rgb(var(--couleur-primaire) / 85%);
    font-size: 0.95rem;
    transform: rotate(-7deg);
}

.brand-logo-mark i {
    transform: rotate(7deg);
}

.brand-logo-mark--footer {
    width: 43px;
    height: 43px;
}

#site-header.header-hero .brand-logo-mark {
    background: rgb(255 255 255 / 16%);
    border: 1px solid rgb(255 255 255 / 28%);
    box-shadow: none;
}

/* ===== Témoignages ===== */
.testimonials-grid {
    max-width: 980px;
    margin-inline: auto;
}

.testimonial-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.65rem 1.75rem 1.75rem;
    border: 1px solid rgb(255 255 255 / 12%);
    border-radius: var(--ks-radius-md);
    background:
        linear-gradient(155deg, rgb(255 255 255 / 98%) 0%, rgb(251 248 244 / 94%) 100%);
    box-shadow: 0 22px 50px -32px rgb(0 0 0 / 55%);
    overflow: hidden;
}

.testimonial-card::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    border-radius: 0 0 0 100%;
    background: radial-gradient(circle at 100% 0%, rgb(var(--couleur-primaire) / 10%), transparent 68%);
    content: '';
    pointer-events: none;
}

.testimonial-card__header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.95rem;
}

.testimonial-card__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    flex: 0 0 auto;
    border-radius: 999px;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: 0 10px 24px -14px rgb(13 38 62 / 55%);
}

.testimonial-card__avatar--rose {
    background: linear-gradient(145deg, rgb(var(--couleur-primaire)) 0%, rgb(160 33 45) 100%);
}

.testimonial-card__avatar--sky {
    background: linear-gradient(145deg, rgb(46 98 145) 0%, rgb(22 55 86) 100%);
}

.testimonial-card__avatar--amber {
    background: linear-gradient(145deg, rgb(196 132 58) 0%, rgb(150 88 34) 100%);
}

.testimonial-card__avatar--sage {
    background: linear-gradient(145deg, rgb(62 96 118) 0%, rgb(34 68 92) 100%);
}

.testimonial-card__name {
    color: rgb(var(--texte-principal));
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.testimonial-card__context {
    margin-top: 0.15rem;
    color: rgb(var(--texte-tertiaire));
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.testimonial-card__stars {
    position: relative;
    z-index: 1;
    display: inline-flex;
    gap: 0.22rem;
    color: rgb(214 158 46);
    font-size: 0.72rem;
}

.testimonial-card__quote {
    position: relative;
    z-index: 1;
    margin: 0;
}

.testimonial-card__quote p {
    color: rgb(var(--texte-secondaire));
    font-size: 0.98rem;
    line-height: 1.7;
}

@media (min-width: 1024px) {
    .testimonial-card {
        padding: 1.85rem 2rem 2rem;
    }
}

/* ===== CALL Prod — spectacle ===== */
.brand-logo-img {
    display: block;
    height: 36px;
    width: auto;
    max-width: 200px;
}

@media (max-width: 640px) {
    .brand-logo-img {
        height: 30px;
        max-width: 158px;
    }
}

.brand-logo-img--white {
    display: none;
}

.brand-logo-img--footer {
    height: 40px;
    max-width: 220px;
}

#site-header.header-hero .brand-logo-img--color {
    display: none;
}

#site-header.header-hero .brand-logo-img--white {
    display: block;
}

.text-orange {
    color: rgb(var(--couleur-orange));
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgb(255 255 255 / 18%);
    background: rgb(255 255 255 / 8%);
    color: #fff;
    font-size: 1.05rem;
    transition: transform 150ms ease, border-color 150ms ease, background 150ms ease, color 150ms ease;
}

.social-icon:hover {
    transform: translateY(-2px);
    border-color: rgb(var(--couleur-primaire));
    background: rgb(var(--couleur-primaire) / 18%);
    color: rgb(var(--couleur-primaire));
}

.cast-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

@media (min-width: 640px) {
    .cast-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .cast-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1rem;
    }
}

.cast-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 3 / 4;
    isolation: isolate;
}

.cast-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.cast-card:hover img {
    transform: scale(1.05);
}

.cast-card__label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 2.4rem 0.9rem 0.85rem;
    background: linear-gradient(180deg, transparent 0%, rgb(7 11 26 / 88%) 100%);
    color: #fff;
    font-family: 'Bricolage Grotesque', 'Sora', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
}

.mosaic {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.85rem;
    min-height: 420px;
}

@media (max-width: 767px) {
    .mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        min-height: 0;
    }

    .mosaic figure:first-child {
        grid-row: auto;
    }

    .mosaic figure {
        min-height: 200px;
    }
}

.mosaic figure {
    margin: 0;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.mosaic figure:first-child {
    grid-row: 1 / span 2;
}

.mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.public-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgb(var(--fond-blanc));
    border: 1px solid rgb(var(--fond-bordure));
    font-weight: 700;
    font-size: 0.88rem;
}

.public-chip i {
    color: rgb(var(--couleur-orange));
}

.hero-cover {
    background: rgb(var(--couleur-sauge));
}

.cta-banner {
    background:
        radial-gradient(700px 280px at 10% 0%, rgb(var(--couleur-primaire) / 28%), transparent 70%),
        radial-gradient(500px 240px at 92% 100%, rgb(var(--couleur-orange) / 22%), transparent 65%),
        rgb(var(--couleur-sauge));
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.65rem;
    font-size: 0.82rem;
    color: rgb(var(--texte-tertiaire));
}

.breadcrumb a {
    color: rgb(var(--texte-secondaire));
    font-weight: 600;
}

.breadcrumb a:hover {
    color: rgb(var(--couleur-primaire-hover));
}

/* =========================================================
   CALL Prod — scène 2026 : glow, grain, marquee, reveals
   ========================================================= */

.btn-secondary {
    border-radius: 999px;
}

.btn-ghost,
.btn-ghost-dark {
    border-radius: 999px;
    font-family: 'Outfit', sans-serif;
}

.btn-primary:hover {
    filter: saturate(1.15) brightness(1.08);
    box-shadow:
        0 12px 36px -8px rgb(var(--couleur-primaire) / 80%),
        0 0 28px rgb(var(--couleur-primaire) / 35%);
}

body {
    background-image:
        radial-gradient(1200px 600px at 100% -10%, rgb(var(--couleur-primaire) / 7%), transparent 55%),
        radial-gradient(900px 500px at -10% 40%, rgb(var(--couleur-orange) / 6%), transparent 50%);
}

.stage-grain,
.section-navy::after,
.hero-cover::after,
.cta-banner::after,
footer::after {
    pointer-events: none;
}

.hero-cover::after,
.section-navy::after,
.cta-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.18;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-cover::after {
    z-index: 2;
}

.hero-cover__content {
    z-index: 4;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    z-index: 80;
    background: linear-gradient(90deg, rgb(var(--couleur-primaire)), rgb(var(--couleur-orange)));
    box-shadow: 0 0 16px rgb(var(--couleur-primaire) / 70%);
    pointer-events: none;
}

@property --logo-glow-angle {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
}

.brand-logo-plate {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #050505;
    border-radius: 14px;
    padding: 7px 12px 8px;
    z-index: 1;
    box-shadow:
        0 0 0 1px rgb(var(--couleur-primaire) / 35%),
        0 0 18px rgb(var(--couleur-primaire) / 42%),
        0 0 32px rgb(255 107 20 / 16%);
    transition: box-shadow 220ms ease, transform 220ms ease;
}

.brand-logo-plate::before,
.brand-logo-plate::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    animation: logoGlowAngle 3.8s linear infinite;
}

.brand-logo-plate::before {
    z-index: 0;
    background: conic-gradient(
        from var(--logo-glow-angle),
        rgb(3 12 201 / 0%) 0deg 140deg,
        rgb(3 12 201 / 58%) 205deg,
        rgb(90 170 255 / 62%) 265deg,
        rgb(255 107 20 / 50%) 320deg,
        rgb(3 12 201 / 0%) 360deg
    );
    filter: blur(18px);
    mix-blend-mode: screen;
}

.brand-logo-plate::after {
    z-index: 2;
    padding: 1.5px;
    background: conic-gradient(
        from var(--logo-glow-angle),
        rgb(3 12 201 / 0%) 0deg 150deg,
        rgb(3 12 201 / 90%) 215deg,
        rgb(120 190 255 / 90%) 270deg,
        rgb(255 107 20 / 85%) 325deg,
        rgb(3 12 201 / 0%) 360deg
    );
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.brand-logo-plate img {
    position: relative;
    z-index: 1;
}

@keyframes logoGlowAngle {
    to { --logo-glow-angle: 360deg; }
}

.brand-lockup:hover .brand-logo-plate {
    transform: translateY(-1px);
    box-shadow:
        0 0 0 1px rgb(var(--couleur-primaire) / 55%),
        0 0 28px rgb(var(--couleur-primaire) / 55%),
        0 0 40px rgb(255 107 20 / 22%);
}

.brand-logo-img,
.brand-logo-img--color,
.brand-logo-img--white,
.brand-logo-img--footer {
    display: block !important;
    height: 34px;
    width: auto;
    max-width: 210px;
}

@media (max-width: 640px) {
    .brand-logo-img,
    .brand-logo-img--color,
    .brand-logo-img--white,
    .brand-logo-img--footer {
        height: 28px;
        max-width: 168px;
    }
}

#site-header.header-hero .brand-logo-img--color,
#site-header.header-hero .brand-logo-img--white {
    display: block !important;
}

.hero-cover__overlay {
    background:
        linear-gradient(105deg, rgb(4 4 16 / 88%) 0%, rgb(3 12 201 / 38%) 48%, rgb(255 107 20 / 22%) 100%),
        linear-gradient(180deg, rgb(0 0 0 / 18%) 0%, rgb(0 0 0 / 62%) 100%);
}

.hero-beams {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero-beams span {
    position: absolute;
    top: -20%;
    width: 2px;
    height: 140%;
    background: linear-gradient(180deg, transparent, rgb(var(--couleur-primaire) / 70%), rgb(var(--couleur-orange) / 50%), transparent);
    filter: blur(1px);
    animation: beamSweep 7s linear infinite;
    opacity: 0.55;
}

.hero-beams span:nth-child(1) { left: 18%; animation-duration: 6.2s; }
.hero-beams span:nth-child(2) { left: 46%; animation-duration: 8.4s; animation-delay: -2s; }
.hero-beams span:nth-child(3) { left: 72%; animation-duration: 7.1s; animation-delay: -4s; }

@keyframes beamSweep {
    0% { transform: translateY(-12%) rotate(18deg); opacity: 0; }
    18% { opacity: 0.7; }
    100% { transform: translateY(18%) rotate(18deg); opacity: 0; }
}

.hero-orbs {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-orbs i {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: orbFloat 10s ease-in-out infinite;
}

.hero-orbs i:first-child {
    width: 280px;
    height: 280px;
    left: -60px;
    bottom: 10%;
    background: rgb(var(--couleur-primaire) / 45%);
}

.hero-orbs i:last-child {
    width: 240px;
    height: 240px;
    right: -40px;
    top: 18%;
    background: rgb(var(--couleur-orange) / 38%);
    animation-delay: -4s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(18px, -22px) scale(1.08); }
}

.hero-kicker {
    border-color: rgb(var(--couleur-primaire) / 45%);
    background: rgb(3 12 201 / 28%);
    backdrop-filter: blur(14px);
    animation: kickerPulse 3.4s ease-in-out infinite;
}

.hero-kicker i {
    color: rgb(var(--couleur-orange));
}

@keyframes kickerPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgb(var(--couleur-primaire) / 0%); }
    50% { box-shadow: 0 0 0 8px rgb(var(--couleur-primaire) / 0%), 0 0 24px rgb(var(--couleur-primaire) / 35%); }
}

.text-glow {
    color: #fff;
    text-shadow: 0 0 22px rgb(var(--couleur-primaire) / 55%);
}

.text-fire {
    background: linear-gradient(90deg, rgb(var(--couleur-orange)), #ffd27a 45%, rgb(var(--couleur-orange)));
    background-size: 180% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fireShift 4s linear infinite;
}

@keyframes fireShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 180% 50%; }
}

.scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 1.6rem;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgb(255 255 255 / 72%);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.scroll-hint b {
    width: 18px;
    height: 30px;
    border: 1.5px solid rgb(255 255 255 / 45%);
    border-radius: 999px;
    position: relative;
}

.scroll-hint b::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    width: 3px;
    height: 7px;
    border-radius: 999px;
    background: rgb(var(--couleur-orange));
    transform: translateX(-50%);
    animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

.show-marquee {
    overflow: hidden;
    border-block: 1px solid rgb(var(--couleur-primaire) / 18%);
    background:
        linear-gradient(90deg, rgb(var(--couleur-primaire) / 10%), rgb(var(--couleur-orange) / 10%), rgb(var(--couleur-primaire) / 10%));
    padding: 0.85rem 0;
}

.show-marquee__track {
    display: flex;
    width: max-content;
    gap: 2.4rem;
    animation: marquee 32s linear infinite;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.82rem;
    color: rgb(var(--couleur-primaire));
}

.show-marquee__track span {
    white-space: nowrap;
}

.show-marquee__track i {
    color: rgb(var(--couleur-orange));
    margin-right: 0.55rem;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.trust-strip {
    background: rgb(8 8 22);
    border: 0;
    box-shadow: none;
}

.trust-strip .trust-item {
    color: rgb(255 255 255 / 82%);
}

.trust-strip .trust-item i {
    color: rgb(var(--couleur-orange));
}

.service-photo-card {
    border-radius: 28px;
    min-height: 380px;
}

.service-photo-card::after {
    content: '';
    position: absolute;
    inset: auto 12% -40px 12%;
    height: 80px;
    background: rgb(var(--couleur-primaire) / 45%);
    filter: blur(28px);
    z-index: 0;
    opacity: 0;
    transition: opacity 240ms ease;
}

.service-photo-card:hover::after {
    opacity: 1;
}

.service-photo-card:hover {
    transform: translateY(-10px) rotate(-0.4deg);
}

.cast-card {
    border-radius: 22px;
    box-shadow: 0 0 0 1px rgb(var(--couleur-primaire) / 10%);
}

.cast-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 40%, rgb(3 12 201 / 35%) 100%);
    mix-blend-mode: multiply;
    pointer-events: none;
}

.public-chip {
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.public-chip:hover {
    transform: translateY(-3px) rotate(-1deg);
    border-color: rgb(var(--couleur-orange));
    background: rgb(var(--couleur-orange-clair));
    box-shadow: 0 10px 24px -16px rgb(var(--couleur-orange) / 70%);
}

.city-chip {
    border-radius: 999px;
}

.process-step__number {
    background: linear-gradient(135deg, rgb(var(--couleur-primaire)), rgb(var(--couleur-orange)));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 2.4rem;
    font-weight: 800;
}

.reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1), filter 700ms ease;
}

.reveal.is-in {
    opacity: 1;
    transform: none;
    filter: none;
}

.reveal-left {
    transform: translateX(-32px);
}

.reveal-right {
    transform: translateX(32px);
}

.reveal-left.is-in,
.reveal-right.is-in {
    transform: none;
}

.stagger > .reveal:nth-child(2) { transition-delay: 80ms; }
.stagger > .reveal:nth-child(3) { transition-delay: 160ms; }
.stagger > .reveal:nth-child(4) { transition-delay: 240ms; }
.stagger > .reveal:nth-child(5) { transition-delay: 320ms; }
.stagger > .reveal:nth-child(6) { transition-delay: 400ms; }
.stagger > .reveal:nth-child(7) { transition-delay: 480ms; }
.stagger > .reveal:nth-child(8) { transition-delay: 560ms; }

.cta-banner {
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    isolation: isolate;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: -40%;
    background: conic-gradient(from 180deg, rgb(var(--couleur-primaire) / 35%), transparent 30%, rgb(var(--couleur-orange) / 35%), transparent 70%);
    animation: spinGlow 14s linear infinite;
    z-index: 0;
}

.cta-banner > * {
    position: relative;
    z-index: 3;
}

@keyframes spinGlow {
    to { transform: rotate(360deg); }
}

.section-navy {
    background:
        radial-gradient(800px 460px at 0% 0%, rgb(var(--couleur-primaire) / 38%), transparent 66%),
        radial-gradient(620px 420px at 100% 100%, rgb(var(--couleur-orange) / 22%), transparent 62%),
        linear-gradient(135deg, rgb(var(--couleur-sauge)) 0%, rgb(12 10 40) 100%);
}

.faq-item {
    border-radius: 18px;
    transition: transform 180ms ease;
}

.faq-item[open] {
    transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
        filter: none;
    }

    .show-marquee__track {
        animation: none;
        flex-wrap: wrap;
        width: auto;
        justify-content: center;
    }

    .hero-mini--photo .hero-mini__bg img {
        animation: none;
        height: 100%;
        transform: none;
    }
}

#site-header.header-hero .site-header__nav > .nav-link:hover,
#site-header.header-hero .header-phone:hover {
    color: rgb(var(--couleur-orange)) !important;
}

.hero-route i,
.hero-kicker i {
    color: rgb(var(--couleur-orange));
}

.social-icon:hover {
    color: #fff;
    border-color: rgb(var(--couleur-orange));
    background: rgb(var(--couleur-orange) / 28%);
}

.hero-mini {
    background:
        radial-gradient(900px 520px at 0% 0%, rgb(var(--couleur-primaire) / 55%), transparent 58%),
        radial-gradient(700px 480px at 100% 100%, rgb(var(--couleur-orange) / 32%), transparent 55%),
        linear-gradient(160deg, #050510 0%, #0b0b28 55%, #12081a 100%);
    color: #fff;
    border-bottom: 0;
}

.hero-mini::before {
    background: rgb(var(--couleur-orange) / 28%);
}

.hero-mini::after {
    content: '';
    position: absolute;
    top: -80px;
    left: 30%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgb(var(--couleur-primaire) / 40%);
    filter: blur(70px);
    z-index: 0;
    animation: orbFloat 9s ease-in-out infinite;
}

.hero-mini--photo {
    min-height: 22rem;
    background: #050510;
}

.hero-mini--photo > .hero-mini__bg,
.hero-mini--photo > .hero-orbs,
.hero-mini--photo > .hero-beams,
.hero-mini--photo > .hero-mini__flare {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-mini--photo .hero-mini__bg {
    overflow: hidden;
}

.hero-mini--photo .hero-mini__bg img {
    width: 100%;
    height: 118%;
    object-fit: cover;
    object-position: center 28%;
    filter: saturate(1.06) contrast(1.06);
    animation: heroMiniKen 26s ease-in-out infinite alternate;
    will-change: transform;
}

.hero-mini--marvel .hero-mini__bg img {
    object-position: center 34%;
}

@keyframes heroMiniKen {
    from { transform: scale(1.04) translate3d(0, 0, 0); }
    to { transform: scale(1.14) translate3d(-2.4%, -2%, 0); }
}

.hero-mini--photo::before {
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    border-radius: 0;
    filter: none;
    z-index: 1;
    background:
        linear-gradient(105deg, rgb(4 4 16 / 86%) 0%, rgb(3 12 201 / 42%) 48%, rgb(255 107 20 / 24%) 100%),
        linear-gradient(180deg, rgb(0 0 0 / 22%) 0%, rgb(0 0 0 / 58%) 100%);
    animation: none;
}

.hero-mini--photo::after {
    inset: 0;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    border-radius: 0;
    filter: none;
    z-index: 2;
    opacity: 0.16;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-color: transparent;
    animation: none;
}

.hero-mini--photo .hero-orbs,
.hero-mini--photo .hero-beams {
    z-index: 3;
}

.hero-mini--photo .hero-mini__flare {
    inset: auto;
    z-index: 3;
    width: 160%;
    height: 220%;
    left: -30%;
    top: -60%;
    background: conic-gradient(from 210deg, transparent 0 38%, rgb(var(--couleur-primaire) / 22%), rgb(var(--couleur-orange) / 16%), transparent 72%);
    mix-blend-mode: screen;
    animation: heroMiniFlare 16s linear infinite;
    opacity: 0.45;
}

@keyframes heroMiniFlare {
    to { transform: rotate(360deg); }
}

.hero-mini--photo > .container {
    position: relative;
    z-index: 4;
    padding-top: 8.25rem;
    padding-bottom: 4.75rem;
}

@media (min-width: 1024px) {
    .hero-mini--photo > .container {
        padding-top: 9.5rem;
        padding-bottom: 5.5rem;
    }
}

.hero-mini h1 {
    color: #fff;
}

.hero-mini p {
    color: rgb(255 255 255 / 80%);
}

.hero-mini .breadcrumb,
.hero-mini .breadcrumb a,
.hero-mini .breadcrumb span {
    color: rgb(255 255 255 / 68%);
}

.hero-mini .breadcrumb a:hover {
    color: rgb(var(--couleur-orange));
}

.hero-mini .eyebrow {
    color: rgb(var(--couleur-orange));
}

.hero-cover__content {
    padding-top: 10rem;
    padding-bottom: 8rem;
}

.image-frame {
    transition: transform 280ms ease, box-shadow 280ms ease;
}

.image-frame:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 50px -22px rgb(var(--couleur-primaire) / 55%);
}

.footer-heading {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #ffffff;
    border-bottom: 1px solid rgb(255 255 255 / 18%);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.footer-heading i {
    color: rgb(var(--couleur-orange));
}

/* =========================================================
   Le Petit Sylvain — forêt, or, papier
   ========================================================= */

.btn-primary,
.btn-secondary,
.site-header__link,
.site-header__phone,
.site-header__cta,
.site-header__drawer a,
#site-header .nav-link,
#site-header .header-phone,
#site-header .btn-primary,
#mobile-menu a,
.footer-heading,
.show-marquee__track,
.nav-dropdown-panel .nav-dropdown-title {
    font-family: 'Cormorant Garamond', 'Georgia', serif !important;
    font-optical-sizing: auto;
    font-variation-settings: normal;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.btn-primary,
.btn-secondary {
    font-size: 1.05rem;
    border-radius: 999px;
}

.hero-cover__overlay {
    background:
        linear-gradient(105deg, rgb(20 28 22 / 82%) 0%, rgb(28 40 32 / 48%) 46%, rgb(20 24 18 / 28%) 100%),
        linear-gradient(180deg, rgb(0 0 0 / 12%) 0%, rgb(18 22 16 / 58%) 100%);
}

.hero-cover__bg img {
    object-position: center 40%;
    filter: saturate(0.92) contrast(1.04) brightness(0.96);
}

.hero-kicker {
    border-color: rgb(184 142 74 / 42%);
    background: rgb(28 32 26 / 38%);
}

.hero-kicker i,
.hero-route i {
    color: rgb(var(--couleur-orange));
}

.text-fire {
    background: linear-gradient(90deg, #d4b36a, #f0e2b8 48%, #c4a35a);
    background-size: 180% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-beams span {
    background: linear-gradient(180deg, transparent, rgb(212 186 120 / 42%), transparent);
    width: 1px;
    filter: blur(2px);
    opacity: 0.35;
}

.hero-orbs i:first-child {
    background: rgb(46 74 58 / 40%);
}

.hero-orbs i:last-child {
    background: rgb(184 142 74 / 28%);
}

.brand-logo-plate {
    background: #111411;
    border-radius: 12px;
    padding: 8px 14px 9px;
    box-shadow: 0 0 0 1px rgb(184 142 74 / 28%);
}

.brand-logo-plate::before,
.brand-logo-plate::after {
    display: none;
}

.brand-lockup:hover .brand-logo-plate {
    box-shadow: 0 0 0 1px rgb(184 142 74 / 55%), 0 10px 24px -16px rgb(28 32 26 / 70%);
    transform: none;
}

.show-marquee {
    border-block: 1px solid rgb(var(--fond-bordure));
    background: rgb(var(--fond-creme));
}

.show-marquee__track {
    color: rgb(var(--couleur-primaire));
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.show-marquee__track i {
    color: rgb(var(--couleur-orange));
}

.trust-strip {
    background: rgb(var(--couleur-sauge));
}

.section-reassure {
    background:
        radial-gradient(720px 480px at 0% 0%, rgb(var(--couleur-primaire) / 10%), transparent 62%),
        radial-gradient(640px 420px at 100% 100%, rgb(184 142 74 / 12%), transparent 58%),
        linear-gradient(165deg, rgb(252 250 245) 0%, rgb(246 241 232) 100%);
}

.section-navy,
.section-red {
    background:
        radial-gradient(800px 460px at 0% 0%, rgb(var(--couleur-primaire) / 35%), transparent 66%),
        radial-gradient(620px 420px at 100% 100%, rgb(var(--couleur-orange) / 16%), transparent 62%),
        linear-gradient(135deg, rgb(var(--couleur-sauge)) 0%, rgb(22 30 24) 100%);
}

.parallax-panel::after {
    background: linear-gradient(90deg, rgb(20 28 22 / 86%), rgb(28 40 32 / 42%), rgb(20 24 18 / 18%));
}

.hero-mini--photo::before {
    background:
        linear-gradient(105deg, rgb(20 28 22 / 86%) 0%, rgb(46 74 58 / 38%) 48%, rgb(184 142 74 / 18%) 100%),
        linear-gradient(180deg, rgb(0 0 0 / 18%) 0%, rgb(0 0 0 / 52%) 100%);
}

.cta-banner {
    background:
        radial-gradient(700px 280px at 10% 0%, rgb(var(--couleur-primaire) / 28%), transparent 70%),
        radial-gradient(500px 240px at 92% 100%, rgb(var(--couleur-orange) / 16%), transparent 65%),
        rgb(var(--couleur-sauge));
}

.cta-banner::before {
    background: conic-gradient(from 180deg, rgb(var(--couleur-primaire) / 28%), transparent 30%, rgb(var(--couleur-orange) / 22%), transparent 70%);
}

.scroll-progress {
    background: linear-gradient(90deg, rgb(var(--couleur-primaire)), rgb(var(--couleur-orange)));
}

.portrait-frame {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 28px 60px -28px rgb(28 32 26 / 45%);
}

.portrait-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-panel {
    position: relative;
    padding: 1.75rem 1.8rem 1.6rem;
    border-left: 3px solid rgb(var(--couleur-orange));
    background: rgb(var(--fond-creme));
    border-radius: 0 18px 18px 0;
    color: rgb(var(--texte-secondaire));
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.22rem;
    font-style: italic;
    line-height: 1.55;
}

.domain-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .domain-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.domain-card {
    padding: 1.25rem 1.3rem;
    border: 1px solid rgb(var(--fond-bordure));
    border-radius: 18px;
    background: rgb(var(--fond-blanc));
}

.domain-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: rgb(var(--texte-principal));
}

.domain-card p {
    margin-top: 0.45rem;
    color: rgb(var(--texte-secondaire));
    font-size: 0.95rem;
    line-height: 1.6;
}

.pricing-offer {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.85rem 1.7rem 1.7rem;
    border: 1px solid rgb(var(--fond-bordure));
    border-radius: 24px;
    background: rgb(var(--fond-blanc));
    box-shadow: 0 18px 40px -30px rgb(28 32 26 / 40%);
}

.pricing-offer.is-featured {
    border-color: rgb(var(--couleur-primaire) / 45%);
    box-shadow: 0 24px 50px -28px rgb(46 74 58 / 45%);
}

.pricing-offer__price {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1;
    color: rgb(var(--couleur-primaire));
}

.step-forest {
    display: grid;
    gap: 1.1rem;
}

.step-forest article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
}

.btn-paypal {
    background: #0070ba;
    color: #fff;
    box-shadow: 0 8px 22px -10px rgb(0 112 186 / 70%);
}

.btn-paypal:hover {
    background: #005ea6;
    color: #fff;
}

.legal-note {
    font-size: 0.86rem;
    color: rgb(var(--texte-tertiaire));
    line-height: 1.65;
}

.article-flow p + p,
.article-flow ul {
    margin-top: 1rem;
}

.article-flow h2 {
    margin-top: 2.4rem;
}

.article-flow h3 {
    margin-top: 1.6rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.45rem;
    font-weight: 600;
}

/* =========================================================
   Atelier — une seule rampe, comme l’en-tête
   ========================================================= */

:root {
    --rail: min(1120px, calc(100% - 2.5rem));
    --measure: 38rem;
    --site-header-offset: 76px;
}

body {
    font-family: 'Source Serif 4', 'Georgia', 'Times New Roman', serif;
    background-color: rgb(var(--fond-creme));
    background-image: none;
    color: rgb(var(--texte-principal));
    line-height: 1.7;
}

.font-display {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 500;
    letter-spacing: -0.018em;
    line-height: 1.08;
    font-style: normal;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --- En-tête papier, mot-marque lisible --- */

#site-header,
.site-header,
#site-header.header-hero,
#site-header.header-solid,
#site-header.is-nav-open {
    position: sticky !important;
    top: 0;
    background: rgb(var(--fond-creme)) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid rgb(var(--fond-bordure)) !important;
    box-shadow: none !important;
    font-family: 'Source Serif 4', Georgia, serif;
}

.site-header__top {
    display: none !important;
}

.site-header__bar {
    width: var(--rail);
    padding: 0.95rem 0;
}

.site-header__link,
.site-header__phone,
.site-header__cta,
.site-header__drawer a,
#site-header .nav-link,
#site-header .header-phone,
#site-header .btn-primary,
#mobile-menu a {
    font-family: 'Source Serif 4', Georgia, serif !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em !important;
    font-variation-settings: normal;
}

.site-header__link {
    display: inline-flex;
    align-items: center;
    font-size: 1.02rem;
    padding: 0.35rem 0.55rem;
    color: rgb(var(--texte-principal));
    line-height: 1;
}

.site-header__link:hover {
    color: rgb(var(--couleur-primaire));
}

.nav-caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.35rem;
    border-left: 3.5px solid transparent;
    border-right: 3.5px solid transparent;
    border-top: 4px solid currentColor;
    opacity: 0.5;
}

.site-header__phone {
    margin-left: 0.85rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 1.02rem;
}

.site-header__phone i {
    color: inherit;
    font-size: 0.72rem;
}

.site-header__phone:hover {
    color: rgb(var(--couleur-primaire));
}

.site-header__cta.btn-primary {
    margin-left: 1rem;
    padding: 0.5rem 1.05rem !important;
    font-size: 0.92rem !important;
    white-space: nowrap;
}

.site-header__icon-btn,
.site-header__burger {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    border-radius: 0;
    border: 1px solid rgb(var(--fond-bordure));
    color: var(--luxe-forest-deep);
}

.site-header__icon-btn {
    background: transparent;
}

.site-header__burger {
    background-color: transparent;
}

.site-header__drawer {
    background: rgb(var(--fond-creme));
    border-top: 1px solid rgb(var(--fond-bordure));
}

.site-header__drawer a {
    border-radius: 0;
    font-size: 1.12rem;
}

.site-header__drawer a:hover {
    background: rgb(var(--fond-doux));
}

.atelier-menu-panel {
    position: absolute;
    left: 0;
    top: 100%;
    padding-top: 0.45rem;
    width: 17.5rem;
    max-width: calc(100vw - 2rem);
    z-index: 60;
}

.atelier-menu-panel__inner {
    background: rgb(var(--fond-creme));
    border: 1px solid rgb(var(--fond-bordure));
    padding: 0.35rem 0;
    box-shadow: 0 18px 40px -28px rgb(28 32 26 / 40%);
}

.atelier-menu-panel__inner a {
    display: block;
    padding: 0.7rem 1.1rem;
    color: rgb(var(--texte-principal));
    font-family: 'Source Serif 4', Georgia, serif !important;
    font-weight: 500 !important;
    font-size: 1.02rem;
    letter-spacing: 0;
}

.atelier-menu-panel__inner a:hover {
    background: rgb(var(--fond-doux));
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
}

.brand-logo-plate,
.brand-logo-plate::before,
.brand-logo-plate::after {
    display: contents;
    background: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    animation: none !important;
    filter: none !important;
}

.brand-logo-img,
.brand-logo-img--color,
.brand-logo-img--white,
.brand-logo-img--footer {
    display: none !important;
}

#site-header.header-hero .brand-logo-img--color,
#site-header.header-hero .brand-logo-img--white,
#site-header.header-hero .site-header__link,
#site-header.header-hero .site-header__phone {
    color: rgb(var(--texte-principal)) !important;
}

#site-header.header-hero .site-header__phone,
#site-header.header-hero .site-header__icon-btn,
#site-header.header-hero .site-header__burger {
    border-color: rgb(var(--fond-bordure)) !important;
    background: transparent !important;
    color: var(--luxe-forest-deep) !important;
}

#site-header.header-hero .site-header__phone i,
#site-header.header-hero .site-header__icon-btn i,
#site-header.header-hero .site-header__burger i {
    color: var(--luxe-forest-deep) !important;
}

/* --- Boutons --- */

.btn-primary,
.btn-secondary,
.btn-ghost,
.btn-ghost-dark,
.btn-paypal {
    border-radius: 0;
    box-shadow: none !important;
    font-family: 'Source Serif 4', Georgia, serif !important;
    font-weight: 600;
    letter-spacing: 0.03em;
    filter: none !important;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover,
.btn-ghost-dark:hover,
.btn-paypal:hover {
    transform: none !important;
    filter: none !important;
}

.btn-primary {
    padding: 0.8rem 1.35rem;
    background-color: rgb(var(--couleur-primaire));
    color: #f7f3ea;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.75rem 1.3rem;
    background: transparent;
    color: rgb(var(--texte-principal));
    border: 1px solid rgb(var(--texte-principal));
}

.btn-secondary:hover {
    background: rgb(var(--couleur-primaire));
    color: #f7f3ea;
    border-color: rgb(var(--couleur-primaire));
}

.btn-call {
    white-space: nowrap;
}

.btn-call__desktop {
    display: none;
}

@media (min-width: 1024px) {
    .btn-call__mobile {
        display: none;
    }

    .btn-call__desktop {
        display: inline;
    }

    a[href^="tel:"]:not(.header-mobile-call):not(.site-header__icon-btn):not(.allo-sticky-cta__btn) {
        display: inline-flex;
        align-items: center;
        gap: 0.4em;
    }

    a[href^="tel:"]:not(.header-mobile-call):not(.site-header__icon-btn):not(.site-header__phone):not(.allo-sticky-cta__btn):not(:has(.fa-phone))::before {
        display: inline-block;
        flex: 0 0 auto;
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-style: normal;
        font-size: 0.78em;
        line-height: 1;
        content: "\f095";
        -webkit-font-smoothing: antialiased;
    }
}

.btn-ghost,
.btn-ghost-dark {
    padding: 0.75rem 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid rgb(var(--couleur-orange));
    color: rgb(var(--texte-principal));
}

.btn-ghost:hover,
.btn-ghost-dark:hover {
    background: transparent;
    color: rgb(var(--couleur-primaire));
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    color: rgb(var(--texte-principal));
    font-weight: 500;
    border: 0;
    padding: 0;
    line-height: 1;
}

.btn-text:hover {
    color: rgb(var(--couleur-primaire));
}

.btn-paypal {
    background: #1e4e7a;
    color: #fff;
}

.btn-paypal:hover {
    background: #163b5c;
    color: #fff;
}

.kicker,
.eyebrow {
    display: block;
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgb(var(--couleur-primaire));
}

.eyebrow::before {
    display: none;
}

.atelier-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.1rem 1.6rem;
    margin-top: 1.85rem;
}

.atelier-note {
    margin-top: 1.35rem;
    font-size: 0.95rem;
    color: rgb(var(--texte-tertiaire));
    font-style: italic;
}

.lede {
    margin-top: 1.4rem;
    font-size: 1.12rem;
    line-height: 1.75;
    color: rgb(var(--texte-secondaire));
}

/* --- Photo pleine largeur, sans texte superposé --- */

.atelier-bleed {
    margin: 0;
    background: rgb(var(--couleur-sauge));
}

.atelier-bleed img {
    display: block;
    width: 100%;
    height: min(72vh, 740px);
    object-fit: cover;
    object-position: center 42%;
}

.atelier-rail {
    width: var(--rail);
    margin-left: auto;
    margin-right: auto;
}

.atelier-intro {
    width: var(--rail);
    margin: 0 auto;
    padding: 4.4rem 0 3.6rem;
}

.atelier-intro .kicker,
.atelier-intro h1,
.atelier-intro .lede,
.atelier-intro .atelier-actions,
.atelier-intro .atelier-note {
    max-width: var(--measure);
}

.atelier-intro h1 {
    margin-top: 0.85rem;
    font-size: clamp(2.35rem, 5.4vw, 4.15rem);
}

.atelier-split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1.8rem, 4vw, 4.2rem);
    align-items: center;
    width: var(--rail);
    margin: 0 auto;
    padding: 3.6rem 0 4.2rem;
}

.atelier-split--open {
    align-items: start;
    padding-top: 4.2rem;
}

.atelier-split--open h1 {
    margin-top: 0.7rem;
    font-size: clamp(2.25rem, 4.4vw, 3.55rem);
}

.atelier-split figure {
    position: relative;
    margin: 0;
}

.atelier-split .guide-badge-frame > img,
.atelier-split figure > img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.atelier-split figcaption {
    margin-top: 0.7rem;
    font-size: 0.88rem;
    font-style: italic;
    color: rgb(var(--texte-tertiaire));
}

.atelier-split h2 {
    margin-top: 0.7rem;
    font-size: clamp(2rem, 3.4vw, 3.1rem);
}

.atelier-split p {
    margin-top: 1rem;
    color: rgb(var(--texte-secondaire));
}

.atelier-paths,
.atelier-steps,
.atelier-faq,
.atelier-close,
.page-intro,
.atelier-article {
    width: var(--rail);
    margin-left: auto;
    margin-right: auto;
}

.atelier-section-head {
    max-width: 34rem;
    padding: 1rem 0 0.5rem;
}

.atelier-section-head h2,
.atelier-steps h2,
.atelier-faq h2,
.atelier-close h2,
.page-intro h1 {
    margin-top: 0.65rem;
    font-size: clamp(2.05rem, 4.2vw, 3.35rem);
}

.atelier-section-head p {
    margin-top: 0.9rem;
    color: rgb(var(--texte-secondaire));
}

.path-row {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1.5rem, 4vw, 3.8rem);
    align-items: center;
    padding: 2.8rem 0;
    border-top: 1px solid rgb(var(--fond-bordure));
}

.path-row--flip figure {
    order: 2;
}

.path-row figure {
    margin: 0;
}

.path-row img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.path-index {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem;
    letter-spacing: 0.12em;
    color: rgb(var(--couleur-orange));
}

.path-row h3 {
    margin-top: 0.35rem;
    font-size: clamp(1.7rem, 2.6vw, 2.25rem);
}

.path-row h3 a {
    color: inherit;
}

.path-row h3 a:hover {
    color: rgb(var(--couleur-primaire));
}

.path-row p {
    margin-top: 0.75rem;
    color: rgb(var(--texte-secondaire));
}

.path-row .btn-text {
    margin-top: 1.1rem;
}

.atelier-steps {
    padding: 3.4rem 0 2.4rem;
}

.atelier-steps ol {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    max-width: 38rem;
}

.atelier-steps li {
    display: grid;
    grid-template-columns: 2.1rem 1fr;
    gap: 1rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgb(var(--fond-bordure));
}

.atelier-steps li span {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.45rem;
    color: rgb(var(--couleur-orange));
    line-height: 1.2;
}

.atelier-steps h3 {
    font-size: 1.45rem;
}

.atelier-steps p {
    margin-top: 0.35rem;
    color: rgb(var(--texte-secondaire));
}

.atelier-faq {
    padding: 2.2rem 0 3.6rem;
}

.atelier-faq__list {
    max-width: 40rem;
    margin-top: 1.6rem;
}

details.faq-item {
    border: 0;
    border-top: 1px solid rgb(var(--fond-bordure));
    border-radius: 0;
    background: transparent;
    padding: 1.05rem 0 1.15rem;
    box-shadow: none;
}

details.faq-item:last-child {
    border-bottom: 1px solid rgb(var(--fond-bordure));
}

details.faq-item[open] {
    border-color: rgb(var(--fond-bordure));
    box-shadow: none;
    transform: none;
}

details.faq-item summary {
    font-weight: 600;
    font-family: 'Source Serif 4', Georgia, serif;
}

details.faq-item summary::after {
    content: '+';
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: 1.35rem;
    color: rgb(var(--couleur-orange));
}

details.faq-item[open] summary::after {
    content: '–';
    transform: none;
}

.atelier-close {
    padding: 0 0 5rem;
}

.atelier-close h2,
.atelier-close > p {
    max-width: var(--measure);
}

.atelier-close p {
    margin-top: 0.9rem;
    color: rgb(var(--texte-secondaire));
}

/* --- Pages intérieures --- */

.page-intro {
    padding: 3.4rem 0 1.6rem;
}

.page-intro .lede {
    max-width: var(--measure);
}

.page-photo {
    margin: 0 0 3rem;
    width: 100%;
}

.page-photo img {
    display: block;
    width: 100%;
    height: min(58vh, 560px);
    object-fit: cover;
}

.atelier-article {
    max-width: 40rem;
    padding-bottom: 4.5rem;
}

.atelier-article h2 {
    margin-top: 2.5rem;
    font-size: clamp(1.7rem, 2.6vw, 2.2rem);
}

.atelier-article p,
.atelier-article li {
    margin-top: 0.95rem;
    color: rgb(var(--texte-secondaire));
}

.atelier-dl {
    margin-top: 1.6rem;
    border-top: 1px solid rgb(var(--fond-bordure));
}

.atelier-dl > div {
    display: grid;
    grid-template-columns: minmax(10rem, 0.42fr) 1fr;
    gap: 1rem 1.6rem;
    padding: 1.05rem 0;
    border-bottom: 1px solid rgb(var(--fond-bordure));
}

.atelier-dl dt {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.28rem;
    font-weight: 600;
    color: rgb(var(--texte-principal));
}

.atelier-dl dd {
    margin: 0;
    color: rgb(var(--texte-secondaire));
}

.atelier-prose-steps {
    list-style: none;
    margin: 1.4rem 0 0;
    padding: 0;
}

.atelier-prose-steps li {
    padding: 1.15rem 0;
    border-top: 1px solid rgb(var(--fond-bordure));
    color: rgb(var(--texte-secondaire));
}

.atelier-prose-steps li:last-child {
    border-bottom: 1px solid rgb(var(--fond-bordure));
}

.atelier-prose-steps strong {
    display: block;
    margin-bottom: 0.35rem;
    color: rgb(var(--texte-principal));
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.28rem;
    font-weight: 600;
}

.atelier-dash {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.atelier-dash li {
    position: relative;
    padding-left: 1.15rem;
    margin-bottom: 0.55rem;
    color: rgb(var(--texte-secondaire));
}

.atelier-dash li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: rgb(var(--couleur-orange));
}

.check-list li::before {
    content: '—';
    font-family: 'Source Serif 4', Georgia, serif;
    font-weight: 500;
    background: none;
    width: auto;
    height: auto;
    border-radius: 0;
    color: rgb(var(--couleur-orange));
    font-size: 1rem;
    top: 0;
}

.quote-panel {
    margin: 1.6rem 0;
    padding: 0.2rem 0 0.2rem 1.15rem;
    border-left: 1px solid rgb(var(--couleur-orange));
    border-radius: 0;
    background: transparent;
    font-size: 1.22rem;
}

.callout-primaire,
.callout-sauge,
.card-light,
.card-soft,
.card-dark,
.domain-card,
.pricing-offer,
.form-shell,
.contact-direct,
.image-frame,
.portrait-frame {
    border-radius: 0;
    box-shadow: none;
}

.image-frame,
.portrait-frame {
    min-height: 0;
    aspect-ratio: auto;
}

.image-frame:hover,
.portrait-frame:hover {
    transform: none;
    box-shadow: none;
}

.image-frame img,
.portrait-frame img {
    position: static;
    display: block;
    width: 100%;
    height: auto;
}

.callout-primaire,
.callout-sauge {
    margin-top: 1.8rem;
    padding: 1.1rem 0 0;
    border: 0;
    border-top: 1px solid rgb(var(--fond-bordure));
    background: transparent;
}

.menu-list {
    width: var(--rail);
    margin: 0 auto 3.5rem;
}

.menu-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.4rem 2.2rem;
    padding: 1.7rem 0;
    border-top: 1px solid rgb(var(--fond-bordure));
    align-items: start;
}

.menu-row:last-child {
    border-bottom: 1px solid rgb(var(--fond-bordure));
}

.menu-row h2 {
    font-size: 1.7rem;
}

.menu-row .menu-meta {
    margin-top: 0.25rem;
    font-size: 0.92rem;
    color: rgb(var(--texte-tertiaire));
}

.menu-row p {
    margin-top: 0.65rem;
    color: rgb(var(--texte-secondaire));
    font-size: 0.98rem;
}

.menu-row__buy {
    text-align: right;
    min-width: 10.5rem;
}

.menu-row__buy .price {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.1rem;
    font-weight: 500;
    color: rgb(var(--couleur-primaire));
    line-height: 1;
}

.menu-row__buy .btn-primary {
    margin-top: 0.85rem;
    width: 100%;
}

.legal-note {
    width: var(--rail);
    max-width: none;
    margin: 0 auto 4rem;
    padding: 0;
}

.legal-note p {
    max-width: var(--measure);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    width: var(--rail);
    margin: 0 auto 5rem;
    padding-top: 1rem;
    border-top: 1px solid rgb(var(--fond-bordure));
}

.contact-aside h2 {
    margin-top: 0.5rem;
    font-size: 2.1rem;
}

.contact-aside p,
.contact-aside a {
    margin-top: 0.7rem;
    color: rgb(var(--texte-secondaire));
}

.contact-aside a {
    display: inline-block;
    color: rgb(var(--texte-principal));
    border-bottom: 1px solid rgb(var(--couleur-orange));
}

.form-shell {
    border: 0;
    background: transparent;
    padding: 0 !important;
}

.form-shell .field {
    border-radius: 0;
    background: rgb(var(--fond-blanc));
}

.field {
    border-radius: 0;
    background: rgb(var(--fond-blanc));
    min-height: 46px;
}

.field:focus {
    box-shadow: none;
}

.legal-sheet {
    width: var(--rail);
    margin: 0 auto;
    padding: 3.4rem 0 5rem;
}

.legal-sheet > h1,
.legal-sheet > p,
.legal-sheet > .space-y-10,
.legal-sheet > .article-flow,
.legal-sheet > div {
    max-width: var(--measure);
}

.site-footer {
    background: rgb(var(--fond-doux));
    color: rgb(var(--texte-secondaire));
    border-top: 1px solid rgb(var(--fond-bordure));
}

.site-footer__grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .site-footer__grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(10rem, 0.9fr) minmax(8rem, 0.65fr) minmax(14rem, 1.15fr);
        align-items: start;
    }
}

@media (min-width: 1024px) {
    .site-footer__grid {
        grid-template-columns: minmax(0, 1.25fr) minmax(11rem, 0.9fr) minmax(8.5rem, 0.7fr) minmax(16.5rem, 1.1fr);
    }

    .site-footer__contact a[href^="mailto:"] {
        white-space: nowrap;
    }
}

.site-footer a {
    color: rgb(var(--texte-principal));
}

.site-footer a:hover {
    color: rgb(var(--couleur-primaire));
}

.footer-heading {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    color: rgb(var(--texte-principal)) !important;
    border-bottom: 1px solid rgb(var(--fond-bordure));
    padding-bottom: 0.45rem;
    margin-bottom: 1rem;
}

.site-footer__base {
    border-top: 1px solid rgb(var(--fond-bordure));
}

.site-footer__base p,
.site-footer__base a {
    color: rgb(var(--texte-tertiaire));
}

.breadcrumb {
    margin-bottom: 1.1rem;
    font-size: 0.86rem;
    color: rgb(var(--texte-tertiaire));
}

.breadcrumb a {
    color: rgb(var(--texte-secondaire));
}

.cookie-consent__panel {
    margin: 0;
    max-width: none;
    border-radius: 0;
    background: rgb(var(--fond-creme));
    color: rgb(var(--texte-principal));
    border: 0;
    border-top: 1px solid rgb(var(--fond-bordure));
    box-shadow: none;
    backdrop-filter: none;
    padding: 1rem 1.5rem 1.15rem;
}

.cookie-consent__panel p {
    max-width: 40rem;
    font-size: 0.92rem;
    color: rgb(var(--texte-secondaire));
}

.cookie-consent__panel #cookie-consent-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: rgb(var(--texte-principal));
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    margin-top: 0.85rem;
    align-items: center;
}

.cookie-button {
    min-height: 40px;
    padding: 0.45rem 0.95rem;
    border-radius: 0;
    background: transparent;
    color: rgb(var(--texte-principal));
    border: 1px solid rgb(var(--fond-bordure));
    font-family: 'Source Serif 4', Georgia, serif;
    font-weight: 600;
}

.cookie-button:hover {
    border-color: rgb(var(--couleur-primaire));
    background: transparent;
}

.cookie-button--accept,
.cookie-button--accept:hover {
    background: rgb(var(--couleur-primaire));
    border-color: rgb(var(--couleur-primaire));
    color: #f7f3ea;
}

.hero-orbs,
.hero-beams,
.scroll-hint,
.show-marquee,
.trust-strip,
.scroll-progress,
.cta-banner::before,
.cta-banner::after,
.hero-cover::after,
.section-navy::after {
    display: none !important;
}

.text-fire {
    animation: none;
    background: none;
    color: inherit;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.reveal,
.reveal-left,
.reveal-right {
    opacity: 1;
    transform: none;
    filter: none;
}

@media (max-width: 1023px) {
    .atelier-intro {
        padding: 3.1rem 0 2.8rem;
    }

    .atelier-split,
    .path-row,
    .contact-grid,
    .atelier-dl > div,
    .menu-row {
        grid-template-columns: 1fr;
    }

    .menu-row__buy {
        text-align: left;
        min-width: 0;
    }

    .menu-row__buy .btn-primary {
        width: auto;
    }

    .atelier-bleed img {
        height: min(52vh, 420px);
    }

    .page-photo img {
        height: min(42vh, 360px);
    }
}

@media (max-width: 479px) {
    .btn-primary,
    .btn-secondary,
    .btn-ghost,
    .btn-ghost-dark {
        width: auto;
    }
}

/* =========================================================
   LE PETIT SYLVAIN — Direction "clairière privée"
   Editoriale, tactile et contrastée.
   ========================================================= */

:root {
    --luxe-ink: #172019;
    --luxe-forest: #1f3027;
    --luxe-forest-deep: #132019;
    --luxe-moss: #76816b;
    --luxe-gold: #b88e4a;
    --luxe-paper: #f5f0e6;
    --luxe-paper-light: #fbf8f1;
    --luxe-line: rgba(59, 67, 55, 0.22);
}

body {
    background-color: var(--luxe-paper);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)' opacity='.035'/%3E%3C/svg%3E");
}

#site-header,
.site-header,
#site-header.header-hero,
#site-header.header-solid,
#site-header.is-nav-open {
    background: rgba(247, 243, 234, 0.94) !important;
    border-color: rgba(60, 66, 55, 0.16) !important;
    backdrop-filter: blur(18px) saturate(0.8) !important;
    -webkit-backdrop-filter: blur(18px) saturate(0.8) !important;
    overflow: visible !important;
}

.site-header__bar {
    min-height: var(--site-header-offset);
}

.site-header__link,
.site-header__phone {
    position: relative;
}

.site-header__link::after,
.site-header__phone::after {
    position: absolute;
    right: 0.55rem;
    bottom: 0;
    left: 0.55rem;
    height: 1px;
    background: var(--luxe-gold);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 260ms cubic-bezier(.4, 0, .2, 1);
}

.site-header__phone::after {
    right: 0;
    left: 0;
}

.site-header__link:hover::after,
.site-header__phone:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-header__cta.btn-primary,
.btn-primary {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--luxe-forest);
    color: #fffaf0;
    transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

.btn-primary::after {
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(184, 142, 74, 0);
    content: "";
    pointer-events: none;
    transition: border-color 220ms ease;
}

.btn-primary:hover {
    background: var(--luxe-forest-deep);
}

.btn-primary:hover::after {
    border-color: rgba(184, 142, 74, 0.48);
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    position: relative;
    border: 0;
    padding: 0;
    line-height: 1;
}

.btn-text::before {
    display: none;
}

.btn-text::after {
    display: block;
    flex: 0 0 auto;
    width: 1.15em;
    height: 0.34em;
    margin: 0;
    border: 0;
    background-color: var(--luxe-gold);
    transform: translateY(-0.05em);
    content: "";
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 8'%3E%3Cpath fill='none' stroke='%23000' stroke-width='1.4' stroke-linecap='square' d='M0 4h16.2M13.4 1.15 18.9 4 13.4 6.85'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 8'%3E%3Cpath fill='none' stroke='%23000' stroke-width='1.4' stroke-linecap='square' d='M0 4h16.2M13.4 1.15 18.9 4 13.4 6.85'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
    transition: transform 220ms ease;
}

.btn-text:hover::before {
    width: auto;
}

.btn-text:hover::after {
    transform: translate(4px, -0.05em);
}

.kicker {
    color: var(--luxe-gold);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
}

/* Accueil — hero vidéo pleine largeur, texte superposé */

.home-luxe {
    overflow: visible;
}

.luxe-hero {
    display: grid;
    grid-template-columns: 1fr;
    position: sticky;
    top: var(--site-header-offset);
    z-index: 0;
    min-height: calc(100svh - var(--site-header-offset));
    overflow: hidden;
    background: var(--luxe-forest-deep);
}

.home-luxe__after {
    position: relative;
    z-index: 2;
    background-color: var(--luxe-paper);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)' opacity='.035'/%3E%3C/svg%3E");
    box-shadow: 0 -36px 72px -28px rgba(19, 32, 25, 0.42);
}

.luxe-hero__copy,
.luxe-hero__visual {
    grid-area: 1 / 1;
}

.luxe-hero__copy {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    width: 100%;
    color: #f8f2e6;
    isolation: isolate;
}

.luxe-hero__copy::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(184, 142, 74, 0.16), transparent 38%),
        linear-gradient(90deg,
            rgba(19, 32, 25, 0.94) 0%,
            rgba(19, 32, 25, 0.86) 22%,
            rgba(19, 32, 25, 0.62) 42%,
            rgba(19, 32, 25, 0.28) 62%,
            rgba(19, 32, 25, 0.06) 78%,
            transparent 92%);
    content: "";
    pointer-events: none;
}

.luxe-hero__copy::after {
    position: absolute;
    top: 9%;
    bottom: 9%;
    left: clamp(1.25rem, 3vw, 3.5rem);
    z-index: 1;
    width: 1px;
    background: linear-gradient(transparent, rgba(184, 142, 74, 0.5), transparent);
    content: "";
}

.luxe-hero__copy-inner {
    position: relative;
    z-index: 1;
    width: min(42rem, calc(100% - 4.5rem));
    margin: 0 0 0 clamp(2.4rem, 6vw, 6rem);
    padding: 4.5rem 0;
}

.luxe-hero__award {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1.15rem;
    padding: 0.42rem 0.85rem;
    border: 1px solid rgba(184, 142, 74, 0.58);
    color: #e8c98a;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
}

.luxe-hero__award:hover {
    border-color: rgba(232, 201, 138, 0.9);
    color: #f4e3b8;
}

.guide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
    color: inherit;
}

.guide-badge img {
    display: block;
    width: 4.4rem;
    height: 4.4rem;
    object-fit: contain;
    background: transparent;
    filter: drop-shadow(0 10px 18px rgba(19, 32, 25, 0.28));
}

.guide-badge span {
    max-width: 11.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.guide-badge-frame {
    position: relative;
}

.guide-badge--seal {
    position: absolute;
    right: -0.55rem;
    bottom: -0.55rem;
    z-index: 2;
    display: block;
}

.guide-badge--seal img {
    width: 7.25rem;
    height: 7.25rem;
    filter: drop-shadow(0 16px 26px rgba(19, 32, 25, 0.42));
}

.guide-badge--hero {
    margin-bottom: 0.35rem;
}

.guide-badge--hero img {
    width: 6.5rem;
    height: 6.5rem;
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.42));
}

.guide-badge--inline {
    margin-top: 1.35rem;
}

.guide-badge--inline span {
    color: inherit;
    letter-spacing: 0.12em;
}

.luxe-hero h1 {
    margin-top: 1.05rem;
    font-size: clamp(3.15rem, 5.3vw, 6.3rem);
    font-weight: 500;
    line-height: 0.93;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.luxe-hero__lead {
    max-width: 36rem;
    margin-top: 1.65rem;
    color: rgba(248, 242, 230, 0.72);
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    line-height: 1.75;
}

.luxe-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1rem 1.6rem;
    align-items: center;
    margin-top: 1.9rem;
}

.luxe-hero .btn-primary {
    border-color: rgba(184, 142, 74, 0.45);
    background: var(--luxe-gold);
    color: var(--luxe-forest-deep);
}

.luxe-hero .btn-primary:hover {
    background: #c49b58;
}

.luxe-hero .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-color: rgba(247, 240, 227, 0.5);
    background: transparent;
    color: #f7f0e3;
}

.luxe-hero .btn-secondary:hover {
    border-color: var(--luxe-gold);
    background: rgba(184, 142, 74, 0.18);
    color: #fffaf0;
}

.luxe-hero .btn-text {
    color: #f7f0e3;
}

.luxe-hero__meta {
    margin-top: 2.2rem;
    color: rgba(248, 242, 230, 0.48);
    font-size: 0.82rem;
    font-style: italic;
}

.luxe-hero__visual {
    position: relative;
    isolation: isolate;
    min-height: 100%;
    overflow: hidden;
    margin: 0;
}

.luxe-hero__visual::after {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(19, 32, 25, 0.12), transparent 42%),
        linear-gradient(180deg, transparent 62%, rgba(14, 24, 18, 0.22));
    content: "";
    pointer-events: none;
}

.luxe-hero__visual img,
.luxe-hero__visual video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
    filter: saturate(0.72) contrast(1.03) brightness(0.96);
}

.luxe-hero__video {
    position: absolute;
    inset: 0;
    z-index: 0;
    animation: luxeHeroVisualIn 1100ms cubic-bezier(0.2, 0.7, 0.2, 1) 80ms both;
}

.luxe-hero__veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(186, 192, 186, 0.2), rgba(132, 140, 134, 0.08) 38%, rgba(18, 24, 20, 0.18)),
        linear-gradient(90deg, rgba(22, 32, 26, 0.08), transparent 30%);
    pointer-events: none;
}

.luxe-hero__veil::before,
.luxe-hero__veil::after {
    position: absolute;
    content: "";
    pointer-events: none;
}

.luxe-hero__veil::before {
    inset: -32%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800'%3E%3Cfilter id='s' x='-20%25' y='-20%25' width='140%25' height='140%25'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.006 0.012' numOctaves='4' seed='7' result='n'/%3E%3CfeGaussianBlur in='n' stdDeviation='16' result='b'/%3E%3CfeColorMatrix in='b' type='matrix' values='0 0 0 0 0.9 0 0 0 0 0.91 0 0 0 0 0.86 0 0 0 0.72 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23s)'/%3E%3C/svg%3E");
    background-size: cover;
    opacity: 0.55;
    mix-blend-mode: soft-light;
    animation: luxeHeroMist 32s ease-in-out infinite alternate;
}

.luxe-hero__veil::after {
    inset: -8%;
    background:
        radial-gradient(ellipse 72% 56% at 14% 16%, rgba(240, 226, 186, 0.28), transparent 56%),
        radial-gradient(ellipse 54% 46% at 62% 38%, rgba(255, 252, 246, 0.12), transparent 64%),
        radial-gradient(ellipse 50% 40% at 82% 88%, rgba(176, 186, 178, 0.22), transparent 60%);
    mix-blend-mode: screen;
    opacity: 0.78;
    animation: luxeHeroGlow 24s ease-in-out infinite alternate;
}

.luxe-hero__visual figcaption {
    position: absolute;
    right: 2rem;
    bottom: 1.7rem;
    z-index: 3;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Portrait / manifeste */

.luxe-manifesto {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(3rem, 8vw, 8rem);
    align-items: center;
    width: var(--rail);
    padding: clamp(6rem, 10vw, 10rem) 0;
    margin: 0 auto;
}

.luxe-manifesto__portrait {
    position: relative;
    padding: 0 0 2.2rem 2.2rem;
}

.luxe-manifesto__portrait::before {
    position: absolute;
    right: 2rem;
    bottom: 0;
    left: 0;
    height: 72%;
    border: 1px solid rgba(184, 142, 74, 0.48);
    content: "";
}

.luxe-manifesto__portrait figure {
    position: relative;
    z-index: 1;
    margin: 0;
}

.luxe-manifesto__portrait .guide-badge-frame > img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
    box-shadow: 0 35px 80px -50px rgba(19, 32, 25, 0.65);
}

.luxe-manifesto__portrait figcaption {
    margin-top: 0.75rem;
    color: rgb(var(--texte-tertiaire));
    font-size: 0.78rem;
    font-style: italic;
}

.luxe-monogram {
    position: absolute;
    top: -4.8rem;
    left: -2.2rem;
    color: rgba(184, 142, 74, 0.11);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(10rem, 18vw, 17rem);
    line-height: 1;
    pointer-events: none;
}

.luxe-manifesto__copy {
    max-width: 34rem;
}

.luxe-manifesto h2 {
    margin-top: 0.9rem;
    color: var(--luxe-ink);
    font-size: clamp(2.6rem, 4vw, 4.2rem);
    line-height: 0.98;
}

.luxe-manifesto__copy > p:not(.kicker) {
    margin-top: 1.35rem;
    color: rgb(var(--texte-secondaire));
}

.luxe-manifesto .link-primary {
    color: var(--luxe-gold);
    border-bottom-color: rgba(184, 142, 74, 0.45);
}

.luxe-dropcap::first-letter {
    float: left;
    margin: 0.05em 0.11em 0 0;
    color: var(--luxe-gold);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 4.3rem;
    line-height: 0.72;
}

.luxe-manifesto blockquote {
    margin: 2rem 0;
    padding: 1.2rem 0 1.2rem 1.4rem;
    border-left: 1px solid var(--luxe-gold);
    color: var(--luxe-forest);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.42;
}

/* Services — galerie sombre structurée */

.luxe-services {
    position: relative;
    padding: clamp(5.5rem, 9vw, 9rem) max(1.25rem, calc((100vw - 1120px) / 2));
    background:
        radial-gradient(circle at 90% 8%, rgba(184, 142, 74, 0.1), transparent 24rem),
        var(--luxe-forest);
    color: #f7f1e5;
}

.luxe-services::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 72px 72px;
    content: "";
    mask-image: linear-gradient(to bottom, black, transparent 80%);
    pointer-events: none;
}

.luxe-section-title,
.luxe-service-list {
    position: relative;
    z-index: 1;
}

.luxe-section-title {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.65fr);
    gap: 3rem;
    align-items: end;
    padding-bottom: clamp(3rem, 6vw, 5rem);
}

.luxe-section-title .kicker {
    grid-column: 1 / -1;
    margin-bottom: -1.8rem;
}

.luxe-section-title h2 {
    max-width: 44rem;
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 0.95;
}

.luxe-section-title > p:last-child {
    max-width: 28rem;
    color: rgba(247, 241, 229, 0.62);
}

.luxe-service-list {
    border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.luxe-service {
    display: grid;
    grid-template-columns: 3.5rem minmax(250px, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(1.2rem, 4vw, 4.5rem);
    align-items: center;
    padding: 1.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
    color: inherit;
}

.luxe-service__number {
    align-self: start;
    padding-top: 0.45rem;
    color: var(--luxe-gold);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
}

.luxe-service figure {
    overflow: hidden;
    margin: 0;
}

.luxe-service figure img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    filter: saturate(0.68) brightness(0.78);
    transform: scale(1.01);
    transition: filter 500ms ease, transform 700ms cubic-bezier(.2, .7, .2, 1);
}

.luxe-service:hover figure img {
    filter: saturate(0.95) brightness(0.92);
    transform: scale(1.045);
}

.luxe-service h3 {
    font-size: clamp(2rem, 3.3vw, 3.25rem);
    line-height: 1;
}

.luxe-service__copy p {
    max-width: 33rem;
    margin-top: 0.8rem;
    color: rgba(247, 241, 229, 0.59);
}

.luxe-service__link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 1.1rem;
    color: var(--luxe-gold);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
}

.luxe-service__link::after {
    display: block;
    flex: 0 0 auto;
    width: 1.5rem;
    height: 1px;
    margin: 0;
    background: currentColor;
    content: "";
    transition: width 250ms ease;
}

.luxe-service:hover .luxe-service__link::after {
    width: 2.4rem;
}

/* Déroulé */

.luxe-experience {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    min-height: 720px;
    background: var(--luxe-paper-light);
}

.luxe-experience__visual {
    min-height: 640px;
}

.luxe-experience__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.78);
}

.luxe-experience__copy {
    align-self: center;
    max-width: 34rem;
    padding: clamp(4rem, 8vw, 8rem);
}

.luxe-experience h2 {
    margin-top: 0.8rem;
    color: var(--luxe-ink);
    font-size: clamp(2.6rem, 4vw, 4rem);
    line-height: 0.98;
}

.luxe-experience ol {
    margin: 2.3rem 0 2.5rem;
    padding: 0;
    list-style: none;
    counter-reset: experience;
}

.luxe-experience li {
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: 1rem;
    padding: 1.15rem 0;
    border-top: 1px solid var(--luxe-line);
}

.luxe-experience li:last-child {
    border-bottom: 1px solid var(--luxe-line);
}

.luxe-experience li > span {
    color: var(--luxe-gold);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
}

.luxe-experience li p {
    color: rgb(var(--texte-secondaire));
}

.luxe-experience li strong {
    display: block;
    color: var(--luxe-ink);
    font-weight: 600;
}

/* FAQ et conclusion */

.luxe-faq {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(3rem, 8vw, 8rem);
    width: var(--rail);
    padding: clamp(6rem, 10vw, 9rem) 0;
    margin: 0 auto;
}

.luxe-faq header {
    max-width: 27rem;
}

.luxe-faq h2 {
    margin-top: 0.8rem;
    color: var(--luxe-ink);
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    line-height: 1;
}

.luxe-faq__list {
    align-self: start;
}

.luxe-faq details.faq-item {
    padding: 1.35rem 0;
}

.luxe-faq details.faq-item summary {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
}

.luxe-closing {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
    gap: 4rem;
    align-items: end;
    padding: clamp(5rem, 9vw, 8rem) max(1.25rem, calc((100vw - 1120px) / 2));
    background:
        linear-gradient(115deg, rgba(19, 32, 25, 0.98), rgba(31, 48, 39, 0.93)),
        url('content/nature-mousse.webp') center / cover;
    color: #f8f2e6;
}

.luxe-closing h2 {
    max-width: 43rem;
    margin-top: 0.8rem;
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 0.96;
}

.luxe-closing > div:last-child > p:first-child {
    color: rgba(248, 242, 230, 0.68);
}

.luxe-closing .btn-text {
    color: #f8f2e6;
}

.luxe-closing .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-color: rgba(247, 240, 227, 0.48);
    color: #f8f2e6;
}

.luxe-closing .btn-secondary:hover {
    border-color: var(--luxe-gold);
    background: rgba(184, 142, 74, 0.18);
    color: #fffaf0;
}

/* Pages intérieures — même univers */

body:not(:has(.home-luxe)) .page-intro {
    position: relative;
    width: auto;
    padding: clamp(4.5rem, 8vw, 7.5rem) max(1.25rem, calc((100vw - 1120px) / 2)) clamp(6.5rem, 10vw, 10rem);
    background:
        radial-gradient(circle at 82% 18%, rgba(184, 142, 74, 0.12), transparent 22rem),
        var(--luxe-forest-deep);
    color: #f8f2e6;
}

body:not(:has(.home-luxe)) .page-intro h1 {
    max-width: 54rem;
    color: #f8f2e6;
    font-size: clamp(3.2rem, 6vw, 6rem);
    line-height: 0.94;
}

body:not(:has(.home-luxe)) .page-intro .lede {
    color: rgba(248, 242, 230, 0.68);
}

body:not(:has(.home-luxe)) .page-intro .breadcrumb,
body:not(:has(.home-luxe)) .page-intro .breadcrumb a {
    color: rgba(248, 242, 230, 0.48);
}

body:not(:has(.home-luxe)) .page-intro .btn-text {
    color: rgba(248, 242, 230, 0.88);
}

body:not(:has(.home-luxe)) .page-intro .btn-text:hover {
    color: #ffffff;
}

body:not(:has(.home-luxe)) .page-intro .guide-badge {
    margin-top: 1.5rem;
}

body:not(:has(.home-luxe)) .page-intro .guide-badge span {
    color: #e8c98a;
}

body:not(:has(.home-luxe)) .page-intro .guide-badge:hover span {
    color: #f4e3b8;
}

body:not(:has(.home-luxe)) .page-intro .guide-badge img {
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.35));
}

body:not(:has(.home-luxe)) .page-intro .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.8rem;
    border-color: rgba(247, 240, 227, 0.45);
    color: #f8f2e6;
}

body:not(:has(.home-luxe)) .page-intro .btn-secondary:hover {
    border-color: var(--luxe-gold);
    background: rgba(184, 142, 74, 0.18);
    color: #fffaf0;
}

body:not(:has(.home-luxe)) .page-intro .atelier-actions {
    margin-top: 1.8rem;
}

body:not(:has(.home-luxe)) .page-intro .atelier-actions .btn-secondary {
    margin-top: 0;
}

body:not(:has(.home-luxe)) .page-photo {
    position: relative;
    z-index: 2;
    width: var(--rail);
    margin: clamp(-5.5rem, -6vw, -3.5rem) auto 0;
    padding: 0 0 3rem;
}

body:not(:has(.home-luxe)) .page-photo img {
    height: min(62vh, 620px);
    box-shadow: 0 42px 90px -62px rgba(19, 32, 25, 0.85);
}

body:not(:has(.home-luxe)) .atelier-article {
    padding-top: 2rem;
}

.atelier-article:has(+ .page-invite) {
    padding-bottom: 2.2rem;
}

.page-invite {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(17rem, 0.8fr);
    gap: clamp(1.75rem, 4vw, 3.5rem);
    align-items: center;
    width: var(--rail);
    margin: 0.5rem auto 5.5rem;
    padding: clamp(2.1rem, 4vw, 3rem) clamp(1.7rem, 3.6vw, 3rem);
    overflow: hidden;
    border: 1px solid rgba(184, 142, 74, 0.34);
    background:
        radial-gradient(circle at 88% 18%, rgba(184, 142, 74, 0.18), transparent 18rem),
        linear-gradient(180deg, rgba(255, 250, 240, 0.04), transparent 42%),
        var(--luxe-forest-deep);
    color: #f8f2e6;
}

.page-invite::before {
    position: absolute;
    top: 1.4rem;
    bottom: 1.4rem;
    left: 0;
    width: 2px;
    background: linear-gradient(transparent, #e3bd73, transparent);
    content: "";
}

.page-invite__copy .kicker {
    color: #e3bd73;
}

.page-invite h2 {
    max-width: 18ch;
    margin: 0.7rem 0 0;
    color: #f8f2e6;
    font-size: clamp(2.1rem, 3.4vw, 3.15rem);
    line-height: 1;
}

.page-invite__copy > p:last-of-type {
    max-width: 38rem;
    margin: 1rem 0 0;
    color: rgba(248, 242, 230, 0.7);
    font-size: 1.02rem;
    line-height: 1.7;
}

.page-invite__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.page-invite .btn-primary,
.page-invite .btn-secondary {
    width: 100%;
    justify-content: center;
}

.page-invite .btn-primary {
    border-color: rgba(184, 142, 74, 0.45);
    background: var(--luxe-gold);
    color: var(--luxe-forest-deep);
}

.page-invite .btn-primary:hover {
    background: #c49b58;
}

.page-invite .btn-secondary {
    border-color: rgba(247, 240, 227, 0.58);
    background: rgba(255, 250, 240, 0.05);
    color: #f7f0e3;
}

.page-invite .btn-secondary:hover {
    border-color: rgba(227, 189, 115, 0.9);
    background: rgba(184, 142, 74, 0.16);
    color: #fffaf0;
}

.page-invite .btn-text {
    color: #f7f0e3;
}

.page-invite .btn-text:hover {
    color: #ffffff;
}

.page-invite__note {
    margin: 0.15rem 0 0;
    color: rgba(248, 242, 230, 0.48);
    font-size: 0.82rem;
    font-style: italic;
    line-height: 1.45;
}

@media (max-width: 800px) {
    .page-invite {
        grid-template-columns: 1fr;
        margin-bottom: 4rem;
        padding: 1.8rem 1.35rem 1.7rem;
    }

    .page-invite h2 {
        max-width: none;
    }

    .page-invite__actions {
        width: 100%;
    }
}

.menu-list {
    position: relative;
}

.menu-row {
    padding: 2rem 1.5rem;
    transition: background-color 220ms ease;
}

.menu-row:hover {
    background: rgba(255, 255, 255, 0.34);
}

.contact-grid {
    padding-top: 3rem;
}

.field {
    border-color: rgba(59, 67, 55, 0.24);
    background: rgba(255, 255, 255, 0.42);
}

.field:focus {
    border-color: var(--luxe-gold);
    background: rgba(255, 255, 255, 0.7);
}

.site-footer {
    background: #e8e0d2;
}

.site-footer .brand-lockup {
    color: inherit;
}

@media (max-width: 1023px) {
    .luxe-hero {
        display: flex;
        flex-direction: column;
        position: relative;
        top: auto;
        z-index: 0;
        height: auto;
        min-height: auto;
        overflow: visible;
    }

    .luxe-hero__copy,
    .luxe-hero__visual {
        grid-area: auto;
    }

    .luxe-hero__visual {
        position: sticky;
        top: var(--site-header-offset);
        z-index: 0;
        order: -1;
        min-height: 54svh;
        height: 54svh;
        animation: none;
    }

    .luxe-hero__copy {
        position: relative;
        z-index: 2;
        background: var(--luxe-forest-deep);
    }

    .luxe-hero__copy::before {
        z-index: -1;
        background:
            radial-gradient(circle at 12% 18%, rgba(184, 142, 74, 0.13), transparent 34%),
            linear-gradient(135deg, transparent 0 48%, rgba(255, 255, 255, 0.022) 48% 48.2%, transparent 48.2%);
    }

    .luxe-hero__copy-inner {
        width: var(--rail);
        margin: 0 auto;
        padding: 4rem 0 4.5rem;
    }

    .luxe-hero__copy::after {
        display: none;
    }

    .luxe-hero__visual img,
    .luxe-hero__visual video {
        object-position: 48% center;
    }

    .luxe-manifesto,
    .luxe-section-title,
    .luxe-experience,
    .luxe-faq,
    .luxe-closing {
        grid-template-columns: 1fr;
    }

    .luxe-manifesto {
        gap: 3.5rem;
    }

    .luxe-manifesto__portrait {
        width: min(31rem, 92%);
    }

    .luxe-section-title .kicker {
        grid-column: auto;
        margin-bottom: -1.5rem;
    }

    .luxe-service {
        grid-template-columns: 2.5rem minmax(200px, 0.85fr) minmax(0, 1.15fr);
        gap: 1.5rem;
    }

    .luxe-experience__visual {
        min-height: 54svh;
    }

    .luxe-experience__copy {
        max-width: none;
        width: var(--rail);
        padding: 4.5rem 0 5.5rem;
    }

    .luxe-closing {
        gap: 2rem;
    }
}

@media (max-width: 700px) {
    :root {
        --site-header-offset: 68px;
    }

    .site-header__bar {
        min-height: var(--site-header-offset);
    }

    .luxe-hero__visual {
        min-height: 48svh;
        height: 48svh;
    }

    .luxe-hero h1 {
        font-size: clamp(3.1rem, 15vw, 4.5rem);
    }

    .luxe-hero__copy-inner {
        padding: 3.5rem 0 4rem;
    }

    .luxe-hero__meta {
        margin-top: 2.2rem;
    }

    .luxe-manifesto {
        padding: 6rem 0;
    }

    .luxe-manifesto__portrait {
        width: 92%;
        padding: 0 0 1.2rem 1.2rem;
    }

    .guide-badge--seal img {
        width: 5.75rem;
        height: 5.75rem;
    }

    .guide-badge--hero img {
        width: 5.1rem;
        height: 5.1rem;
    }

    .guide-badge--inline img {
        width: 4.35rem;
        height: 4.35rem;
    }

    .luxe-monogram {
        top: -3rem;
        left: -0.6rem;
    }

    .luxe-services {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .luxe-section-title {
        gap: 2.3rem;
    }

    .luxe-service {
        grid-template-columns: 2rem 1fr;
        padding: 1.6rem 0 2rem;
    }

    .luxe-service figure {
        grid-column: 2;
    }

    .luxe-service__copy {
        grid-column: 2;
    }

    .luxe-service__number {
        grid-row: 1 / span 2;
    }

    .luxe-experience__visual {
        min-height: 420px;
    }

    .luxe-faq {
        gap: 3rem;
        padding: 5.5rem 0;
    }

    .luxe-closing {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    body:not(:has(.home-luxe)) .page-intro {
        padding-top: 4rem;
        padding-bottom: 6rem;
    }

    body:not(:has(.home-luxe)) .page-photo {
        margin-top: -3rem;
    }
}

/* --- Formules de consultation --- */

.offer-board {
    width: var(--rail);
    margin: -1.5rem auto 3.75rem;
    display: grid;
    gap: 1.15rem;
}

.offer {
    display: grid;
    grid-template-columns: 2.6rem minmax(0, 1fr) minmax(16.5rem, 18.75rem);
    background: rgba(255, 250, 240, 0.62);
    border: 1px solid rgb(var(--fond-bordure));
}

.offer--featured {
    border-color: rgba(184, 142, 74, 0.62);
    box-shadow: 0 32px 70px -48px rgba(19, 32, 25, 0.58);
}

.offer__index {
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    padding: 1.2rem 0;
    background: var(--luxe-forest);
    color: rgba(255, 250, 240, 0.7);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.05rem;
    letter-spacing: 0.28em;
}

.offer--featured .offer__index {
    background: var(--luxe-forest-deep);
    color: #d4b46a;
}

.offer__body {
    padding: 1.8rem 1.85rem 1.85rem 2rem;
}

.offer__kicker {
    margin: 0;
    color: rgb(var(--couleur-orange));
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.offer__body h2 {
    margin: 0.4rem 0 0.8rem;
    color: var(--luxe-forest-deep);
    font-size: clamp(1.7rem, 2.5vw, 2.4rem);
    line-height: 1.12;
}

.offer__body p {
    margin: 0;
    max-width: 40rem;
    color: rgb(var(--texte-secondaire));
    font-size: 1.02rem;
}

.offer__points {
    display: grid;
    gap: 0.42rem;
    margin: 1.15rem 0 0;
    padding: 0;
    list-style: none;
}

.offer__points li {
    position: relative;
    padding-left: 1.1rem;
    color: rgb(var(--texte-principal));
    font-size: 0.98rem;
}

.offer__points li::before {
    position: absolute;
    top: 0.68em;
    left: 0;
    width: 0.5rem;
    height: 1px;
    background: rgb(var(--couleur-orange));
    content: "";
}

.offer__book {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 0.15rem;
    padding: 1.7rem 1.5rem;
    background: var(--luxe-forest-deep);
    color: #fffaf0;
    text-align: center;
}

.offer__badge {
    margin: 0 0 0.45rem;
    color: #d4b46a;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.offer__duration {
    margin: 0;
    color: rgba(255, 250, 240, 0.58);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.offer__price {
    margin: 0.15rem 0 0.95rem;
    color: #e8c98a;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 3.05rem;
    font-weight: 500;
    line-height: 0.95;
}

.offer__book .btn-primary {
    width: 100%;
    border: 0;
    background: #c9a45c;
    color: var(--luxe-forest-deep);
}

.offer__book .btn-primary::after {
    border-color: transparent;
}

.offer__book .btn-primary:hover {
    background: #ddb86a;
    color: var(--luxe-forest-deep);
}

.offer__note {
    margin: 0.85rem 0 0;
    color: rgba(255, 250, 240, 0.55);
    font-size: 0.78rem;
    line-height: 1.45;
}

.offer-board__extra {
    margin: 0.2rem 0.1rem 0;
    color: rgb(var(--texte-tertiaire));
    font-size: 0.88rem;
}

@media (max-width: 1023px) {
    .offer-board {
        margin-top: 0;
    }

    .offer {
        grid-template-columns: 1fr;
    }

    .offer__index {
        writing-mode: horizontal-tb;
        transform: none;
        justify-content: flex-start;
        padding: 0.65rem 1.2rem;
        font-size: 0.84rem;
        letter-spacing: 0.32em;
    }

    .offer__body {
        padding: 1.3rem 1.2rem 1.05rem;
    }

    .offer__book {
        padding: 1.35rem 1.2rem 1.5rem;
        text-align: left;
    }

    .offer__price {
        font-size: 2.65rem;
    }
}

/* --- Consultation : hiérarchie et lecture des formules --- */

body:has(.consultation-offers) .page-intro {
    padding-bottom: clamp(4.25rem, 7vw, 7rem);
}

body:has(.consultation-offers) .page-intro .lede {
    max-width: 47rem;
    font-size: 1.08rem;
    line-height: 1.7;
}

.consultation-process {
    width: var(--rail);
    margin: 0 auto;
    padding: 2.6rem 0 3.2rem;
    display: grid;
    grid-template-columns: minmax(14rem, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: start;
    border-bottom: 1px solid var(--luxe-line);
}

.consultation-process__intro h2 {
    max-width: 17rem;
    margin: 0.7rem 0 0;
    color: var(--luxe-forest-deep);
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1;
}

.consultation-process__steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.consultation-process__steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: start;
    min-width: 0;
    padding-left: 1.1rem;
    border-left: 1px solid rgba(184, 142, 74, 0.62);
}

.consultation-process__number {
    color: var(--luxe-gold);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.25rem;
    line-height: 1.15;
}

.consultation-process__steps h3 {
    margin: 0;
    color: var(--luxe-forest-deep);
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

.consultation-process__steps p {
    margin: 0.45rem 0 0;
    color: rgb(var(--texte-secondaire));
    font-size: 0.88rem;
    line-height: 1.5;
}

.consultation-offers {
    width: var(--rail);
    margin: 5.5rem auto 0;
}

.consultation-offers__intro {
    max-width: 42rem;
    margin-bottom: 2.2rem;
}

.consultation-offers__intro h2 {
    margin: 0.7rem 0 0;
    color: var(--luxe-forest-deep);
    font-size: clamp(2.35rem, 4vw, 3.8rem);
    line-height: 0.98;
}

.consultation-offers__intro > p:last-child {
    max-width: 37rem;
    margin: 1rem 0 0;
    color: rgb(var(--texte-secondaire));
    font-size: 1.02rem;
    line-height: 1.65;
}

.consultation-offers .offer-board {
    width: 100%;
    margin: 0;
    gap: 1.45rem;
}

.consultation-offers .offer {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 22rem);
    min-width: 0;
    overflow: hidden;
    background: var(--luxe-paper-light);
    border: 1px solid var(--luxe-line);
    box-shadow: 0 22px 50px -42px rgba(19, 32, 25, 0.7);
}

.consultation-offers .offer--featured {
    border-color: rgba(184, 142, 74, 0.72);
    box-shadow: 0 28px 65px -40px rgba(19, 32, 25, 0.85);
}

.consultation-offers .offer__index {
    position: absolute;
    top: 2.15rem;
    left: 2.15rem;
    z-index: 1;
    display: block;
    padding: 0;
    background: transparent;
    color: var(--luxe-gold);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.05rem;
    line-height: 1;
    letter-spacing: 0.18em;
    writing-mode: horizontal-tb;
    transform: none;
}

.consultation-offers .offer--featured .offer__index {
    background: transparent;
    color: var(--luxe-gold);
}

.consultation-offers .offer__body {
    grid-column: 1;
    min-width: 0;
    padding: 2.25rem 3.5rem 2.5rem 5.2rem;
}

.consultation-offers .offer__kicker {
    margin: 0;
    color: var(--luxe-gold);
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    line-height: 1.35;
    text-transform: uppercase;
}

.consultation-offers .offer__body h2 {
    margin: 0.55rem 0 0;
    color: var(--luxe-forest-deep);
    font-size: clamp(2rem, 3.1vw, 3rem);
    line-height: 0.98;
}

.consultation-offers .offer__lead {
    max-width: 48rem;
    margin: 1rem 0 0;
    color: rgb(var(--texte-secondaire));
    font-size: 1.04rem;
    line-height: 1.7;
}

.consultation-offers .offer__details {
    max-width: 48rem;
    margin-top: 1.45rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(59, 67, 55, 0.16);
}

.consultation-offers .offer__details-label,
.consultation-offers .offer__book-label {
    margin: 0;
    color: var(--luxe-forest);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.consultation-offers .offer__points {
    display: grid;
    gap: 0.42rem;
    margin: 0.65rem 0 0;
    padding: 0;
    list-style: none;
}

.consultation-offers .offer__points li {
    position: relative;
    padding-left: 1.1rem;
    color: rgb(var(--texte-principal));
    font-size: 0.96rem;
    line-height: 1.5;
}

.consultation-offers .offer__points li::before {
    position: absolute;
    top: 0.7em;
    left: 0;
    width: 0.48rem;
    height: 1px;
    background: var(--luxe-gold);
    content: "";
}

.consultation-offers .offer__book {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    min-width: 0;
    padding: 2.35rem 2.25rem;
    background: var(--luxe-forest-deep);
    color: #fffaf0;
    text-align: left;
}

.consultation-offers .offer--featured .offer__book {
    background: var(--luxe-forest);
}

.consultation-offers .offer--quiet {
    box-shadow: none;
    background: rgba(251, 248, 241, 0.55);
    border-color: rgba(59, 67, 55, 0.12);
}

.consultation-offers .offer--quiet .offer__index {
    color: rgba(118, 129, 107, 0.55);
}

.consultation-offers .offer--quiet .offer__kicker,
.consultation-offers .offer--quiet .offer__details-label {
    color: var(--luxe-moss);
}

.consultation-offers .offer--quiet .offer__body h2 {
    font-size: clamp(1.7rem, 2.5vw, 2.35rem);
}

.consultation-offers .offer--quiet .offer__book {
    background: rgba(23, 32, 25, 0.03);
    color: var(--luxe-forest-deep);
}

.consultation-offers .offer--quiet .offer__badge {
    color: var(--luxe-moss);
}

.consultation-offers .offer--quiet .offer__book-label,
.consultation-offers .offer--quiet .offer__duration {
    color: rgb(var(--texte-secondaire));
}

.consultation-offers .offer--quiet .offer__price {
    color: var(--luxe-forest);
    font-size: clamp(2.35rem, 3.4vw, 2.95rem);
}

.consultation-offers .offer--quiet .offer__book .btn-primary {
    background: transparent;
    border: 1px solid rgba(23, 32, 25, 0.38);
    color: var(--luxe-forest-deep);
}

.consultation-offers .offer--quiet .offer__book .btn-primary::after {
    border-color: transparent;
}

.consultation-offers .offer--quiet .offer__book .btn-primary:hover {
    background: var(--luxe-forest-deep);
    border-color: var(--luxe-forest-deep);
    color: #fffaf0;
}

.consultation-offers .offer--quiet .offer__note {
    color: rgb(var(--texte-tertiaire));
}

.consultation-offers .offer__badge {
    margin: 0 0 0.9rem;
    color: #e3bd73;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.3;
    text-transform: uppercase;
}

.consultation-offers .offer__book-label {
    color: rgba(255, 250, 240, 0.58);
}

.consultation-offers .offer__duration {
    margin: 0.8rem 0 0;
    color: #fffaf0;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    line-height: 1.3;
    text-transform: uppercase;
}

.consultation-offers .offer__price {
    margin: 0.18rem 0 1.25rem;
    color: #e8c98a;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(3.4rem, 5vw, 4.6rem);
    font-weight: 500;
    line-height: 0.86;
}

.consultation-offers .offer__book .btn-primary {
    display: inline-flex;
    flex-direction: column;
    gap: 0.45rem;
    width: 100%;
    min-height: 3.7rem;
    justify-content: center;
    align-items: center;
    border: 0;
    padding-top: 0.75rem;
    padding-bottom: 0.7rem;
    background: #d0aa61;
    color: var(--luxe-forest-deep);
    font-size: 0.92rem;
    text-align: center;
}

.consultation-offers .offer__paypal-logo {
    display: block;
    width: auto;
    height: 1.4rem;
    padding: 0.22rem 0.5rem;
    background: #fff;
}

.consultation-offers .offer__book .btn-primary::after {
    border-color: transparent;
}

.consultation-offers .offer__book .btn-primary:hover {
    background: #e2bd72;
    color: var(--luxe-forest-deep);
}

.consultation-offers .offer__note {
    max-width: 15rem;
    margin: 0.9rem 0 0;
    color: rgba(255, 250, 240, 0.62);
    font-size: 0.8rem;
    line-height: 1.5;
}

.consultation-offers .offer-board__extra {
    margin: 0;
    padding: 1rem 0 0;
    color: rgb(var(--texte-tertiaire));
    font-size: 0.88rem;
}

body:has(.consultation-offers) .legal-note {
    margin-top: 3rem;
    margin-bottom: 5.5rem;
    padding: 1.5rem 0 0;
    border-top: 1px solid var(--luxe-line);
}

body:has(.consultation-offers) .legal-note p + p {
    margin-top: 0.8rem;
}

body:has(.consultation-offers) .contact-grid {
    margin-top: 0;
}

@media (max-width: 900px) {
    .consultation-process {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 2.3rem;
    }

    .consultation-process__intro h2 {
        max-width: 24rem;
    }

    .consultation-process__steps {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .consultation-process__steps li {
        grid-template-columns: 2rem 1fr;
        padding: 1rem 0 0;
        border-top: 1px solid rgba(184, 142, 74, 0.45);
        border-left: 0;
    }

    .consultation-process__steps li + li {
        margin-top: 1rem;
    }

    .consultation-offers {
        margin-top: 4.25rem;
    }

    .consultation-offers .offer {
        grid-template-columns: 1fr;
    }

    .consultation-offers .offer__body {
        grid-column: 1;
        padding: 3.5rem 2rem 2rem 4.7rem;
    }

    .consultation-offers .offer__book {
        grid-column: 1;
        grid-row: auto;
        padding: 1.7rem 2rem 1.9rem;
        border-top: 1px solid rgba(255, 250, 240, 0.16);
    }

    .consultation-offers .offer--quiet .offer__book {
        border-top-color: rgba(59, 67, 55, 0.12);
    }
}

@media (max-width: 560px) {
    body:has(.consultation-offers) .page-intro h1 {
        font-size: clamp(2.65rem, 13vw, 4.2rem);
        line-height: 0.98;
    }

    body:has(.consultation-offers) .page-intro .lede {
        font-size: 1rem;
    }

    .consultation-process,
    .consultation-offers {
        width: min(100% - 2rem, 1120px);
    }

    .consultation-offers__intro h2 {
        font-size: clamp(2.2rem, 11vw, 3.2rem);
    }

    .consultation-offers .offer__index {
        top: 1.35rem;
        left: 1.35rem;
    }

    .consultation-offers .offer__body {
        padding: 3rem 1.35rem 1.7rem;
    }

    .consultation-offers .offer__body h2 {
        font-size: clamp(1.95rem, 9vw, 2.6rem);
    }

    .consultation-offers .offer__lead {
        font-size: 1rem;
    }

    .consultation-offers .offer__book {
        padding: 1.5rem 1.35rem 1.65rem;
    }

    .consultation-offers .offer__price {
        font-size: 3.65rem;
    }

    .consultation-offers .offer__note {
        max-width: none;
    }
}

/* --- Mouvement éditorial : discret, progressif et accessible --- */

.scroll-progress {
    display: block !important;
    height: 2px;
    background: linear-gradient(90deg, var(--luxe-gold), #e0c17f);
    box-shadow: 0 0 12px rgba(184, 142, 74, 0.42);
}

.reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition:
        opacity 720ms cubic-bezier(0.2, 0.7, 0.2, 1),
        transform 720ms cubic-bezier(0.2, 0.7, 0.2, 1),
        filter 720ms ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-in {
    opacity: 1;
    transform: none;
    filter: none;
    will-change: auto;
}

.reveal-left {
    transform: translate3d(-28px, 0, 0);
}

.reveal-right {
    transform: translate3d(28px, 0, 0);
}

.reveal-left.is-in,
.reveal-right.is-in {
    transform: none;
}

.luxe-hero__copy-inner {
    animation: luxeHeroCopyIn 900ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.luxe-hero__copy::before {
    animation: luxeLightDrift 18s ease-in-out infinite alternate;
}

.luxe-services::before {
    animation: luxeGridDrift 26s ease-in-out infinite alternate;
}

body:not(:has(.home-luxe)) .page-intro {
    isolation: isolate;
    overflow: hidden;
}

body:not(:has(.home-luxe)) .page-intro::after {
    position: absolute;
    inset: -25%;
    z-index: 0;
    background: radial-gradient(circle at 72% 28%, rgba(184, 142, 74, 0.15), transparent 22rem);
    content: "";
    pointer-events: none;
    animation: luxeLightDrift 20s ease-in-out infinite alternate;
}

body:not(:has(.home-luxe)) .page-intro > * {
    position: relative;
    z-index: 1;
}

.consultation-offers .offer {
    transition:
        opacity 720ms cubic-bezier(0.2, 0.7, 0.2, 1),
        transform 720ms cubic-bezier(0.2, 0.7, 0.2, 1),
        filter 720ms ease,
        box-shadow 500ms ease;
    transition-delay: var(--reveal-delay, 0ms);
}

@media (hover: hover) and (pointer: fine) {
    .consultation-offers .offer:hover {
        transform: translateY(-4px);
        box-shadow: 0 30px 64px -42px rgba(19, 32, 25, 0.82);
    }
}

@keyframes luxeHeroCopyIn {
    from {
        opacity: 0;
        transform: translate3d(-18px, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes luxeHeroVisualIn {
    from {
        opacity: 0;
        transform: scale(1.025);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes luxeHeroMist {
    from {
        transform: translate3d(-5%, 3%, 0) scale(1.04);
        opacity: 0.34;
    }
    to {
        transform: translate3d(6%, -4%, 0) scale(1.12);
        opacity: 0.5;
    }
}

@keyframes luxeHeroGlow {
    from {
        opacity: 0.55;
        transform: translate3d(-2%, 1%, 0) scale(1);
    }
    to {
        opacity: 0.82;
        transform: translate3d(3%, -2%, 0) scale(1.06);
    }
}

@keyframes luxeLightDrift {
    from {
        transform: translate3d(-2%, -1%, 0) scale(1);
    }
    to {
        transform: translate3d(2%, 1.5%, 0) scale(1.04);
    }
}

@keyframes luxeGridDrift {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 36px 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .scroll-progress {
        display: none !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }

    .luxe-hero__visual video {
        display: none;
    }

    .luxe-hero__visual {
        background: url("content/hero-foret.webp") 48% center / cover no-repeat;
    }

    .luxe-hero__veil::before,
    .luxe-hero__veil::after {
        animation: none;
        opacity: 0.38;
        transform: none;
    }
}

/* --- Mot-marque HTML : Le Petit Sylvain --- */

.brand-lockup {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
}

.brand-wordmark {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--luxe-forest-deep);
}

.brand-wordmark__glyph {
    width: 0.95rem;
    height: 1.32rem;
    color: var(--luxe-gold);
    flex-shrink: 0;
}

.brand-wordmark__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.12rem;
    line-height: 1;
}

.brand-wordmark__kicker {
    color: var(--luxe-gold);
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.brand-wordmark__name {
    color: var(--luxe-forest-deep);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2.08rem;
    font-weight: 500;
    font-style: italic;
    letter-spacing: -0.03em;
    line-height: 0.9;
}

.site-footer .brand-wordmark__name {
    font-size: 2.28rem;
}

.brand-lockup:hover .brand-wordmark__name {
    color: var(--luxe-forest);
}

@media (max-width: 640px) {
    .brand-wordmark {
        gap: 0.62rem;
    }

    .brand-wordmark__glyph {
        width: 0.82rem;
        height: 1.14rem;
    }

    .brand-wordmark__kicker {
        font-size: 0.64rem;
        letter-spacing: 0.24em;
    }

    .brand-wordmark__name {
        font-size: 1.78rem;
    }
}

/* =========================================================
   ALLO DÉBARRAS — atelier rétro, orange / noir / papier
   ========================================================= */

:root {
    --luxe-ink: #111111;
    --luxe-forest: #111111;
    --luxe-forest-deep: #0a0a0a;
    --luxe-moss: #6b635a;
    --luxe-gold: #ff5a00;
    --luxe-paper: #f5f0e8;
    --luxe-paper-light: #fbf7f0;
    --luxe-line: rgba(17, 17, 17, 0.16);
    --allo-orange: #ff5a00;
    --allo-orange-dark: #e04e00;
    --allo-black: #111111;
    --allo-paper: #f5f0e8;
    --allo-tape: 3px solid #ff5a00;
}

body {
    font-family: "Source Sans 3", system-ui, sans-serif !important;
    background-color: var(--allo-paper) !important;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)' opacity='.04'/%3E%3C/svg%3E") !important;
    color: var(--allo-black) !important;
}

.font-display,
h1, h2, h3 {
    font-family: "Oswald", sans-serif !important;
    font-style: normal !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.05;
}

h1 {
    font-family: "Fraunces", "Times New Roman", serif !important;
    font-style: italic;
    font-weight: 600 !important;
    letter-spacing: -0.032em;
    text-transform: none;
    line-height: 1.08;
}

.allo-kicker,
.kicker {
    display: inline-block;
    font-family: "Oswald", sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--allo-orange);
}

#site-header,
.site-header,
#site-header.header-hero,
#site-header.header-solid,
#site-header.is-nav-open {
    background: rgba(17, 17, 17, 0.96) !important;
    border-bottom: var(--allo-tape) !important;
    backdrop-filter: blur(16px) saturate(0.9) !important;
    color: #fff !important;
}

.site-header__bar {
    width: min(1180px, calc(100% - 2rem));
}

.site-header__link,
.site-header__phone,
#site-header .nav-link,
#site-header .header-phone,
#mobile-menu a {
    font-family: "Oswald", sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase;
    color: #f4f0ea !important;
}

.site-header__link::after,
.site-header__phone::after {
    background: var(--allo-orange) !important;
}

.site-header__phone {
    color: var(--allo-orange) !important;
    border: 0 !important;
}

.site-header__cta.btn-primary,
.btn-primary {
    font-family: "Oswald", sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase;
    background: var(--allo-orange) !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: 2px !important;
    box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.22) !important;
    transition: background-color 200ms ease, transform 200ms ease, box-shadow 200ms ease !important;
}

.site-header__cta.btn-primary,
#mobile-menu a.site-header__cta {
    font-family: "Fraunces", "Times New Roman", serif !important;
    font-style: italic;
    font-weight: 700 !important;
    font-optical-sizing: auto;
    letter-spacing: -0.03em !important;
    text-transform: none !important;
    font-size: 1.14rem !important;
    line-height: 1;
    padding: 0.58rem 1.28rem !important;
    border-radius: 999px !important;
    box-shadow: 0 8px 18px -12px rgba(255, 90, 0, 0.9) !important;
}

.btn-primary::after {
    display: none !important;
}

.btn-primary:hover,
.site-header__cta.btn-primary:hover {
    background: var(--allo-orange-dark) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.28), 0 10px 22px -14px rgba(255, 90, 0, 0.8) !important;
}

.site-header__cta.btn-primary:hover {
    box-shadow: 0 12px 24px -12px rgba(255, 90, 0, 0.95) !important;
}

.btn-primary:active,
.site-header__cta.btn-primary:active {
    transform: translateY(1px);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25) !important;
}

.btn-ghost-light {
    transition: border-color 200ms ease, color 200ms ease, background-color 200ms ease;
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.06);
}

.site-header__icon-btn,
.site-header__burger {
    color: #fff !important;
    background: transparent !important;
}

.site-header__drawer {
    background: #111 !important;
    border-top: var(--allo-tape);
}

.site-header__drawer a {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

.brand-logo-img,
.brand-logo-img--color,
.brand-logo-img--white,
.brand-logo-img--footer {
    display: none !important;
}

.brand-wordmark {
    color: #fff !important;
    gap: 0.7rem !important;
}

.brand-wordmark__glyph {
    width: 2.35rem !important;
    height: 2.35rem !important;
    color: var(--allo-orange) !important;
}

.brand-wordmark__kicker {
    font-family: "Oswald", sans-serif !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.22em !important;
    color: var(--allo-orange) !important;
}

.brand-wordmark__name {
    font-family: "Alfa Slab One", Georgia, serif !important;
    font-size: 1.32rem !important;
    font-weight: 400 !important;
    font-style: normal !important;
    letter-spacing: 0.005em !important;
    text-transform: none;
    color: #fff !important;
}

.brand-lockup:hover .brand-wordmark__name {
    color: var(--allo-orange) !important;
}

.site-footer .brand-wordmark__name {
    font-size: 1.42rem !important;
}

@media (max-width: 640px) {
    .brand-wordmark__glyph {
        width: 2rem !important;
        height: 2rem !important;
    }

    .brand-wordmark__name {
        font-size: 1.1rem !important;
    }
}

.site-footer {
    background: #111 !important;
    color: rgba(255, 255, 255, 0.78) !important;
    border-top: var(--allo-tape) !important;
}

.site-footer a {
    color: #fff !important;
}

.site-footer a:hover {
    color: var(--allo-orange) !important;
}

.site-footer .footer-heading {
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--allo-orange) !important;
    font-size: 0.82rem;
}

.site-footer__base {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.55);
}

.scroll-progress {
    background: var(--allo-orange) !important;
}

.cookie-consent__panel {
    border-top: var(--allo-tape);
}

.cookie-button--accept {
    background: var(--allo-orange) !important;
    color: #fff !important;
}

/* --- Hero --- */
.allo-hero {
    position: relative;
    min-height: calc(100svh - var(--site-header-offset));
    display: grid;
    align-items: stretch;
    background: #111;
    color: #fff;
}

.allo-hero__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #111;
}

.allo-hero__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: allo-hero-crossfade 12s ease-in-out infinite;
}

.allo-hero__media img:nth-child(1) {
    opacity: 1;
    animation-name: allo-hero-crossfade-lead;
}

.allo-hero__media img:nth-child(2) { animation-delay: 3s; }
.allo-hero__media img:nth-child(3) { animation-delay: 6s; }
.allo-hero__media img:nth-child(4) { animation-delay: 9s; }

@keyframes allo-hero-crossfade-lead {
    0%, 25% { opacity: 1; }
    33.333% { opacity: 0; }
    91.667% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes allo-hero-crossfade {
    0% { opacity: 0; }
    8.333% { opacity: 1; }
    25% { opacity: 1; }
    33.333% { opacity: 0; }
    100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .allo-hero__media img {
        animation: none !important;
        opacity: 0 !important;
    }

    .allo-hero__media img:first-child {
        opacity: 1 !important;
    }
}

.allo-hero__veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 8, 8, 0.82) 0%, rgba(8, 8, 8, 0.45) 48%, rgba(8, 8, 8, 0.2) 100%),
        linear-gradient(0deg, rgba(8, 8, 8, 0.55), transparent 40%);
}

.allo-hero__copy {
    position: relative;
    z-index: 1;
    width: var(--rail);
    margin: 0 auto;
    padding: 4.5rem 0 4rem;
    max-width: 40rem;
}

.allo-hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    margin: 0.6rem 0 1rem;
    color: #fff;
}

.allo-hero__lead {
    font-size: 1.15rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.86);
    max-width: 34rem;
}

.allo-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.6rem;
}

.allo-hero__meta {
    margin-top: 1.25rem;
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: var(--allo-orange);
}

.btn-ghost-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

.btn-ghost-light:hover {
    border-color: var(--allo-orange);
    color: var(--allo-orange);
}

.allo-stamp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5.6rem;
    height: 5.6rem;
    border: 2px solid var(--allo-orange);
    border-radius: 50%;
    transform: rotate(-8deg);
    font-family: "Oswald", sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.15;
    color: var(--allo-orange);
    margin-bottom: 0.8rem;
}

.allo-rail {
    width: var(--rail);
    margin: 0 auto;
}

.allo-section {
    padding: 4.2rem 0;
}

.allo-section--dark {
    background: #111;
    color: #f4efe7;
}

.allo-section h2 {
    font-size: clamp(1.7rem, 3.4vw, 2.5rem);
    margin: 0.4rem 0 0.8rem;
}

.allo-lede {
    font-size: 1.08rem;
    line-height: 1.65;
    color: rgb(var(--texte-secondaire));
    max-width: 40rem;
}

.allo-section--dark .allo-lede {
    color: rgba(255, 255, 255, 0.78);
}

.allo-proofs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(17, 17, 17, 0.12);
    border: var(--allo-tape);
}

.allo-proof {
    background: var(--allo-paper);
    padding: 1.45rem 1.25rem 1.35rem;
    position: relative;
}

.allo-proof::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 2.4rem;
    height: 3px;
    background: var(--allo-orange);
    content: "";
}

.allo-proof strong {
    display: block;
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 1.02rem;
    margin-bottom: 0.35rem;
}

.allo-proof p {
    font-size: 0.92rem;
    color: rgb(var(--texte-secondaire));
    margin: 0;
}

.allo-ba-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2.4rem;
    align-items: center;
}

.ba-slider {
    --ba-pos: 52%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #1a1a1a;
    border: var(--allo-tape);
    container-type: inline-size;
    cursor: ew-resize;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}

.ba-slider__after,
.ba-slider__before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.ba-slider__before-wrap {
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--ba-pos);
    overflow: hidden;
    pointer-events: none;
}

.ba-slider__before-wrap .ba-slider__before {
    width: 100cqw;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

.ba-slider__divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--ba-pos);
    z-index: 3;
    width: 2px;
    margin-left: -1px;
    background: #fff;
    box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.28), 0 0 18px rgba(0, 0, 0, 0.18);
    cursor: ew-resize;
    pointer-events: none;
}

.ba-slider__divider::before {
    position: absolute;
    inset: 0 -14px;
    content: "";
    pointer-events: none;
}

.ba-slider__divider:focus-visible {
    outline: none;
}

.ba-slider__divider:focus-visible .ba-slider__grip {
    box-shadow: 0 0 0 4px rgba(255, 90, 0, 0.35);
}

.ba-slider__grip {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: 1.15rem;
    height: 2.15rem;
    transform: translate(-50%, -50%);
    border: 2px solid #fff;
    border-radius: 999px;
    background: var(--allo-orange);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
    pointer-events: none;
    transition: transform 180ms ease;
}

.ba-slider__grip::before,
.ba-slider__grip::after {
    width: 0.38rem;
    height: 0.38rem;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    content: "";
}

.ba-slider__grip::before {
    transform: rotate(-45deg);
}

.ba-slider__grip::after {
    transform: rotate(135deg);
}

.ba-slider:hover .ba-slider__grip,
.ba-slider.is-dragging .ba-slider__grip {
    transform: translate(-50%, -50%) scale(1.06);
}

.ba-label {
    position: absolute;
    top: 0.8rem;
    z-index: 2;
    padding: 0.3rem 0.6rem;
    background: rgba(17, 17, 17, 0.88);
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    pointer-events: none;
}

.ba-label--before {
    left: 0.8rem;
    border-left: 3px solid var(--allo-orange);
}

.ba-label--after {
    right: 0.8rem;
    border-right: 3px solid var(--allo-orange);
}

.ba-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.7rem;
    font-family: "Oswald", sans-serif;
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgb(var(--texte-tertiaire));
}

.ba-hint i {
    color: var(--allo-orange);
}

.allo-section--dark .ba-hint {
    color: rgba(255, 255, 255, 0.72);
}

.allo-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.55rem;
    margin-top: 1.4rem;
}

.allo-gallery figure {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, 0.12);
}

.allo-gallery img {
    display: block;
    width: 100%;
    height: 10.5rem;
    object-fit: cover;
    filter: saturate(0.92);
    transition: transform 480ms cubic-bezier(.2, .7, .2, 1);
}

.allo-gallery figure:hover img {
    transform: scale(1.05);
}

.allo-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.allo-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.12);
    min-height: 100%;
    color: inherit;
    text-decoration: none;
    overflow: hidden;
    transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.allo-card img {
    width: 100%;
    height: 11.5rem;
    object-fit: cover;
    transition: transform 420ms cubic-bezier(.2, .7, .2, 1);
}

.allo-card__body {
    padding: 1.15rem 1.15rem 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex: 1;
}

.allo-card h3 {
    font-size: 1.15rem;
    margin: 0;
}

.allo-card p {
    margin: 0;
    color: rgb(var(--texte-secondaire));
    font-size: 0.95rem;
}

.allo-card span {
    margin-top: auto;
    padding-top: 0.7rem;
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: var(--allo-orange);
}

.allo-card:hover {
    border-color: var(--allo-orange);
    transform: translateY(-4px);
    box-shadow: 0 18px 36px -28px rgba(17, 17, 17, 0.55);
}

.allo-card:hover img {
    transform: scale(1.045);
}

.allo-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.2rem;
}

.allo-cities span,
.allo-cities a {
    border: 1px solid rgba(17, 17, 17, 0.2);
    padding: 0.35rem 0.7rem;
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
    color: inherit;
    text-decoration: none;
}

.allo-cities a:hover,
.allo-cities span:hover {
    border-color: var(--allo-orange);
    color: var(--allo-orange);
    background: rgba(255, 90, 0, 0.06);
}

.allo-section--dark .allo-cities span,
.allo-section--dark .allo-cities a {
    border-color: rgba(255, 255, 255, 0.25);
}

.allo-split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.2rem;
    align-items: center;
}

.allo-split img {
    width: 100%;
    height: 100%;
    max-height: 28rem;
    object-fit: cover;
    border: var(--allo-tape);
}

.allo-faq-layout {
    display: grid;
    grid-template-columns: minmax(16rem, 0.78fr) minmax(0, 1.22fr);
    gap: 2.6rem 3rem;
    align-items: start;
}

.allo-faq-layout header .allo-lede {
    margin-top: 0.85rem;
}

.allo-faq {
    display: grid;
    gap: 0.55rem;
}

.allo-faq details,
.allo-faq details.reveal,
.allo-hero__copy.reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

.allo-faq details {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, 0.1);
    background: #fff;
    padding: 0;
    transition: border-color 200ms ease, box-shadow 200ms ease;
}

.allo-faq details:hover {
    border-color: rgba(255, 90, 0, 0.35);
}

.allo-faq details[open] {
    border-color: var(--allo-orange);
    background: #fffdf8;
    box-shadow: 0 18px 36px -28px rgba(17, 17, 17, 0.5);
}

.allo-faq summary {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.9rem;
    padding: 1.05rem 1.15rem;
    cursor: pointer;
    font-family: "Source Sans 3", sans-serif;
    font-weight: 650;
    text-transform: none;
    letter-spacing: -0.01em;
    font-size: 1.05rem;
    line-height: 1.35;
    list-style: none;
}

.allo-faq summary::-webkit-details-marker {
    display: none;
}

.allo-faq summary:hover {
    background: rgba(255, 90, 0, 0.045);
}

.allo-faq__n {
    font-family: "Oswald", sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--allo-orange);
}

.allo-faq summary::after {
    flex: 0 0 auto;
    width: 1.7rem;
    height: 1.7rem;
    border: 1.5px solid rgba(17, 17, 17, 0.18);
    border-radius: 999px;
    background-color: transparent;
    background-image:
        linear-gradient(#111, #111),
        linear-gradient(#111, #111);
    background-size: 0.7rem 1.5px, 1.5px 0.7rem;
    background-position: center, center;
    background-repeat: no-repeat;
    content: "";
    transition: transform 280ms cubic-bezier(.2, .7, .2, 1), background-color 220ms ease, border-color 220ms ease, background-image 220ms ease;
}

.allo-faq details[open] summary::after {
    transform: rotate(135deg);
    border-color: var(--allo-orange);
    background-color: var(--allo-orange);
    background-image:
        linear-gradient(#fff, #fff),
        linear-gradient(#fff, #fff);
}

.allo-faq__body {
    padding: 0 1.15rem 1.15rem 3.35rem;
}

.allo-faq details[open] .allo-faq__body {
    animation: adFaqReveal 280ms cubic-bezier(.2, .7, .2, 1) both;
}

.allo-faq__body p {
    margin: 0;
    color: rgb(var(--texte-secondaire));
    max-width: 40rem;
    line-height: 1.65;
}

@keyframes adFaqReveal {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .allo-faq details[open] .allo-faq__body {
        animation: none;
    }
}

.allo-cta-band {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.2rem;
    padding: 1.6rem 1.5rem;
    background: #111;
    color: #fff;
    border-top: var(--allo-tape);
}

.allo-cta-band p {
    margin: 0.2rem 0 0;
    color: rgba(255, 255, 255, 0.75);
}

.allo-page-hero {
    background: #111;
    color: #fff;
    padding: 3.2rem 0 2.6rem;
    border-bottom: var(--allo-tape);
}

.allo-page-hero .allo-hero__lead {
    color: rgba(255, 255, 255, 0.86);
}

.allo-page-hero .allo-hero__actions {
    margin-top: 1.4rem;
}

.allo-page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    margin: 0.4rem 0 0.7rem;
    color: #fff;
}

.breadcrumb {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a { color: #fff; }

.allo-steps {
    counter-reset: step;
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.allo-steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    align-items: start;
}

.allo-steps li::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    font-family: "Oswald", sans-serif;
    color: var(--allo-orange);
    font-size: 1.2rem;
    min-width: 2.2rem;
}

.prose-ad {
    max-width: 42rem;
}

.prose-ad p + p { margin-top: 0.9rem; }

.prose-ad a {
    color: var(--allo-orange);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.prose-ad a:hover {
    color: #111;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 2rem;
    align-items: start;
}

.contact-aside {
    background: #111;
    color: #f4efe7;
    padding: 1.6rem 1.4rem;
    border-top: var(--allo-tape);
}

.contact-aside a { color: #fff; }
.contact-aside a:hover { color: var(--allo-orange); }

.form-shell {
    background: #fff !important;
    border: 1px solid rgba(17, 17, 17, 0.12) !important;
    padding: 1.5rem !important;
}

.field {
    border: 1px solid rgba(17, 17, 17, 0.18) !important;
    background: #fff !important;
    padding: 0.65rem 0.75rem;
    width: 100%;
}

.field:focus {
    outline: 2px solid var(--allo-orange);
    border-color: var(--allo-orange) !important;
}

.legal-sheet h1,
.legal-sheet h2 {
    text-transform: uppercase;
}

@media (max-width: 960px) {
    .allo-proofs,
    .allo-cards,
    .allo-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .allo-ba-grid,
    .allo-split,
    .allo-faq-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .allo-proofs,
    .allo-cards,
    .allo-gallery {
        grid-template-columns: 1fr;
    }

    .allo-hero {
        min-height: 78svh;
    }

    .allo-gallery img {
        height: 14rem;
    }
}

/* ---- Finitions : rythme, reliefs, micro-interactions ---- */

.allo-section h2 {
    position: relative;
    padding-bottom: 0.7rem;
}

.allo-section h2::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3.2rem;
    height: 3px;
    background: var(--allo-orange);
    content: "";
}

.allo-cta-band h2::after,
.allo-page-hero h1::after {
    display: none;
}

.allo-kicker,
.kicker {
    position: relative;
    padding-left: 1.5rem;
}

.allo-kicker::before,
.kicker::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 1.05rem;
    height: 2px;
    background: var(--allo-orange);
    content: "";
}

.allo-proofs {
    box-shadow: 0 22px 46px -34px rgba(17, 17, 17, 0.6);
}

.allo-proof {
    position: relative;
    transition: background-color 220ms ease, transform 220ms ease;
}

.allo-proof::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--allo-orange);
    content: "";
    transition: width 320ms cubic-bezier(.2, .7, .2, 1);
}

.allo-proof:hover {
    background: #fffdf9;
}

.allo-proof:hover::before {
    width: 100%;
}

.allo-card {
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 38px -32px rgba(17, 17, 17, 0.7);
    transition: transform 240ms cubic-bezier(.2, .7, .2, 1), box-shadow 240ms ease, border-color 200ms ease;
}

.allo-card img {
    transition: transform 520ms cubic-bezier(.2, .7, .2, 1), filter 320ms ease;
    filter: saturate(0.94);
}

.allo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 46px -28px rgba(17, 17, 17, 0.5);
}

.allo-card:hover img {
    transform: scale(1.045);
    filter: saturate(1.02);
}

.allo-card span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.allo-card span::after {
    width: 1.1rem;
    height: 2px;
    background: currentColor;
    content: "";
    transition: width 220ms ease;
}

.allo-card:hover span::after {
    width: 1.9rem;
}

.allo-gallery figure {
    position: relative;
    overflow: hidden;
}

.allo-gallery img {
    transition: transform 520ms cubic-bezier(.2, .7, .2, 1), filter 320ms ease;
}

.allo-gallery figure:hover img {
    transform: scale(1.06);
    filter: saturate(1);
}

.allo-cities span,
.allo-cities a {
    transition: border-color 200ms ease, background-color 200ms ease, color 200ms ease;
}

.allo-cities span:hover,
.allo-cities a:hover {
    border-color: var(--allo-orange);
    background: rgba(255, 90, 0, 0.08);
}

.allo-hero {
    min-height: min(88svh, 46rem);
    align-items: center;
}

.allo-hero__copy {
    padding: 3.5rem 0;
}

/* Le tampon est une vignette d'angle : il ne doit pas pousser le texte du hero. */
.allo-hero__copy .allo-stamp {
    position: absolute;
    top: 5rem;
    right: -9.5rem;
    width: 8.1rem;
    height: 8.1rem;
    margin: 0;
    padding: 0.45rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.12;
    color: #fff;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 90, 0, 0.92), rgba(224, 78, 0, 0.92));
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 16px 34px -20px rgba(0, 0, 0, 0.8);
}

@media (max-width: 1100px) {
    .allo-hero__copy .allo-stamp {
        position: static;
        width: 7.1rem;
        height: 7.1rem;
        margin-bottom: 1rem;
        font-size: 0.62rem;
    }
}

@media (max-width: 1023.98px) {
    .allo-hero__copy {
        padding-right: 1rem;
        padding-bottom: 6.75rem;
    }
}

.allo-steps li {
    padding-bottom: 0.95rem;
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.allo-steps li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.allo-steps li::before {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 90, 0, 0.45);
    border-radius: 999px;
    font-size: 0.95rem;
    line-height: 1;
}

.allo-steps h3 {
    font-size: 1.08rem;
    margin: 0 0 0.3rem;
}

.allo-steps p {
    margin: 0;
    color: rgb(var(--texte-secondaire));
}

.allo-split img,
.allo-ba-grid .ba-slider {
    box-shadow: 0 26px 52px -34px rgba(17, 17, 17, 0.7);
}

.allo-cta-band {
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 46px -32px rgba(17, 17, 17, 0.8);
}

.allo-cta-band::after {
    position: absolute;
    top: -40%;
    right: -6%;
    width: 16rem;
    height: 16rem;
    border: 3px solid rgba(255, 90, 0, 0.16);
    border-radius: 999px;
    content: "";
    pointer-events: none;
}

.form-shell {
    box-shadow: 0 22px 48px -36px rgba(17, 17, 17, 0.65) !important;
}

.form-shell label {
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.field {
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field:hover {
    border-color: rgba(17, 17, 17, 0.32) !important;
}

.contact-aside {
    box-shadow: 0 22px 48px -34px rgba(17, 17, 17, 0.75);
}

.contact-aside i {
    width: 1.1rem;
    color: var(--allo-orange);
}

.legal-sheet h2 {
    border-bottom-color: rgba(17, 17, 17, 0.14) !important;
    letter-spacing: 0.03em;
}

@media (max-width: 640px) {
    .allo-faq summary {
        font-size: 0.94rem;
        padding: 0.95rem 1rem;
    }

    .allo-faq__body {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .ba-slider__grip {
        width: 1.35rem;
        height: 2.35rem;
    }
}

/* Sticky WhatsApp + appel — mobile uniquement */
.allo-sticky-cta {
    display: none;
    position: fixed;
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: max(0.95rem, env(safe-area-inset-bottom));
    z-index: 60;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.55rem;
}

.allo-sticky-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 2.85rem;
    padding: 0.55rem 0.95rem 0.55rem 0.75rem;
    border-radius: 999px;
    color: #fff !important;
    box-shadow: 0 10px 24px -10px rgba(17, 17, 17, 0.7);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.allo-sticky-cta__btn i {
    font-size: 1.15rem;
    line-height: 1;
}

.allo-sticky-cta__btn span {
    font-family: "Oswald", sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: none;
    white-space: nowrap;
}

.allo-sticky-cta__btn--wa {
    background: #1fae54 !important;
}

.allo-sticky-cta__btn--tel {
    background: var(--allo-orange) !important;
}

.allo-sticky-cta__btn:hover,
.allo-sticky-cta__btn:focus-visible {
    transform: scale(1.06);
    color: #fff !important;
}

.allo-sticky-cta__btn:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

@media (max-width: 1023.98px) {
    .allo-sticky-cta {
        display: flex;
    }

    body.mobile-menu-open .allo-sticky-cta {
        opacity: 0;
        pointer-events: none;
    }

    body:has(#cookie-consent) .allo-sticky-cta {
        bottom: max(7.25rem, calc(6.4rem + env(safe-area-inset-bottom)));
    }
}

.cookie-consent__panel #cookie-consent-title {
    font-family: "Oswald", sans-serif !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 1rem !important;
}

.allo-lp-related {
    display: grid;
    gap: 0.55rem;
    margin-top: 1.5rem;
}

.allo-lp-related a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: #fff;
    color: inherit;
    text-decoration: none;
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.86rem;
}

.allo-lp-related a:hover {
    border-color: var(--allo-orange);
    color: var(--allo-orange);
}

/* Prod : ne jamais masquer le contenu, même si un JS ancien ajoute .reveal sans .is-in. */
.reveal,
.reveal-left,
.reveal-right {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}
