/* ============================================
   JOLIES MÔMES COIFFURE - VOVES
   Palette Terracotta & Bois
   ============================================
   
   SOMMAIRE :
   1.  Variables & Reset
   2.  Composants globaux (boutons, sections)
   3.  Lightbox
   4.  Bandeau d'annonce
   5.  Top Bar
   6.  Navigation
   7.  Hero
   8.  About (Le Salon)
   9.  Équipe
   10. Services
   11. Tarifs
   12. Marques
   13. Galerie
   14. Témoignages
   15. Horaires
   16. Contact
   17. Map
   18. Instagram CTA
   19. Footer
   20. Boutons flottants
   21. Animations Reveal
   22. Media Queries (Responsive)
   ============================================ */


/* ============================================
   1. VARIABLES & RESET
   ============================================ */
:root {
    /* Couleurs principales */
    --terra-primary: #c17a5b;
    --terra-light: #f5e6dc;
    --terra-lighter: #fdf6f1;
    --terra-dark: #8b4f35;

    /* Tons bois */
    --wood: #b8895c;
    --wood-light: #d4b088;
    --wood-dark: #8b6640;

    /* Neutres */
    --dark: #2a2724;
    --dark-light: #4a453e;
    --cream: #faf6f0;
    --white: #ffffff;
    --gray: #f5f2ee;
    --gray-text: #8a8580;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}


/* ============================================
   2. COMPOSANTS GLOBAUX
   ============================================ */

/* --- Sections communes --- */
.section {
    padding: 100px 0;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--terra-dark);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-title span {
    font-family: 'Dancing Script', cursive;
    color: var(--terra-primary);
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--terra-primary), var(--wood));
    margin: 0 auto 20px;
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

/* --- Boutons --- */
.btn-primary {
    background: linear-gradient(135deg, var(--terra-primary), var(--terra-dark));
    color: white;
    padding: 16px 35px;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(148, 115, 82, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary i {
    transition: transform 0.4s ease;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 40px rgba(148, 115, 82, 0.5);
    background: linear-gradient(135deg, var(--terra-dark), var(--terra-primary));
}

.btn-primary:hover i {
    transform: rotate(-10deg) scale(1.2);
}

.btn-secondary {
    background: transparent;
    color: var(--dark);
    padding: 16px 35px;
    border: 2px solid var(--dark);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-3px);
}

/* --- Animations globales --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-3deg); }
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}


/* ============================================
   3. LIGHTBOX (agrandissement image)
   ============================================ */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    margin-top: 20px;
    text-align: center;
    max-width: 600px;
    padding: 0 20px;
}

.lightbox-caption h4 {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.lightbox-caption p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--terra-primary);
    border-color: var(--terra-primary);
    transform: rotate(90deg) scale(1.1);
}


/* ============================================
   4. BANDEAU D'ANNONCE
   ============================================ */
.announcement-bar {
    background: linear-gradient(135deg, var(--terra-primary), var(--terra-dark));
    color: var(--white);
    padding: 12px 0;
    position: relative;
    overflow: hidden;
    animation: slideDown 0.5s ease;
}

.announcement-bar.hidden {
    display: none;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.announcement-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    text-align: center;
    position: relative;
}

.announcement-content i.fa-bullhorn {
    font-size: 1rem;
    animation: shake 3s ease-in-out infinite;
}

@keyframes shake {
    0%, 90%, 100% { transform: rotate(0deg); }
    93% { transform: rotate(-10deg); }
    96% { transform: rotate(10deg); }
}

