/* ============================================
   LUMIÈRE SALON — CSS Principal
   Aesthetic: Rose Poudré · Corail · Bordeaux — Morgan & Virginie
   ============================================ */

:root {
    --opening-banner-height: 0px;
    --mobile-navbar-height: 76px;
    --mobile-nav-offset: 76px;
    /* ── Palette Morgan & Virginie ── */
    --noir: #5c2d20;          /* Bordeaux profond — texte principal */
    --noir-2: #6e3828;
    --noir-3: #7d4535;
    --noir-4: #8f5242;
    --gold: #c07878;          /* Rose corail — accent principal */
    --gold-light: #d49898;    /* Rose corail clair */
    --gold-pale: #f0dcdc;     /* Rose poudré très clair */
    --cream: #fdf5f5;         /* Fond principal rose blanc */
    --cream-2: #f5e8e8;       /* Fond secondaire rose poudré */
    --white: #ffffff;
    --text-light: #c4a0a0;    /* Texte léger rosé */
    --text-mid: #9a6a6a;      /* Texte moyen rosé */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', 'Helvetica Neue', sans-serif;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 4px;
    --shadow-soft: 0 20px 60px rgba(160,80,60,0.12);
    --shadow-strong: 0 30px 80px rgba(160,80,60,0.25);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--noir);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; object-fit: cover; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.4rem; }
em { font-style: italic; color: var(--gold); }
p { color: var(--text-mid); line-height: 1.8; }

.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 1.5rem; color: var(--noir); }
.section-desc { max-width: 600px; margin: 0 auto 3rem; text-align: center; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header--light .section-title { color: var(--cream); }
.section-header--light p { color: var(--text-light); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius);
}
.btn-gold {
    background: var(--gold);
    color: var(--noir);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-dark { background: var(--noir); color: var(--cream); }
.btn-dark:hover { background: var(--noir-3); transform: translateY(-2px); }
.btn-ghost { background: transparent; border: 1px solid rgba(255,255,255,0.4); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-ghost-light { background: transparent; border: 1px solid rgba(255,255,255,0.5); color: var(--white); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.15); }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: var(--opening-banner-height);
    left: 0;
    right: 0;
    z-index: 1100;
    background: transparent;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition), top var(--transition);
}
.navbar.scrolled {
    background: rgba(92,45,32,0.97);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
}
.nav-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: var(--mobile-navbar-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.logo-icon { color: var(--gold); font-size: 1.1rem; }
.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--white);
    letter-spacing: 0.05em;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}
.nav-links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
/* Empêche l'héritage de couleur blanche sur le bouton CTA */
.nav-links li a.nav-cta,
.nav-links li a.nav-cta:link,
.nav-links li a.nav-cta:visited { color: var(--noir) !important; }
.nav-links li a.nav-cta:hover { color: var(--noir) !important; background: var(--gold-light); }
.nav-links .nav-cta {
    background: var(--gold);
    color: var(--noir);
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius);
    margin-left: 0.5rem;
}
.nav-links .nav-cta:hover { background: var(--gold-light); color: var(--noir) !important; }
.nav-toggle { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; width: 44px; height: 44px; background: rgba(92,45,32,0.55); border: 1px solid rgba(255,255,255,0.2); border-radius: 999px; cursor: pointer; padding: 0; box-shadow: 0 10px 30px rgba(0,0,0,0.18); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.nav-toggle span { display: block; width: 20px; height: 1.8px; background: var(--white); border-radius: 999px; transition: var(--transition); transform-origin: center; }

.mobile-menu-top,
.mobile-menu-meta,
.mobile-menu-note { display: none; }


/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); animation: heroZoom 12s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(92,45,32,0.82) 0%, rgba(160,80,60,0.3) 100%); }
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    padding-top: 6rem;
    animation: fadeUp 1s 0.3s both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.5rem; font-weight: 700; }
.hero-title { color: var(--white); font-size: clamp(3rem, 8vw, 6.5rem); line-height: 1.05; margin-bottom: 1.5rem; }
.hero-sub { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 480px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 2rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.scroll-line { width: 60px; height: 1px; background: rgba(255,255,255,0.3); }

/* ===== STATS ===== */
.stats { background: var(--noir-2); padding: 4rem 2rem; }
.stats-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.stat-item { text-align: center; padding: 1.5rem 3rem; }
.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.1); }

