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

/* ======================================= */
/* style index debut */
/* ======================================= */

/* --- VARIABLES & RESET (MODE CLAIR) --- */
:root {
    --bg-main: #fcfbfa;     
    --bg-alt: #f4efe9;      
    --burgundy: #3d0202;    
    --gold: #b5853f;        
    --gold-light: #ebd0a9;  
    --text-main: #2a2522;   
    --glass: rgba(252, 251, 250, 0.85);
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- NAVIGATION --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(181, 133, 63, 0.15);
}

.logo {
    font-size: 1.5rem;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    color: var(--text-main);
    opacity: 0.7;
    font-weight: 400;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--gold);
}

/* --- BOUTON HAMBURGER (Caché sur PC) --- */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001; /* Pour qu'il reste au-dessus du menu ouvert */
}

.hamburger .bar {
    width: 25px;
    height: 2px;
    background-color: var(--burgundy);
    transition: var(--transition);
}

.btn-rdv {
    border: 1px solid var(--burgundy);
    padding: 0.6rem 1.5rem;
    transition: var(--transition);
    color: var(--burgundy) !important;
    opacity: 1 !important;
}

.btn-rdv:hover {
    background: var(--burgundy);
    color: var(--gold-light) !important;
}

/* Par défaut (Mobile) */
.desktop-text {
    display: none;
}

.mobile-text {
    display: inline;
}

/* Mode Ordinateur (Tablettes et plus) */
@media (min-width: 768px) {
    .mobile-text {
        display: none;
    }
    .desktop-text {
        display: inline;
    }
    
    /* Optionnel : On change le curseur pour montrer que c'est spécial */
    .btn-rdv {
        cursor: copy; 
    }
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, #fdfaf5 0%, var(--bg-main) 100%);
    background-image: url(./ressources/photos/appareil-head-spa.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 70%;
    padding: 0 1rem;
    position: relative;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--gold-light);
}

.hero p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    opacity: 0.8;
    margin-bottom: 3rem;
    color: var(--bg-main);
    font-weight: 600;
}

.cta-main {
    background: var(--burgundy);
    color: var(--gold-light);
    padding: 1.2rem 2.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(61, 2, 2, 0.15);
}

.cta-main:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(61, 2, 2, 0.25);
    background: #240101;
}

/* =========================================
   FENÊTRE MODALE (RÉSERVATION PC)
========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-main);
    padding: 4rem 3rem;
    border: 1px solid var(--gold);
    text-align: center;
    position: relative;
    max-width: 500px;
    width: 90%;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--burgundy);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.modal-close:hover {
    color: var(--gold);
    transform: scale(1.1);
}

.modal-title {
    font-size: 2.2rem;
    color: var(--burgundy);
    margin-bottom: 1rem;
    font-style: italic;
}

.modal-text {
    font-size: 0.95rem;
    color: var(--text-main);
    opacity: 0.8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-phone {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.modal-phone:hover {
    color: var(--burgundy);
    border-bottom: 1px solid var(--burgundy);
}

.modal-subtext {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
}

/* --- PHILOSOPHIE --- */
.philosophy {
    padding: 10rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.philosophy h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--burgundy);
}

.philosophy p {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.8;
}

/* --- SERVICES (FOND ALTERNATIF) --- */
.services {
    padding: 5rem 4rem;
    background: var(--bg-alt);
}

.grid-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    flex-direction: column;
}