.announcement-content span {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.announcement-close {
    position: absolute;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 1rem;
    padding: 5px;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.announcement-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}


/* ============================================
   5. TOP BAR
   ============================================ */
.top-bar {
    background: var(--dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: var(--terra-light);
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: var(--white);
}

.top-bar-info span {
    margin-right: 20px;
}

.top-bar-info i {
    margin-right: 6px;
    color: var(--terra-primary);
}

.top-bar-social a {
    margin-left: 15px;
    font-size: 0.9rem;
}


/* ============================================
   6. NAVIGATION
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 5px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 10px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--terra-primary), var(--wood));
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--terra-dark);
}

.nav-cta {
    background: linear-gradient(135deg, var(--terra-primary), var(--terra-dark));
    color: white !important;
    padding: 10px 22px !important;
    border-radius: 50px;
    letter-spacing: 1px !important;
    font-size: 0.75rem !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s ease !important;
}

.nav-cta i {
    transition: transform 0.4s ease;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(148, 115, 82, 0.5);
    color: white !important;
}

.nav-cta:hover i {
    transform: rotate(-10deg) scale(1.2);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Overlay menu mobile */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* ============================================
   7. HERO (Accueil)
   ============================================ */
.hero {
    min-height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--terra-lighter) 0%, var(--cream) 50%, var(--white) 100%);
    padding: 60px 0;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--terra-primary);
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--wood);
    bottom: -150px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--terra-primary);
    top: 50%;
    left: 30%;
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero - Texte (avec animations en cascade) */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(193, 122, 91, 0.1);
    border: 1px solid rgba(193, 122, 91, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--terra-dark);
    font-weight: 600;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-badge i {
    color: var(--wood);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--dark);
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-title span {
    font-family: 'Dancing Script', cursive;
    color: var(--terra-primary);
    font-size: 4.3rem;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--dark-light);
    line-height: 1.8;
    margin-bottom: 35px;
    font-weight: 300;
    max-width: 500px;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1.1s both;
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1.4s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-feature-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terra-primary);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.hero-feature-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-light);
}

/* Hero - Visuel */
.hero-visual {
    position: relative;
    animation: fadeInRight 1.7s ease 0.3s both;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.hero-image {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.hero-floating-card {
    position: absolute;
    bottom: 30px;
    left: -40px;
    background: white;
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--terra-primary), var(--terra-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.floating-card-text h4 {
    font-size: 0.85rem;
    color: var(--dark);
    margin-bottom: 2px;
}

.floating-card-text p {
    font-size: 0.75rem;
    color: var(--gray-text);
}

.hero-floating-card-2 {
    position: absolute;
    top: 30px;
    right: -30px;
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: floatCard 5s ease-in-out infinite reverse;
}

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 5px;
}

.stars i {
    color: var(--wood);
    font-size: 0.8rem;
}

.hero-floating-card-2 p {
    font-size: 0.75rem;
    color: var(--dark-light);
    font-weight: 500;
}


/* ============================================
   8. ABOUT (Le Salon)
   ============================================ */
.about {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    width: 85%;
    height: 500px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 250px;
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
    border: 6px solid var(--cream);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-experience {
    position: absolute;
    top: 30px;
    right: 20px;
    background: white;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-experience .number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--terra-primary);
    font-weight: 700;
    line-height: 1;
}

.about-experience .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-text);
    font-weight: 600;
}

.about-content .section-label,
.about-content .section-title {
    text-align: left;
}

.about-content .section-divider {
    margin: 0 0 20px;
}

.about-text {
    color: var(--dark-light);
    line-height: 1.9;
    margin-bottom: 25px;
    font-weight: 300;
}

.about-features-list {
    list-style: none;
    margin-bottom: 35px;
}

.about-features-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
    color: var(--dark-light);
}

.about-features-list li i {
    color: var(--terra-primary);
    font-size: 0.7rem;
    width: 28px;
    height: 28px;
    background: var(--terra-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-signature {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--terra-primary);
    margin-top: 20px;
}


/* ============================================
   9. ÉQUIPE
   ============================================ */
.team {
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.team-photo-container {
    position: relative;
}

.team-photo {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.team-photo-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.team-photo-badge i {
    color: var(--terra-primary);
    font-size: 1.3rem;
}

.team-photo-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
}

.team-members {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.team-member {
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-left: 4px solid var(--terra-primary);
}

.team-member-avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--terra-primary), var(--terra-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
}

.team-member-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 3px;
}

.team-member-role {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--terra-primary);
    font-weight: 600;
}


/* ============================================
   10. SERVICES
   ============================================ */