/* ===== ABOUT ===== */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    overflow: hidden;
}
.about-images {
    position: relative;
    background: var(--cream-2);
    overflow: hidden;
}
.about-img-main { width: 100%; height: 70%; }
.about-img-main img { width: 100%; height: 100%; }
.about-img-secondary {
    position: absolute;
    bottom: 2rem; right: 2rem;
    width: 45%;
    border: 4px solid var(--cream);
    box-shadow: var(--shadow-soft);
}
.about-img-secondary img { width: 100%; height: 220px; }
.about-badge {
    position: absolute;
    top: 2rem; left: 2rem;
    background: var(--gold);
    color: var(--noir);
    padding: 1.5rem;
    text-align: center;
    font-family: var(--font-display);
    line-height: 1.3;
    font-size: 0.9rem;
}
.about-badge span { font-size: 1.2rem; display: block; margin-bottom: 0.3rem; }
.about-text {
    background: var(--cream);
    padding: 6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-text p { margin-bottom: 1.2rem; }
.about-values { margin: 2rem 0 2.5rem; display: flex; flex-direction: column; gap: 1.2rem; }
.value { display: flex; gap: 1rem; align-items: flex-start; }
.value-icon { color: var(--gold); font-size: 0.8rem; margin-top: 0.2rem; flex-shrink: 0; }
.value strong { display: block; color: var(--noir); font-weight: 500; margin-bottom: 0.2rem; }
.value p { margin: 0; font-size: 0.9rem; }

/* ===== SERVICES PREVIEW ===== */
.services-preview { padding: 8rem 0; background: var(--cream); }
.services-preview-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.service-img { height: 220px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; transition: transform 0.6s ease; }
.service-card:hover .service-img img { transform: scale(1.08); }
.service-body { padding: 1.5rem; }
.service-body h3 { font-size: 1.1rem; margin-bottom: 0.6rem; color: var(--noir); }
.service-body p { font-size: 0.88rem; margin-bottom: 1rem; }
.service-price {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.service-card--featured { background: var(--noir); }
.service-card--featured .service-body h3 { color: var(--cream); }
.service-card--featured .service-body p { color: var(--text-light); }
.services-cta { text-align: center; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--cream-2); padding: 8rem 2rem; }
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 1.5rem; align-items: start; }
.testimonial {
    background: var(--noir-3);
    border: 1px solid var(--cream-2);
    padding: 2.5rem;
    border-radius: 8px;
}
.testimonial--featured {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-1rem);
}
.testimonial-stars { font-size: 1rem; color: var(--gold); margin-bottom: 1rem; letter-spacing: 0.1em; }
.testimonial--featured .testimonial-stars { color: var(--noir); }
.testimonial-text { font-size: 0.95rem; line-height: 1.7; color: var(--text-mid); margin-bottom: 1.5rem; }
.testimonial--featured .testimonial-text { color: var(--white); }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--noir);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.testimonial--featured .author-avatar { background: var(--noir); color: var(--gold); }
.testimonial-author strong { display: block; color: var(--noir); font-weight: 500; }
.testimonial--featured .testimonial-author strong { color: var(--noir); }
.testimonial-author span { font-size: 0.78rem; color: var(--text-light); }
.testimonial--featured .testimonial-author span { color: rgba(13,12,10,0.6); }

/* ===== CTA SECTION ===== */
.cta-section { position: relative; padding: 10rem 2rem; text-align: center; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: rgba(92,45,32,0.78); }
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { color: var(--white); margin-bottom: 1.5rem; font-size: clamp(2rem, 5vw, 4rem); }
.cta-content p { color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; font-size: 1rem; }
.cta-content .section-eyebrow { color: var(--gold-light); }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== PAGE HERO ===== */
.page-hero {
    position: relative;
    height: 65vh;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 5rem;
    overflow: hidden;
}
.page-hero--short { height: 50vh; min-height: 380px; }
.page-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(92,45,32,0.88) 0%, rgba(160,80,60,0.25) 100%); }
.page-hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 2rem; width: 100%; }
.page-hero-content h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero-content p { color: rgba(255,255,255,0.7); }

/* ===== SERVICES FULL ===== */
.services-full { padding: 8rem 0; }
.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 2px;
}
.service-row--reverse { direction: rtl; }
.service-row--reverse > * { direction: ltr; }
.service-row-img { overflow: hidden; }
.service-row-img img { width: 100%; height: 100%; min-height: 450px; object-fit: cover; transition: transform 0.8s ease; }
.service-row:hover .service-row-img img { transform: scale(1.04); }
.service-row-content {
    background: var(--cream);
    padding: 5rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.service-num {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--cream-2);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}
.service-row-content h2 { margin-bottom: 1.2rem; }
.service-row-content p { margin-bottom: 1.8rem; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.service-list li {
    font-size: 0.9rem;
    color: var(--text-mid);
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--cream-2);
    display: flex;
    justify-content: space-between;
}
.service-list li strong { color: var(--gold); }

/* ===== BRANDS ===== */
.brands { padding: 6rem 0; background: var(--cream-2); }
.brands-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 3rem; }
.brand-item {
    padding: 1rem 2rem;
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.08em;
    border-radius: var(--radius);
    transition: var(--transition);
}
.brand-item:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }
.brands .section-title { color: var(--noir); }

