/* ==========================================================================
   1. VARIABLES & DESIGN SYSTEM
   ========================================================================== */
:root {
    /* Nuancier */
    --color-bg: #0a0a0a;
    --color-bg-box: #121212;
    --color-bg-footer: #0d0d0d;
    --color-accent: #d7ac7d;         /* Or Michelin */
    --color-text-light: #f5f5f5;
    --color-text-muted: #a0a0a0;
    --color-text-dark: #4d4d4d;      /* Anthracite historique exigé */
    
    /* Écrins translucides (Opacité stricte à 80%) */
    --box-bg-light: rgba(248, 246, 242, 0.80); 
    --box-bg-dark: rgba(18, 18, 18, 0.80);
    
    /* Typographies */
    --font-h1: 'Montserrat', sans-serif;
    --font-titles: 'Josefin Sans', sans-serif;
    --font-body: 'Lato', 'Helvetica', sans-serif;
    
    /* Cinématique */
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Réinitialisation & Fondations */
* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

html { 
    scroll-behavior: smooth; 
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-light);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   2. STICKY HEADER & OVERLAY NAVIGATION
   ========================================================================== */
/* État initial : Absolument transparent à l'ouverture de la page */
.main-header {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%;
    padding: 35px 60px; 
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    z-index: 100;
    background: rgba(10, 10, 10, 0);
    backdrop-filter: blur(0px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0);
    border-bottom: 1px solid transparent;
    transition: padding 0.5s ease, background 0.5s ease, backdrop-filter 0.5s ease, box-shadow 0.5s ease;
}

/* État actif : Apparition subtile déclenchée lors du scroll */
.main-header.scrolled {
    padding: 22px 60px; /* Devient légèrement plus compact pour libérer de l'espace */
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.logo {
    font-family: var(--font-h1); 
    color: var(--color-accent);
    text-decoration: none; 
    letter-spacing: 4px; 
    font-weight: 700; 
    font-size: 1.2rem;
}

/* Burger Menu Conventionnel à 3 traits */
.burger-menu {
    background: none; 
    border: none; 
    cursor: pointer;
    width: 32px; 
    height: 20px; 
    display: flex; 
    flex-direction: column;
    justify-content: space-between; 
    z-index: 110;
}

.burger-menu span {
    display: block; 
    width: 100%; 
    height: 1px;
    background-color: var(--color-accent); 
    transition: var(--transition-smooth);
}

/* Cinématique de transformation en croix */
.burger-menu.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.burger-menu.open span:nth-child(2) { opacity: 0; }
.burger-menu.open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* Rideau de Navigation Interne */
.nav-overlay {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(10, 10, 10, 0.96); 
    backdrop-filter: blur(15px); 
    z-index: 90;
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center;
    opacity: 0; 
    visibility: hidden; 
    transition: var(--transition-smooth);
}

.nav-overlay.open { 
    opacity: 0.90; 
    visibility: visible; 
}

.nav-links { 
    list-style: none; 
    text-align: center; 
    margin-bottom: 40px; 
}

.nav-links li { 
    margin: 20px 0; 
}

.nav-links a {
    font-family: var(--font-titles); 
    color: var(--color-accent); 
    font-size: 2.2rem;
    text-decoration: none; 
    letter-spacing: 3px; 
    font-weight: 300; 
    transition: color 0.3s;
}

.nav-links a:hover { 
    color: var(--color-accent); 
}

.nav-socials { 
    display: flex; 
    gap: 30px; 
    font-size: 1.2rem; 
}

.nav-socials a { 
    color: var(--color-accent); 
    transition: color 0.3s; 
    text-decoration: none;
}

.nav-socials a:hover { 
    color: var(--color-accent); 
}

/* ==========================================================================
   3. SLIDESHOW PLEIN ÉCRAN (HERO ACCUEIL)
   ========================================================================== */
.slider-container { 
    position: relative; 
    width: 100vw; 
    height: 100vh; 
}

.slide {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background-size: cover; 
    background-position: center;
    opacity: 0; 
    visibility: hidden; 
    transition: opacity 1.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide.active { 
    opacity: 1; 
    visibility: visible; 
}

/* Overlay directionnel protecteur de texte */
.slide-overlay {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: linear-gradient(to right, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.3) 50%, rgba(10,10,10,0) 100%);
    z-index: 1;
}

/* Zone de texte flottante épurée */
.text-zone-minimal { 
    position: absolute; 
    z-index: 2; 
    max-width: 520px; 
    padding: 0 20px; 
    bottom: 18%; 
    left: 60px; 
    opacity: 0; 
}

.text-zone-minimal h1 { 
    font-family: var(--font-h1); 
    color: var(--color-accent); 
    font-size: 2.2rem; 
    letter-spacing: 6px; 
    margin-bottom: 20px; 
}

.text-zone-minimal h2 { 
    font-family: var(--font-titles); 
    color: var(--color-text-light); 
    font-size: 1.3rem; 
    font-weight: 300; 
    letter-spacing: 2px; 
    margin-bottom: 20px; 
}

.text-zone-minimal p { 
    color: var(--color-text-muted); 
    font-size: 0.95rem; 
    line-height: 1.8; 
}

/* Micro-contrôles discrets à 80% d'opacité */
.slider-controls {
    position: absolute; 
    bottom: 40px; 
    right: 60px;
    display: flex; 
    align-items: center; 
    gap: 20px; 
    z-index: 5;
    background: var(--box-bg-dark); 
    backdrop-filter: blur(10px);
    padding: 10px 25px; 
    border: 1px solid rgba(255,255,255,0.03); 
    font-family: var(--font-titles);
}

.control-btn { 
    background: none; 
    border: none; 
    color: #ffffff; 
    font-size: 1.1rem; 
    cursor: pointer; 
    transition: color 0.3s;
}

.control-btn:hover { 
    color: var(--color-accent); 
}

.counter { 
    color: var(--color-accent); 
    font-size: 0.85rem; 
    min-width: 45px; 
    text-align: center; 
}

/* ==========================================================================
   4. STRUCTURES DES BOÎTES CONTEXTUELLES FLOTTANTES (ONE-PAGE)
   ========================================================================== */
.content-wrapper-block { 
    padding: 120px 60px; 
    display: flex; 
    justify-content: center; 
    background: var(--color-bg); 
}

.floating-container-light {
    background: var(--box-bg-light); 
    padding: 80px 60px; 
    width: 100%; 
    max-width: 1200px;
    backdrop-filter: blur(10px); 
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

/* Typographies Communes Boîtes Claires */
.floating-container-light h2 { 
    font-family: var(--font-titles); 
    color: #1a1a1a; 
    font-size: 2.2rem; 
    letter-spacing: 4px; 
    margin-bottom: 60px; 
    text-align: center; 
    text-transform: uppercase;
}

.floating-container-light h3 { 
    font-family: var(--font-titles); 
    color: var(--color-accent); 
    font-size: 1.3rem; 
    margin-bottom: 15px; 
    letter-spacing: 1px; 
}

.floating-container-light p { 
    color: var(--color-text-dark); /* Strictement #4d4d4d */
    font-size: 0.95rem; 
    line-height: 1.8; 
}

/* Zones de transition Parallaxe */
.parallax-divider { 
    position: relative; 
    height: 70vh; 
    width: 100%; 
    overflow: hidden; 
    /* Crée un masque de rognage matériel isolé qui évite les sauts d'affichage */
    clip-path: inset(0 0 0 0); 
}

.parallax-divider::after {
    content: '';
    position: fixed; /* L'image reste ancrée rigidement au viewport */
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background-image: inherit; /* Copie intelligemment l'image du parent HTML */
    background-size: cover; 
    background-position: center; 
    z-index: -1;
    /* Activation de l'accélération par carte graphique (GPU) */
    will-change: transform;
    transform: translateZ(0); 
}

/* Bouton Call-to-action Épuré */
.cta-center { 
    text-align: center; 
    margin-top: 50px; 
}

.cta-button {
    display: inline-block; 
    padding: 16px 45px; 
    border: 1px solid var(--color-accent);
    color: var(--color-accent); 
    font-family: var(--font-h1); 
    font-size: 0.8rem;
    text-decoration: none; 
    letter-spacing: 3px; 
    font-weight: 700; 
    transition: var(--transition-smooth); 
    background: transparent;
    text-align: center;
}

.cta-button:hover { 
    background: var(--color-accent); 
    color: #1a1a1a; 
    transform: translateY(-2px); 
}

/* ==========================================================================
   5. SECTIONS SPÉCIFIQUES (GRILLES & COMPOSANTS)
   ========================================================================== */

/* BLOC : Menus & Carte (Harmonisé avec les chèques cadeaux) */
.grid-3clmns { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; /* Ajusté à 30px pour correspondre parfaitement aux chèques cadeaux */
}

.menu-column { 
    opacity: 0; 
    transform: translateY(30px); /* Conservé pour l'effet d'apparition JS */
    padding: 40px 30px; 
    border: 1px solid rgba(0,0,0,0.06); 
    background: rgba(255,255,255,0.3);
    transition: var(--transition-smooth);
    text-align: center;
}

.menu-column .price {
    font-family: var(--font-titles);
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-top: 20px;
    font-weight: 400;
    letter-spacing: 1px;
}

/* BLOC : Galerie Photos (Système d'onglets) */
.gallery-tabs { 
    display: flex; 
    justify-content: center; 
    gap: 30px; 
    margin-bottom: 50px; 
}

.tab-btn {
    background: none; 
    border: none; 
    font-family: var(--font-titles); 
    font-size: 1.1rem;
    color: #888888; 
    cursor: pointer; 
    letter-spacing: 2px; 
    padding: 10px 20px;
    border-bottom: 1px solid transparent; 
    transition: var(--transition-smooth);
}

.tab-btn.active, .tab-btn:hover { 
    color: #1a1a1a; 
    border-bottom: 1px solid var(--color-accent); 
}

/* Conteneur isolant les vignettes */
.gallery-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Transformation de la Grille CSS en ligne de défilement Flex */
.gallery-grid {
    display: none;
    width: 100%;
    gap: 30px;
    overflow-x: scroll;
    scroll-behavior: smooth;
    
    /* Masquage des barres de défilement par défaut */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}
.gallery-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
}

.gallery-grid.active {
    display: flex;
}

/* Calibrage Strict : Exactement 3 images visibles simultanément sur PC */
.gallery-item {
    flex: 0 0 calc(33.333% - 20px); 
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    
    /* FIX DE CADRAGE : Force le navigateur à centrer l'image horizontalement et verticalement */
    object-position: center center; 
    
    filter: grayscale(15%); 
    transition: transform 0.6s ease; 
}

/* Design Système des commandes inférieures des vignettes */
.thumb-controls {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}
.thumb-nav-btn {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}
.thumb-nav-btn:hover {
    background: #1a1a1a;
    color: var(--color-accent);
    border-color: #1a1a1a;
}

/* --- Ajustement Responsive Mobile --- */
@media(max-width: 768px) {
    /* Sur smartphone, une vignette occupe 100% de la largeur du carrousel */
    .gallery-item {
        flex: 0 0 100% !important;
    }
    .thumb-controls { margin-top: 30px; }
}

/* BLOC : Chèques Cadeaux */
.gift-cards-layout { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    text-align: center; 
}

.gift-card-box { 
    padding: 40px 30px; 
    border: 1px solid rgba(0,0,0,0.06); 
    background: rgba(255,255,255,0.3); 
}

.gift-card-box .price { 
    font-family: var(--font-titles); 
    font-size: 1.8rem; 
    color: #1a1a1a; 
    margin: 20px 0; 
}

/* BLOC : Équipe (Permanent N&B, format 4/3) */
.team-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px 30px; 
}

.team-card { 
    text-align: center; 
}

.team-avatar-wrapper { 
    aspect-ratio: 4 / 3; 
    overflow: hidden; 
    margin-bottom: 15px; 
}

.team-avatar-wrapper img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    filter: grayscale(100%) !important; /* Strictement permanent */
}