.services {
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 25px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--terra-primary), var(--wood));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--terra-lighter), var(--terra-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.4rem;
    color: var(--terra-primary);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--terra-primary), var(--terra-dark));
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.service-card p {
    font-size: 0.85rem;
    color: var(--gray-text);
    line-height: 1.6;
    font-weight: 300;
}


/* ============================================
   11. TARIFS
   ============================================ */
.pricing {
    background: var(--white);
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.pricing-tab {
    padding: 12px 30px;
    border: 2px solid var(--terra-light);
    border-radius: 50px;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--dark-light);
    cursor: pointer;
    transition: all 0.3s;
}

.pricing-tab.active {
    background: linear-gradient(135deg, var(--terra-primary), var(--terra-dark));
    border-color: var(--terra-primary);
    color: white;
}

.pricing-tab:hover:not(.active) {
    background: var(--terra-lighter);
    border-color: var(--terra-primary);
    color: var(--terra-dark);
}

.pricing-content {
    display: none;
}

.pricing-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.pricing-table {
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.pricing-item:last-child {
    border-bottom: none;
}

.pricing-item-name {
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 500;
}

.pricing-item-desc {
    font-size: 0.8rem;
    color: var(--gray-text);
    font-weight: 300;
    margin-top: 3px;
}

.pricing-item-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--terra-primary);
    font-weight: 700;
    white-space: nowrap;
    padding-left: 15px;
    line-height: 1;
}

.pricing-item-price-multi {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.pricing-item-price-multi span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: var(--dark-light);
    font-weight: 400;
}

.pricing-item-price-multi span strong {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--terra-primary);
    font-weight: 700;
    margin-left: 8px;
}

.pricing-note {
    text-align: center;
    margin-top: 30px;
    font-size: 0.85rem;
    color: var(--gray-text);
}


/* ============================================
   12. MARQUES
   ============================================ */
.brands {
    background: var(--cream);
    overflow: hidden;
}

/* Onglets marques */
.brands-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.brand-tab {
    padding: 12px 30px;
    border: 2px solid var(--terra-light);
    border-radius: 50px;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--dark-light);
    cursor: pointer;
    transition: all 0.3s;
}

.brand-tab.active {
    background: linear-gradient(135deg, var(--terra-primary), var(--terra-dark));
    border-color: var(--terra-primary);
    color: white;
}

.brand-tab:hover:not(.active) {
    background: var(--terra-lighter);
    border-color: var(--terra-primary);
    color: var(--terra-dark);
}

/* Contenu marques */
.brand-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.brand-content.active {
    display: block;
}

.brand-logo {
    display: block;
    max-height: 80px;
    max-width: 200px;
    width: auto;
    height: auto;
    margin: 0 auto 20px;
    object-fit: contain;
}

.brand-description {
    text-align: center;
    font-size: 0.95rem;
    color: var(--dark-light);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
    font-weight: 300;
}

.brands-note {
    text-align: center;
    margin-top: 30px;
    font-size: 0.85rem;
    color: var(--gray-text);
    font-style: italic;
}

/* Item produit */
.brand-item {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    cursor: zoom-in;
}

.brand-item:focus-visible {
    outline: 3px solid var(--terra-primary);
    outline-offset: 4px;
}

.brand-item .brand-img {
    width: 100%;
    height: 100%;
    box-shadow: none;
    border-radius: 0;
    transition: transform 0.4s ease;
}

.brand-item:hover .brand-img {
    transform: scale(1.1);
}

.brand-item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 12px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    transition: opacity 0.3s ease;
}

.brand-item-info h4 {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.2;
}

.brand-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 30%, rgba(0, 0, 0, 0.85));
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 20px 15px;
    text-align: left;
    transition: opacity 0.4s ease;
}

.brand-item:hover .brand-item-overlay {
    opacity: 1;
}

.brand-item:hover .brand-item-info {
    opacity: 0;
}

.brand-item-overlay h4 {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.2;
}

.brand-item-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    line-height: 1.5;
    font-weight: 300;
}

/* Slider (Schwarzkopf, Revlon) */
.brand-slider-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.brand-slider {
    position: relative;
    overflow: hidden;
    padding: 5px 0;
}