/* ===== TEAM ===== */
.team { padding: 8rem 0; background: var(--cream); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card { background: var(--white); border-radius: 8px; overflow: hidden; transition: var(--transition); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.team-card--founder { grid-column: span 1; }
.team-img { position: relative; height: 320px; overflow: hidden; }
.team-img img { width: 100%; height: 100%; transition: transform 0.6s ease; }
.team-card:hover .team-img img { transform: scale(1.06); }
.team-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(92,45,32,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.team-card:hover .team-img-overlay { opacity: 1; }
.team-img-overlay p { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; text-align: center; padding: 1rem; }
.team-info { padding: 2rem; }
.team-info h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.team-role { font-size: 0.75rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-bottom: 0.8rem; }
.team-info p { font-size: 0.88rem; margin-bottom: 1.2rem; }
.team-specialties { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.team-specialties span { font-size: 0.72rem; background: var(--cream); color: var(--text-mid); padding: 0.3rem 0.7rem; border-radius: 20px; }

/* ===== TEAM CTA ===== */
.team-cta { background: var(--noir); padding: 8rem 0; }
.team-cta-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 2rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.team-cta-text h2 { color: var(--cream); margin-bottom: 1.2rem; }
.team-cta-text p { color: var(--text-light); margin-bottom: 2rem; }
.team-cta-image img { border-radius: 8px; height: 380px; width: 100%; }

/* ===== GALLERY ===== */
.gallery-section { padding: 6rem 0; background: var(--cream); }
.gallery-filter { display: flex; gap: 0.5rem; justify-content: center; margin-bottom: 3rem; flex-wrap: wrap; }
.filter-btn {
    padding: 0.55rem 1.5rem;
    border: 1px solid var(--cream-2);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 40px;
    transition: var(--transition);
    color: var(--text-mid);
}
.filter-btn:hover, .filter-btn.active { background: var(--noir); color: var(--gold); border-color: var(--noir); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 0.75rem;
}
.gallery-item { position: relative; overflow: hidden; border-radius: 4px; cursor: pointer; transition: opacity 0.3s ease; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
.gallery-hover {
    position: absolute; inset: 0;
    background: rgba(13,12,10,0.55);
    display: flex; align-items: flex-end; padding: 1.5rem;
    opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-hover { opacity: 1; }
.gallery-hover span { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ===== INSTAGRAM CTA ===== */
.instagram-cta { background: var(--noir); padding: 6rem 2rem; text-align: center; }
.instagram-inner { max-width: 600px; margin: 0 auto; }
.instagram-icon { width: 48px; height: 48px; color: var(--gold); margin: 0 auto 1.5rem; }
.instagram-inner h2 { color: var(--cream); margin-bottom: 0.8rem; }
.instagram-inner p { color: var(--text-light); margin-bottom: 2rem; }

/* ===== CONTACT ===== */
.contact-section { padding: 8rem 0; background: var(--cream); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 2.5rem; }
.info-cards { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2.5rem; }
.info-card { display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.2rem; background: var(--white); border-radius: 6px; }
.info-icon { width: 40px; height: 40px; flex-shrink: 0; color: var(--gold); }
.info-icon svg { width: 100%; height: 100%; }
.info-card strong { display: block; color: var(--noir); font-weight: 500; margin-bottom: 0.3rem; }
.info-card p, .info-card a { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }
.info-card a:hover { color: var(--gold); }
.contact-form-wrap h2 { margin-bottom: 0.5rem; }
.contact-form-wrap > p { margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; }
.form-group label { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--noir); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--cream-2);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--noir);
    border-radius: var(--radius);
    transition: border-color var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; }
.form-error { color: #c0392b; font-size: 0.78rem; }
.alert { display: flex; align-items: center; gap: 0.75rem; padding: 1rem 1.2rem; border-radius: 6px; margin-bottom: 1.5rem; font-size: 0.9rem; }
.alert-success { background: #f0fff4; color: #276749; border: 1px solid #9ae6b4; }
.alert svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ===== FOOTER ===== */
.footer { background: var(--noir); padding: 6rem 0 0; }
.footer-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 2rem;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .footer-logo { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.2rem; }
.footer-brand p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-links h4, .footer-contact h4 {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 1.5rem;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: var(--text-light); font-size: 0.88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact p, .footer-contact a { color: var(--text-light); font-size: 0.88rem; line-height: 1.8; }
.footer-contact a:hover { color: var(--gold); }
.footer-hours { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom {
    max-width: 1200px; margin: 0 auto; padding: 1.5rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.78rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about { grid-template-columns: 1fr; }
    .about-images { min-height: 500px; }
    .about-text { padding: 4rem 3rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial--featured { transform: none; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .navbar {
        background: rgba(92,45,32,0.32);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 10px 35px rgba(0,0,0,0.12);
        padding: 0;
        z-index: 1235;
    }
    .nav-inner {
        padding: 0.75rem 1rem;
        min-height: var(--mobile-navbar-height);
        position: relative;
        z-index: 1240;
    }
    .nav-logo {
        min-width: 0;
        flex: 1;
        position: relative;
        z-index: 1242;
    }
    .logo-text {
        font-size: 1.3rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        min-height: 100dvh;
        background:
            radial-gradient(circle at top right, rgba(212,152,152,0.18), transparent 32%),
            radial-gradient(circle at bottom left, rgba(240,220,220,0.14), transparent 30%),
            linear-gradient(180deg, rgba(92,45,32,0.985) 0%, rgba(110,56,40,0.99) 100%);
        justify-content: flex-start;
        align-items: stretch;
        gap: 0.75rem;
        z-index: 1230;
        padding: calc(env(safe-area-inset-top, 0px) + 6rem) 1.35rem calc(env(safe-area-inset-bottom, 0px) + 1.5rem);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-18px);
        transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    }
    .nav-links::before {
        content: "";
        position: absolute;
        inset: 1rem;
        border-radius: 32px;
        border: 1px solid rgba(255,255,255,0.08);
        background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
        pointer-events: none;
    }
    .nav-links.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
    body.menu-open .opening-banner {
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
    }
    body.menu-open .navbar {
        top: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    body.menu-open .nav-toggle {
        background: rgba(255,255,255,0.08);
        border-color: rgba(255,255,255,0.18);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    .nav-links li {
        width: 100%;
        position: relative;
        z-index: 1;
    }
    .mobile-menu-top,
    .mobile-menu-meta,
    .mobile-menu-note { display: block; }
    .mobile-menu-top {
        margin-bottom: 0.75rem;
        padding: 0.5rem 0.1rem 1rem;
    }
    .mobile-menu-kicker {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        font-size: 0.72rem;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.58);
        margin-bottom: 0.9rem;
    }
    .mobile-menu-kicker::before {
        content: "✦";
        color: var(--gold-light);
        font-size: 0.8rem;
    }
    .mobile-menu-title {
        color: var(--white);
        font-family: var(--font-display);
        font-size: clamp(2.1rem, 10vw, 3rem);
        line-height: 0.95;
        margin-bottom: 0.8rem;
    }
    .mobile-menu-copy {
        color: rgba(255,255,255,0.68);
        font-size: 0.95rem;
        line-height: 1.75;
        max-width: 30ch;
    }
    .nav-links a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 64px;
        font-size: 1.02rem;
        color: var(--white);
        border-radius: 22px;
        padding: 0 1.15rem;
        background: rgba(255,255,255,0.045);
        border: 1px solid rgba(255,255,255,0.08);
        letter-spacing: 0.16em;
        text-transform: uppercase;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    }
    .nav-links a::after {
        content: "→";
        font-size: 1rem;
        opacity: 0.72;
        transform: translateX(0);
        transition: transform var(--transition), opacity var(--transition);
    }
    .nav-links a:hover::after,
    .nav-links a:focus-visible::after {
        transform: translateX(4px);
        opacity: 1;
    }
    .nav-links .nav-cta {
        margin-left: 0;
        margin-top: 0.5rem;
        background: linear-gradient(135deg, var(--gold-light), var(--gold));
        color: var(--noir) !important;
        border-color: transparent;
        box-shadow: 0 18px 38px rgba(212,152,152,0.22);
    }
    .nav-links .nav-cta::after { color: var(--noir); }
    .mobile-menu-meta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        margin-top: auto;
        padding-top: 1.2rem;
    }
    .mobile-menu-chip {
        justify-content: center !important;
        min-height: 56px !important;
        border-radius: 999px !important;
        padding: 0 1rem !important;
        font-size: 0.78rem !important;
        letter-spacing: 0.12em !important;
        background: rgba(253,245,245,0.08) !important;
    }
    .mobile-menu-chip::after { content: none !important; }
    .mobile-menu-chip--filled {
        background: rgba(255,255,255,0.92) !important;
        color: var(--noir) !important;
        border-color: transparent !important;
    }
    .mobile-menu-note {
        margin-top: 0.2rem;
        padding: 0 0.2rem;
        color: rgba(255,255,255,0.52);
        font-size: 0.76rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        text-align: center;
    }
    .nav-toggle { display: flex; z-index: 1245; flex-shrink: 0; }
    .opening-banner {
        padding: 0.55rem 0.75rem;
        gap: 0.45rem;
        font-size: 0.72rem;
    }
    .opening-link {
        font-size: 0.72rem;
        padding: 0.35rem 0.85rem;
    }
    .services-grid { grid-template-columns: 1fr; }
    .service-row { grid-template-columns: 1fr; }
    .service-row--reverse { direction: ltr; }
    .service-row-content { padding: 3rem 2rem; }
    .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
    .form-row { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item--tall, .gallery-item--wide { grid-column: auto; grid-row: auto; }
    .stats-inner { flex-direction: column; }
    .stat-divider { width: 60px; height: 1px; }
    .team-grid { grid-template-columns: 1fr; }
    .team-cta-inner { grid-template-columns: 1fr; gap: 3rem; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .about-text { padding: 3rem 2rem; }
}
@media (max-width: 420px) {
    .nav-links {
        padding: calc(env(safe-area-inset-top, 0px) + 5.75rem) 1rem calc(env(safe-area-inset-bottom, 0px) + 1.25rem);
    }
    .mobile-menu-title {
        font-size: 2rem;
    }
    .nav-links a {
        min-height: 60px;
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    .mobile-menu-meta {
        grid-template-columns: 1fr;
    }
}


/* ===== BOOKING SYSTEM ===== */
.booking-section { padding: 6rem 0; background: var(--cream); }

/* Steps indicator */
.steps { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 4rem; flex-wrap: wrap; gap: 0; }
.step { display: flex; align-items: center; gap: 0.6rem; opacity: 0.4; transition: opacity 0.3s; }
.step.active, .step.done { opacity: 1; }
.step-num { width: 36px; height: 36px; border-radius: 50%; background: var(--cream-2); border: 2px solid var(--cream-2); color: var(--text-mid); font-size: 0.85rem; font-weight: 500; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.step.active .step-num { background: var(--gold); border-color: var(--gold); color: var(--noir); }
.step.done .step-num { background: var(--noir); border-color: var(--noir); color: var(--gold); }
.step-label { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mid); }
.step.active .step-label { color: var(--noir); font-weight: 500; }
.step-line { width: 60px; height: 1px; background: var(--cream-2); margin: 0 0.5rem; }

/* Steps content */
.booking-step { max-width: 860px; margin: 0 auto; }
.booking-step.hidden { display: none; }
.step-title { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 2rem; }

/* Service selection */
.service-select-grid { display: flex; flex-direction: column; gap: 0.75rem; }
.service-option { display: flex; align-items: center; gap: 1.2rem; padding: 1.2rem 1.5rem; background: var(--white); border: 2px solid var(--cream-2); border-radius: 8px; cursor: pointer; transition: all 0.25s; }
.service-option:hover { border-color: var(--gold); transform: translateX(4px); }
.service-option.selected { border-color: var(--gold); background: #fdf9f0; }
.svc-icon { font-size: 1.6rem; width: 44px; text-align: center; }
.svc-info strong { display: block; color: var(--noir); font-weight: 500; }
.svc-info span { font-size: 0.82rem; color: var(--text-mid); }
.svc-check { margin-left: auto; width: 28px; height: 28px; border-radius: 50%; background: var(--gold); color: var(--noir); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; opacity: 0; transition: opacity 0.2s; }
.service-option.selected .svc-check { opacity: 1; }

/* Coiffeur */
.coiffeur-select .field-label { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--noir); display: block; margin-bottom: 1rem; }
.coiffeur-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.coiffeur-option { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; padding: 0.8rem 1rem; background: var(--white); border: 2px solid var(--cream-2); border-radius: 8px; cursor: pointer; transition: all 0.25s; min-width: 90px; }
.coiffeur-option:hover, .coiffeur-option.active { border-color: var(--gold); }
.coiffeur-option.active { background: #fdf9f0; }
.coiffeur-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: var(--noir); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.1rem; }
.coiffeur-option span { font-size: 0.78rem; color: var(--text-mid); }

/* Calendar */
.calendar-creneaux { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 1.5rem; }
.calendar-wrap { background: var(--white); border-radius: 12px; padding: 1.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.cal-header span { font-family: var(--font-display); font-size: 1.1rem; color: var(--noir); }
.cal-nav { background: none; border: 1px solid var(--cream-2); width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 1rem; color: var(--text-mid); transition: all 0.2s; }
.cal-nav:hover { border-color: var(--gold); color: var(--gold); }
.cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; margin-bottom: 0.5rem; }
.cal-weekdays span { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mid); padding: 0.3rem; }
.cal-weekdays .closed { color: rgba(138,128,112,0.4); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 0.88rem; border-radius: 50%; cursor: default; transition: all 0.2s; }
.cal-day.available { cursor: pointer; color: var(--noir); }
.cal-day.available:hover { background: var(--cream-2); }
.cal-day.selected { background: var(--gold) !important; color: var(--noir) !important; font-weight: 500; }
.cal-day.past, .cal-day.cal-empty { color: rgba(138,128,112,0.3); }
.cal-day.closed { color: rgba(138,128,112,0.2); text-decoration: line-through; }

/* Créneaux */
.creneaux-wrap { background: var(--white); border-radius: 12px; padding: 1.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.06); display: flex; flex-direction: column; }
.creneaux-placeholder { flex: 1; display: flex; align-items: center; justify-content: center; color: var(--text-mid); font-size: 0.95rem; text-align: center; min-height: 200px; }
.creneaux-list h4 { font-family: var(--font-display); font-size: 1rem; color: var(--noir); margin-bottom: 1.2rem; text-transform: capitalize; }
.creneaux-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
.creneau-btn { padding: 0.55rem 0.4rem; border: 1px solid var(--cream-2); background: var(--white); border-radius: 6px; font-family: var(--font-body); font-size: 0.82rem; color: var(--noir); cursor: pointer; transition: all 0.2s; }
.creneau-btn:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
.creneau-btn.selected { background: var(--gold); border-color: var(--gold); color: var(--noir); font-weight: 500; }
.creneau-btn.taken { background: var(--cream-2); color: var(--text-mid); opacity: 0.5; cursor: not-allowed; text-decoration: line-through; }
.creneaux-loading { flex: 1; display: flex; align-items: center; justify-content: center; min-height: 200px; }
.spinner { width: 36px; height: 36px; border: 3px solid var(--cream-2); border-top-color: var(--gold); border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.no-slots { color: var(--text-mid); text-align: center; padding: 2rem; }
.hidden { display: none !important; }

/* Recap */
.booking-recap { background: var(--noir); border-radius: 8px; padding: 1.8rem; margin: 2rem 0 0; }
.booking-recap h4 { font-family: var(--font-display); color: var(--gold); font-size: 1rem; margin-bottom: 1.2rem; }
.recap-row { display: flex; justify-content: space-between; padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.9rem; }
.recap-row:last-child { border-bottom: none; }
.recap-row span { color: var(--text-light); }
.recap-row strong { color: var(--cream); }

/* Error alert */
.alert-error { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem 1.2rem; border-radius: 6px; margin-bottom: 1.5rem; font-size: 0.9rem; background: rgba(192,57,43,0.1); color: #e74c3c; border: 1px solid rgba(192,57,43,0.3); }
.alert-error svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }

/* Confirmation */
.confirmation-section { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 6rem 2rem; background: var(--cream); }
.confirmation-inner { text-align: center; max-width: 620px; }
.confirmation-icon { width: 80px; height: 80px; background: var(--gold); color: var(--noir); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 1.5rem; box-shadow: 0 0 0 12px rgba(201,168,76,0.15); }
.confirmation-inner h1 { margin-bottom: 1rem; }
.confirmation-details { background: var(--white); border-radius: 8px; padding: 1.8rem; margin: 2rem 0; text-align: left; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.conf-row { display: flex; justify-content: space-between; padding: 0.7rem 0; border-bottom: 1px solid var(--cream-2); font-size: 0.9rem; }
.conf-row:last-child { border-bottom: none; }
.conf-row span { color: var(--text-mid); }
.conf-row strong { color: var(--noir); text-align: right; max-width: 60%; }
.confirmation-text { color: var(--text-mid); margin-bottom: 2.5rem; }
.confirmation-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Nav link update */
@media (max-width: 768px) {
    .calendar-creneaux { grid-template-columns: 1fr; }
    .creneaux-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===========================
   BANNIÈRE COOKIES CNIL
   =========================== */

/* Bannière principale */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9999;
    background: var(--noir);
    border-top: 1px solid rgba(201,168,76,0.3);
    padding: 1.5rem 2rem;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.4);
    animation: slideUp 0.4s cubic-bezier(0.4,0,0.2,1);
}
@keyframes slideUp { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-banner--hidden { display: none !important; }

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 280px; }
.cookie-title {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 0.4rem;
}
.cookie-text p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
    line-height: 1.6;
}
.cookie-text strong { color: var(--gold-light); }
.cookie-link { color: var(--gold); font-size: 0.8rem; text-decoration: underline; }
.cookie-link:hover { color: var(--gold-light); }

/* Boutons bannière */
.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 0.65rem 1.4rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    white-space: nowrap;
}
.cookie-btn--accept {
    background: var(--gold);
    color: var(--noir);
}
.cookie-btn--accept:hover { background: var(--gold-light); }
.cookie-btn--refuse {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.8);
}
.cookie-btn--refuse:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }
.cookie-btn--custom {
    background: transparent;
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold);
}
.cookie-btn--custom:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }

/* Overlay */
.cookie-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    backdrop-filter: blur(3px);
}
.cookie-overlay.open { display: block; }

/* Panneau personnalisation */
.cookie-panel {
    display: none;
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10001;
    background: var(--noir-2);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 12px;
    padding: 2.5rem;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.cookie-panel.open { display: block; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translate(-50%,-48%); } to { opacity: 1; transform: translate(-50%,-50%); } }

.cookie-panel-close {
    position: absolute;
    top: 1rem; right: 1rem;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    cursor: pointer;
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.cookie-panel-close:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.cookie-panel h3 { font-family: var(--font-display); color: var(--gold); font-size: 1.3rem; margin-bottom: 0.75rem; }
.cookie-panel > p { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin-bottom: 1.8rem; }

/* Lignes de toggle */
.cookie-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    gap: 1rem;
}
.cookie-toggle-row:last-of-type { border-bottom: none; }
.cookie-toggle-info { flex: 1; }
.cookie-toggle-info strong { display: block; color: var(--cream); font-weight: 500; font-size: 0.9rem; margin-bottom: 0.2rem; }
.cookie-toggle-info span { font-size: 0.78rem; color: var(--text-light); }
.cookie-toggle--always {
    font-size: 0.72rem;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0.3rem 0.8rem;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 20px;
    flex-shrink: 0;
}

/* Switch toggle */
.cookie-switch { position: relative; display: inline-block; width: 46px; height: 26px; flex-shrink: 0; }
.cookie-switch input { opacity: 0; width: 0; height: 0; }
.cookie-switch-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 26px;
    transition: 0.3s;
}
.cookie-switch-slider:before {
    content: '';
    position: absolute;
    width: 20px; height: 20px;
    left: 3px; bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: 0.3s;
}
.cookie-switch input:checked + .cookie-switch-slider { background: var(--gold); }
.cookie-switch input:checked + .cookie-switch-slider:before { transform: translateX(20px); }

/* Actions panneau */
.cookie-panel-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
    justify-content: flex-end;
}

/* Bouton roue dentée permanent */
.cookie-settings-btn {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 9998;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--noir);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.cookie-settings-btn:hover { background: var(--gold); color: var(--noir); border-color: var(--gold); transform: rotate(30deg); }

/* Responsive */
@media (max-width: 768px) {
    .cookie-banner-inner { flex-direction: column; gap: 1.2rem; }
    .cookie-actions { width: 100%; justify-content: stretch; }
    .cookie-btn { flex: 1; text-align: center; }
    .cookie-panel { padding: 2rem 1.5rem; margin: 1rem; max-width: calc(100% - 2rem); top: auto; bottom: 0; left: 0; transform: none; border-radius: 12px 12px 0 0; }
    .cookie-panel.open { animation: slideUpPanel 0.3s ease; }
    @keyframes slideUpPanel { from { transform: translateY(100%); } to { transform: translateY(0); } }
}


/* ===========================
   OPENING SOON — STYLES
   =========================== */

/* Bandeau ouverture */
.opening-banner {
    transition: transform var(--transition), opacity var(--transition);
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1200;
    background: var(--noir);
    color: var(--cream);
    text-align: center;
    padding: 0.55rem 1rem;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.opening-banner strong { font-weight: 600; }
.opening-star { font-size: 0.7rem; opacity: 0.6; }
.opening-link {
    background: var(--noir);
    color: var(--gold);
    padding: 0.25rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    transition: var(--transition);
}
.opening-link:hover { background: var(--noir-3); }

/* Décalage géré en JavaScript pour une meilleure compatibilité mobile */

/* Compte à rebours */
.countdown-section {
    background: var(--cream-2);
    padding: 5rem 2rem;
    text-align: center;
}
.countdown-inner { max-width: 800px; margin: 0 auto; }
.countdown-inner .section-eyebrow { margin-bottom: 2rem; }
.countdown-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.countdown-item { text-align: center; padding: 0 1.5rem; }
.countdown-num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--noir);
    line-height: 1;
    margin-bottom: 0.4rem;
    min-width: 2ch;
}
.countdown-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-mid);
}
.countdown-sep {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--gold);
    opacity: 0.6;
    margin-bottom: 1.5rem;
    padding: 0 0.25rem;
}
.countdown-sub {
    margin-top: 2.5rem;
    color: var(--text-mid);
    font-size: 0.9rem;
}