.service-img {
    height: 400px;
    background: #eaddd2;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.service-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.8rem;
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.full-menu-link {
    text-align: center;
    margin-top: 5rem;
}

.full-menu-link a {
    color: var(--burgundy);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(61, 2, 2, 0.3);
    padding-bottom: 5px;
    transition: var(--transition);
    font-weight: 600;
}

.full-menu-link a:hover {
    border-bottom: 1px solid var(--burgundy);
    color: var(--gold);
}

/* --- GALLERY SECTION --- */
.gallery {
    padding: 10rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-img-container {
    position: relative;
    padding: 20px;
    border: 1px solid rgba(181, 133, 63, 0.3);
    background-color: #3d0202;
}
.gallery-img-container img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.gallery-img-placeholder {
    aspect-ratio: 4/5;
    background: var(--burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    font-style: italic;
    color: var(--gold-light);
    font-size: 1.1rem;
}

.gallery-img-placeholder .span img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* --- ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- FOOTER LUMINEUX & 3 COLONNES --- */
.site-footer {
    background: radial-gradient(ellipse at top, #ffffff 0%, #f4efe9 100%);
    padding: 5rem 4rem 2rem;
    border-top: 1px solid rgba(181, 133, 63, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 4rem;
    text-align: center;
}

.footer-col h4 {
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.footer-col p, .footer-col a {
    color: var(--text-main);
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    display: block;
    transition: var(--transition);
    line-height: 1.8;
}

.footer-col a:hover {
    color: var(--gold);
    opacity: 1;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(181, 133, 63, 0.15);
    font-size: 0.75rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    nav { padding: 1.5rem 2rem; }
    /* --- MENU MOBILE PLEIN ÉCRAN (DESIGN LUXE) --- */
    .hamburger {
        display: flex;
    }

    /* Le fond du menu passe en bordeaux élégant avec une belle ombre */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(to bottom, #240101, var(--burgundy));
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .nav-links.active {
        right: 0;
    }

    /* Les liens reprennent la police chic des titres */
    .nav-links a {
        font-family: 'Cormorant Garamond', serif;
        font-size: 2.5rem;
        color: var(--gold-light);
        text-transform: capitalize;
        font-style: italic;
        letter-spacing: 2px;
        opacity: 0.8;
        transition: var(--transition);
    }

    /* Effet au toucher/clic */
    .nav-links a:hover, .nav-links a.active {
        opacity: 1;
        color: var(--gold);
        transform: scale(1.05);
    }

    /* Style spécifique pour le bouton RDV dans le menu mobile */
    .nav-links .btn-rdv {
        font-family: 'Inter', sans-serif;
        font-size: 0.9rem;
        font-style: normal;
        text-transform: uppercase;
        letter-spacing: 3px;
        border: 1px solid var(--gold-light);
        color: var(--gold-light) !important;
        margin-top: 2rem;
        padding: 1rem 2rem;
    }

    .nav-links .btn-rdv:hover {
        background: var(--gold-light);
        color: var(--burgundy) !important;
        transform: scale(1.05);
    }

    /* Animation de la croix (et changement de couleur vers l'or) */
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--gold-light);
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--gold-light);
    }
    .gallery { grid-template-columns: 1fr; gap: 3rem; }
    .hero h1 { font-size: 3.5rem; }
    .site-footer { padding: 4rem 2rem 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-col a:hover { transform: translateY(-3px); }
}
@media (max-width: 468px) {
    .services {
    padding: 5rem 3rem;
    }
   .grid-services {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin: 0 auto;
} 

.gallery { 
    display: flex; 
    flex-direction: column;
    padding: 5rem 3rem; }

}

/* style index fin */


/* ======================================= */
/* style prestations debut */
/* ======================================= */

/* --- HERO PRESTATIONS --- */
.hero-mini {
    height: 40vh;
    background: linear-gradient(to bottom, #240101, var(--burgundy));
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; padding-top: 80px;
    border-bottom: 2px solid var(--gold);
}
.hero-mini h1 { font-size: 4rem; font-style: italic; margin-bottom: 0.5rem; color: var(--gold-light); }
.hero-mini p { text-transform: uppercase; letter-spacing: 4px; font-size: 0.8rem; opacity: 0.9; color: #fff; font-weight: 600; }

/* --- RITUELS CLASSIQUES --- */
.container { max-width: 1000px; margin: 0 auto; padding: 6rem 2rem; }

.section-title { text-align: center; margin-bottom: 4rem; font-size: 2.5rem; color: var(--burgundy); font-style: italic; }

.ritual-item {
    border-bottom: 1px solid rgba(181, 133, 63, 0.2);
    padding: 3rem 0;
    display: grid;
    /* Ajout de la colonne pour l'image (150px) */
    grid-template-columns: 150px 1.5fr 2fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

/* Espaces Photos Classiques */
.ritual-img-container {
    width: 100%;
    aspect-ratio: 3/4; /* Format portrait élégant */
    background-color: var(--bg-alt);
    border: 1px solid rgba(181, 133, 63, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--burgundy);
    font-size: 0.75rem;
    font-style: italic;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.ritual-img-container img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.ritual-name h3 { font-size: 1.8rem; margin-bottom: 0.5rem; color: var(--burgundy); line-height: 1.2; }
.ritual-duration { font-size: 0.75rem; text-transform: uppercase; opacity: 0.6; letter-spacing: 1px; color: var(--text-main); font-weight: 600; }

.ritual-details ul { list-style: none; font-size: 0.9rem; font-weight: 300; opacity: 0.9; }
.ritual-details li { margin-bottom: 0.5rem; position: relative; padding-left: 1.2rem; }
.ritual-details li::before { content: "—"; position: absolute; left: 0; color: var(--gold); font-weight: 600; }

.ritual-price { font-family: 'Cormorant Garamond'; font-size: 2rem; color: var(--gold); text-align: right; }


        /* =========================================
           4. RITUELS LAYOUT (Type prestations.2)
        ========================================= */
        .ritual-item {
            display: grid;
            grid-template-columns: 350px 1fr;
            gap: 5rem;
            align-items: center;
            padding: 4rem 0;
            border-bottom: 1px solid rgba(181, 133, 63, 0.15);
        }

        .ritual-item:last-of-type { border-bottom: none; }

        .ritual-img-container {
            width: 100%;
            aspect-ratio: 4/5;
            background-color: var(--bg-alt);
            border: 1px solid rgba(181, 133, 63, 0.2);
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
        }

        .ritual-img-container img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.8s ease;
        }

        .ritual-item:hover img { transform: scale(1.05); }

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

        .ritual-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            border-bottom: 1px solid rgba(181, 133, 63, 0.1);
            padding-bottom: 1.5rem;
        }

        .ritual-name h3 { font-size: 2.5rem; color: var(--burgundy); margin-bottom: 0.3rem; }
        .ritual-duration { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; opacity: 0.6; }

        /* PRIX EN DORÉ */
        .ritual-price {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.8rem;
            color: var(--gold);
            line-height: 1;
        }

        .ritual-details p { margin-bottom: 1.5rem; font-size: 1rem; opacity: 0.8; line-height: 1.8; }

        .ritual-details ul { list-style: none; }
        .ritual-details li {
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 1.5rem;
            font-weight: 300;
        }

        .ritual-details li::before {
            content: "—";
            position: absolute;
            left: 0;
            color: var(--gold);
        }

        /* =========================================
           5. SIGNATURE BLOCK
        ========================================= */
        .signature-block {
            background: var(--burgundy);
            color: #fff;
            padding: 5rem;
            margin: 4rem 0 8rem 0;
            position: relative;
            border: 1px solid var(--gold-light);
            box-shadow: 0 25px 50px rgba(61, 2, 2, 0.2);
        }

        .signature-badge {
            position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
            background: var(--gold-light); color: var(--burgundy);
            padding: 0.5rem 2rem; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px;
        }

        .signature-header-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 4rem; }
        .signature-intro h2 { font-size: 3.5rem; color: var(--gold-light); font-style: italic; margin-bottom: 1rem; }
        .signature-intro .price-tag { color: var(--gold-light); font-size: 1.2rem; font-family: 'Cormorant Garamond'; display: block; margin-bottom: 2rem; }
        .signature-intro .quote { font-style: italic; opacity: 0.8; font-weight: 300; }

        .signature-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; border-top: 1px solid rgba(235, 208, 169, 0.2); padding-top: 4rem; }
        .step-category h4 { color: var(--gold-light); text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 1.5rem; }

        

/* --- FOCUS SIGNATURE HOLISTIQUE --- */
.signature-block {
    background: var(--burgundy);
    color: #fff;
    border: 1px solid var(--gold-light);
    padding: 4rem;
    margin-top: 5rem;
    position: relative;
    box-shadow: 0 20px 40px rgba(61, 2, 2, 0.15);
}
.signature-badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--gold-light); color: var(--burgundy);
    padding: 0.3rem 1.5rem; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
}

/* Grille pour l'en-tête du rituel signature (Texte + Photo) */
.signature-header-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.signature-intro h2 { font-size: 3rem; font-style: italic; color: var(--gold-light); line-height: 1.1; }
.signature-intro .price-tag { text-transform: uppercase; letter-spacing: 3px; font-size: 0.8rem; color: #fff; opacity: 0.9; margin-top: 0.8rem; margin-bottom: 1.5rem; display: block; }
.signature-intro .quote { font-style: italic; opacity: 0.85; font-weight: 300; line-height: 1.7; }

/* Espace Photo Signature */
.signature-img-container {
    width: 100%;
    aspect-ratio: 4/3; /* Format paysage */
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(235, 208, 169, 0.3); /* Or clair transparent */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--gold-light);
    font-size: 0.85rem;
    font-style: italic;
    padding: 20px;
}

.signature-img-container img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.signature-steps {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; border-top: 1px solid rgba(235, 208, 169, 0.15); padding-top: 3rem;
}
.step-category h4 { color: var(--gold-light); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 1rem; border-bottom: 1px solid rgba(235, 208, 169, 0.3); padding-bottom: 5px; }

.signature-block .ritual-details li::before { color: var(--gold-light); }
.signature-block .ritual-details ul { opacity: 1; }

/* --- NOTES --- */
.notes { margin-top: 4rem; font-size: 0.75rem; opacity: 0.6; font-style: italic; text-align: center; line-height: 2; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .ritual-item { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; padding: 2rem 0; }
    /* Ajustement image responsive */
    .ritual-img-container { max-width: 250px; margin: 0 auto; aspect-ratio: 16/9; }
    .ritual-details ul { text-align: left; }
    .ritual-price { text-align: center; }
    .signature-header-grid { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .signature-steps { grid-template-columns: 1fr; }
}
/* style prestations fin */


/* ======================================= */
/* style faq */
/* ======================================= */

/* --- FAQ CONTAINER --- */
.faq-container {
    max-width: 900px;
    margin: 6rem auto;
    padding: 0 2rem;
}

/* --- FAQ ACCORDION STYLES --- */
.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid rgba(181, 133, 63, 0.2);
    background: var(--bg-main);
    transition: var(--transition);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--burgundy);
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--bg-alt);
}

/* Icône flèche */
.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.5s ease;
}