.team-card h3 { 
    color: #1a1a1a !important; 
    font-size: 1.1rem !important; 
    margin-bottom: 5px !important; 
    font-weight: 400; 
}

.team-card p { 
    font-size: 0.8rem !important; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    color: var(--color-accent) !important; 
}

/* BLOC : Contact & Tableau des Horaires Zébré */
.split-map-section { 
    display: grid; 
    grid-template-columns: 45% 55%; 
    min-height: 65vh; 
    background: var(--color-bg); 
}

.map-text-block { 
    background: var(--box-bg-dark); 
    padding: 80px 60px; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    backdrop-filter: blur(10px); 
}

.map-text-block a { 
    color: var(--color-accent); 
}

.map-text-block h2 { 
    font-family: var(--font-titles); 
    color: var(--color-accent); 
    font-size: 2rem; 
    margin-bottom: 30px; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
}

.schedule-table { 
    width: 100%; 
    border-collapse: collapse; 
    margin-bottom: 40px; 
    font-family: var(--font-body); 
    font-size: 0.9rem; 
}

.schedule-table th { 
    font-family: var(--font-titles); 
    text-align: left; 
    color: var(--color-accent); 
    padding: 12px; 
    font-weight: 400; 
    letter-spacing: 1px; 
    border-bottom: 1px solid rgba(255,255,255,0.1); 
}