/* Notice coming soon */
.coming-soon-notice {
    background: var(--noir);
    border-left: 4px solid var(--gold);
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.coming-soon-notice span { font-size: 1.2rem; }
.coming-soon-notice p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin: 0; flex: 1; }
.coming-soon-notice strong { color: var(--gold); }
.coming-soon-notice--light { background: var(--cream-2); }
.coming-soon-notice--light p { color: var(--text-mid); }

/* Pré-inscription avantages */
.preinscription {
    background: var(--cream);
    padding: 8rem 2rem;
}
.preinscription-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.preinscription-avantages { list-style: none; margin: 2rem 0 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.preinscription-avantages li { display: flex; align-items: center; gap: 0.8rem; font-size: 0.95rem; color: var(--texte); }
.avantage-icon { color: var(--gold); font-size: 0.8rem; flex-shrink: 0; }
.preinscription-image img { border-radius: 8px; width: 100%; height: 480px; object-fit: cover; }

/* Avantages contact */
.contact-avantages { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 0.5rem; }
.avantage-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.2rem;
    background: var(--white);
    border-radius: 8px;
    border-left: 3px solid var(--gold);
}
.avantage-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--gold);
    line-height: 1;
    flex-shrink: 0;
    min-width: 2ch;
}
.avantage-card strong { display: block; color: var(--noir); font-weight: 500; margin-bottom: 0.2rem; }
.avantage-card p { font-size: 0.85rem; margin: 0; }

