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

        :root {
            --dark-steel: #1a1a1a;
            --rust: #8B4513;
            --metallic: #d4af37;
            --worn-silver: #a9a9a9;
            --danger-red: #cc2222;
            --oil-black: #0f0f0f;
            --accent-cream: #DCCDAC;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Georgia', 'Garamond', serif;
            background: #DCCDAC;
            color: #2a2a2a;
            line-height: 1.6;
            background-attachment: fixed;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                repeating-linear-gradient(
                    90deg,
                    transparent,
                    transparent 2px,
                    rgba(0,0,0,.01) 2px,
                    rgba(0,0,0,.01) 4px
                );
            pointer-events: none;
            z-index: 1;
        }

        main {
            position: relative;
            z-index: 2;
        }

        /* ===== PROGRESS BAR ===== */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--danger-red), var(--rust), #8B4513);
            width: 0%;
            z-index: 101;
            transition: width 0.1s ease-out;
        }

/* ===== PLAQUE ATELIER ÉMAILLÉE ===== */

.atelier-nav {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 185px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: 1.5rem 1rem;

    background: 
        linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    
    border-right: 6px solid #2b2b2b;

    box-shadow:
        inset 0 0 25px rgba(255,255,255,0.08),
        6px 0 25px rgba(0,0,0,0.4);

    z-index: 200;

    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.05em;
	
	overflow-y: auto;
    overflow-x: hidden;
	 gap: 0;
	
}

/* Scrollbar fine et discrète */
.atelier-nav::-webkit-scrollbar {
    width: 6px;
}

.atelier-nav::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
}

/* ===== Effet émaillé brillant ===== */
.atelier-nav::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 35%;
    background: linear-gradient(
        rgba(255,255,255,0.12),
        rgba(255,255,255,0.02)
    );
    pointer-events: none;
}

/* ===== Rivets ===== */
.atelier-nav::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 12px;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle at 30% 30%, #ddd, #777);
    border-radius: 50%;
    box-shadow:
        0 0 0 2px #333,
        150px 0 0 0 #333,
        150px 0 0 2px #333,
        0 calc(100vh - 24px) 0 0 #333,
        0 calc(100vh - 24px) 0 2px #333;
}

