/* ==================== VARIABLES GLOBALES - PALETTE MARRON + CHAMPAGNE ==================== */
:root {
    --bg-dark: #0a0705;
    --bg-darker: #120e0a;
    --text-primary: #f5efe8;
    --text-secondary: #e0d5c8;
    --accent-bronze: #3d2b1f;
    --accent-champagne: #c8a96e;
    --accent-champagne-dark: #9e7a3f;
    --glass-bg: rgba(10, 7, 5, 0.5);
    --glass-border: 1px solid rgba(200, 169, 110, 0.2);
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', serif;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(200, 169, 110, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(61, 30, 10, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 70%, rgba(200, 169, 110, 0.02) 0%, transparent 50%),
        linear-gradient(160deg, #1a1008 0%, #120e0a 40%, #0a0705 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    overflow-x: hidden;
    overflow-y: auto;
    line-height: 1.7;
}

/* ==================== HEADER GLASSMORPHISM - NOUVEAU LAYOUT ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    padding: 20px 50px;
    transition: all 0.4s ease-in-out;
    height: auto !important;
    overflow: visible !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header.scrolled {
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
}

.header.header-scrolled,
.header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    padding: 10px 50px;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto !important;
    overflow: visible !important;
}

.logo-container {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    overflow: visible !important;
}

.logo-container {
    flex: 0 0 auto;
}

.logo {
    width: 175px !important;
    height: auto !important;
    max-height: none !important;
    max-width: 70vw;
    object-fit: contain;
    display: block;
    margin: 0;
    transition: width 0.4s ease-in-out;
}

.header-scrolled .logo,
.header.scrolled .logo {
    width: 100px !important;
}

.logo:hover {
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-left: auto;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 0.75rem 0;
    border-top: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-champagne);
    transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-champagne);
    text-shadow: 0 0 8px rgba(197, 160, 89, 0.3);
}

/* ==================== HERO SECTION AVEC VIDÉO ==================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    scroll-snap-align: center;
    margin-top: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* Fondu bas de la Hero vers le reste du site */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(to bottom, transparent 0%, #120e0a 100%);
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--accent-champagne);
    text-shadow: 0 4px 20px rgba(61, 43, 31, 0.8);
    line-height: 1.3;
    max-width: 900px;
    animation: fadeInDown 1s ease;
}

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

/* ==================== FILTERS SECTION - MINIMALISTE HIGH-TECH ==================== */
.filters-section {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(10px);
    padding: 1.2rem 2rem;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.filters-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-group {
    display: none;
}

.reset-filters-btn {
    display: none;
}

/* Ligne de filtre (label + pills) */
.filter-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-label-prefix {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 50px;
}

.filter-pills {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    user-select: none;
}

.filter-pill:hover {
    border-color: rgba(255, 255, 255, 0.9);
    color: #fff;
}

.filter-pill.active {
    background: #C5A059;
    border-color: #C5A059;
    color: #050505;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.3),
                0 4px 12px rgba(197, 160, 89, 0.2);
}

.filter-pill.active:hover {
    background: #d4b578;
    border-color: #d4b578;
}

.filter-pill-reset {
    border-color: rgba(197, 160, 89, 0.3);
    color: rgba(197, 160, 89, 0.6);
    font-size: 11px;
    padding: 8px 20px;
    margin-left: 0.5rem;
}

.filter-pill-reset:hover {
    border-color: rgba(197, 160, 89, 0.8);
    color: #C5A059;
    background: transparent;
}

.filter-pill-disponible {
    border-color: rgba(197, 160, 89, 0.5);
    color: var(--accent-champagne);
}

.filter-pill-disponible.active {
    background: var(--accent-champagne);
    border-color: var(--accent-champagne);
    color: #050505;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
}

.filter-pills-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    margin: 0 0.25rem;
}

/* ==================== COUNTER SECTION ==================== */
.counter-section {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.counter-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--accent-gold);
    font-weight: 500;
    font-style: italic;
    letter-spacing: 1px;
}

/* ==================== GALLERY GRID ==================== */
.gallery-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 2rem;
    padding-right: calc(2rem + 70px);
}

/* ==================== EMPTY STATE ==================== */
.no-results {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 5rem 2rem;
    text-align: center;
}

.no-results-icon {
    font-size: 3rem;
    opacity: 0.4;
}

.no-results-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--accent-champagne);
    letter-spacing: 1px;
}

.no-results-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

.no-results-reset {
    background: none;
    border: none;
    color: var(--accent-champagne);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding: 0;
}

.no-results-reset:hover {
    opacity: 0.7;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    animation: fadeIn 0.6s ease;
}

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

/* ==================== VEHICLE CARD - GLASSMORPHISM PREMIUM ==================== */
.vehicle-card {
    position: relative;
    overflow: hidden;
    border-radius: 35px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: slideInUp 0.6s ease;
}

/* Overlay gradient lisibilité — couvre le bas de la carte */
.vehicle-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
    pointer-events: none;
    border-radius: 0 0 35px 35px;
}

/* GLINT — reflet carrosserie */
.vehicle-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0) 20%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 80%);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 2;
    transform: skewX(-20deg);
    pointer-events: none;
}

.vehicle-card:hover::after {
    left: 150%;
}

.vehicle-card:hover {
    transform: translateY(-15px);
    border-color: rgba(197, 160, 89, 0.5);
    box-shadow: 0 35px 70px rgba(197, 160, 89, 0.3);
}

.vehicle-card.voiture-vendue {
    opacity: 0.75;
}