/* Fondatrice block */
.founder-block {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}
.founder-img img { width: 100%; height: 500px; object-fit: cover; border-radius: 8px; }
.founder-content h2 { margin-bottom: 1.2rem; }
.founder-content p { margin-bottom: 1rem; }
.founder-content > p:last-of-type {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--gold);
    border-left: 3px solid var(--gold);
    padding-left: 1rem;
    margin: 1.5rem 0;
}

/* Team coming -->
.team-coming {
    background: var(--cream-2);
    border-radius: 12px;
    padding: 4rem;
    text-align: center;
    margin-top: 2rem;
}
.team-coming-icon { font-size: 2rem; color: var(--gold); display: block; margin-bottom: 1rem; }
.team-coming h3 { font-family: var(--font-display); color: var(--noir); font-size: 1.8rem; margin-bottom: 1rem; }
.team-coming p { color: var(--text-mid); margin-bottom: 0.8rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.team-coming .btn { margin-top: 1.5rem; }

/* Footer badge ouverture */
.footer-badge {
    display: inline-block;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    margin-bottom: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .opening-banner { font-size: 0.72rem; gap: 0.5rem; padding: 0.5rem; }
    .countdown-item { padding: 0 0.8rem; }
    .countdown-sep { display: none; }
    .preinscription-inner { grid-template-columns: 1fr; gap: 3rem; }
    .founder-block { grid-template-columns: 1fr; gap: 2rem; }
    .founder-img img { height: 320px; }
    .team-coming { padding: 2.5rem 1.5rem; }
}