.brand-slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.brand-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    box-sizing: border-box;
    padding: 5px;
}

.brand-slide.brand-slide-3 {
    grid-template-columns: repeat(3, 200px);
    justify-content: center;
}

.brand-slide .brand-item {
    width: 100%;
    aspect-ratio: 1;
    height: auto;
}

.brand-slider-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.brand-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--terra-light);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: all 0.3s;
}

.brand-slider-dot.active {
    background: var(--terra-primary);
    transform: scale(1.2);
}

/* Grille statique (Technique) */
.brand-grid {
    display: grid;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
    justify-content: center;
}

.brand-grid .brand-item {
    width: 100%;
    aspect-ratio: 1;
    height: auto;
}

.brand-grid-2 {
    grid-template-columns: repeat(2, 200px);
}

/* Marque avec 1 seule photo (STMNT) */
.brand-single {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.brand-single .brand-item {
    width: 225px;
    height: 225px;
}


/* ============================================
   13. GALERIE
   ============================================ */
.gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-item-bg {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.7));
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 25px;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
}

.gallery-overlay p {
    color: var(--terra-light);
    font-size: 0.8rem;
    margin-top: 3px;
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}


/* ============================================
   14. TÉMOIGNAGES
   ============================================ */
.testimonials {
    background: linear-gradient(135deg, var(--terra-lighter), var(--cream));
    position: relative;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    background: white;
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--terra-light);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--dark-light);
    line-height: 1.9;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--wood);
    font-size: 0.9rem;
    margin: 0 2px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--terra-primary), var(--terra-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-author-info h4 {
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 600;
}

.testimonial-author-info p {
    font-size: 0.8rem;
    color: var(--gray-text);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--terra-light);
    cursor: pointer;
    transition: all 0.3s;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.testimonial-dot:focus-visible,
.brand-slider-dot:focus-visible {
    outline: 3px solid var(--terra-dark);
    outline-offset: 3px;
}

.testimonial-dot.active {
    background: var(--terra-primary);
}

/* CTA "Laisser un avis Google" */
.review-cta {
    text-align: center;
    margin-top: 40px;
}

.review-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: transparent;
    color: var(--terra-primary);
    border: 2px solid var(--terra-primary);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.review-btn:hover {
    background: var(--terra-primary);
    color: var(--white);
    transform: translateY(-2px);
}


/* ============================================
   15. HORAIRES
   ============================================ */
.hours-banner {
    background: linear-gradient(135deg, var(--dark), #1a1815);
    color: white;
    padding: 70px 0;
}

.hours-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.hours-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 10px;
}

.hours-title span {
    font-family: 'Dancing Script', cursive;
    color: var(--terra-primary);
}

.hours-subtitle {
    color: #a09b95;
    font-size: 0.9rem;
    font-weight: 300;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.hours-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 15px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.hours-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.hours-item .day {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--terra-light);
    font-weight: 600;
    margin-bottom: 8px;
}

.hours-item .time {
    font-size: 0.85rem;
    color: white;
    font-weight: 300;
    line-height: 1.4;
}

.hours-item.closed {
    opacity: 0.5;
}

.hours-item.closed .time {
    color: var(--terra-primary);
}


/* ============================================
   16. CONTACT
   ============================================ */
.contact {
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-card-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: linear-gradient(135deg, var(--terra-primary), var(--terra-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-card h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--gray-text);
    line-height: 1.6;
}

.contact-card a {
    color: var(--terra-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: var(--terra-dark);
}

/* Carte de réservation */
.booking-card {
    background: linear-gradient(135deg, var(--terra-primary), var(--terra-dark));
    border-radius: 25px;
    padding: 50px 40px;
    color: white;
    text-align: center;
    box-shadow: 0 15px 50px rgba(193, 122, 91, 0.3);
    position: relative;
    overflow: hidden;
}

.booking-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.booking-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.booking-card-content {
    position: relative;
    z-index: 1;
}

.booking-card .icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}

.booking-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.booking-card h3 span {
    font-family: 'Dancing Script', cursive;
}

.booking-card p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.7;
}

.booking-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-btn {
    padding: 16px 30px;
    background: white;
    color: var(--terra-dark);
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.booking-btn i {
    transition: transform 0.4s ease;
}

.booking-btn:not(.outline):hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.booking-btn:not(.outline):hover i {
    transform: translateX(5px);
}

.booking-btn.outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.booking-btn.outline:hover {
    background: white;
    color: var(--terra-dark);
    border-color: white;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.booking-btn.outline:hover i {
    transform: rotate(-15deg) scale(1.2);
}


/* ============================================
   17. MAP
   ============================================ */
.map-container {
    width: 100%;
    height: 400px;
    filter: grayscale(20%);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* ============================================
   18. INSTAGRAM CTA
   ============================================ */
.instagram-cta {
    background: linear-gradient(135deg, var(--wood-light), var(--wood));
    padding: 80px 0;
    text-align: center;
    color: white;
}

.instagram-cta h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.instagram-cta p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.instagram-cta .btn-primary {
    background: white;
    color: var(--wood-dark);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.instagram-cta .btn-primary:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(220, 39, 67, 0.4);
}

.instagram-cta .btn-primary:hover i {
    transform: rotate(360deg);
}


/* ============================================
   19. FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 0;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-brand p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--terra-primary);
    border-color: var(--terra-primary);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--terra-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--terra-primary);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 60px;
    padding: 25px 0;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #666;
}

.footer-bottom a {
    color: var(--terra-primary);
    text-decoration: none;
}

.legal-link {
    color: #666 !important;
    text-decoration: underline;
    transition: font-weight 0.2s ease;
}

.legal-link:hover {
    font-weight: 700;
}


/* ============================================
   20. BOUTONS FLOTTANTS
   ============================================ */

/* Bouton retour en haut */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--terra-primary), var(--terra-dark));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(193, 122, 91, 0.4);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: all 0.3s;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(193, 122, 91, 0.5);
}

/* Bouton "Prendre RDV" flottant */
.floating-book {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, var(--terra-primary), var(--terra-dark));
    color: white;
    padding: 14px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 30px rgba(148, 115, 82, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
}

.floating-book i {
    transition: transform 0.4s ease;
}

.floating-book:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(148, 115, 82, 0.6);
    background: linear-gradient(135deg, var(--terra-dark), var(--terra-primary));
}