.vehicle-card.voiture-vendue:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.vehicle-card.voiture-vendue::after {
    display: none;
}

/* Bouton DÉCOUVRIR supprimé — la carte entière est cliquable */

/* ==================== VEHICLE IMAGE ==================== */
.vehicle-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: rgba(5, 5, 5, 0.8);
    border-radius: 35px 35px 0 0;
}

.vehicle-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    z-index: 2;
    pointer-events: none;
}

.vehicle-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    display: block;
}

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

/* ==================== STATUT BADGE ==================== */
.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(197, 160, 89, 0.92);
    color: #050505;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 2px 12px rgba(197, 160, 89, 0.35);
    border: 1px solid rgba(197, 160, 89, 0.6);
}

.status-badge.vendu {
    background: rgba(18, 18, 18, 0.88);
    color: rgba(200, 200, 200, 0.75);
    border: 1px solid rgba(120, 120, 120, 0.3);
    backdrop-filter: blur(4px);
    box-shadow: none;
}

/* ==================== CARTE DISPONIBLE - SCINTILLEMENT DORÉ ==================== */
.vehicule-disponible {
    border-color: var(--accent-champagne) !important;
    animation: brillanceDisponible 3s ease-in-out infinite;
}

@keyframes brillanceDisponible {
    0%, 100% {
        box-shadow: 0 25px 50px rgba(0,0,0,0.4),
                    0 0 0 1px rgba(197, 160, 89, 0.5),
                    0 0 20px rgba(197, 160, 89, 0.2);
    }
    50% {
        box-shadow: 0 25px 50px rgba(0,0,0,0.4),
                    0 0 0 1px rgba(197, 160, 89, 0.9),
                    0 0 45px rgba(197, 160, 89, 0.5),
                    inset 0 0 25px rgba(197, 160, 89, 0.08);
    }
}

.status-badge.disponible {
    background: #0a0705;
    color: var(--accent-champagne);
    border: 1px solid var(--accent-champagne);
    box-shadow: 0 0 12px rgba(197, 160, 89, 0.4);
    letter-spacing: 3px;
    animation: pulseBadge 3s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% { box-shadow: 0 0 12px rgba(197, 160, 89, 0.4); }
    50%       { box-shadow: 0 0 22px rgba(197, 160, 89, 0.7); }
}

/* ==================== VEHICLE INFO ==================== */
.vehicle-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
    position: relative;
    z-index: 3;
}

.vehicle-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.3px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.vehicle-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.6rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.vehicle-specs .spec-item {
    display: flex;
    gap: 0.3rem;
    align-items: center;
}

.vehicle-specs .spec-item:not(:last-child)::after {
    content: '•';
    margin-left: 0.4rem;
    color: rgba(255,255,255,0.2);
}

.vehicle-specs .spec-label {
    display: none;
}

.vehicle-country {
    display: none;
}

.vehicle-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #050505;
    letter-spacing: 0.5px;
    background: #C5A059;
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 18px rgba(197, 160, 89, 0.4);
}

.vehicle-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.vehicle-flag {
    font-size: 1.5rem;
    line-height: 1;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
}

.vehicle-description {
    font-family: 'Lora', serif;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
    margin-top: 0.5rem;
    font-weight: 400;
}

/* ==================== HIDDEN STATE ANIMATION ==================== */
.vehicle-card.hidden {
    animation: slideOutDown 0.4s ease forwards;
}

@keyframes slideOutDown {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

/* ==================== SCROLL REVEAL ==================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== SECTION VÉHICULES & WRAPPER ==================== */
.vehicles-section {
    width: 100%;
    scroll-snap-align: start;
}

.section-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem 1.5rem 2rem;
    text-align: left;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--accent-champagne);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(197, 160, 89, 0.2);
}

/* ==================== SECTION QUI SUIS-JE ==================== */
.about-section {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(20, 15, 10, 0.6));
    padding: 3.5rem 2rem;
    scroll-snap-align: start;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-container--centered {
    grid-template-columns: 1fr;
    max-width: 860px;
    text-align: center;
}

.about-container--centered .about-text {
    margin: 0 auto;
}

.about-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-style: italic;
    color: var(--accent-champagne);
    margin: 1.5rem auto 2.5rem;
    max-width: 680px;
    line-height: 1.6;
    opacity: 0.9;
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.about-pillar {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 1.8rem;
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-top: 2px solid var(--accent-champagne);
}

.about-pillar-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-champagne);
}

.about-pillar-text {
    font-family: 'Lora', serif;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .about-pillars {
        grid-template-columns: 1fr;
    }
}

.about-image {
    display: flex;
    justify-content: center;
}

/* Bulle glassmorphism fondateur */
.founder-bubble {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-width: 340px;
    width: 100%;
}

/* Glint au survol — même effet que les cartes voitures */
.founder-bubble::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(105deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 70%);
    opacity: 0;
    pointer-events: none;
    z-index: 5;
}

.founder-bubble:hover::after {
    opacity: 1;
    animation: glint 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.founder-bubble:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 160, 89, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(197, 160, 89, 0.12);
}

/* Découpe circulaire avec liseré doré */
.founder-photo-wrap {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid #C5A059;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(197, 160, 89, 0.25);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

/* Gradient mask bas de photo */
.founder-photo-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.7) 0%, transparent 100%);
    border-radius: 0 0 50% 50%;
    pointer-events: none;
    z-index: 2;
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: sepia(15%) saturate(0.9) brightness(0.95);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease;
}

.founder-bubble:hover .about-photo {
    transform: scale(1.06);
    filter: sepia(5%) saturate(1) brightness(1);
}