/* ===========================
   MORGAN & VIRGINIE — Overrides
   Palette rose poudré · corail · bordeaux
   =========================== */

/* Logo étendu */
.logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem !important;
    letter-spacing: 0.03em;
}

/* Bandeau ouverture en bordeaux */
.opening-banner { color: var(--cream); }
.opening-link { background: var(--gold); color: var(--white) !important; }
.opening-link:hover { background: var(--gold-light); }

/* Stat numbers en bordeaux */
.stat-num { color: var(--gold-pale) !important; }
.stat-label { color: rgba(255,255,255,0.6) !important; }

/* Footer textes clairs */
.footer-brand p { color: rgba(255,255,255,0.65); }
.footer-links a { color: rgba(255,255,255,0.6); }
.footer-links a:hover { color: var(--gold-pale); }
.footer-contact p, .footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--gold-pale); }
.footer-hours p { color: rgba(255,255,255,0.5); }
.footer-bottom p { color: rgba(255,255,255,0.35); }
.footer-links h4, .footer-contact h4 { color: var(--gold-pale); }

/* Testimonials en light */
.testimonials { background: var(--cream-2) !important; }
.testimonials .section-title { color: var(--noir) !important; }
.testimonial--featured {
    background: var(--noir) !important;
    border-color: var(--noir) !important;
}
.testimonial--featured .testimonial-text { color: rgba(255,255,255,0.85) !important; }
.testimonial--featured .testimonial-author strong { color: var(--cream) !important; }
.testimonial--featured .testimonial-stars { color: var(--gold-light) !important; }
.testimonial--featured .author-avatar { background: var(--gold); color: var(--white); }