.schedule-table td { 
    padding: 14px 12px; 
    color: var(--color-text-muted); 
}

/* Alternance élégante des lignes du tableau (Zébrure Dark) */
.schedule-table tbody tr:nth-child(odd) { 
    background: rgba(255, 255, 255, 0.02); 
}

.schedule-table tbody tr:nth-child(even) { 
    background: rgba(255, 255, 255, 0.05); 
}

.schedule-table tbody tr:hover { 
    background: rgba(215, 172, 125, 0.08); 
}

.map-text-block .contact-notes-intro {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    letter-spacing: 0.5px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.map-text-block .contact-notes-list {
    list-style: none; /* Élimination définitive des puces basiques */
    padding: 0;
    margin-bottom: 45px; /* Crée la respiration nécessaire avant le bouton CTA */
}

.map-text-block .contact-notes-list li {
    position: relative;
    padding-left: 18px; /* Laisse la place au tiret or graphique */
    margin-bottom: 12px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Remplacement de la puce par un micro-tiret Or horizontal et chirurgical */
.map-text-block .contact-notes-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px; /* Aligne le tiret au centre de la ligne de texte */
    width: 6px;
    height: 1px;
    background-color: var(--color-accent);
}

/* Subtilisations des intitulés forts */
.map-text-block .contact-notes-list li strong {
    color: var(--color-accent); /* Rappel de la couleur d'accent */
    font-family: var(--font-titles);
    font-weight: 400;
    letter-spacing: 1px;
    margin-right: 3px;
}
.map-iframe-wrapper iframe { 
    width: 100%; 
    height: 100%; 
    border: 0; 
    filter: invert(90%) hue-rotate(180deg) contrast(1.1); 
}

/* ==========================================================================
   6. INTERFACES DE LA MODALE LIGHTBOX (FIXE ET PARFAITE)
   ========================================================================== */
.lightbox {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px); 
    z-index: 200; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center;
    opacity: 0; 
    visibility: hidden; 
    transition: var(--transition-smooth);
}