/* Nom & titre */
.founder-identity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.founder-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    animation: founderReveal 0.6s ease 0.3s forwards;
}

.founder-role {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 300;
    color: #C5A059;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    animation: founderReveal 0.6s ease 0.55s forwards;
}

@keyframes founderReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    font-weight: 300;
    color: var(--accent-champagne);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.about-text {
    font-family: 'Lora', serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.95;
    text-align: justify;
    letter-spacing: 0.3px;
}

/* ==================== SECTION AVIS CLIENTS ==================== */
/* ==================== SECTION AVIS GOOGLE - BENTO GRID ==================== */
.reviews-section {
    padding: 6rem 2rem;
    border-top: 1px solid rgba(197, 160, 89, 0.08);
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.reviews-title {
    text-align: center;
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: 6px !important;
    color: var(--accent-champagne) !important;
    text-transform: uppercase;
}

.reviews-rating-global {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reviews-score {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.reviews-stars-global {
    color: #FABB05;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.reviews-count {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Bento Grid asymétrique */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 20px;
}

/* Avis phare — occupe 2 colonnes */
.review-card--featured {
    grid-column: span 2;
}

/* Carte glassmorphism */
.review-card {
    position: relative;
    overflow: hidden;
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.5s ease-out;
}

/* Glint au survol */
.review-card__glint {
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0) 20%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 80%);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
    transform: skewX(-20deg);
    pointer-events: none;
}

.review-card:hover .review-card__glint {
    left: 150%;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 160, 89, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4),
                0 0 25px rgba(197, 160, 89, 0.1);
}

/* En-tête de la carte */
.review-card__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.review-card__meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.review-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
}

.review-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.5px;
}

.google-logo {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-left: auto;
}

/* Étoiles Google */
.review-stars {
    color: #FABB05;
    font-size: 1rem;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

/* Texte de l'avis */
.review-text {
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

/* Lien Google Maps */
.review-google-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    color: #C5A059;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: auto;
    position: relative;
    z-index: 2;
    transition: opacity 0.2s ease;
}

.review-google-link:hover {
    opacity: 0.7;
}

/* Footer carte — date + badge vérifié */
.review-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 2;
}

.review-date-bottom {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.5px;
}

.review-verified-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    color: #4285F4;
    letter-spacing: 0.8px;
    background: rgba(66, 133, 244, 0.08);
    border: 1px solid rgba(66, 133, 244, 0.2);
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .review-card--featured {
        grid-column: span 1;
    }
}

/* ==================== SECTION CONTACT ==================== */
.contact-section {
    position: relative;
    padding: 7rem 2rem;
    margin-top: 3rem;
    scroll-snap-align: start;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse, rgba(197, 160, 89, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* En-tête section */
.contact-header {
    text-align: center;
    margin-bottom: 5rem;
}

.contact-eyebrow {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--accent-champagne);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.contact-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}

.contact-title em {
    font-style: italic;
    color: var(--accent-champagne);
}

.contact-subtitle {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.45);
    font-style: italic;
    letter-spacing: 0.3px;
}

/* Layout */
.contact-content {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 5rem;
    align-items: start;
}

/* Cartes info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(197, 160, 89, 0.12);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.35s ease;
}

.info-card:hover {
    background: rgba(197, 160, 89, 0.06);
    border-color: rgba(197, 160, 89, 0.35);
    transform: translateX(6px);
}

.info-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-champagne);
    font-size: 1rem;
    flex-shrink: 0;
}

.info-card-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.info-card-value {
    display: block;
    font-family: 'Lora', serif;
    font-size: 0.88rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-card-value:hover {
    color: var(--accent-champagne);
}

/* Réassurance */
.contact-reassurance {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(197, 160, 89, 0.08);
    border-radius: 16px;
    background: rgba(197, 160, 89, 0.03);
}

.reassurance-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.reassurance-item i {
    color: var(--accent-champagne);
    font-size: 0.75rem;
    opacity: 0.8;
}

/* ==================== CONTACT FORM ==================== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(197, 160, 89, 0.1);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(15px);
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.form-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    color: rgba(197, 160, 89, 0.7);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.form-input,
.form-textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    padding: 0.85rem 1rem;
    transition: all 0.3s ease;
    font-weight: 400;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255,255,255,0.18);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(197, 160, 89, 0.5);
    background: rgba(197, 160, 89, 0.04);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.06);
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c5a059' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}

.form-select option {
    background: #111;
    color: var(--text-primary);
}

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

/* Ligne bouton + légal */
.form-submit-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.form-legal {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.3px;
    line-height: 1.5;
    max-width: 280px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--accent-champagne);
    color: #050505;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(197, 160, 89, 0.25);
    white-space: nowrap;
}

.submit-btn-icon {
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    box-shadow: 0 8px 35px rgba(197, 160, 89, 0.45);
    transform: translateY(-2px);
    background: #d4b578;
}

.submit-btn:hover .submit-btn-icon {
    transform: translateX(4px);
}

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

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Messages feedback */
.form-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    animation: fadeInUp 0.4s ease;
}

.form-message--success {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #4ade80;
}

.form-message--error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #f87171;
}

/* Responsive contact */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 1.5rem;
    }
    .contact-title {
        font-size: 2.4rem;
    }
    .contact-form {
        padding: 2rem 1.5rem;
    }
    .form-submit-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==================== FOOTER ==================== */
.footer {
    background: #0a0705;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 1.5rem 2rem;
    text-align: center;
    margin-top: 0;
}

.footer p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.footer-sep {
    color: rgba(255,255,255,0.1);
}