/* Countdown sur fond rose clair */
.countdown-section { background: var(--cream-2) !important; }
.countdown-sep { color: var(--gold) !important; }

/* Service card featured */
.service-card--featured { background: var(--noir) !important; }

/* Boutons adaptés */
.btn-dark { background: var(--noir); color: var(--cream); }
.btn-dark:hover { background: var(--noir-2); }
.btn-ghost { border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-ghost-light { border-color: rgba(255,255,255,0.5); color: var(--white); }

/* Navbar CTA */
.nav-links .nav-cta { background: var(--gold) !important; }
.nav-links .nav-cta:hover { background: var(--gold-light) !important; }

/* Admin dark panel */
.admin-layout { background: #3d1a10; }
.sidebar { background: #2d1008; border-color: rgba(192,120,120,0.2); }
.sidebar-logo { color: var(--gold-pale) !important; }
.nav-item:hover, .nav-item.active { background: rgba(192,120,120,0.15); color: var(--gold-light); }
.admin-main { background: #f5e8e8; }
.table-wrap { background: white; border-color: #f0dcdc; }
th { background: var(--noir) !important; color: var(--gold-pale) !important; }
.stat-card { background: white; border-color: #f0dcdc; }
.stat-card-num { color: var(--noir) !important; }

/* Page hero overlay ajusté */
.page-hero-content h1 { color: var(--white); }
.page-hero-content p { color: rgba(255,255,255,0.8); }

/* Section eyebrow */
.section-eyebrow { color: var(--gold) !important; }

/* Em italic corail */
em { color: var(--gold) !important; }

/* Brands sur fond clair */
.brands { background: var(--cream-2) !important; }
.brand-item { color: var(--noir) !important; border-color: rgba(92,45,32,0.2) !important; }
.brand-item:hover { background: rgba(92,45,32,0.06) !important; border-color: var(--noir) !important; }

/* Coming soon notice */
.coming-soon-notice { background: var(--cream-2) !important; border-color: var(--gold) !important; }
.coming-soon-notice p { color: var(--text-mid) !important; }

/* Preinscription */
.preinscription { background: var(--cream) !important; }

/* Avantage card */
.avantage-card { border-color: var(--gold); }
.avantage-num { color: var(--gold); }

/* Team coming */
.team-coming { background: var(--cream-2) !important; }
.team-coming-icon { color: var(--gold); }

/* Cookie banner */
.cookie-banner { background: var(--noir) !important; }

/* Scroll bar subtile */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== RESERVATION COMING SOON ===== */
.reservation-coming-section {
    padding: 6rem 0 3rem;
    background: linear-gradient(180deg, var(--cream) 0%, #fffafa 100%);
}

.reservation-coming-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 2rem;
    align-items: stretch;
}

.reservation-coming-main,
.reservation-coming-side {
    min-width: 0;
}

.reservation-coming-main {
    background: var(--white);
    border: 1px solid rgba(192, 120, 120, 0.14);
    border-radius: 18px;
    padding: 3rem;
    box-shadow: var(--shadow-soft);
}

.reservation-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: var(--gold-pale);
    color: var(--noir);
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.reservation-badge-icon {
    color: var(--gold);
    font-size: 0.95rem;
}

.reservation-intro {
    max-width: 720px;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.reservation-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.reservation-feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.reservation-feature-card {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.25rem 1.35rem;
    border: 1px solid rgba(192, 120, 120, 0.16);
    background: linear-gradient(180deg, var(--white) 0%, #fff8f8 100%);
    border-radius: 14px;
}

.reservation-feature-card h3 {
    font-size: 1.18rem;
    margin-bottom: 0.35rem;
    color: var(--noir);
}

.reservation-feature-num {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--noir);
    color: var(--gold-pale);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.planity-placeholder-card {
    height: 100%;
    background: var(--noir);
    color: var(--cream);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: var(--shadow-strong);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.planity-placeholder-card::before {
    content: "";
    position: absolute;
    inset: auto -20% 68% auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 220, 220, 0.18) 0%, rgba(240, 220, 220, 0) 68%);
    pointer-events: none;
}

.planity-placeholder-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.planity-chip,
.planity-status {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

.planity-chip {
    background: rgba(255,255,255,0.08);
    color: var(--cream);
    border: 1px solid rgba(255,255,255,0.08);
}

.planity-status {
    background: rgba(192, 120, 120, 0.16);
    color: var(--gold-pale);
    border: 1px solid rgba(240,220,220,0.16);
}

.planity-placeholder-body {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.planity-placeholder-window {
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, #fff7f7 100%);
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(0,0,0,0.18);
}

.planity-window-top {
    display: flex;
    gap: 0.45rem;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(92,45,32,0.08);
}

.planity-window-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(192,120,120,0.4);
}

.planity-window-content {
    padding: 1.4rem;
}

.planity-window-line {
    height: 12px;
    border-radius: 999px;
    background: rgba(192,120,120,0.14);
    margin-bottom: 0.8rem;
}

.planity-window-line--title {
    width: 62%;
    height: 16px;
    background: rgba(92,45,32,0.18);
    margin-bottom: 1.15rem;
}

.planity-window-slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    margin: 1.2rem 0;
}

.planity-window-slots span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 42px;
    border-radius: 10px;
    background: rgba(192,120,120,0.08);
    color: var(--noir);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
}

.planity-window-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 52px;
    border-radius: 12px;
    background: var(--gold);
    color: var(--noir);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.9rem 1rem;
}

.planity-placeholder-note {
    position: relative;
    z-index: 1;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.planity-placeholder-note strong {
    display: block;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-pale);
    margin-bottom: 0.4rem;
}

.planity-placeholder-note p {
    color: rgba(255,255,255,0.7);
}

.reservation-assurance-section {
    padding: 3rem 0 6rem;
    background: var(--cream);
}

.reservation-assurance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.reservation-assurance-item {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 12px 30px rgba(160,80,60,0.08);
    border: 1px solid rgba(192,120,120,0.12);
}

.reservation-assurance-item h3 {
    margin-bottom: 0.6rem;
    color: var(--noir);
}

.reservation-assurance-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-pale);
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

@media (max-width: 992px) {
    .reservation-coming-grid,
    .reservation-assurance-grid {
        grid-template-columns: 1fr;
    }

    .reservation-coming-main {
        padding: 2.2rem;
    }
}

@media (max-width: 640px) {
    .reservation-coming-section {
        padding-top: 4rem;
    }

    .reservation-coming-main,
    .planity-placeholder-card,
    .reservation-assurance-item {
        padding: 1.5rem;
    }

    .reservation-feature-card {
        grid-template-columns: 1fr;
    }

    .planity-placeholder-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .planity-window-slots {
        grid-template-columns: 1fr 1fr;
    }
}