.floating-book:hover i {
    transform: rotate(-10deg) scale(1.2);
}


/* ============================================
   21. ANIMATIONS REVEAL (au scroll)
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================
   22. RESPONSIVE (Media Queries)
   ============================================ */

/* ===== TABLETTE & MOBILE (< 1024px) ===== */
@media (max-width: 1024px) {
    /* Hero */
    .hero-title { font-size: 3rem; }
    .hero-title span { font-size: 3.5rem; }
    .hero-content { gap: 40px; }

    /* Grilles */
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .hours-grid { grid-template-columns: repeat(2, 1fr); }

    /* Navigation : hamburger + navbar fixe */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }

    body {
        padding-top: 75px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 20px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        align-items: flex-start;
        visibility: hidden;
        transition: right 0.4s ease;
    }

    .nav-links.open {
        right: 0;
        visibility: visible;
    }
}

/* ===== MOBILE (< 768px) ===== */
@media (max-width: 768px) {
    /* Top bar */
    .top-bar-social { display: none; }
    .top-bar-info { font-size: 0.7rem; text-align: center; width: 100%; }
    .top-bar-content { justify-content: center; }
    .top-bar-info span { display: block; margin: 3px 0; }

    /* Announcement */
    .announcement-content { padding: 0 40px 0 15px; }
    .announcement-content span { font-size: 0.75rem; }
    .announcement-content i.fa-bullhorn { display: none; }

    /* Hero */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 20px;
    }
    .hero-title { font-size: 2.3rem; }
    .hero-title span { font-size: 2.8rem; }
    .hero-description { margin: 0 auto 35px; }
    .hero-buttons { justify-content: center; }
    .hero-features { justify-content: center; }
    .hero-visual { order: -1; }
    .hero-image { height: 350px; }
    .hero-floating-card { left: 10px; bottom: 20px; padding: 15px 20px; }
    .hero-floating-card-2 { right: 10px; top: 10px; }

    /* About */
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-content .section-label,
    .about-content .section-title { text-align: center; }
    .about-content .section-divider { margin: 0 auto 20px; }
    .about-signature { text-align: center; }

    /* Équipe */
    .team-grid { grid-template-columns: 1fr; gap: 40px; }
    .team-photo { height: 400px; }
    .team-photo-badge {
        left: 20px;
        bottom: -15px;
        padding: 15px 20px;
    }

    /* Services & Contact & Galerie */
    .services-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }

    /* Tarifs */
    .pricing-table { padding: 30px 20px; }

    /* Sections */
    .section-title { font-size: 2rem; }

    /* Horaires */
    .hours-content { grid-template-columns: 1fr; text-align: center; }
    .hours-grid { grid-template-columns: repeat(2, 1fr); }

    /* Footer */
    .footer-content { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom-content { flex-direction: column; gap: 10px; text-align: center; }

    /* Marques */
    .brand-logo { max-height: 60px; max-width: 150px; }
    .brand-tab { padding: 10px 20px; font-size: 0.7rem; }
    .brand-item-info h4 { font-size: 0.75rem; }
    .brand-item-overlay h4 { font-size: 0.85rem; }
    .brand-item-overlay p { font-size: 0.7rem; }
    .brand-slide {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .brand-slide.brand-slide-3 { grid-template-columns: repeat(2, 1fr); }
    .brand-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 300px; }
    .brand-single .brand-item { width: 180px; height: 180px; }

    /* Lightbox */
    .lightbox-img { max-height: 60vh; }
    .lightbox-caption h4 { font-size: 1.1rem; }
    .lightbox-caption p { font-size: 0.85rem; }
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Boutons flottants */
    .floating-book {
        padding: 12px 18px;
        font-size: 0.75rem;
        bottom: 20px;
        left: 20px;
    }
    .floating-book span { display: none; }
    .scroll-top { bottom: 85px; right: 20px; }

    /* Zone de tap téléphone */
    a[href^="tel"] {
        display: inline-block;
        padding: 8px 4px;
        margin: -8px -4px;
        -webkit-tap-highlight-color: rgba(193, 122, 91, 0.15);
    }
}