.footer-legal-link {
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    color: rgba(197, 160, 89, 0.45);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(197,160,89,0.2);
}

.footer-legal-link:hover {
    color: rgba(197, 160, 89, 0.85);
}

/* ==================== WIDGET RÉSEAUX SOCIAUX & WHATSAPP ==================== */
.social-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    text-decoration: none;
    transition: transform 0.3s ease;
    position: relative;
}

.social-link:hover {
    transform: scale(1.25) translateY(-5px);
}

.social-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: #1a1a1a;
    color: var(--accent-champagne);
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.8rem;
    font-style: italic;
    letter-spacing: 0.5px;
    white-space: nowrap;
    padding: 0.5rem 0.9rem;
    border-radius: 3px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.whatsapp-link:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* ==================== SECTION PHILOSOPHIE ==================== */
.philosophy-section {
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(197, 160, 89, 0.08);
    border-bottom: 1px solid rgba(197, 160, 89, 0.08);
}

.philosophy-container {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--accent-champagne);
    line-height: 1.8;
    letter-spacing: 0.5px;
}

/* ==================== MODALE SHOWROOM ==================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(20px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-container {
    background: linear-gradient(145deg, #111 0%, #0a0a0a 100%);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 4px;
    max-width: 1200px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: transparent;
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--accent-champagne);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 0.9rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--accent-champagne);
    color: #050505;
}

.modal-body {
    display: grid;
    grid-template-columns: 65% 35%;
    min-height: 500px;
}

.modal-left {
    position: relative;
    overflow: hidden;
    border-radius: 4px 0 0 4px;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 420px;
}

/* Zone photo principale — centrée */
.modal-gallery {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
}

/* Wrapper photo avec flèches superposées */
.modal-photo-wrap {
    position: relative;
    flex: 1;
    display: flex;
    align-items: stretch;
    min-height: 0;
    overflow: hidden;
}

.modal-gallery .modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    min-height: 380px;
}

/* Thumbnails collées sous la photo */
.modal-thumbs {
    display: flex;
    gap: 6px;
    padding: 10px 12px;
    background: rgba(5, 5, 5, 0.9);
    overflow-x: auto;
    flex-shrink: 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    justify-content: center;
    flex-wrap: wrap;
}

.modal-thumbs::-webkit-scrollbar {
    height: 4px;
}
.modal-thumbs::-webkit-scrollbar-thumb {
    background: rgba(197, 160, 89, 0.4);
    border-radius: 2px;
}

.modal-thumb {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.55;
    transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.modal-thumb.active,
.modal-thumb:hover {
    opacity: 1;
    border-color: var(--accent-champagne);
    transform: scale(1.05);
}

.modal-right {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.modal-badge-carvertical {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(197, 160, 89, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.25);
    color: var(--accent-champagne);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.4rem 0.9rem;
    border-radius: 2px;
    width: fit-content;
}

.modal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.modal-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.modal-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-champagne);
    letter-spacing: 1px;
}

.modal-price-row .modal-cta {
    display: inline-flex;
    align-items: center;
    margin-top: 0;
    padding: 0.55rem 1.2rem;
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.modal-specs-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    border-top: 1px solid rgba(197, 160, 89, 0.12);
    padding-top: 1rem;
}