/* ===== Titre ===== */
.atelier-title {
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #c9b37a;
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

/* ===== Items resserrés ===== */
.atelier-nav a {
    display: block;
    width: 100%;
    text-decoration: none;

    font-size: 0.75rem;
    padding: 0.15rem 0;   /* 🔥 resserré */

    color: #e6e6e6;

    transition: all 0.25s ease;
	
}

.atelier-nav a:hover {
    color: #c9b37a;
    padding-left: 6px;
}

/* ===== Séparateurs fins ===== */
.atelier-separator {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 0.5rem 0;  /* 🔥 resserré */
}

/* ===== cache sur mobile ===== */
@media (max-width: 768px) {

    .atelier-nav {
        display: none;
    }

    body {
        margin-left: 0;
    }

}





/* ===== Décalage contenu ===== */
@media (min-width: 769px) {
    body {
        margin-left: 185px;
    }
}


        /* ===== SECTIONS with IDs for anchor nav ===== */
        section {
            scroll-margin-top: 100px;
        }

        /* ===== HEADER ===== */
        header {
            background: linear-gradient(180deg, #DCCDAC 0%, #d4bfa0 100%);
            border-bottom: 3px solid var(--rust);
            padding: 2rem 0;
            margin-bottom: 3rem;
            box-shadow: 0 8px 32px rgba(0,0,0,0.15);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .logo {
            font-size: 2rem;
            font-weight: 900;
            letter-spacing: 0.15em;
            color: #8B4513;
            text-transform: uppercase;
            font-family: 'Courier New', monospace;
            text-shadow: 1px 1px 2px rgba(255,255,255,0.5);
            transition: all 0.3s;
        }

        .logo:hover {
            color: var(--danger-red);
            text-shadow: 0 0 10px rgba(204, 34, 34, 0.5);
        }

        .tagline {
            font-size: 0.85rem;
            color: #5a4a3a;
            font-style: italic;
            letter-spacing: 0.05em;
            margin-top: 0.3rem;
        }

        nav {
            display: flex;
            gap: 2.5rem;
        }

        nav a {
            color: #3a3a3a;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            position: relative;
            transition: color 0.3s;
            font-family: 'Courier New', monospace;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--danger-red);
            transition: width 0.3s;
        }

        nav a:hover {
            color: var(--danger-red);
        }

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

        /* ===== HERO ===== */
        .hero {
            max-width: 1200px;
            margin: 0 auto 4rem;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text h1 {
            font-size: clamp(2.5rem, 8vw, 4rem);
            line-height: 1.1;
            color: #8B4513;
            margin-bottom: 1.5rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-text p {
            font-size: 1.1rem;
            color: #3a3a3a;
            margin-bottom: 2rem;
            line-height: 1.8;
            animation: fadeInUp 0.8s ease-out 0.1s backwards;
        }

        .cta-button {
            display: inline-block;
            background: var(--danger-red);
            color: #DCCDAC;
            padding: 1rem 2.5rem;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            border: 2px solid var(--danger-red);
            transition: all 0.3s;
            font-size: 0.95rem;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(204, 34, 34, 0.3);
        }

        .cta-button:hover {
            background: transparent;
            color: var(--danger-red);
            transform: scale(1.05);
        }

        .hero-image {
            position: relative;
            animation: fadeInDown 0.8s ease-out;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            filter: saturate(0.8) contrast(1.1);
            border: 0px solid var(--rust);
            box-shadow: -8px 8px 20px rgba(0,0,0,0.2), inset 0 0 30px rgba(0,0,0,0.1);
        }

        /* ===== GALLERY GRID ===== */
        .gallery-section {
            max-width: 1200px;
            margin: 5rem auto;
            padding: 0 2rem;
        }

        .section-title {
            font-size: 2.5rem;
            color: #8B4513;
            margin-bottom: 3rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 900;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
            border-bottom: 3px solid var(--rust);
            padding-bottom: 1rem;
            font-family: 'Courier New', monospace;
        }

        .restoration-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-bottom: 4rem;
        }

        .restoration-card {
            background: linear-gradient(135deg, #f5f1e8 0%, #e8dcc8 100%);
            border-left: 4px solid var(--rust);
            border-top: 2px solid #8B4513;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
            position: relative;
        }

        .restoration-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 12px 40px rgba(204, 34, 34, 0.2);
            border-left-color: var(--danger-red);
        }

        .restoration-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(139, 69, 19, 0.05) 100%);
            pointer-events: none;
        }

        .card-image {
            position: relative;
            height: 220px;
            overflow: hidden;
            background: #DCCDAC;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card-image img {
            width: auto;
            height: auto;
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: sepia(0.2) contrast(1.05);
            transition: transform 0.4s;
        }

        .restoration-card:hover .card-image img {
            transform: scale(1.08);
        }

        .before-after-label {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(139, 69, 19, 0.8);
            color: #DCCDAC;
            padding: 0.5rem;
            font-size: 0.8rem;
            text-align: center;
            font-weight: bold;
            text-transform: uppercase;
            font-family: 'Courier New', monospace;
        }
		
		.prix-label {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(139, 69, 19, 0.8);
            color: #DCCDAC;
            padding: 0.5rem;
            font-size: 1.8rem;
            text-align: center;
            font-weight: bold;
            text-transform: uppercase;
            font-family: 'Courier New', monospace;
        }

        .card-content {
            padding: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .moto-name {
            font-size: 1.3rem;
            color: #8B4513;
            margin-bottom: 0.8rem;
            font-weight: bold;
            font-family: 'Courier New', monospace;
        }

        .card-description {
            font-size: 0.95rem;
            color: #3a3a3a;
            margin-bottom: 1.2rem;
            line-height: 1.6;
        }

        .read-more {
            display: inline-block;
            color: var(--danger-red);
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.05em;
            position: relative;
            transition: all 0.3s;
        }

        .read-more::after {
            content: ' →';
            transition: transform 0.3s;
        }

        .read-more:hover {
            color: #8B4513;
        }

        .read-more:hover::after {
            transform: translateX(5px);
        }

        /* ===== ABOUT SECTION ===== */
        .about-section {
            background: linear-gradient(135deg, #DCCDAC 0%, #d4bfa0 100%);
            border-top: 3px solid var(--rust);
            border-bottom: 3px solid var(--rust);
            padding: 4rem 2rem;
            margin: 5rem 0;
            box-shadow: inset 0 0 40px rgba(0,0,0,0.08);
        }

        .about-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .about-section h2 {
            font-size: 2rem;
            color: #8B4513;
            margin-bottom: 2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-family: 'Courier New', monospace;
        }

        .about-section p {
            font-size: 1rem;
            color: #2a2a2a;
            margin-bottom: 1.5rem;
            line-height: 1.8;
            text-align: justify;
        }

        /* ===== FEATURED RESTORATION ===== */
        .featured-restoration {
            max-width: 1200px;
            margin: 5rem auto;
            padding: 0 2rem;
        }

        .featured-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .featured-image {
            position: relative;
            animation: fadeInLeft 0.8s ease-out;
        }

        .featured-image img {
            width: 100%;
            height: auto;
            border: 4px solid #8B4513;
            box-shadow: -12px 12px 30px rgba(0,0,0,0.2);
            filter: saturate(0.7) contrast(1.15);
        }

        .featured-content {
            animation: fadeInRight 0.8s ease-out;
        }

        .featured-content h3 {
            font-size: 1.8rem;
            color: var(--danger-red);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-family: 'Courier New', monospace;
        }

        .featured-content p {
            font-size: 1rem;
            color: #2a2a2a;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .specs-list {
            background: #f5f1e8;
            border-left: 3px solid var(--rust);
            padding: 1.5rem;
            margin: 2rem 0;
            font-family: 'Courier New', monospace;
            font-size: 0.95rem;
        }

        .specs-list li {
            color: #8B4513;
            margin-bottom: 0.8rem;
            list-style: none;
            position: relative;
            padding-left: 1.5rem;
        }

        .specs-list li::before {
            content: '⚙';
            position: absolute;
            left: 0;
            color: var(--danger-red);
        }

        /* ===== CONTACT SECTION ===== */
        .contact-section {
            max-width: 1200px;
            margin: 5rem auto;
            padding: 3rem 2rem;
            background: linear-gradient(135deg, #f5f1e8 0%, #e8dcc8 100%);
            border: 2px solid var(--rust);
            text-align: center;
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        }

        .contact-section h2 {
            font-size: 1.8rem;
            color: #8B4513;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-family: 'Courier New', monospace;
        }

        .contact-section p {
            color: #2a2a2a;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .contact-email {
            display: inline-block;
            color: var(--danger-red);
            font-size: 1.3rem;
            font-weight: bold;
            text-decoration: none;
            transition: all 0.3s;
            font-family: 'Courier New', monospace;
        }

        .contact-email:hover {
            color: #8B4513;
            text-shadow: 0 0 10px rgba(204, 34, 34, 0.3);
        }

        /* ===== FOOTER ===== */
        footer {
            background: #8B4513;
            border-top: 3px solid var(--rust);
            padding: 2rem;
            text-align: center;
            color: #DCCDAC;
            margin-top: 5rem;
            font-size: 0.9rem;
        }

        footer p {
            margin: 0.5rem 0;
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .anchor-nav {
                display: none;
            }

            .anchor-dot-label {
                opacity: 0;
            }

            .anchor-dot:hover .anchor-dot-label {
                opacity: 1;
            }

            header {
                padding: 1rem 0;
                margin-bottom: 1.5rem;
            }

            .header-container {
                flex-direction: column;
                gap: 0.5rem;
                text-align: center;
            }

            .logo {
                font-size: 1.5rem;
                letter-spacing: 0.1em;
            }

            .tagline {
                font-size: 0.7rem;
                margin-top: 0.2rem;
            }

            nav {
                flex-direction: row;
                gap: 1rem;
                text-align: center;
                justify-content: center;
                flex-wrap: wrap;
            }

            nav a {
                font-size: 0.8rem;
                padding: 0.3rem 0.6rem;
            }

            .hero {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-bottom: 2rem;
            }

            .hero-text h1 {
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }

            .hero-text p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }

            .cta-button {
                padding: 0.8rem 1.5rem;
                font-size: 0.85rem;
            }

            .restoration-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-bottom: 2rem;
            }

            .card-image {
                height: 180px;
            }

            .featured-container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .section-title {
                font-size: 1.5rem;
                margin-bottom: 1.5rem;
                padding-bottom: 0.8rem;
            }

            .gallery-section {
                margin: 2.5rem auto;
            }

            .featured-restoration {
                margin: 2.5rem auto;
            }

            .about-section {
                padding: 2rem 1.5rem;
                margin: 2.5rem 0;
            }

            .contact-section {
                margin: 2.5rem auto;
                padding: 2rem 1.5rem;
            }

            footer {
                padding: 1.5rem;
                font-size: 0.85rem;
            }
        }
		
		
		/* ===== RESTORATION SLIDER ===== */
.restoration-slider-section {
    max-width: 1200px;
    margin: 3rem auto 4rem;
    padding: 0 2rem;
}

.slider-title {
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 900;
    border-bottom: 3px solid var(--rust);
    padding-bottom: 0.8rem;
    font-family: 'Courier New', monospace;
}





.slider-wrapper {
    overflow-x: auto;          /* autorise scroll horizontal */
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch; /* inertie iOS */
    scroll-behavior: smooth;
}


.slider-track {
    display: flex;
    gap: 2rem;
    width: max-content;        /* FIX essentiel */
    will-change: transform;    /* fluidité mobile */
    animation: scrollSlider 25s linear infinite;
}

/* pause uniquement sur PC */
@media (hover: hover) {
    .slider-track:hover {
        animation-play-state: paused;
    }
}

@keyframes scrollSlider {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}





.slider-item {
    min-width: 280px;
    background: linear-gradient(135deg, #f5f1e8 0%, #e8dcc8 100%);
    border-left: 4px solid var(--rust);
    border-top: 2px solid #8B4513;
	border-bottom: 3px solid #5a3a1a;

    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transition: transform 0.4s;

}


.slider-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    filter: sepia(0.35) contrast(1.05) brightness(0.95);
    transition: filter 0.4s ease;
}

.slider-item:hover img {
    filter: sepia(0.15) contrast(1.1) brightness(1);
}



.slider-caption {
    padding: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    font-weight: bold;
    color: #8B4513;
    text-align: center;
}

@keyframes scrollSlider {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* mobile  pas de defilement, swipe naturel*/


/* Mobile : swipe tactile */
@media (max-width: 768px) {
    .slider-track {
        animation: none;           /* désactive l'auto-scroll */
        touch-action: pan-x;       /* priorité au swipe horizontal */
    }

    .slider-wrapper {
        overflow-x: auto;          /* autorise le scroll horizontal */
        -webkit-overflow-scrolling: touch; /* inertie iOS */
        scroll-behavior: smooth;
    }

    .slider-item {
        min-width: 220px;          /* ajuste largeur pour mobile */
        flex-shrink: 0;            /* empêche rétrécissement */
    }

    /* masquer la scrollbar */
    .slider-wrapper::-webkit-scrollbar {
        display: none;
    }
    .slider-wrapper {
        scrollbar-width: none; /* Firefox */
    }
}


		
		/* ===== PLAQUE EMAILLEE LIENS AUTRES SITE===== */

.partner-section {
    display: flex;
    justify-content: center;
    margin: 4rem 0;
}

.plaque-emaillee {
    position: relative;
    background: linear-gradient(145deg, #f5f1e8, #e8e2d4);
    border: 4px solid #2e2a25;
    border-radius: 14px;
    padding: 2.5rem 3rem;
    text-align: center;
    box-shadow: 
        0 4px 10px rgba(0,0,0,0.25),
        inset 0 2px 4px rgba(255,255,255,0.6);
    max-width: 420px;
}

.plaque-title {
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
    color: #5a3a1a;
}

.plaque-emaillee img {
    max-width: 200px;
    filter: sepia(0.25) contrast(1.05);
    transition: all 0.3s ease;
}

.plaque-emaillee img:hover {
    transform: scale(1.05);
    filter: sepia(0.1) contrast(1.1);
}

/* ===== VIS DECORATIVES ===== */

.vis {
    position: absolute;
    width: 14px;
    height: 14px;
    background: radial-gradient(circle at 30% 30%, #999, #444);
    border-radius: 50%;
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.6);
}

.top-left { top: 10px; left: 10px; }
.top-right { top: 10px; right: 10px; }
.bottom-left { bottom: 10px; left: 10px; }
.bottom-right { bottom: 10px; right: 10px; }