/* État actif (ouvert) */
.faq-item.active .faq-question {
    background-color: var(--burgundy);
    color: var(--gold-light);
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
    color: var(--gold-light);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    background-color: var(--bg-alt);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 2rem;
    border-top: 1px solid rgba(181, 133, 63, 0.1);
}

.faq-answer p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1rem;
}

.faq-answer p:last-child { margin-bottom: 0; }

.faq-answer ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 300;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

/* SEO Link style inside answers */
.faq-answer a {
    color: var(--burgundy);
    border-bottom: 1px solid rgba(61, 2, 2, 0.3);
    transition: var(--transition);
    font-weight: 600;
}
.faq-answer a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .faq-question { font-size: 1.1rem; padding: 1.2rem; }
}
/* style faq fin */


/* ======================================= */
/* style mentions legales debut */
/* ======================================= */

/* --- CONTENU MENTIONS LÉGALES --- */
.legal-container {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.legal-section {
    margin-bottom: 3.5rem;
}

.legal-section h2 {
    font-size: 2rem;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(181, 133, 63, 0.3);
    font-style: italic;
}

.legal-section p {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 1.2rem;
    font-weight: 300;
}

.legal-section a {
    color: var(--burgundy);
    border-bottom: 1px solid rgba(61, 2, 2, 0.2);
    font-weight: 600;
    transition: var(--transition);
}

.legal-section a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.legal-section ul {
    list-style-type: none;
    margin-bottom: 1.2rem;
    padding-left: 1rem;
}

.legal-section li {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.85;
    font-weight: 300;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.legal-section li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 600;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .legal-section h2 { font-size: 1.6rem; }
}
/* style mentions fin */


/* ======================================= */
/* style galerie debut */
/* ======================================= */

.section-subtitle {
    text-align: center;
    margin-top: -3rem;
    margin-bottom: 5rem;
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 300;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* --- STYLES DES EMPLACEMENTS (FIGURES & CAPTIONS SEO) --- */
.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(181, 133, 63, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    background-color: var(--bg-alt);
    cursor: pointer;
    margin: 0; /* Important pour reset le margin par défaut des <figure> */
}

/* Différents formats pour un aspect magazine */
.portrait, 
.landscape, 
.square{ aspect-ratio: 3/4; }


/* Style commun pour l'image (ou le bloc vide en attendant) */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--burgundy);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    transition: transform 0.8s ease;
}

/* Style de la légende cachée (SEO) */
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(61, 2, 2, 0.92); /* Bordeaux très légèrement transparent */
    color: var(--gold-light);
    padding: 1.5rem 1rem;
    text-align: center;
    /* La légende est cachée en bas de l'image (101% pour masquer même les bordures) */
    transform: translateY(101%); 
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.gallery-caption h3 {
    font-size: 1.4rem;
    margin: 0;
    line-height: 1.2;
}

.gallery-caption p {
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    opacity: 0.9;
    margin: 0;
}

/* --- EFFETS AU SURVOL --- */
.gallery-item:hover .gallery-img-placeholder,
.gallery-item:hover img {
    transform: scale(1.05); /* Zoom léger de l'image */
}

.gallery-item:hover {
    border-color: var(--gold);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0); /* La légende remonte */
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    /* Sur mobile, on affiche directement un petit bout de la légende ou on la laisse accessible au toucher */
    .gallery-caption { transform: translateY(0); background: linear-gradient(to top, rgba(61, 2, 2, 0.95), rgba(61, 2, 2, 0.7) 70%, transparent); padding-top: 3rem;}

    
}
/* style galerie fin */