.modal-specs-list li {
    font-family: 'Lora', serif;
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.modal-specs-list li span:first-child {
    color: rgba(197, 160, 89, 0.7);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.modal-options {
    font-family: 'Lora', serif;
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
}

.modal-cta {
    display: block;
    text-align: center;
    padding: 1rem 2rem;
    background: var(--accent-champagne);
    color: #050505;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    margin-top: auto;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(197, 160, 89, 0.25);
}

.modal-cta:hover {
    background: #d4b578;
    box-shadow: 0 8px 30px rgba(197, 160, 89, 0.4);
}

/* ==================== FLÈCHES CARROUSEL MODALE ==================== */
.modal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(5, 5, 5, 0.65);
    border: 1px solid rgba(197, 160, 89, 0.5);
    color: var(--accent-champagne);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
    backdrop-filter: blur(4px);
}

.modal-arrow:hover {
    background: var(--accent-champagne);
    color: #050505;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.modal-arrow-prev { left: 14px; }
.modal-arrow-next { right: 14px; }

.modal-arrow.hidden { display: none; }

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablettes */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .filters-container {
        flex-direction: column;
        gap: 1rem;
    }

    .filter-group {
        width: 100%;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .founder-bubble {
        max-width: 280px;
    }

    .founder-photo-wrap {
        width: 160px;
        height: 160px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-grid-2 {
        grid-template-columns: 1fr;
    }

    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-left {
        height: 300px;
        border-radius: 4px 4px 0 0;
        min-height: unset;
    }

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

    .section-title {
        font-size: 1.8rem;
    }
}

/* Mobiles */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .logo {
        width: 180px !important;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .hero {
        height: 350px;
    }

    .header {
        padding: 1rem;
    }

    .header-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .header-left {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    .logo {
        height: 260px !important;
    }

    .nav-menu {
        gap: 1rem;
        flex-direction: column;
        width: 100%;
        justify-content: center;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }

    .filters-section {
        padding: 1.5rem;
    }

    .filters-container {
        gap: 1rem;
    }

    .filter-select {
        font-size: 0.9rem;
    }

    .reset-filters-btn {
        width: 100%;
    }

    .vehicle-card {
        border-radius: 6px;
    }

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

    .about-content {
        gap: 1rem;
    }

    .about-title {
        font-size: 1.5rem;
    }

    .about-text {
        font-size: 0.95rem;
    }

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

    .contact-container {
        padding: 0;
    }

    .contact-info {
        gap: 1rem;
    }

    .info-item {
        padding: 1.5rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .form-label {
        font-size: 0.85rem;
    }

    .form-input,
    .form-textarea {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }

    .submit-btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .footer {
        padding: 1.5rem;
        font-size: 0.85rem;
    }

    /* Filtres pills mobile */
    .filter-row {
        gap: 0.5rem;
    }

    .filter-pill {
        padding: 7px 14px;
        font-size: 10px;
        letter-spacing: 1px;
    }

    .filter-label-prefix {
        font-size: 9px;
        min-width: 40px;
    }

    .filter-pill-reset {
        padding: 6px 12px;
        font-size: 9px;
    }

    /* Process section mobile */
    .process-steps {
        flex-direction: column;
        gap: 1.5rem;
    }

    .process-connector {
        width: 1px;
        height: 24px;
        background: linear-gradient(180deg, rgba(200,169,110,0.4), rgba(200,169,110,0.1));
        margin: 0 0 0 1.2rem;
    }

    .process-step {
        padding: 0 0.5rem;
    }

    .process-num {
        font-size: 1.6rem;
    }
}

/* Petits mobiles */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.4rem;
        letter-spacing: 0.5px;
    }

    .filters-section {
        position: relative;
        top: 0;
    }

    .filter-group {
        min-width: 100%;
    }

    .counter-text {
        font-size: 1rem;
    }

    .gallery-section {
        padding: 1rem;
    }

    .vehicle-title {
        font-size: 0.95rem;
    }

    .vehicle-specs {
        grid-template-columns: 1fr;
    }

    .header-container {
        flex-direction: column;
    }

    .nav-menu {
        order: 2;
        width: 100%;
    }

    .logo-container {
        order: 1;
        width: 100%;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .logo {
        height: 200px !important;
    }

    .about-photo {
        max-width: 300px;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .about-title {
        font-size: 1.3rem;
    }

    .contact-info {
        gap: 1rem;
    }

    .info-item {
        padding: 1rem;
    }
}

/* ==================== SLIDER MULTI-IMAGES - CARTE ==================== */
.vehicle-image-container .slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vehicle-image-container .slide-img.active {
    opacity: 1;
}

.vehicle-card:hover .vehicle-image-container .slide-img.active {
    transform: scale(1.08);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(5, 5, 5, 0.6);
    border: 1px solid rgba(197, 160, 89, 0.4);
    color: var(--accent-champagne);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.2s ease;
}

.vehicle-image-container:hover .slider-arrow {
    opacity: 1;
}

.slider-prev { left: 8px; }
.slider-next { right: 8px; }

.slider-arrow:hover {
    background: var(--accent-champagne);
    color: #050505;
}

.slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 20;
}

.slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.slider-dot.active {
    background: var(--accent-champagne);
    transform: scale(1.3);
}

/* ==================== BADGES TECHNIQUES MODALE ==================== */
.modal-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.5rem 0 0.75rem;
}

.modal-badge {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(197, 160, 89, 0.25);
    color: var(--accent-champagne);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    white-space: nowrap;
}

/* ==================== AVIS EXPERT ==================== */
.modal-avis-expert {
    background: rgba(197, 160, 89, 0.08);
    border-left: 3px solid var(--accent-champagne);
    padding: 0.9rem 1rem;
    border-radius: 0 3px 3px 0;
    margin: 0.5rem 0;
}

.modal-avis-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--accent-champagne);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.modal-avis-expert p {
    font-family: 'Lora', serif;
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

/* ==================== CHECKLIST RÉASSURANCE ==================== */
.modal-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.checklist-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
}

/* ==================== TIMELINE ACCOMPAGNEMENT ==================== */
.modal-timeline {
    padding: 0.75rem 0 0.5rem;
}

.timeline-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    color: rgba(197, 160, 89, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.timeline-steps {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.timeline-step {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--accent-champagne);
    background: rgba(197, 160, 89, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 0.25rem 0.6rem;
    border-radius: 2px;
}

.timeline-arrow {
    color: rgba(197, 160, 89, 0.4);
    font-size: 1rem;
}

/* ==================== BOUTON PARTAGE WHATSAPP ==================== */
.modal-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: #25d366;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 2px;
    margin-top: 0.5rem;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.modal-share-btn:hover {
    background: rgba(37, 211, 102, 0.08);
    border-color: #25d366;
}

/* ==================== FADE-UP CARDS AU SCROLL ==================== */
.fade-up-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== BOUTON RECHERCHE SIMILAIRE ==================== */
.modal-cta-recherche {
    background: linear-gradient(135deg, #c5a059 0%, #d4b578 50%, #c5a059 100%);
    background-size: 200% 200%;
    color: #050505;
    letter-spacing: 1.5px;
    transition: background-position 0.4s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.modal-cta-recherche:hover {
    background-position: right center;
    box-shadow: 0 8px 35px rgba(197, 160, 89, 0.55),
                0 0 20px rgba(197, 160, 89, 0.3);
    transform: translateY(-2px);
    color: #050505;
}

/* ==================== SIDEBAR RÉSEAUX SOCIAUX ==================== */
.social-sidebar {
    position: fixed;
    right: 5px;
    top: 60%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 9999;
}

.social-sidebar .social-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    white-space: nowrap !important;
    color: #C5A059;
    font-size: 14px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    margin: 0 auto 4px auto;
}

.social-sidebar a {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
}

.social-sidebar img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0px 4px 8px rgba(0,0,0,0.6));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-sidebar a:hover img {
    width: 62px;
    height: 62px;
    filter: drop-shadow(0px 6px 14px rgba(0,0,0,0.8)) brightness(1.15);
}

/* ==================== WIDGET WHATSAPP DROITE ==================== */
.whatsapp-widget-left {
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.whatsapp-widget-btn {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    text-decoration: none;
    position: relative;
    background: none !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    backdrop-filter: none;
    box-shadow: none !important;
    outline: none !important;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-widget-btn:hover,
.whatsapp-widget-btn:focus,
.whatsapp-widget-btn:active,
.whatsapp-widget-btn:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    background: none !important;
    border: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

.whatsapp-widget-btn:active img {
    filter: drop-shadow(0px 3px 8px rgba(37, 211, 102, 0.5)) !important;
    transform: none !important;
    opacity: 1 !important;
    -webkit-filter: drop-shadow(0px 3px 8px rgba(37, 211, 102, 0.5)) !important;
}

.whatsapp-widget-btn:hover {
    transform: translateY(-3px) scale(1.05);
}

.whatsapp-widget-btn::after {
    display: none;
}

.whatsapp-widget-btn img {
    width: 52px;
    height: 52px;
    display: block;
    filter: drop-shadow(0px 3px 8px rgba(37, 211, 102, 0.5));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
    outline: none !important;
    border: none !important;
    -webkit-tap-highlight-color: transparent !important;
    user-select: none;
    -webkit-user-select: none;
}

.whatsapp-widget-btn:hover img {
    filter: drop-shadow(0px 6px 16px rgba(37, 211, 102, 0.8)) brightness(1.1);
    transform: rotate(-8deg) scale(1.1);
}

.whatsapp-widget-label {
    color: #25d366;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    writing-mode: horizontal-tb;
    transform: none;
    pointer-events: none;
    opacity: 1;
    max-width: 200px;
    overflow: hidden;
    transition: opacity 0.4s ease, max-width 0.5s ease;
}

.whatsapp-widget-label.hidden {
    opacity: 0;
    max-width: 0;
}
    margin-bottom: 8px;
}

.whatsapp-widget-label.hidden {
    opacity: 0;
}

@media (max-width: 768px) {
    .social-sidebar {
        right: 15px;
        gap: 20px;
        top: 65%;
    }

    .social-sidebar img {
        width: 40px;
    }

    .social-sidebar a:hover img {
        width: 48px;
    }

    .whatsapp-widget-left {
        right: 12px;
        left: auto;
        bottom: 20px;
    }

    .whatsapp-widget-btn {
        padding: 6px 8px 6px 12px;
    }

    .whatsapp-widget-btn img {
        width: 44px;
    }

    .whatsapp-widget-label {
        font-size: 0.58rem;
    }
}

/* ==================== MENTION RGPD WHATSAPP ==================== */
.whatsapp-rgpd-mention {
    display: none;
}

/* ==================== BANDEAU COOKIES ==================== */
.cookie-banner {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99998;
    background: rgba(8, 8, 8, 0.88);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    max-width: 560px;
    width: calc(100% - 40px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(197,160,89,0.1);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.cookie-banner-content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.cookie-text {
    font-family: 'Lora', serif;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
    flex: 1;
    min-width: 200px;
}

.cookie-actions {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.55rem 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-btn-accept {
    background: var(--accent-champagne);
    color: #050505;
    box-shadow: 0 4px 15px rgba(197,160,89,0.3);
}

.cookie-btn-accept:hover {
    background: #d4b578;
    box-shadow: 0 6px 20px rgba(197,160,89,0.5);
    transform: translateY(-1px);
}

.cookie-btn-custom {
    background: transparent;
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.15) !important;
}

.cookie-btn-custom:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.4) !important;
}

/* ==================== MODALE RGPD ==================== */
.rgpd-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5,5,5,0.85);
    backdrop-filter: blur(15px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.rgpd-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.rgpd-modal {
    background: linear-gradient(145deg, #111 0%, #0a0a0a 100%);
    border: 1px solid rgba(197,160,89,0.3);
    border-radius: 24px;
    max-width: 680px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
    scrollbar-width: thin;
    scrollbar-color: rgba(197,160,89,0.3) transparent;
}

.rgpd-overlay.active .rgpd-modal {
    transform: translateY(0);
}

.rgpd-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: transparent;
    border: 1px solid rgba(197,160,89,0.3);
    color: var(--accent-champagne);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 0.85rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rgpd-modal-close:hover {
    background: var(--accent-champagne);
    color: #050505;
}

.rgpd-modal-header {
    padding: 2.5rem 2.5rem 1.5rem;
    border-bottom: 1px solid rgba(197,160,89,0.1);
}

.rgpd-eyebrow {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: rgba(197,160,89,0.6);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.rgpd-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.15;
}

.rgpd-title em {
    font-style: italic;
    color: var(--accent-champagne);
}

.rgpd-modal-body {
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.rgpd-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-champagne);
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.rgpd-section p,
.rgpd-section li {
    font-family: 'Lora', serif;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
}

.rgpd-section ul {
    list-style: none;
    padding: 0;
    margin-top: 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.rgpd-section li::before {
    content: '— ';
    color: var(--accent-champagne);
    opacity: 0.6;
}

.rgpd-section a {
    color: var(--accent-champagne);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.rgpd-section a:hover { opacity: 1; }

.rgpd-section strong {
    color: rgba(255,255,255,0.85);
    font-weight: 600;
}

.rgpd-modal-footer {
    padding: 1.5rem 2.5rem 2rem;
    border-top: 1px solid rgba(197,160,89,0.1);
    display: flex;
    justify-content: flex-end;
}

/* ==================== CHECKBOX RGPD FORMULAIRE ==================== */
.form-group-rgpd {
    margin-top: 0.5rem;
}

.rgpd-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.rgpd-checkbox-label input[type="checkbox"] {
    display: none;
}

.rgpd-checkmark {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(197,160,89,0.5);
    border-radius: 4px;
    background: transparent;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.25s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rgpd-checkbox-label input:checked + .rgpd-checkmark {
    background: var(--accent-champagne);
    border-color: var(--accent-champagne);
    box-shadow: 0 0 10px rgba(197,160,89,0.4);
}

.rgpd-checkbox-label input:checked + .rgpd-checkmark::after {
    content: '✓';
    color: #050505;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.rgpd-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    letter-spacing: 0.3px;
}

.rgpd-link {
    background: none;
    border: none;
    color: var(--accent-champagne);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.rgpd-link:hover { opacity: 1; }

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 80px;
        border-radius: 12px;
    }
    .cookie-banner-content {
        flex-direction: column;
        gap: 0.75rem;
    }
    .rgpd-modal-header,
    .rgpd-modal-body,
    .rgpd-modal-footer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .rgpd-title { font-size: 1.8rem; }
}

/* ==================== DEBUT MODULE LOADER ==================== */
#oto-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

#oto-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

#oto-preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

#oto-preloader-logo {
    width: 160px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(197, 160, 89, 0.4));
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.04); }
}
/* ==================== FIN MODULE LOADER ==================== */

/* ==================== DEBUT MODULE SPOTLIGHT ==================== */
.vehicle-card {
    --spotlight-x: 50%;
    --spotlight-y: 50%;
}

.vehicle-card.spotlight-active {
    border-color: rgba(197, 160, 89, 0.6) !important;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(197, 160, 89, 0.15),
        radial-gradient(
            120px circle at var(--spotlight-x) var(--spotlight-y),
            rgba(197, 160, 89, 0.25),
            transparent 80%
        ) !important;
}
/* ==================== FIN MODULE SPOTLIGHT ==================== */

/* ==================== DEBUT MODULE STICKY FILTERS ==================== */
.filters-section {
    position: sticky;
    top: 0;
    z-index: 500;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.filters-section.is-stuck {
    background: rgba(5, 5, 5, 0.75) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}
/* ==================== FIN MODULE STICKY FILTERS ==================== */

/* ==================== MODULE BANDEAU MARQUEE ==================== */
.marquee-bandeau {
    width: 100%;
    overflow: hidden;
    background: #000;
    border-top: 1px solid #C5A059;
    border-bottom: 1px solid #C5A059;
    padding: 10px 0;
    position: relative;
    z-index: 9;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-track span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C5A059;
    white-space: nowrap;
    padding-right: 0;
}

.marquee-sep {
    color: rgba(200, 169, 110, 0.4);
    font-size: 0.45rem;
    vertical-align: middle;
    letter-spacing: 0;
}

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

.marquee-bandeau:hover .marquee-track {
    animation-play-state: paused;
}
/* ==================== FIN MODULE BANDEAU MARQUEE ==================== */

/* ==================== MODULE TILT 3D ==================== */
.vehicle-card {
    transform-style: preserve-3d;
    will-change: transform;
}
/* ==================== FIN MODULE TILT 3D ==================== */

/* ==================== MODULE MAGNETIC PILLS ==================== */
.filter-pill {
    will-change: transform;
    transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease,
                box-shadow 0.3s ease, transform 0.15s ease;
}
/* ==================== FIN MODULE MAGNETIC PILLS ==================== */

/* ==================== MODULE SCROLL REVEAL CARTES ==================== */
.vehicle-card.card-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.vehicle-card.card-visible {
    opacity: 1;
    transform: translateY(0);
}
/* ==================== FIN MODULE SCROLL REVEAL CARTES ==================== */

/* ==================== MODULE BACK TO TOP ==================== */
#backToTop {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 9997;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(5, 5, 5, 0.85);
    border: 1px solid rgba(197, 160, 89, 0.4);
    color: #C5A059;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease,
                background 0.25s ease, border-color 0.25s ease;
    backdrop-filter: blur(10px);
    outline: none;
}

#backToTop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTop:hover {
    background: rgba(197, 160, 89, 0.15);
    border-color: rgba(197, 160, 89, 0.8);
    transform: translateY(-3px);
}
/* ==================== FIN MODULE BACK TO TOP ==================== */

/* ==================== MODULE COMPTEUR ANIMÉ ==================== */
.animated-counter {
    display: inline-block;
    transition: opacity 0.3s ease;
}
/* ==================== FIN MODULE COMPTEUR ANIMÉ ==================== */

/* ==================== MODULE DÉSACTIVATION MOBILE (hover: none) ==================== */
@media (hover: none) {
    /* Désactive tilt 3D sur tactile */
    .vehicle-card {
        transform: none !important;
        transition: none !important;
    }
    /* Désactive spotlight */
    .vehicle-card.spotlight-active {
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4) !important;
        border-color: rgba(255, 255, 255, 0.1) !important;
    }
    /* Désactive magnétique pills */
    .filter-pill {
        transform: none !important;
    }
}
/* ==================== FIN MODULE DÉSACTIVATION MOBILE ==================== */

/* ==================== FIX MOBILE SIDEBAR + WHATSAPP ==================== */
@media (max-width: 768px) {
    .social-sidebar {
        top: auto;
        bottom: 90px;
        right: 10px;
        transform: none;
        flex-direction: column;
        gap: 12px;
    }

    .whatsapp-widget-left {
        right: 10px;
        bottom: 20px;
    }

    .whatsapp-widget-label {
        display: none;
    }
}
/* ==================== FIN FIX MOBILE ==================== */

/* ==================== COMMENT CA MARCHE ==================== */
.process-section {
    padding: 3.5rem 2rem;
    background: #0e0a07;
    border-top: 1px solid rgba(200, 169, 110, 0.08);
}

.process-container {
    max-width: 1100px;
    margin: 0 auto;
}

.process-title {
    text-align: center;
    margin-bottom: 4rem;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 0 1.5rem;
}

.process-connector {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, rgba(197,160,89,0.4), rgba(197,160,89,0.1));
    margin-top: 1.4rem;
    flex-shrink: 0;
}

.process-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(197, 160, 89, 0.2);
    line-height: 1;
}

