        /* ================================================================
           VARIABLES & RESET
        ================================================================ */
        :root {
            --bg:    #fdf6f4;
            --cream: #f5e8e4;
            --blush: #ead4d0;
            --rose:  #c8788a;
            --gold:  #b56878;
            --brown: #8a4858;
            --dark:  #3a1828;
            --text:  #5a3040;
            --ink:   #130508;
            --white: #ffffff;
        }

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        /* Aimantation des sections gérée en JS (voir index.js, initSoftSnap) :
           le scroll-snap CSS ne permet pas de régler la force de l'aimant.
           JS = zone de capture forte sur hero/contact, faible sur les catégories. */

        .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;
        }

        .skip-link {
            position: absolute;
            top: -100%;
            left: 0;
            background: var(--dark);
            color: var(--white);
            padding: 12px 24px;
            font-size: 13px;
            letter-spacing: 1px;
            z-index: 999999;
            text-decoration: none;
            transition: top 0.2s;
        }
        .skip-link:focus { top: 0; }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
            }
        }

        body {
            font-family: 'Jost', sans-serif;
            background: var(--bg);
            color: var(--text);
            overflow-x: hidden;
        }

        /* ================================================================
           PRÉCHARGEUR
        ================================================================ */
        #preloader {
            position: fixed;
            inset: 0;
            background: var(--cream);
            z-index: 99999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 18px;
            transition: opacity 0.9s ease, visibility 0.9s ease;
        }

        #preloader.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .pl-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.7rem, 4vw, 2.8rem);
            font-weight: 300;
            letter-spacing: 14px;
            text-indent: 14px; /* compense l'espace trailing du letter-spacing */
            text-align: center;
            text-transform: uppercase;
            color: var(--dark);
            opacity: 0;
            animation: plFade 0.9s ease 0.3s forwards;
        }

        .pl-bar {
            width: 0;
            height: 1px;
            background: var(--rose);
            animation: plBar 1s ease 0.6s forwards;
        }

        .pl-sub {
            font-size: 9px;
            letter-spacing: 6px;
            text-transform: uppercase;
            color: rgba(58,24,40,0.45);
            font-weight: 200;
            opacity: 0;
            animation: plFade 0.7s ease 1s forwards;
        }

        @keyframes plFade { to { opacity: 1; } }
        @keyframes plBar  { to { width: 110px; } }

        /* ================================================================
           NAVIGATION
        ================================================================ */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 30px 56px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: padding 0.4s ease, background 0.4s ease;
        }

        nav.scrolled { padding: 20px 56px; }

        .nav-logo {
            font-family: 'Cormorant Garamond', serif;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            gap: 2px;
            opacity: 0;
            transform: translateY(-4px);
            transition: opacity 0.5s ease, transform 0.5s ease, color 0.4s ease;
            pointer-events: none;
            white-space: nowrap;
            line-height: 1;
        }

        .nav-logo.visible {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .nav-logo-name {
            font-size: 1rem;
            font-weight: 300;
            letter-spacing: 5px;
            text-transform: uppercase;
        }

        .nav-logo-sub {
            font-size: 9px;
            font-weight: 200;
            letter-spacing: 6px;
            text-transform: uppercase;
            color: rgba(58,24,40,0.45);
        }

        nav ul {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        nav a {
            text-decoration: none;
            font-size: 9.5px;
            letter-spacing: 3.5px;
            text-transform: uppercase;
            font-weight: 300;
            transition: opacity 0.3s;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: currentColor;
            transition: width 0.4s ease;
        }

        nav a:hover { opacity: 1; }
        nav a:hover::after { width: 100%; }

        nav.on-dark .nav-logo { color: rgba(255,255,255,0.82); }
        nav.on-dark a         { color: rgba(255,255,255,0.72); }

        nav.on-cream .nav-logo,
        nav.on-light .nav-logo { color: var(--dark); }
        nav.on-cream a,
        nav.on-light a         { color: var(--dark); }

        /* Hamburger */
        .nav-toggle {
            display: none;
            position: fixed;
            top: 26px;
            right: 28px;
            z-index: 1001;
            background: none;
            border: none;
            cursor: pointer;
            width: 28px;
            flex-direction: column;
            gap: 7px;
            padding: 4px;
        }

        .nav-toggle span {
            display: block;
            height: 1px;
            background: var(--dark);
            transition: all 0.35s ease;
        }

        nav.on-dark .nav-toggle span { background: var(--white); }

        .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); }
        .nav-toggle.open span:nth-child(2) { opacity: 0; }
        .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); }

        /* ================================================================
           HERO
        ================================================================ */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 600px;
            overflow: hidden;
            background: var(--ink);
        }

        /* Léger débord haut/bas (30px) : marge de sécurité pour la parallaxe
           JS (translateY), toujours clippée par .hero (overflow:hidden). */
        .hero-slides { position: absolute; top: -30px; left: 0; right: 0; height: calc(100% + 60px); }

        .hero-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 2.8s ease;
            overflow: hidden;
        }

        .hero-slide.active { opacity: 1; }

        .slide-blur {
            position: absolute;
            inset: -50px;
            background-size: cover;
            background-position: center;
            filter: blur(32px) brightness(0.38) saturate(0.85);
            animation: kenBurns 26s ease-in-out infinite;
        }

        .hero-slide img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            z-index: 1;
            animation: kenBurnsSubtle 26s ease-in-out infinite;
        }

        .hero-placeholder {
            position: absolute;
            inset: 0;
            background: linear-gradient(155deg, #160510 0%, #2e1020 30%, #6b2840 65%, #c98090 100%);
        }

        @keyframes kenBurns       { 0%,100%{transform:scale(1)}   50%{transform:scale(1.09)} }
        @keyframes kenBurnsSubtle { 0%,100%{transform:scale(1)}   50%{transform:scale(1.04)} }

        .hero-grain {
            position: absolute;
            inset: 0;
            z-index: 2;
            pointer-events: none;
            opacity: 0.055;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
            background-size: 200px;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            z-index: 3;
            background: linear-gradient(
                to top,
                rgba(15,7,3,0.82) 0%,
                rgba(15,7,3,0.28) 45%,
                rgba(15,7,3,0.14) 100%
            );
        }

        .hero-content {
            display: none; /* masqué sur ordinateur — visible uniquement sur mobile */
            position: absolute;
            bottom: 80px;
            left: 64px;
            z-index: 4;
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 1.4s cubic-bezier(0.16,1,0.3,1), transform 1.4s cubic-bezier(0.16,1,0.3,1);
        }

        .hero-content.reveal { opacity: 1; transform: translateY(0); }

        @keyframes heroReveal {
            from { opacity: 0; transform: translateY(24px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .hero-eyebrow {
            display: block;
            font-size: 10px;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--rose);
            font-weight: 400;
            margin-bottom: 16px;
        }

        .hero-content .hero-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(4rem, 9vw, 9.5rem);
            font-weight: 300;
            letter-spacing: 8px;
            text-transform: uppercase;
            color: var(--white);
            line-height: 0.92;
            margin-bottom: 22px;
            text-shadow: 0 6px 48px rgba(0,0,0,0.35);
        }

        .hero-rule {
            width: 48px;
            height: 1px;
            background: var(--rose);
            margin-bottom: 16px;
        }

        .hero-tagline {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(0.85rem, 1.6vw, 1.2rem);
            font-weight: 300;
            font-style: italic;
            letter-spacing: 6px;
            color: rgba(255,255,255,0.80);
        }

        .hero-categories {
            position: absolute;
            bottom: 86px;
            right: 64px;
            z-index: 4;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 10px;
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 1.2s cubic-bezier(0.16,1,0.3,1) 0.25s, transform 1.2s cubic-bezier(0.16,1,0.3,1) 0.25s;
        }

        .hero-categories.reveal { opacity: 1; transform: translateY(0); }

        .hero-cat {
            font-size: 10px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.65);
            font-weight: 300;
            cursor: pointer;
            transition: color 0.35s;
            background: none;
            border: none;
        }

        .hero-cat:hover { color: rgba(255,255,255,1); }

        .hero-scroll {
            position: absolute;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 4;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            opacity: 0;
            transition: opacity 1s ease 0.5s;
        }

        .hero-scroll.reveal { opacity: 1; }

        .hero-scroll-line {
            width: 1px;
            height: 52px;
            background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.38));
            animation: scrollPulse 2.8s ease-in-out infinite;
        }

        @keyframes scrollPulse {
            0%,100%{ transform:scaleY(1); opacity:1; }
            50%    { transform:scaleY(0.6); opacity:0.4; }
        }

        .hero-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 4;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.16);
            color: var(--white);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.35s;
            opacity: 0;
            -webkit-backdrop-filter: blur(10px);`n            backdrop-filter: blur(10px);
        }

        .hero:hover .hero-arrow { opacity: 1; }
        .hero-arrow:hover { background: rgba(255,255,255,0.15); transform: translateY(-50%) scale(1.1); }
        .hero-arrow.prev { left: 22px; }
        .hero-arrow.next { right: 22px; }

        /* ================================================================
           PRÉSENTATION
        ================================================================ */
        .about {
            display: grid;
            grid-template-columns: 58% 42%;
            min-height: 100vh;
        }

        .about-visual {
            position: relative;
            overflow: hidden;
            background: var(--blush);
            min-height: 500px;
        }

        .about-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            transition: transform 1s ease;
            display: block;
        }

        .about-visual:hover img { transform: scale(1.04); }

        .about-visual-placeholder {
            position: absolute;
            inset: 0;
            background: linear-gradient(155deg, var(--cream) 0%, var(--blush) 40%, var(--brown) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-visual-placeholder svg { width: 80px; opacity: 0.12; }

        .about-text {
            background: var(--cream);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 72px;
            position: relative;
            overflow: hidden;
        }

        .about-text::before {
            content: 'A';
            position: absolute;
            top: -40px;
            right: -30px;
            font-family: 'Cormorant Garamond', serif;
            font-size: min(38vw, 480px);
            font-weight: 300;
            color: rgba(138,96,85,0.045);
            line-height: 1;
            pointer-events: none;
            -webkit-user-select: none;
            user-select: none;
        }

        .about-inner { max-width: 420px; position: relative; z-index: 1; }

        .label {
            display: block;
            font-size: 10px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--rose);
            margin-bottom: 24px;
            font-weight: 400;
        }

        .about-inner h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2rem, 3.8vw, 3.2rem);
            font-weight: 300;
            letter-spacing: 14px;
            text-transform: uppercase;
            color: var(--dark);
            line-height: 1.05;
            margin-bottom: 30px;
        }

        .about-quote {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            font-style: italic;
            font-weight: 300;
            color: var(--brown);
            line-height: 1.65;
            margin-bottom: 28px;
            padding-left: 22px;
            border-left: 2px solid var(--rose);
        }

        .about-inner p {
            font-size: 13.5px;
            line-height: 2.05;
            color: var(--text);
            font-weight: 300;
            margin-bottom: 14px;
            text-align: justify;
            -webkit-hyphens: auto;
            hyphens: auto;
        }

        .about-divider {
            width: 38px;
            height: 1px;
            background: var(--rose);
            margin: 34px 0;
        }

        .signature {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.4rem;
            font-style: italic;
            font-weight: 300;
            color: var(--rose);
        }

        /* ================================================================
           SECTIONS PORTFOLIO
        ================================================================ */
        .portfolio-section {
            position: relative;
            height: 100vh;
            min-height: 580px;
            overflow: hidden;
            display: flex;
            align-items: flex-end;
            padding: 72px 64px;
        }

        /* ── EFFET « PILE DE TIRAGES » (cover-scroll, desktop) ───────────
           Chaque collection se fige en haut de l'écran (sticky) pendant que
           la suivante glisse par-dessus. Les témoignages rejoignent la pile
           (classe .pile posée en JS, seulement si leur contenu tient dans
           l'écran) et le contact recouvre en dernier. L'aimant strict de
           la pile (initSoftSnap) garantit qu'au repos une section est
           toujours pleinement découverte : titres lisibles, boutons
           cliquables. Rollback : tag git `avant-stack-collections`.
           `html.js-anim` (posé par initSoftSnap) conditionne TOUT l'effet :
           si le script ne tourne pas — ou si les sections dépassent la
           hauteur de l'écran (updatePileFit) — le site redevient un
           défilement classique où tout est visible et cliquable. */
        @media (min-width: 641px) {
            html.js-anim .portfolio-section {
                position: sticky;
                top: 0;
                box-shadow: 0 -70px 130px rgba(19, 5, 8, 0.35);
            }
            html.js-anim .temoignages.pile {
                position: sticky;
                top: 0;
                min-height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            html.js-anim .temoignages.pile .temoignages-inner { width: 100%; }
            /* L'ombre en haut des sections qui recouvrent donne la
               lecture de profondeur. */
            html.js-anim .temoignages,
            html.js-anim .contact-section {
                box-shadow: 0 -70px 130px rgba(19, 5, 8, 0.28);
            }
            /* Tout ce qui suit la pile doit recouvrir la dernière section
               épinglée (élément positionné apparaissant après dans le DOM
               = peint au-dessus des sticky). */
            .temoignages,
            .contact-section,
            footer {
                position: relative;
            }
        }

        .section-bg {
            position: absolute;
            left: 0;
            right: 0;
            top: -20px;
            width: 100%;
            height: calc(100% + 40px);
            object-fit: cover;
            /* Zoom d'installation + survol via la propriété indépendante `scale` ;
               la parallaxe JS pilote la propriété `translate` (voir initSectionParallax).
               `transform` n'est plus utilisé : les trois ne se disputent plus. */
            scale: 1.05;
            transition: scale 1.4s cubic-bezier(0.22, 1, 0.36, 1);
            will-change: translate;
        }

        .portfolio-section.cascade-in .section-bg { scale: 1; }

        .section-gradient { position: absolute; inset: 0; }

        .portfolio-section:hover .section-bg { scale: 1.03; }

        .section-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to top,
                rgba(40,18,8,0.82) 0%,
                rgba(40,18,8,0.28) 46%,
                rgba(40,18,8,0.04) 100%
            );
            transition: background 0.55s ease;
        }

        .portfolio-section:hover .section-overlay {
            background: linear-gradient(
                to top,
                rgba(40,18,8,0.90) 0%,
                rgba(40,18,8,0.40) 50%,
                rgba(40,18,8,0.08) 100%
            );
        }

        .section-number {
            position: absolute;
            top: 50%;
            right: 48px;
            transform: translateY(-55%);
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(14rem, 32vw, 30rem);
            font-weight: 300;
            color: rgba(255,255,255,0.038);
            line-height: 1;
            letter-spacing: -16px;
            z-index: 1;
            pointer-events: none;
            -webkit-user-select: none;
            user-select: none;
            transition: color 0.55s ease;
        }

        .portfolio-section:hover .section-number { color: rgba(255,255,255,0.07); }

        .section-body {
            position: relative;
            z-index: 2;
            color: var(--white);
            max-width: 560px;
        }

        .section-body .label { color: var(--rose); margin-bottom: 14px; }

        .section-body h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(3.8rem, 7.5vw, 7rem);
            font-weight: 300;
            letter-spacing: 16px;
            text-transform: uppercase;
            text-shadow: 0 4px 30px rgba(0,0,0,0.2);
            line-height: 1;
            margin-bottom: 12px;
        }

        .section-sub {
            display: block;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            font-style: italic;
            font-weight: 300;
            letter-spacing: 2px;
            color: rgba(255,255,255,0.78);
            margin-bottom: 18px;
        }

        .section-desc {
            font-size: 13px;
            line-height: 1.95;
            font-weight: 300;
            color: rgba(255,255,255,0.75);
            max-width: 400px;
            margin-bottom: 36px;
            letter-spacing: 0.2px;
            text-align: justify;
            -webkit-hyphens: auto;
            hyphens: auto;
        }

        .famille-btns {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }
        /* Un seul bouton → pleine largeur */
        .famille-btns.single {
            grid-template-columns: 1fr;
        }
        /* Séparateur discret entre galeries et "En savoir plus" */
        .btns-divider {
            grid-column: 1 / -1;
            height: 1px;
            background: rgba(255,255,255,0.15);
            margin: 4px 0;
        }

        .btn-discover-alt {
            border-color: rgba(255,255,255,0.22);
            color: rgba(255,255,255,0.72);
        }

        .btn-discover-alt:hover {
            border-color: rgba(255,255,255,0.7);
            color: var(--white);
        }

        .btn-discover {
            display: inline-flex;
            align-items: center;
            gap: 16px;
            padding: 14px 40px;
            border: 1px solid rgba(255,255,255,0.55);
            color: var(--white);
            font-family: 'Jost', sans-serif;
            font-size: 10px;
            letter-spacing: 3.5px;
            text-transform: uppercase;
            font-weight: 300;
            background: transparent;
            cursor: pointer;
            transition: border-color 0.4s, transform 0.4s;
            position: relative;
            overflow: hidden;
        }

        .btn-discover::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255,255,255,0.07);
            transform: translateX(-102%);
            transition: transform 0.4s ease;
        }

        .btn-discover:hover::before { transform: translateX(0); }
        .btn-discover:hover { border-color: rgba(255,255,255,0.85); transform: translateY(-2px); }

        .btn-discover-arrow {
            font-size: 15px;
            font-weight: 300;
            transition: transform 0.35s ease;
        }

        .btn-discover:hover .btn-discover-arrow { transform: translateX(5px); }

        /* ================================================================
           CONTACT
        ================================================================ */
        .contact-section {
            background: var(--bg);
            min-height: 100vh;
            display: grid;
            grid-template-columns: 38% 62%;
        }

        .contact-left {
            padding: 120px 56px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-right: 1px solid rgba(138,72,88,0.12);
            position: relative;
        }

        .contact-left h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(3rem, 5vw, 5.5rem);
            font-weight: 300;
            letter-spacing: 14px;
            text-transform: uppercase;
            color: var(--dark);
            line-height: 1.02;
            margin-bottom: 28px;
        }

        .contact-desc {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            font-style: italic;
            color: var(--text);
            letter-spacing: 1px;
            line-height: 1.8;
            margin-bottom: 56px;
            text-align: justify;
            -webkit-hyphens: auto;
            hyphens: auto;
        }

        .contact-info-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .contact-info-item { display: flex; flex-direction: column; gap: 6px; }

        .contact-info-item .c-label {
            font-size: 10px;
            letter-spacing: 3.5px;
            text-transform: uppercase;
            color: var(--rose);
            font-weight: 400;
        }

        .contact-info-item .c-value {
            font-size: 12.5px;
            letter-spacing: 0.5px;
            color: var(--text);
            font-weight: 300;
        }

        .contact-right {
            padding: 120px 72px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-form-wrap { width: 100%; max-width: 480px; }

        .contact-form { display: flex; flex-direction: column; gap: 22px; }

        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

        .form-group { display: flex; flex-direction: column; gap: 10px; }

        .form-group label {
            font-size: 10px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--brown);
            font-weight: 400;
        }

        .form-group input,
        .form-group textarea {
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(138,72,88,0.2);
            color: var(--dark);
            padding: 12px 0;
            font-family: 'Jost', sans-serif;
            font-size: 13px;
            font-weight: 300;
            outline: none;
            transition: border-color 0.35s;
            width: 100%;
            letter-spacing: 0.5px;
        }

        .form-group input:focus,
        .form-group textarea:focus { border-color: rgba(200,120,138,0.65); }

        .form-group input::placeholder,
        .form-group textarea::placeholder { color: rgba(90,48,64,0.5); }

        .form-group textarea { min-height: 120px; resize: none; }

        .btn-send {
            align-self: flex-start;
            padding: 14px 50px;
            background: transparent;
            border: 1px solid rgba(200,120,138,0.55);
            color: var(--rose);
            font-family: 'Jost', sans-serif;
            font-size: 10px;
            letter-spacing: 3.5px;
            text-transform: uppercase;
            font-weight: 300;
            cursor: pointer;
            transition: border-color 0.4s, color 0.4s, transform 0.4s;
            margin-top: 12px;
            position: relative;
            overflow: hidden;
        }

        .btn-send::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(200,120,138,0.07);
            transform: translateX(-102%);
            transition: transform 0.4s ease;
        }

        .btn-send:hover::before { transform: translateX(0); }

        .btn-send:hover {
            border-color: var(--rose);
            color: var(--rose);
            transform: translateY(-2px);
        }

        .btn-send:disabled { opacity: 0.3; cursor: not-allowed; transform: none; }

        .form-status { font-size: 11px; letter-spacing: 2px; display: none; padding-top: 8px; }
        .form-status.success { color: #9ec4a4; display: block; }
        .form-status.error   { color: #c4a29e; display: block; }

        .form-success { display: none; text-align: center; padding: 36px 0; }
        .form-success.visible { display: block; animation: successReveal 0.7s ease-out; }

        @keyframes successReveal {
            from { opacity: 0; transform: translateY(28px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .success-svg {
            display: block;
            margin: 0 auto 32px;
            width: 70px;
            height: 70px;
        }

        .success-svg .s-circle {
            fill: none; stroke: var(--rose); stroke-width: 1.5;
            stroke-dasharray: 208; stroke-dashoffset: 208;
            animation: drawCircle 0.8s cubic-bezier(0.4,0,0.2,1) 0.1s forwards;
        }

        .success-svg .s-check {
            fill: none; stroke: var(--rose); stroke-width: 2.5;
            stroke-linecap: round; stroke-linejoin: round;
            stroke-dasharray: 46; stroke-dashoffset: 46;
            animation: drawCheck 0.4s ease-out 0.75s forwards;
        }

        @keyframes drawCircle { to { stroke-dashoffset: 0; } }
        @keyframes drawCheck  { to { stroke-dashoffset: 0; } }

        .success-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.9rem; font-weight: 300; letter-spacing: 10px;
            text-transform: uppercase; color: var(--dark); margin-bottom: 12px;
            opacity: 0; animation: successReveal 0.5s ease-out 1s forwards;
        }

        .success-sub {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic; font-size: 1rem; letter-spacing: 2px;
            color: var(--text); line-height: 1.8;
            opacity: 0; animation: successReveal 0.5s ease-out 1.2s forwards;
        }
        .success-back {
            margin-top: 24px; background: none; border: 1px solid var(--rose);
            color: var(--rose); padding: 10px 28px; cursor: pointer;
            font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 2px;
            text-transform: uppercase; transition: background .2s, color .2s;
            opacity: 0; animation: successReveal 0.5s ease-out 1.5s forwards;
        }
        .success-back:hover { background: var(--rose); color: white; }
        .avis-counter {
            font-family: 'Jost', sans-serif; font-size: 13px; letter-spacing: 1px;
            color: var(--brown); margin-bottom: 32px; opacity: .8;
        }

        /* ================================================================
           FOOTER
        ================================================================ */
        footer { background: var(--cream); border-top: 1px solid rgba(138,72,88,0.15); }

        .footer-top {
            display: grid;
            /* Colonne du milieu élargie : Navigation et Guides y tiennent
               côte à côte (voir .footer-nav-col). */
            grid-template-columns: 1.1fr 1fr 1.3fr;
            gap: 64px;
            padding: 72px 64px 56px;
            border-bottom: 1px solid rgba(138,72,88,0.1);
        }

        .footer-col-title {
            font-size: 10px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--rose);
            font-weight: 400;
            margin-bottom: 24px;
        }

        .footer-brand {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.15rem;
            font-weight: 300;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .footer-brand span {
            display: block;
            font-family: 'Jost', sans-serif;
            font-size: 10px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--rose);
            margin-top: 6px;
            font-weight: 300;
        }

        .footer-brand-tagline {
            font-size: 12px;
            letter-spacing: 2px;
            color: var(--text);
            font-weight: 300;
            margin: 20px 0 28px;
            line-height: 1.8;
        }

        .footer-social { display: flex; gap: 20px; flex-wrap: wrap; }

        .footer-social a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 10px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--brown);
            text-decoration: none;
            transition: color 0.35s;
            font-weight: 300;
        }

        .footer-social a svg { flex-shrink: 0; }

        .footer-social a:hover { color: var(--rose); }

        .footer-nav-col {
            position: static;
            width: auto;
            z-index: auto;
            padding: 0;
            background: transparent;
            /* Navigation et Guides côte à côte */
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: start;
        }

        .footer-nav-col ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }

        .footer-nav-col a {
            font-size: 12px;
            letter-spacing: 1px;
            color: var(--text);
            text-decoration: none;
            font-weight: 300;
            transition: color 0.3s;
        }

        .footer-nav-col a:hover { color: var(--rose); }

        .footer-faq-item { border-bottom: 1px solid rgba(138,72,88,0.1); padding: 14px 0; }

        .footer-faq-q {
            background: none;
            border: none;
            text-align: left;
            cursor: pointer;
            font-size: 12px;
            letter-spacing: 0.2px;
            color: var(--dark);
            font-weight: 300;
            font-family: 'Jost', sans-serif;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 10px;
            padding: 0;
        }

        .footer-faq-q::after {
            content: '+';
            color: var(--rose);
            font-size: 18px;
            font-weight: 200;
            flex-shrink: 0;
            transition: transform 0.3s;
            line-height: 1;
        }

        .footer-faq-item.open .footer-faq-q::after { transform: rotate(45deg); }

        .footer-faq-a {
            font-size: 11.5px;
            line-height: 1.9;
            color: var(--text);
            text-align: justify;
            -webkit-hyphens: auto;
            hyphens: auto;
            font-weight: 300;
            display: none;
            padding-top: 10px;
        }

        .footer-faq-item.open .footer-faq-a { display: block; }

        .footer-bottom {
            padding: 26px 64px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .footer-copy { font-size: 11px; letter-spacing: 2px; color: var(--brown); }

        .footer-legal-links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

        .footer-legal-links a {
            font-size: 11px;
            letter-spacing: 1.5px;
            color: var(--brown);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-legal-links a:hover { color: var(--rose); }

        .footer-address {
            font-size: 11px;
            letter-spacing: 1px;
            color: var(--text);
            font-style: normal;
            line-height: 1.9;
        }

        /* ================================================================
           GALERIE OVERLAY
        ================================================================ */
        .gallery-overlay {
            position: fixed;
            inset: 0;
            z-index: 8000;
            background: rgba(12,6,3,0.98);
            display: none;
            flex-direction: column;
        }

        .gallery-overlay.open { display: flex; }

        .gallery-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 28px 44px;
            border-bottom: 1px solid rgba(255,255,255,0.055);
            flex-shrink: 0;
        }

        .gallery-title-wrap { display: flex; flex-direction: column; gap: 4px; }

        .gallery-label {
            font-size: 10px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--rose);
            font-weight: 400;
        }

        .gallery-desc {
            margin-top: 8px;
            font-family: 'Cormorant Garamond', serif;
            font-size: 0.95rem;
            font-style: italic;
            font-weight: 300;
            color: rgba(255,255,255,0.72);
            letter-spacing: 0.3px;
            line-height: 1.7;
            max-width: 520px;
        }

        .gallery-desc:empty { display: none; }

        .gallery-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.55rem;
            font-weight: 300;
            letter-spacing: 10px;
            text-transform: uppercase;
            color: var(--white);
        }

        .gallery-close {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.55);
            color: var(--white);
            font-size: 22px;
            width: 52px;
            height: 52px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.25s;
            border-radius: 2px;
            flex-shrink: 0;
        }

        .gallery-close:hover {
            background: var(--rose);
            border-color: var(--rose);
            color: var(--white);
            transform: scale(1.08);
        }

        .gallery-grid {
            flex: 1;
            overflow-y: auto;
            padding: 36px 44px;
        }

        .gallery-masonry {
            columns: 4;
            column-gap: 10px;
        }

        .gallery-item {
            break-inside: avoid;
            overflow: hidden;
            cursor: zoom-in;
            background: rgba(255,255,255,0.03);
            position: relative;
            margin-bottom: 10px;
            display: block;
        }

        .gallery-item img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.6s ease;
        }

        .gallery-item:hover img { transform: scale(1.07); }

        .gallery-item-overlay {
            position: absolute;
            inset: 0;
            background: rgba(12,6,3,0);
            transition: background 0.35s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-item:hover .gallery-item-overlay { background: rgba(12,6,3,0.28); }

        .gallery-zoom-icon {
            width: 36px;
            height: 36px;
            border: 1px solid rgba(255,255,255,0.65);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: var(--white);
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
            font-weight: 200;
        }

        .gallery-item:hover .gallery-zoom-icon { opacity: 1; }

        .gallery-empty {
            grid-column: 1/-1;
            text-align: center;
            padding: 100px 20px;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            font-style: italic;
            font-weight: 300;
            letter-spacing: 3px;
            color: rgba(255,255,255,0.18);
        }

        /* ================================================================
           LIGHTBOX
        ================================================================ */
        .lightbox {
            position: fixed;
            inset: 0;
            z-index: 9000;
            background: rgba(8,4,2,0.97);
            display: none;
            align-items: center;
            justify-content: center;
        }

        .lightbox.open { display: flex; }

        .lightbox img {
            max-width: 90vw;
            max-height: 90vh;
            object-fit: contain;
            box-shadow: 0 40px 120px rgba(0,0,0,0.98);
            animation: lbFade 0.22s ease;
            cursor: zoom-in;
            transition: transform 0.25s ease;
        }

        @keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }

        .lightbox-close {
            position: absolute;
            top: 24px;
            right: 28px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.55);
            color: var(--white);
            width: 52px;
            height: 52px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            cursor: pointer;
            transition: all 0.25s;
            z-index: 10;
            border-radius: 2px;
        }

        .lightbox-close:hover {
            background: var(--rose);
            border-color: var(--rose);
            transform: scale(1.08);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.1);
            color: var(--white);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .lightbox-nav:hover { background: rgba(255,255,255,0.13); }
        .lightbox-nav.prev { left: 22px; }
        .lightbox-nav.next { right: 22px; }

        .lightbox-counter {
            position: absolute;
            bottom: 28px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 11px;
            letter-spacing: 4px;
            color: rgba(255,255,255,0.65);
            font-weight: 300;
        }

        /* ================================================================
           TÉMOIGNAGES
        ================================================================ */
        .temoignages { background: var(--cream); padding: 120px 64px; }
        .temoignages-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
        .temoignages-inner .label { display: block; margin-bottom: 16px; }
        .temoignages-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.2rem, 4vw, 3.6rem);
            font-weight: 300;
            letter-spacing: 14px;
            text-transform: uppercase;
            color: var(--dark);
            margin-bottom: 60px;
        }
        /* Carrousel infini */
        .temoignages-track-wrapper {
            width: 100%; overflow: hidden;
            mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
        }
        .temoignages-track {
            display: flex; gap: 24px;
            width: max-content;
            animation: scroll-reviews 40s linear infinite;
        }
        .temoignages-track:hover { animation-play-state: paused; }
        @keyframes scroll-reviews {
            from { transform: translateX(0); }
            to   { transform: translateX(-50%); }
        }
        .temoignages-grid { display: contents; }

        /* Carte style Google */
        .temoignage-card {
            background: #fff;
            border-radius: 12px;
            padding: 20px 22px 18px;
            box-shadow: 0 1px 6px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.06);
            display: flex; flex-direction: column; gap: 10px;
            font-family: 'Jost', sans-serif;
            position: relative;
            width: 320px; flex-shrink: 0;
        }
        .temoignage-card-header {
            display: flex; align-items: center; justify-content: space-between;
        }
        .temoignage-card-user { display: flex; align-items: center; gap: 12px; }
        .temoignage-avatar {
            width: 40px; height: 40px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 16px; font-weight: 600; color: #fff;
            flex-shrink: 0; font-family: 'Jost', sans-serif;
        }
        .temoignage-card-info { display: flex; flex-direction: column; gap: 1px; }
        .temoignage-card-name { font-size: 13px; font-weight: 500; color: #202124; }
        .temoignage-card-date { font-size: 11px; color: #70757a; }
        .temoignage-google-icon { flex-shrink: 0; opacity: .85; }
        .temoignage-stars {
            display: flex; gap: 2px;
        }
        .temoignage-stars svg { width: 16px; height: 16px; }
        .temoignage-text {
            font-size: 13.5px; color: #3c4043; line-height: 1.65;
            font-family: 'Jost', sans-serif; font-style: normal; font-weight: 300;
            margin: 0; padding: 0; border: none; quotes: none;
            display: -webkit-box; -webkit-line-clamp: 5;
            -webkit-box-orient: vertical; overflow: hidden;
        }
        .temoignage-text.expanded { -webkit-line-clamp: unset; overflow: visible; }
        .temoignage-more {
            font-size: 12px; color: #1a73e8; cursor: pointer;
            background: none; border: none; padding: 0; font-family: 'Jost', sans-serif;
            align-self: flex-start;
        }
        .temoignage-author { display: none; } /* masqué — info dans header */
        .temoignage-source { display: none; }
        .temoignages-google-link {
            display: inline-flex; align-items: center; gap: 8px;
            margin-top: 40px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
            color: var(--rose); text-decoration: none; border-bottom: 1px solid transparent;
            transition: border-color .2s;
        }
        .temoignages-google-link:hover { border-bottom-color: var(--rose); }

        /* ================================================================
           FAQ
        ================================================================ */
        .faq-section { background: var(--bg); padding: 100px 64px; }
        .faq-inner { max-width: 800px; margin: 0 auto; }
        .faq-header { text-align: center; margin-bottom: 64px; }
        .faq-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.2rem, 4vw, 3.6rem);
            font-weight: 300; letter-spacing: 14px; text-transform: uppercase;
            color: var(--dark); margin-top: 16px; margin-bottom: 16px;
        }
        .faq-header p { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem; color: var(--text); letter-spacing: 1px; }
        .faq-item { border-bottom: 1px solid rgba(138,72,88,0.12); padding: 32px 0; }
        .faq-question {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem; font-weight: 300; letter-spacing: 0.5px;
            color: var(--dark); margin-bottom: 14px;
            display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
        }
        .faq-icon { color: var(--rose); font-size: 20px; font-weight: 200; flex-shrink: 0; line-height: 1.2; }
        .faq-answer { font-size: 13.5px; line-height: 2; font-weight: 300; color: var(--text); max-width: 660px; text-align: justify; -webkit-hyphens: auto; hyphens: auto; }

        /* ================================================================
           ANIMATIONS AU SCROLL
        ================================================================ */
        .fade-in {
            opacity: 0;
            transform: translateY(36px);
            transition: opacity 1.2s ease, transform 1.2s ease;
        }

        .fade-in.visible { opacity: 1; transform: translateY(0); }

        /* Les collections n'utilisent plus le fondu de bloc : l'image de fond
           est visible immédiatement, le contenu se dépose en cascade. */
        .portfolio-section.fade-in { opacity: 1; transform: none; }

        /* Témoignages et contact : même logique — le bloc est visible,
           c'est leur contenu qui apparaît en cascade (voir plus bas). */
        .temoignages.fade-in,
        .contact-section.fade-in { opacity: 1; transform: none; }

        /* ── CASCADE ÉDITORIALE DES COLLECTIONS ─────────────────────────
           Déclenchée par la classe .cascade-in (initCollectionCascade).
           Titre révélé derrière un masque, trait qui se trace, puis
           description et bouton en fondu décalé.
           Masquage conditionné à html.js-anim : le contenu n'est caché QUE
           si le script d'animation tourne (fail-open — jamais de titre ni
           de bouton invisible si le JS échoue). */
        html.js-anim .portfolio-section .section-body .label,
        html.js-anim .portfolio-section .section-body .section-sub,
        html.js-anim .portfolio-section .section-body .section-desc,
        html.js-anim .portfolio-section .section-body .famille-btns {
            opacity: 0;
            transform: translateY(18px);
            transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
        }

        html.js-anim .portfolio-section .section-body h2 {
            opacity: 0;
            transform: translateY(56%);
            /* Marge horizontale large (-100%) : le grand titre déborde
               volontairement de sa colonne (560px) — le masque ne doit
               découper QUE verticalement (effet rideau), jamais les côtés. */
            clip-path: inset(0 -100% 110% -100%);
            transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                        transform 1.05s cubic-bezier(0.22, 1, 0.36, 1),
                        clip-path 1.05s cubic-bezier(0.22, 1, 0.36, 1);
        }

        /* Le trait rosé se trace sous le label */
        .portfolio-section .section-body .label::after {
            content: '';
            display: block;
            width: 0;
            height: 1px;
            margin-top: 12px;
            background: var(--rose);
            transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.55s;
        }

        /* Fail-open : sans animation, le trait est simplement tracé */
        html:not(.js-anim) .portfolio-section .section-body .label::after {
            width: 48px;
            transition: none;
        }

        html.js-anim .portfolio-section.cascade-in .section-body .label,
        html.js-anim .portfolio-section.cascade-in .section-body .section-sub,
        html.js-anim .portfolio-section.cascade-in .section-body .section-desc,
        html.js-anim .portfolio-section.cascade-in .section-body .famille-btns {
            opacity: 1;
            transform: translateY(0);
        }

        html.js-anim .portfolio-section.cascade-in .section-body h2 {
            opacity: 1;
            transform: translateY(0);
            clip-path: inset(-30% -100% -30% -100%); /* vertical : ombre portée ; horizontal : jamais de découpe */
        }

        html.js-anim .portfolio-section.cascade-in .section-body .label::after { width: 48px; }

        /* Séquencement de la cascade */
        html.js-anim .portfolio-section.cascade-in .section-body .label        { transition-delay: 0s; }
        html.js-anim .portfolio-section.cascade-in .section-body h2            { transition-delay: 0.12s; }
        html.js-anim .portfolio-section.cascade-in .section-body .section-sub  { transition-delay: 0.3s; }
        html.js-anim .portfolio-section.cascade-in .section-body .section-desc { transition-delay: 0.42s; }
        html.js-anim .portfolio-section.cascade-in .section-body .famille-btns { transition-delay: 0.54s; }

        /* ── APPARITION DES TÉMOIGNAGES ET DU CONTACT ───────────────────
           Même vocabulaire que la cascade des collections : le contenu se
           dépose en fondu décalé quand la section recouvre la pile
           (classe .cascade-in posée par initCoverCascade). */
        html.js-anim .temoignages .temoignages-inner > *,
        html.js-anim .contact-section .contact-left,
        html.js-anim .contact-section .contact-right {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
        }

        html.js-anim .temoignages.cascade-in .temoignages-inner > *,
        html.js-anim .contact-section.cascade-in .contact-left,
        html.js-anim .contact-section.cascade-in .contact-right {
            opacity: 1;
            transform: translateY(0);
        }

        /* Séquencement */
        html.js-anim .temoignages.cascade-in .temoignages-inner > .label       { transition-delay: 0s; }
        html.js-anim .temoignages.cascade-in .temoignages-title                { transition-delay: 0.12s; }
        html.js-anim .temoignages.cascade-in .temoignages-grid                 { transition-delay: 0.3s; }
        html.js-anim .temoignages.cascade-in .temoignages-google-link          { transition-delay: 0.45s; }
        html.js-anim .contact-section.cascade-in .contact-left                 { transition-delay: 0s; }
        html.js-anim .contact-section.cascade-in .contact-right                { transition-delay: 0.2s; }

/* ================================================================
           RESPONSIVE
        ================================================================ */
        @media (max-width: 1300px) {
            .gallery-masonry { columns: 3; }
        }

        @media (max-width: 1100px) {
            .contact-section { grid-template-columns: 1fr; }
            .contact-left {
                padding: 80px 56px 48px;
                border-right: none;
                border-bottom: 1px solid rgba(138,72,88,0.12);
            }
            .contact-right { padding: 56px 56px 80px; }
        }

        @media (max-width: 900px) {
            nav { padding: 24px 32px; }
            nav.scrolled { padding: 18px 32px; }
            .about { grid-template-columns: 1fr; min-height: auto; }
            .about-visual { height: 70vw; min-height: 300px; }
            .about-text { padding: 72px 44px; }
            .portfolio-section { padding: 56px 40px; }
            .hero-content { left: 40px; bottom: 64px; }
            .hero-categories { right: 40px; bottom: 70px; }
            .form-row { grid-template-columns: 1fr; }
            .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; padding: 56px 40px 44px; }
            .footer-bottom { padding: 22px 40px; }
            .temoignages { padding: 80px 40px; }
            .faq-section { padding: 80px 40px; }
        }

        @media (max-width: 640px) {
            /* Sections toujours visibles dès le chargement */
            .fade-in { opacity: 1 !important; transform: none !important; transition: none !important; }

            /* Cascade et zoom désactivés sur mobile (convention du site) */
            .portfolio-section .section-body .label,
            .portfolio-section .section-body h2,
            .portfolio-section .section-body .section-sub,
            .portfolio-section .section-body .section-desc,
            .portfolio-section .section-body .famille-btns {
                opacity: 1 !important;
                transform: none !important;
                clip-path: none !important;
                transition: none !important;
            }
            .portfolio-section .section-body .label::after { width: 48px; transition: none; }
            .section-bg { scale: 1 !important; transition: none !important; }

            /* Apparition témoignages/contact désactivée sur mobile aussi */
            .temoignages .temoignages-inner > *,
            .contact-section .contact-left,
            .contact-section .contact-right {
                opacity: 1 !important;
                transform: none !important;
                transition: none !important;
            }

            /* ── PRÉCHARGEUR ─────────────────────────────── */
            .pl-name {
                font-size: clamp(1.3rem, 7vw, 1.7rem);
                letter-spacing: 6px;
                text-indent: 6px;
            }
            .pl-sub { letter-spacing: 4px; text-indent: 4px; }

            /* ── NAVIGATION ─────────────────────────────── */
            .nav-logo { display: none; }
            .nav-toggle { display: flex; }

            #navMenu {
                display: none;
                position: fixed;
                inset: 0;
                background: rgba(19,10,5,0.97);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 0;
                z-index: 999;
                padding: 60px 40px;
            }
            #navMenu.open { display: flex; }
            #navMenu.open li { width: 100%; text-align: center; }
            #navMenu.open a {
                display: block;
                color: rgba(255,255,255,0.75);
                font-size: 11px;
                letter-spacing: 5px;
                text-transform: uppercase;
                padding: 16px 0;
                border-bottom: 1px solid rgba(255,255,255,0.06);
                transition: color 0.25s;
            }
            #navMenu.open li:last-child a { border-bottom: none; }
            #navMenu.open a:hover, #navMenu.open a:active { color: var(--rose); }

            /* ── HERO ────────────────────────────────────── */
            .hero { height: 100vh; height: 100svh; min-height: 100vh; height: 100svh; }
            .hero-content {
                display: block;
                left: 24px;
                right: 24px;
                bottom: 44px;
            }
            .hero-content .hero-eyebrow {
                font-size: 9px;
                letter-spacing: 3.5px;
                margin-bottom: 18px;
            }
            .hero-content .hero-name {
                font-size: clamp(2.6rem, 13vw, 4rem);
                letter-spacing: 4px;
                margin-bottom: 18px;
                line-height: 0.92;
            }
            .hero-content .hero-rule { width: 36px; margin-bottom: 14px; }
            .hero-content .hero-tagline {
                font-size: 0.85rem;
                letter-spacing: 4px;
            }
            .hero-categories { display: none; }
            .hero-scroll { display: none; }
            .hero-arrow { display: none; }

            /* ── PRÉSENTATION ────────────────────────────── */
            .about {
                display: flex;
                flex-direction: column;
                min-height: auto;
            }
            .about-visual { height: auto; /* Fallback pour Safari < 15 */ aspect-ratio: 4/5; min-height: unset; }
            .about-visual img { object-position: center 20%; }
            .about-text { padding: 52px 24px 60px; }
            .about-inner { max-width: 100%; }
            .about-inner h2 {
                font-size: clamp(1.9rem, 9vw, 2.8rem);
                letter-spacing: 7px;
                margin-bottom: 22px;
            }
            .about-quote { font-size: 1.1rem; line-height: 1.7; padding-left: 16px; }
            .about-inner p { font-size: 13px; line-height: 1.95; }
            .signature { font-size: 2rem; }

            /* ── SECTIONS PORTFOLIO ──────────────────────── */
            .portfolio-section {
                padding: 0 24px 44px;
                height: auto;
                min-height: 90vh; min-height: 90svh;
                align-items: flex-end;
            }
            .section-body { max-width: 100%; }
            .section-body .label { margin-bottom: 10px; }
            .section-body h2 {
                font-size: clamp(2.6rem, 13vw, 4rem);
                letter-spacing: 5px;
                margin-bottom: 8px;
            }
            .section-sub { font-size: 0.95rem; margin-bottom: 14px; }
            .section-desc {
                font-size: 13px;
                line-height: 1.85;
                margin-bottom: 24px;
                max-width: 100%;
            }
            .section-number { display: none; }
            .btn-discover {
                min-height: 48px;
                padding: 12px 24px;
                font-size: 10px;
                letter-spacing: 3.5px;
                gap: 12px;
            }
            .famille-btns {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .famille-btns .btn-discover { width: 100%; justify-content: space-between; }

            /* ── CONTACT ─────────────────────────────────── */
            .contact-left { padding: 56px 24px 32px; }
            .contact-right { padding: 32px 24px 64px; }
            .contact-left h2 {
                font-size: clamp(2rem, 10vw, 3rem);
                letter-spacing: 7px;
            }
            .contact-desc { font-size: 1rem; margin-bottom: 36px; }
            .contact-info-list { display: flex; gap: 16px; margin-bottom: 28px; }
            .contact-info-item .c-label { font-size: 9px; letter-spacing: 2px; }
            .contact-info-item .c-value { font-size: 11.5px; }
            /* Empêche iOS de zoomer sur les champs de formulaire */
            .form-group input,
            .form-group textarea,
            .form-group select {
                font-size: 16px;
                padding: 14px 0;
            }
            .btn-send {
                min-height: 52px;
                font-size: 10px;
                letter-spacing: 4px;
            }

            /* ── TÉMOIGNAGES ─────────────────────────────── */
            .temoignages { padding: 60px 24px; }
            .temoignages-title {
                font-size: clamp(1.6rem, 9vw, 2.4rem);
                letter-spacing: 8px;
                margin-bottom: 40px;
            }
            .temoignage-card { padding: 18px 16px; width: 280px; }

            /* ── FAQ ─────────────────────────────────────── */
            .faq-section { padding: 60px 24px; }
            .faq-header h2 {
                font-size: clamp(1.6rem, 9vw, 2.4rem);
                letter-spacing: 8px;
            }
            .faq-item { padding: 22px 0; }

            /* ── GALERIE OVERLAY ─────────────────────────── */
            .gallery-grid { padding: 14px; }
            .gallery-masonry {
                columns: 2;
                column-gap: 6px;
            }
            .gallery-item { margin-bottom: 6px; }
            .gallery-header { padding: 16px 20px; }
            .gallery-title { font-size: 1.15rem; letter-spacing: 6px; }
            .gallery-desc { display: none; }

            /* ── FOOTER ──────────────────────────────────── */
            .footer-top { grid-template-columns: 1fr; padding: 48px 24px 36px; gap: 40px; }
            .footer-bottom {
                padding: 20px 24px;
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            .footer-brand { font-size: 1rem; }
            .footer-brand-tagline { font-size: 11px; letter-spacing: 1.5px; margin: 14px 0 20px; }
        }

        /* ================================================================
           UX — BOUTON FLOTTANT "RÉSERVER"
        ================================================================ */
        .floating-reserve {
            position: fixed;
            bottom: 32px;
            right: 32px;
            z-index: 900;
            background: var(--rose);
            color: #fff;
            border: none;
            padding: 14px 26px;
            font-family: var(--font-body);
            font-size: 12px;
            letter-spacing: 3px;
            text-transform: uppercase;
            text-decoration: none;
            cursor: pointer;
            opacity: 0;
            transform: translateY(16px);
            transition: opacity 0.4s ease, transform 0.4s ease, background 0.25s;
            pointer-events: none;
        }
        .floating-reserve.visible {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }
        .floating-reserve:hover {
            background: var(--gold);
        }
        @media (max-width: 600px) {
            .floating-reserve {
                bottom: 20px;
                right: 16px;
                padding: 12px 20px;
                font-size: 11px;
            }
        }

        /* ================================================================
           UX — INDICATEUR DE SECTION (points à droite)
        ================================================================ */
        .section-dots {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 800;
            /* Reset des règles globales nav{} */
            width: auto;
            padding: 0;
            align-items: flex-start;
            justify-content: flex-start;
            /* Propre au composant */
            display: flex;
            flex-direction: column;
            gap: 10px;
            opacity: 0;
            transition: opacity 0.4s;
            pointer-events: none;
        }
        .section-dots.visible {
            opacity: 1;
            pointer-events: auto;
        }
        .section-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: rgba(255,255,255,0.35);
            border: 1px solid rgba(255,255,255,0.5);
            cursor: pointer;
            transition: background 0.3s, transform 0.3s, border-color 0.3s;
            display: block;
        }
        .section-dot.active {
            background: var(--rose);
            border-color: var(--rose);
            transform: scale(1.4);
        }
        .section-dot[data-dark].active {
            background: var(--rose);
            border-color: var(--rose);
        }
        .section-dot[data-dark] {
            background: rgba(90,48,64,0.25);
            border-color: rgba(90,48,64,0.35);
        }
        @media (max-width: 900px) {
            .section-dots { display: none; }
        }

        /* ================================================================
           UX — SKELETON LOADING GALERIES
        ================================================================ */
        @keyframes skeleton-shimmer {
            0%   { background-position: -400px 0; }
            100% { background-position:  400px 0; }
        }
        .skeleton-img {
            width: 100%;
            aspect-ratio: 3/4;
            background: linear-gradient(90deg, #ead4d0 25%, #f5e8e4 50%, #ead4d0 75%);
            background-size: 400px 100%;
            animation: skeleton-shimmer 1.4s ease infinite;
            display: block;
        }