/* ===== PETIT MOBILE (< 480px) ===== */
@media (max-width: 480px) {
    .hero-title { font-size: 1.9rem; }
    .hero-title span { font-size: 2.2rem; }

    .btn-primary, .btn-secondary {
        padding: 14px 25px;
        font-size: 0.75rem;
    }

    .booking-card { padding: 40px 25px; }

    .pricing-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .pricing-item-price { padding-left: 0; }
}

/* ============================================
   23. BANDEAU COOKIES (RGPD)
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(150px);
    width: calc(100% - 40px);
    max-width: 800px;
    background: rgba(42, 39, 36, 0.98); /* Fond foncé var(--dark) */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

.cookie-content a {
    color: var(--terra-light);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 22px;
    min-height: 44px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    touch-action: manipulation;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, var(--terra-primary), var(--terra-dark));
    color: white;
}

.cookie-btn.accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(193, 122, 91, 0.4);
}

.cookie-btn.reject {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn.reject:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

/* Zone d'attente Google Maps si cookies refusés */
.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    color: var(--dark-light);
    text-align: center;
    padding: 20px;
}

.map-placeholder p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    max-width: 400px;
    line-height: 1.6;
}

.map-placeholder-btn {
    padding: 12px 25px;
    background: var(--terra-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.map-placeholder-btn:hover {
    background: var(--terra-dark);
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .cookie-banner {
        display: none;
        top: 50%;
        bottom: auto;
        width: calc(100% - 20px);
        padding: 15px 20px;
        max-height: calc(100dvh - 40px);
        overflow-y: auto;
        transform: translate(-50%, -50%);
    }
    .cookie-banner.show {
        display: block;
        transform: translate(-50%, -50%);
    }
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: center;
        position: relative;
        z-index: 1;
    }
    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}