.process-step-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-champagne);
}

.process-step-text {
    font-family: 'Lora', serif;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }
    .process-connector {
        width: 1px;
        height: 30px;
        background: linear-gradient(180deg, rgba(197,160,89,0.4), rgba(197,160,89,0.1));
        margin: 0 0 0 1.5rem;
    }
}
/* ==================== FIN COMMENT CA MARCHE ==================== */

/* ==================== STATS ANIMÉES ==================== */
.stats-section {
    background: #120e0a;
    border-top: 1px solid rgba(200, 169, 110, 0.1);
    border-bottom: 1px solid rgba(200, 169, 110, 0.1);
    padding: 3rem 2rem;
}

.stats-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.stat-number-row {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
    line-height: 1;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-champagne);
    line-height: 1;
}

.stat-suffix {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-champagne);
    line-height: 1;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(197, 160, 89, 0.2);
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .stat-divider { display: none; }
    .stats-container { gap: 1rem; }
    .stat-item { min-width: 120px; }
    .stat-number { font-size: 2rem; }
}

/* ==================== BANDE LOGOS MARQUES ==================== */
.brands-section {
    overflow: hidden;
    background: #050505;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.08);
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    white-space: nowrap;
    animation: brandsScroll 20s linear infinite;
    width: max-content;
}

.brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: rgba(197, 160, 89, 0.5);
    text-transform: uppercase;
    transition: color 0.3s;
}

.brand-name:hover { color: var(--accent-champagne); }

.brand-sep {
    color: rgba(197, 160, 89, 0.2);
    font-size: 0.7rem;
}

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

/* ==================== RECHERCHE LIBRE ==================== */
.filter-search-row {
    margin-bottom: 0.5rem;
}

.filter-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 420px;
}

.filter-search-icon {
    position: absolute;
    left: 14px;
    color: rgba(197, 160, 89, 0.5);
    font-size: 0.8rem;
    pointer-events: none;
}

.filter-search-input {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 2px;
    padding: 0.6rem 2.5rem 0.6rem 2.4rem;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 1px;
    outline: none;
    transition: border-color 0.3s;
}

.filter-search-input::placeholder { color: rgba(255,255,255,0.25); }
.filter-search-input:focus { border-color: rgba(197, 160, 89, 0.6); }

.filter-search-clear {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.3);
    cursor: pointer;
    font-size: 0.75rem;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.filter-search-clear:hover { color: var(--accent-champagne); }

/* ==================== BOUTON RETOUR EN HAUT ==================== */
.back-to-top {
    position: fixed;
    bottom: 90px;
    left: 24px;
    width: 42px;
    height: 42px;
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--accent-champagne);
    font-size: 1.1rem;
    border-radius: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s, background 0.3s;
    pointer-events: none;
    z-index: 900;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    background: rgba(197, 160, 89, 0.3);
}