.lightbox.open { 
    opacity: 1; 
    visibility: visible; 
}

.lightbox-content { 
    max-width: 75vw; 
    max-height: 65vh; 
    position: relative; 
}

.lightbox-content img { 
    max-width: 100%; 
    max-height: 65vh; 
    object-fit: contain; 
}

.lightbox-caption { 
    font-family: var(--font-body); 
    color: var(--color-text-muted); 
    margin-top: 20px; 
    text-align: center; 
}

.lightbox-close { 
    position: absolute; 
    top: 40px; 
    right: 60px; 
    background: none; 
    border: none; 
    color: #ffffff; 
    font-size: 2rem; 
    cursor: pointer; 
}

/* Commandes clouées sur les flancs latéraux gauche/droite */
.lightbox-nav button { 
    position: fixed; 
    top: 50%; 
    transform: translateY(-50%); 
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08); 
    color: #ffffff; 
    font-size: 1.4rem; 
    cursor: pointer; 
    width: 54px; 
    height: 54px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: var(--transition-smooth);
    z-index: 220;
}

.lightbox-nav button:hover {
    background: var(--color-accent);
    color: #1a1a1a;
    opacity: 1;
}

/* FIX PERMANENT LIGHTBOX : Ciblage direct par ID sans conteneur parent */
#lightbox-prev, 
#lightbox-next { 
    position: fixed; 
    top: 50%; 
    transform: translateY(-50%); 
    background: rgba(20, 20, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1); 
    color: #ffffff; 
    font-size: 1.3rem; 
    cursor: pointer; 
    width: 54px; 
    height: 54px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: var(--transition-smooth);
    z-index: 220; /* Priorité absolue sur l'image et la légende */
}

#lightbox-prev:hover, 
#lightbox-next:hover {
    background: var(--color-accent);
    color: #1a1a1a;
}