@media (max-width: 768px) {
    .back-to-top { left: 12px; bottom: 80px; width: 36px; height: 36px; font-size: 0.9rem; }
}

/* ==================== POP-UP WHATSAPP ==================== */
.wa-popup {
    position: fixed;
    bottom: 90px;
    right: 90px;
    width: 300px;
    background: #111;
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 4px;
    padding: 1.2rem;
    z-index: 1200;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    opacity: 0;
    transform: translateY(16px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.wa-popup.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.wa-popup-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.3);
    cursor: pointer;
    font-size: 0.8rem;
}

.wa-popup-close:hover { color: #fff; }

.wa-popup-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.wa-popup-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.wa-popup-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    margin: 0 0 0.2rem;
}

.wa-popup-sub {
    font-family: 'Lora', serif;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    margin: 0;
}

.wa-popup-btn {
    display: block;
    text-align: center;
    padding: 0.6rem 1rem;
    background: #25d366;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.3s;
}

.wa-popup-btn:hover { background: #1ebe5a; }

@media (max-width: 768px) {
    .wa-popup { right: 12px; bottom: 80px; width: calc(100vw - 24px); }
}

/* ==================== CTA MODÈLE SIMILAIRE ==================== */
.modal-cta-similaire {
    background: transparent !important;
    border: 1px solid rgba(197, 160, 89, 0.4) !important;
    color: var(--accent-champagne) !important;
    font-size: 0.65rem !important;
}

.modal-cta-similaire:hover {
    background: rgba(197, 160, 89, 0.1) !important;
    border-color: var(--accent-champagne) !important;
}

/* ==================== MODALE SCROLL MOBILE ==================== */
@media (max-width: 768px) {
    .modal-right {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        max-height: 60vh;
        padding-bottom: 2rem;
    }
}