#lightbox-prev { left: 40px; }  /* Cloué au flanc gauche */
#lightbox-next { right: 40px; } /* Cloué au flanc droit */

/* ==========================================================================
   7. UNIFIED GLOBAL HAUTE COUTURE FOOTER
   ========================================================================== */
.site-footer {
    padding: 60px 60px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    background: var(--color-bg-footer);
    border-top: 1px solid rgba(255, 255, 255, 0.03); 
    position: relative; 
    z-index: 10;
}

.footer-nav { 
    display: flex; 
    gap: 40px; 
}

.footer-nav a {
    font-family: var(--font-titles); 
    color: var(--color-text-muted);
    text-decoration: none; 
    font-size: 0.85rem; 
    letter-spacing: 2px; 
    text-transform: uppercase;
    transition: color 0.3s ease;
}

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

.footer-socials { 
    display: flex; 
    gap: 30px; 
}

.footer-socials a { 
    color: var(--color-text-muted); 
    font-size: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease; 
    text-decoration: none;
}

.footer-socials a:hover { 
    color: var(--color-accent); 
    transform: translateY(-3px);
}

/* ==========================================================================
   8. MEDIA QUERIES RESPONSIVE (SÉCURITÉ & AJUSTEMENTS)
   ========================================================================== */
@media(max-width: 1024px) {
    .grid-3clmns, .gift-cards-layout { grid-template-columns: 1fr; gap: 35px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .split-map-section { grid-template-columns: 1fr; }
}

@media(max-width: 768px) {
    /* Fondations Mobiles */
    .main-header { padding: 20px 24px; }
    .content-wrapper-block { padding: 60px 20px; }
    .floating-container-light { padding: 40px 20px; }
    .team-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    
    /* FIX VISIBILITÉ ACCUEIL MOBILE */
    .slider-container {
        height: 100vh;
        height: 100svh; /* Contraint le slider à la hauteur visible réelle du smartphone */
    }

    .text-zone-minimal { 
        background: transparent !important; 
        padding: 0 24px !important; 
        top: 42% !important; /* Légèrement remonté pour laisser l'espace au bouton en bas */
        bottom: auto !important;
        transform: translateY(-50%) !important;
        left: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        z-index: 2;
        text-align: center;
    }
    .text-zone-minimal h1 { font-size: 1.8rem; margin-bottom: 12px; }
    .text-zone-minimal h2 { font-size: 1.1rem; margin-bottom: 15px; }
    .text-zone-minimal p { font-size: 0.9rem; line-height: 1.6; }
    
    /* FIX CONTROLES SLIDER ACCUEIL : Forcé au premier plan au centre inférieur */
    .slider-controls { 
        position: absolute !important;
        left: 50% !important; 
        right: auto !important;
        bottom: 30px !important; 
        transform: translateX(-50%) !important; 
        z-index: 40 !important; /* Évite l'écrasement par le bloc de contenu suivant */
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        padding: 8px 20px;
    }

    /* FIX CONTROLES LIGHTBOX MOBILE : Écartés sur les bords de l'écran tactile */
    #lightbox-prev { left: 15px !important; }
    #lightbox-next { right: 15px !important; }
    #lightbox-prev, #lightbox-next { 
        position: fixed !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 46px; 
        height: 46px; 
        font-size: 1.1rem; 
        background: rgba(10, 10, 10, 0.8);
    }
    .lightbox-close { top: 25px; right: 25px; font-size: 1.6rem; }
    .lightbox-content { max-width: 85vw; }

    /* Footer Mobile */
    .site-footer {
        flex-direction: column !important;
        gap: 30px !important;
        padding: 60px 24px !important;
    }
    .footer-nav { 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 20px 30px; 
    }
}

/* -------------------------------------------------------------
   NOUVEAU BLOC INTRODUTION / AÉRATION
------------------------------------------------------------- */
.intro-break-section {
    background-color: var(--color-bg);
    padding: 120px 24px; /* Grand espacement pour aérer l'interface */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.intro-break-container {
    max-width: 720px;
    width: 100%;
}

.intro-break-container h2 {
    font-family: var(--font-titles);
    color: var(--color-accent);
    font-size: 2.4rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.intro-break-container p {
    font-family: var(--font-body);
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.9;
    font-weight: 300;
}
}