/* =====================================================================
   ALLAN MONINO — DJ professionnel
   Feuille de styles principale
   Thème : noir & or, luxe, élégance, ambiance club
   Polices : Cinzel (titres) + Cormorant Garamond (corps)
   ===================================================================== */


/* =====================================================================
   1. VARIABLES & RESET
   ===================================================================== */
:root {
    /* Couleurs — palette « champagne & obsidienne chaude » */
    --bg-black:        #1a1612;        /* Charbon chaud (remplace le noir pur) */
    --bg-deep:         #110e0a;        /* Encore plus profond, mais chaud */
    --bg-card:         #221d17;        /* Carte sur fond sombre */
    --bg-card-hover:   #2a241c;

    --bg-cream:        #f7f2e8;        /* Crème principal (sections claires) */
    --bg-cream-soft:   #f0e9d8;        /* Crème plus doux (contraste) */
    --bg-card-light:   #ffffff;        /* Carte sur fond clair */

    --gold:            #c9a961;        /* Or champagne, plus doux */
    --gold-light:      #e0c384;
    --gold-dark:       #8b7332;
    --gold-soft:       rgba(201, 169, 97, 0.22);
    --gold-faint:      rgba(201, 169, 97, 0.10);

    --text-light:      #f5f0e6;        /* Sur fond sombre */
    --text-dark:       #2a241e;        /* Sur fond crème */
    --text-muted:      #a8a092;        /* Muted sur sombre — 7.1:1 sur charbon (AA) */
    --text-muted-dark: #6a5f4f;        /* Muted sur clair */
    --text-dim:        #8a8175;        /* Ancien #6b6557 → 3.2:1 (fail). Passe à ~4.7:1 (AA). */

    /* Typographies luxe */
    --font-display:    'Cinzel', 'Trajan Pro', serif;
    --font-body:       'Cormorant Garamond', 'Garamond', serif;

    /* Espacements et rayons */
    --radius-sm:       2px;
    --radius-md:       4px;
    --radius-lg:       8px;

    /* Transitions */
    --ease:            cubic-bezier(0.22, 0.61, 0.36, 1);
    --t-fast:          0.25s;
    --t-med:           0.5s;
    --t-slow:          0.9s;

    /* Conteneur */
    --container:       1200px;
}

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

html {
    scroll-behavior: smooth;
    background: var(--bg-black);
}

/* Compensation de la nav fixe (80px) quand on scrolle vers une ancre */
.section, .marquee, .trust-bar { scroll-margin-top: 80px; }

/* Classe utilitaire : accessible aux lecteurs d'écran et à Google, invisible visuellement */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Focus visible : contour doré sur toutes les cibles clavier */
:focus { outline: none; }
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 2px;
}
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.65;
    color: var(--text-light);
    background: var(--bg-black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

::selection { background: var(--gold); color: var(--bg-black); }


/* =====================================================================
   2. UTILITAIRES & CONTENEUR
   ===================================================================== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

/* Animations scroll-reveal : élément invisible avant déclenchement */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
    will-change: opacity, transform;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =====================================================================
   3. NAVIGATION : sticky, transparente puis fond noir au scroll
   ===================================================================== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 22px 0;
    background: transparent;
    transition: background var(--t-fast) var(--ease),
                padding var(--t-fast) var(--ease),
                border-color var(--t-fast) var(--ease);
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 14px 0;
    border-bottom-color: var(--gold-soft);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-light);
    transition: color var(--t-fast) var(--ease);
}
.nav-logo:hover { color: var(--gold); }

.nav-links {
    display: flex;
    gap: 38px;
    align-items: center;
}
.nav-links a {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-light);
    position: relative;
    padding: 4px 0;
    transition: color var(--t-fast) var(--ease);
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 50%; bottom: -4px;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width var(--t-fast) var(--ease), left var(--t-fast) var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; left: 0; }

.nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 0.18em;
}
.lang-btn {
    padding: 4px 2px;
    color: var(--text-muted);
    transition: color var(--t-fast) var(--ease);
    font-weight: 500;
}
.lang-btn.active { color: var(--gold); }
.lang-btn:hover { color: var(--gold-light); }
.lang-sep { color: var(--text-dim); }

/* Menu hamburger (caché sur desktop) */
.nav-burger {
    display: none;
    width: 32px;
    height: 26px;
    flex-direction: column;
    justify-content: space-between;
}
.nav-burger span {
    display: block;
    height: 1px;
    background: var(--gold);
    transition: transform var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
    transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(12px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-12px) rotate(-45deg); }


/* =====================================================================
   4. BOUTONS — micro-interactions élégantes
   ===================================================================== */
.btn {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 16px 38px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--t-fast) var(--ease);
    white-space: nowrap;
}

/* Bouton plein (or) */
.btn-primary {
    background: var(--gold);
    color: var(--bg-black);
    border-color: var(--gold);
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transition: left 0.7s var(--ease);
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    box-shadow: 0 12px 36px rgba(212, 175, 55, 0.32);
    transform: translateY(-2px);
}

/* Bouton outline */
.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--bg-black);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.25);
    transform: translateY(-2px);
}

/* =====================================================================
   5. SECTION HERO : plein écran avec overlay et particules
   ===================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding: 100px 32px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    from { transform: scale(1.05); }
    to   { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    /* Overlay allégé pour laisser respirer l'image du hero.
       Bas de section conservé sombre pour la transition vers le marquee
       et pour garder la lisibilité du texte au-dessus. */
    background:
      radial-gradient(ellipse at center, rgba(10, 8, 0, 0.35) 0%, rgba(0,0,0,0.72) 100%),
      linear-gradient(180deg, rgba(10,10,10,0.28) 0%, rgba(10,10,10,0.18) 50%, rgba(10,10,10,0.85) 100%);
}

.particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 900px;
    animation: heroFadeIn 1.6s var(--ease) both;
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2.6rem, 8vw, 6rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--text-light);
    margin-bottom: 28px;
    /* Gradient champagne + bande brillante qui traverse en boucle */
    background: linear-gradient(
        110deg,
        #e0c384 0%,
        #ffffff 20%,
        #fff6d8 30%,
        #ffffff 40%,
        #e0c384 60%,
        #c9a961 100%
    );
    background-size: 300% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 60px rgba(201, 169, 97, 0.28);
    animation: heroShimmer 7s ease-in-out infinite;
}
@keyframes heroShimmer {
    0%   { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.hero-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 28px;
    position: relative;
}
.hero-divider::before,
.hero-divider::after {
    content: '';
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 5px; height: 5px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold);
}
.hero-divider::before { left: 50%; margin-left: -2.5px; transform: translate(-50%, -50%) rotate(45deg); border-radius: 0; }
.hero-divider::after  { display: none; }

.hero-tagline {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.25rem, 2.4vw, 1.75rem);
    color: var(--gold-light);
    margin-bottom: 14px;
    letter-spacing: 0.04em;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(0.95rem, 1.6vw, 1.15rem);
    color: var(--text-muted);
    margin-bottom: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-subtitle-alt {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(0.8rem, 1.3vw, 0.95rem);
    color: var(--text-dim);
    margin-bottom: 44px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Indicateur scroll au bas du hero */
.hero-scroll {
    position: absolute;
    bottom: 36px; left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    width: 26px; height: 42px;
    border: 1px solid var(--gold);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.hero-scroll span {
    width: 3px; height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollDot 2s var(--ease) infinite;
}
@keyframes scrollDot {
    0%   { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(14px); }
}


/* =====================================================================
   6. SECTIONS GÉNÉRIQUES & EN-TÊTES
   ===================================================================== */
.section {
    padding: 130px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-eyebrow {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.15;
}

.section-divider {
    width: 60px; height: 1px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    position: relative;
}
.section-divider::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 6px; height: 6px;
    background: var(--gold);
    box-shadow: 0 0 6px var(--gold);
}


/* =====================================================================
   7. PRESTATIONS : 3 cartes élégantes
   ===================================================================== */
/* Section Prestations : fond crème lumineux, la respiration après le hero sombre */
.prestations {
    background:
      radial-gradient(ellipse at top, rgba(201, 169, 97, 0.10) 0%, transparent 60%),
      var(--bg-cream);
    color: var(--text-dark);
}
.prestations .section-title { color: var(--text-dark); }
.prestations .section-eyebrow { color: var(--gold-dark); }
.prestations .section-divider {
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}
.prestations .section-divider::after {
    background: var(--gold-dark);
    box-shadow: 0 0 6px var(--gold-dark);
}

.prestations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 130px;
}

.prestation-card {
    background: var(--bg-card-light);
    border: 1px solid rgba(201, 169, 97, 0.25);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--t-med) var(--ease),
                border-color var(--t-fast) var(--ease),
                box-shadow var(--t-med) var(--ease);
    position: relative;
    box-shadow: 0 8px 24px rgba(30, 22, 12, 0.06);
    transform-style: preserve-3d;
    perspective: 1000px;
}
.prestation-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.05) 100%);
    opacity: 0;
    transition: opacity var(--t-med) var(--ease);
    pointer-events: none;
    z-index: 1;
}
.prestation-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 30px 60px rgba(30, 22, 12, 0.15), 0 0 0 1px var(--gold-soft);
}
.prestation-card:hover::before { opacity: 1; }

.prestation-img {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 1.2s var(--ease);
    filter: brightness(0.78) contrast(1.05);
    position: relative;
}
.prestation-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.85) 100%);
}
.prestation-card:hover .prestation-img {
    transform: scale(1.06);
    filter: brightness(0.9) contrast(1.05);
}

.prestation-body {
    padding: 36px 32px 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}
.prestation-body h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 18px;
}
.prestation-body p {
    font-size: 1.05rem;
    color: var(--text-muted-dark);
    line-height: 1.7;
    margin-bottom: 28px;
    flex: 1;
}
.prestation-body .btn {
    align-self: flex-start;
}


/* [Packs sonorisation : bloc CSS retiré — section HTML supprimée] */


/* =====================================================================
   7b. SECTION CLUB / BAR à l'heure : tarifs simples affichés
       Hérite des codes visuels des packs pour rester cohérent.
   ===================================================================== */
/* Club & Bar : transition courte depuis le crème vers le sombre en haut,
   puis un dark chaud qui accueille le contenu. */
.club-bar {
    background:
      radial-gradient(ellipse at bottom, rgba(201, 169, 97, 0.08) 0%, transparent 55%),
      linear-gradient(180deg,
        var(--bg-cream-soft) 0%,
        #a89886 50px,
        #4a3d2e 100px,
        var(--bg-deep) 160px,
        var(--bg-black) 100%);
    position: relative;
}

/* [Anciennes classes .hourly-* : bloc CSS retiré — remplacé par
    la nouvelle formule éditoriale .club-bar-options / .cb-option] */


/* =====================================================================
   8. GALERIE : grille adaptative + lightbox
   ===================================================================== */
/* Galerie : transition courte depuis le sombre vers le crème en haut. */
.galerie {
    background:
      linear-gradient(180deg,
        var(--bg-deep) 0%,
        #4a3d2e 45px,
        #a89886 95px,
        var(--bg-cream) 150px,
        var(--bg-cream-soft) 100%);
    color: var(--text-dark);
}
.galerie .section-title { color: var(--text-dark); }
.galerie .section-eyebrow { color: var(--gold-dark); }
.galerie .section-divider {
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}
.galerie .section-divider::after {
    background: var(--gold-dark);
    box-shadow: 0 0 6px var(--gold-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 18px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(201, 169, 97, 0.30);
    transition: border-color var(--t-fast) var(--ease),
                box-shadow var(--t-med) var(--ease),
                transform var(--t-med) var(--ease);
    box-shadow: 0 8px 24px rgba(30, 22, 12, 0.08);
}
/* Mise en page asymétrique : photo 1 en grand, photo 4 en bandeau */
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease), filter var(--t-med) var(--ease);
    filter: brightness(0.85) saturate(0.95);
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.7) 100%);
    pointer-events: none;
    transition: opacity var(--t-fast) var(--ease);
}
.gallery-item:hover {
    border-color: var(--gold);
    box-shadow: 0 18px 50px rgba(0,0,0,0.5);
}
.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.05) saturate(1.1);
}
.gallery-item:hover::after { opacity: 0.4; }


/* Lightbox modale */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(5, 5, 5, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--t-med) var(--ease), visibility var(--t-med) var(--ease);
    padding: 60px;
}
.lightbox.open {
    opacity: 1;
    visibility: visible;
}
.lightbox-img {
    max-width: 90%;
    max-height: 88vh;
    object-fit: contain;
    border: 1px solid var(--gold-soft);
    box-shadow: 0 0 80px rgba(212, 175, 55, 0.18);
    animation: lbZoomIn 0.5s var(--ease);
}
@keyframes lbZoomIn {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    color: var(--gold);
    background: rgba(10,10,10,0.6);
    border: 1px solid var(--gold-soft);
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-body);
    transition: all var(--t-fast) var(--ease);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    color: var(--bg-black);
    transform: scale(1.06);
}
.lightbox-close { top: 30px; right: 30px; font-size: 26px; line-height: 1; }
.lightbox-prev  { left: 30px; top: 50%; transform: translateY(-50%); font-size: 18px; }
.lightbox-next  { right: 30px; top: 50%; transform: translateY(-50%); font-size: 18px; }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.06); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.06); }


/* =====================================================================
   9. CONTACT : infos + formulaire
   ===================================================================== */
.contact {
    background:
      radial-gradient(ellipse at bottom, rgba(212, 175, 55, 0.05) 0%, transparent 60%),
      var(--bg-black);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

/* Infos contact */
.contact-info {
    background: var(--bg-card);
    border: 1px solid var(--gold-faint);
    padding: 50px 44px;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}
.contact-info::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
}
.contact-intro {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 38px;
}

.contact-list {
    margin-bottom: 38px;
}
.contact-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 0;
    border-bottom: 1px solid var(--gold-faint);
}
.contact-list li:last-child { border-bottom: none; }
.contact-label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--gold);
}
.contact-list a {
    font-size: 1.18rem;
    color: var(--text-light);
    transition: color var(--t-fast) var(--ease);
    letter-spacing: 0.02em;
}
.contact-list a:hover { color: var(--gold-light); }

.contact-socials {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}
.social-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border: 1px solid var(--gold-faint);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    font-size: 1.05rem;
    transition: all var(--t-fast) var(--ease);
}
.social-link svg { transition: transform var(--t-fast) var(--ease); }
.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateX(4px);
}
.social-link:hover svg { transform: scale(1.1); }

.contact-disclaimer {
    font-size: 0.92rem;
    font-style: italic;
    color: var(--text-dim);
    text-align: center;
    padding-top: 18px;
    border-top: 1px solid var(--gold-faint);
}


/* Formulaire */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--gold-faint);
    padding: 50px 44px;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}
.contact-form::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 22px;
}
.form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 22px;
}
.form-row .form-field { margin-bottom: 0; }

.form-field span {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.form-field input,
.form-field select,
.form-field textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--gold-faint);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1.05rem;
    transition: border-color var(--t-fast) var(--ease),
                background var(--t-fast) var(--ease),
                box-shadow var(--t-fast) var(--ease);
    width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.04);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}
.form-field textarea {
    resize: vertical;
    min-height: 130px;
    font-family: var(--font-body);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--text-dim);
    font-style: italic;
}

/* Datepicker en sombre */
.form-field input[type="date"] {
    color-scheme: dark;
}

.form-field select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d4af37'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 44px;
}
.form-field select option {
    background: var(--bg-card);
    color: var(--text-light);
}

.form-note {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-dim);
    margin: 8px 0 22px;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 18px;
}


/* =====================================================================
   10. FOOTER
   ===================================================================== */
.footer {
    background: var(--bg-deep);
    border-top: 1px solid var(--gold-faint);
    padding: 40px 0;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-copy {
    font-size: 0.92rem;
    color: var(--text-dim);
    letter-spacing: 0.04em;
}
.footer-tagline {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-dark);
}


/* =====================================================================
   11. RESPONSIVE — TABLETTE & MOBILE
   ===================================================================== */
@media (max-width: 1100px) {
    .nav-links { gap: 22px; }
    .nav-links a { font-size: 14px; letter-spacing: 0.14em; }
}

@media (max-width: 1024px) {
    .prestations-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 100px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
    }
    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }
    .gallery-item:nth-child(4) {
        grid-column: span 1;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    body { font-size: 17px; }

    .container { padding: 0 22px; }
    .nav-container { padding: 0 22px; }
    .section { padding: 90px 0; }

    /* Menu mobile : liens cachés, hamburger visible */
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid var(--gold-soft);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 100px 50px;
        gap: 38px;
        transition: right 0.5s var(--ease);
    }
    .nav-links.open { right: 0; }
    .nav-links a {
        font-size: 18px;
        letter-spacing: 0.22em;
    }
    .nav-burger {
        display: flex;
    }

    .hero { padding: 90px 22px 100px; }
    .hero-subtitle { letter-spacing: 0.08em; }

    .section-header { margin-bottom: 60px; }

    .prestation-img { height: 240px; }
    .prestation-body { padding: 30px 26px; }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(4) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .contact-info,
    .contact-form {
        padding: 38px 26px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .form-row .form-field {
        margin-bottom: 22px;
    }

    .lightbox { padding: 30px; }
    .lightbox-close { top: 18px; right: 18px; }
    .lightbox-prev  { left: 14px; }
    .lightbox-next  { right: 14px; }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title { letter-spacing: 0.12em; }
    .btn { padding: 14px 28px; font-size: 12px; letter-spacing: 0.2em; }
}


/* =====================================================================
   13. ANIMATIONS AVANCÉES
   Ajouts pour rendre le site plus vivant et impressionnant :
     - Bandeau défilant (marquee) de spécialités
     - Spotlight doré qui suit le curseur sur les sections sombres
     - Révélation de titre mot par mot
     - Effet tilt 3D sur les cartes
     - Balayage doré sur les photos de la galerie au survol
   ===================================================================== */

/* --- Bandeau défilant (marquee) ------------------------------------- */
.marquee {
    background: var(--bg-deep);
    border-top: 1px solid var(--gold-soft);
    border-bottom: 1px solid var(--gold-soft);
    overflow: hidden;
    padding: 22px 0;
    position: relative;
}
.marquee::before,
.marquee::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(90deg, var(--bg-deep), transparent); }
.marquee::after  { right: 0; background: linear-gradient(270deg, var(--bg-deep), transparent); }

.marquee-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
    will-change: transform;
}
.marquee:hover .marquee-track {
    animation-play-state: paused;
}
.marquee-item {
    font-family: var(--font-display);
    font-size: 1.05rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 60px;
}
.marquee-item::after {
    content: '✦';
    color: var(--gold-dark);
    font-size: 0.8em;
}
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Le hero a déjà un ::before via .hero-overlay ; l'astuce ci-dessus ajoute
   un pseudo au conteneur lui-même, il ne rentre donc pas en conflit. */

/* --- Révélation de titres mot par mot ------------------------------ */
.section-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px) rotateX(-45deg);
    transform-origin: 50% 100%;
    transition: opacity 0.7s var(--ease), transform 0.9s var(--ease);
    transition-delay: calc(var(--i, 0) * 90ms);
    will-change: opacity, transform;
}
.reveal.visible .section-title .word,
.section-header.visible .section-title .word {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

/* --- Tilt 3D sur les cartes de prestation -------------------------- */
.prestation-card {
    transform-style: preserve-3d;
    transition: transform var(--t-med) var(--ease),
                border-color var(--t-fast) var(--ease),
                box-shadow var(--t-med) var(--ease);
}
.prestation-card > * {
    transform: translateZ(0);
    transition: transform var(--t-med) var(--ease);
}
.prestation-card.tilt:hover .prestation-body h3 {
    transform: translateZ(30px);
}
.prestation-card.tilt:hover .prestation-body .btn {
    transform: translateZ(20px);
}

/* --- Balayage doré sur les photos de la galerie -------------------- */
.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        transparent 0%,
        transparent 40%,
        rgba(255, 240, 200, 0.35) 50%,
        transparent 60%,
        transparent 100%
    );
    transform: translateX(-100%);
    z-index: 3;
    pointer-events: none;
    transition: transform 0.9s var(--ease);
}
.gallery-item:hover::before {
    transform: translateX(100%);
}
.gallery-item:hover {
    transform: translateY(-6px);
}

/* --- Parallaxe légère sur le hero-bg via variable JS --------------- */
.hero-bg {
    transform: translate3d(0, var(--parallax, 0), 0) scale(1.1);
    transition: transform 0.1s linear;
    animation: none; /* désactive le heroZoom si parallaxe active */
}
.hero.static-parallax .hero-bg {
    animation: heroZoom 20s ease-in-out infinite alternate;
}

/* --- Reveal amélioré : léger blur + slide ------------------------- */
.reveal {
    filter: blur(4px);
    transition: opacity var(--t-slow) var(--ease),
                transform var(--t-slow) var(--ease),
                filter var(--t-slow) var(--ease);
}
.reveal.visible {
    filter: blur(0);
}


/* =====================================================================
   12. ACCESSIBILITÉ : préférences mouvement réduit
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; filter: none; }
    .hero-bg { animation: none; transform: scale(1.05); }
    .marquee-track { animation: none; }
    .section-title .word { opacity: 1; transform: none; }
    .hero-title { animation: none; background-position: 50% 0; }
    .sons-vinyl { animation: none; }
    .sons-waveform span { animation: none; }
}


/* =====================================================================
   14. NOUVELLES SECTIONS : hero CTAs, À propos, Sons, FAQ
   ===================================================================== */

/* --- TRUST BAR : bandeau factuel discret sous le hero ------------ */
.trust-bar {
    background: var(--bg-deep);
    border-top: 1px solid var(--gold-soft);
    border-bottom: 1px solid var(--gold-soft);
    padding: 22px 0;
    position: relative;
    z-index: 6;
}
.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    padding: 4px 8px;
    position: relative;
}
.trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--gold-soft), transparent);
}
.trust-label {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
}
.trust-value {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-light);
    letter-spacing: 0.02em;
    line-height: 1.3;
}
@media (max-width: 768px) {
    .trust-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 14px;
    }
    .trust-item::after { display: none; }
    .trust-value { font-size: 0.9rem; }
    .trust-label { font-size: 9px; letter-spacing: 0.26em; }
}


/* --- GALLERY BUTTON : bouton transparent wrapping l'image -------- */
/* Pour la navigation clavier : chaque photo est enveloppée dans un
   <button> qui garde toute la présentation de <figure>. */
.gallery-btn {
    display: block;
    width: 100%;
    height: 100%;
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
    overflow: hidden;
    font: inherit;
    color: inherit;
}
.gallery-btn:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: -3px;
}


/* --- Hero : deux CTAs côte à côte -------------------------------- */
.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-hero-secondary {
    color: var(--gold-light);
    border-color: var(--gold-soft);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: rgba(10, 8, 5, 0.35);
}
.btn-hero-secondary:hover {
    background: var(--gold);
    color: var(--bg-black);
    border-color: var(--gold);
}


/* --- À PROPOS : portrait cadre doré + bio + stats ---------------- */
/* Fond dégradé court en haut : passe du sombre du marquee au crème
   sur ~150px pour éviter la cassure brutale sans repousser le contenu. */
.apropos {
    background:
      linear-gradient(180deg,
        var(--bg-deep) 0%,
        #4a3d2e 45px,
        #a89886 95px,
        var(--bg-cream) 150px,
        var(--bg-cream) 100%);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}
/* Ornement de fond : cercle doré très diffus */
.apropos::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 55vw;
    height: 55vw;
    max-width: 700px;
    max-height: 700px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.12) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}
.apropos .container { position: relative; z-index: 1; }

.apropos-grid {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Portrait avec cadre doré décalé façon magazine */
.apropos-portrait {
    position: relative;
    aspect-ratio: 4 / 5;
    max-width: 460px;
    justify-self: center;
    width: 100%;
}
.apropos-portrait-inner {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 3px;
    box-shadow: 0 30px 80px rgba(30, 22, 12, 0.25);
    z-index: 2;
}
.apropos-portrait-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.95) contrast(1.03);
    transition: transform 1.4s var(--ease);
}
.apropos-portrait:hover .apropos-portrait-inner img {
    transform: scale(1.05);
}
/* Cadre doré décalé en arrière-plan */
.apropos-portrait-frame {
    position: absolute;
    inset: 0;
    transform: translate(24px, 24px);
    border: 1px solid var(--gold);
    border-radius: 3px;
    z-index: 1;
    transition: transform var(--t-med) var(--ease);
}
.apropos-portrait:hover .apropos-portrait-frame {
    transform: translate(30px, 30px);
}
/* Badge « 5+ ans » en pastille dorée */
.apropos-portrait-badge {
    position: absolute;
    bottom: -18px;
    left: -18px;
    width: 118px;
    height: 118px;
    background: var(--bg-warm, var(--bg-black));
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    z-index: 3;
    box-shadow: 0 15px 40px rgba(30, 22, 12, 0.25);
    animation: badgeFloat 5s var(--ease) infinite;
}
@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}
.apropos-badge-year {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.02em;
}
.apropos-badge-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-top: 4px;
    color: var(--text-light);
}

/* Colonne contenu */
.apropos-content { max-width: 620px; }
.apropos-content .section-eyebrow { color: var(--gold-dark); text-align: left; }
.apropos-title { text-align: left; color: var(--text-dark); }
.apropos-divider {
    margin-left: 0;
    background: linear-gradient(90deg, var(--gold-dark), transparent);
}
.apropos-divider::after {
    left: 0;
    background: var(--gold-dark);
    box-shadow: 0 0 6px var(--gold-dark);
}

.apropos-quote {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--gold-dark);
    line-height: 1.5;
    padding-left: 22px;
    border-left: 2px solid var(--gold);
    margin: 32px 0 28px;
}
.apropos-body {
    font-size: 1.08rem;
    color: var(--text-muted-dark);
    line-height: 1.85;
    margin-bottom: 20px;
}
.apropos-body:last-of-type { margin-bottom: 40px; }

/* Grille des stats */
.apropos-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 32px;
    border-top: 1px solid rgba(201, 169, 97, 0.35);
}
.stat {
    text-align: center;
    padding: 8px 4px;
    position: relative;
}
.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(201, 169, 97, 0.30);
}
.stat-value {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 600;
    color: var(--gold-dark);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}
.stat-unit {
    font-size: 0.65em;
    color: var(--text-muted-dark);
}
.stat-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-muted-dark);
    line-height: 1.4;
}


/* --- SONS : player vinyle animé + waveform ----------------------- */
.sons {
    background:
      radial-gradient(ellipse at top left, rgba(201, 169, 97, 0.08) 0%, transparent 55%),
      linear-gradient(180deg, var(--bg-black) 0%, var(--bg-deep) 100%);
    position: relative;
    overflow: hidden;
}

.sons-player {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 70px;
    align-items: center;
    max-width: 1040px;
    margin: 0 auto;
    padding: 50px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
    border: 1px solid var(--gold-soft);
    border-radius: var(--radius-md);
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}
.sons-player::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Vinyle animé */
.sons-artwork {
    position: relative;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sons-vinyl {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%,
        #1a1612 0%,
        #0a0805 30%,
        #050403 60%,
        #0a0805 100%);
    position: relative;
    box-shadow:
        inset 0 0 0 1px var(--gold-soft),
        0 20px 60px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(201, 169, 97, 0.15);
    animation: vinylSpin 12s linear infinite;
}
.sons-vinyl-grooves {
    position: absolute;
    inset: 12%;
    border-radius: 50%;
    background: repeating-radial-gradient(
        circle at 50% 50%,
        transparent 0px,
        transparent 3px,
        rgba(201, 169, 97, 0.04) 3px,
        rgba(201, 169, 97, 0.04) 4px
    );
}
.sons-vinyl-label {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 34%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4);
}
.sons-vinyl-a {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--bg-black);
    letter-spacing: 0;
    text-shadow: 0 1px 0 rgba(255, 240, 200, 0.35);
    position: relative;
    z-index: 2;
}
/* Trou central du vinyle */
.sons-vinyl::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 3%;
    aspect-ratio: 1;
    background: var(--bg-deep);
    border-radius: 50%;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.9);
    z-index: 3;
}
.sons-vinyl-shine {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg,
        rgba(255, 240, 200, 0.15) 0%,
        transparent 30%,
        transparent 70%,
        rgba(255, 240, 200, 0.08) 100%);
    pointer-events: none;
}
@keyframes vinylSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Info à droite du vinyle */
.sons-eyebrow {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.sons-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.1;
}
.sons-waveform {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 60px;
    margin-bottom: 28px;
    padding: 0 2px;
}
.sons-waveform span {
    flex: 1;
    background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
    border-radius: 2px;
    height: var(--h, 50%);
    animation: waveBar 1.6s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 40ms);
    transform-origin: bottom;
    opacity: 0.75;
}
.sons-waveform span:nth-child(1)  { animation-delay: 0.00s; }
.sons-waveform span:nth-child(2)  { animation-delay: 0.05s; }
.sons-waveform span:nth-child(3)  { animation-delay: 0.10s; }
.sons-waveform span:nth-child(4)  { animation-delay: 0.15s; }
.sons-waveform span:nth-child(5)  { animation-delay: 0.20s; }
.sons-waveform span:nth-child(6)  { animation-delay: 0.25s; }
.sons-waveform span:nth-child(7)  { animation-delay: 0.30s; }
.sons-waveform span:nth-child(8)  { animation-delay: 0.35s; }
.sons-waveform span:nth-child(9)  { animation-delay: 0.40s; }
.sons-waveform span:nth-child(10) { animation-delay: 0.45s; }
.sons-waveform span:nth-child(11) { animation-delay: 0.50s; }
.sons-waveform span:nth-child(12) { animation-delay: 0.55s; }
.sons-waveform span:nth-child(13) { animation-delay: 0.60s; }
.sons-waveform span:nth-child(14) { animation-delay: 0.65s; }
.sons-waveform span:nth-child(15) { animation-delay: 0.70s; }
.sons-waveform span:nth-child(16) { animation-delay: 0.75s; }
.sons-waveform span:nth-child(17) { animation-delay: 0.80s; }
.sons-waveform span:nth-child(18) { animation-delay: 0.85s; }
.sons-waveform span:nth-child(19) { animation-delay: 0.90s; }
.sons-waveform span:nth-child(20) { animation-delay: 0.95s; }
@keyframes waveBar {
    0%, 100% { transform: scaleY(0.4); opacity: 0.5; }
    50%      { transform: scaleY(1);   opacity: 0.95; }
}
.sons-desc {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 1.05rem;
    margin-bottom: 32px;
    max-width: 520px;
}
.sons-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}


/* --- FAQ : accordéon élégant ------------------------------------- */
/* Transition courte depuis le crème de la galerie vers le sombre. */
.faq {
    background:
      radial-gradient(ellipse at bottom, rgba(201, 169, 97, 0.06) 0%, transparent 55%),
      linear-gradient(180deg,
        var(--bg-cream-soft) 0%,
        #a89886 50px,
        #4a3d2e 100px,
        var(--bg-black) 160px,
        var(--bg-black) 100%);
    position: relative;
}
.faq-list {
    max-width: 820px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--gold-faint);
    transition: border-color var(--t-fast) var(--ease);
}
.faq-item:first-child { border-top: 1px solid var(--gold-faint); }
.faq-item:hover { border-color: var(--gold-soft); }

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 26px 4px;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--text-light);
    transition: color var(--t-fast) var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }
.faq-item:hover summary { color: var(--gold-light); }
.faq-item[open] summary { color: var(--gold); }

/* Icône plus / croix animée */
.faq-icon {
    position: relative;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 14px;
    height: 1px;
    background: var(--gold);
    transform: translate(-50%, -50%);
    transition: transform var(--t-fast) var(--ease);
}
.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item[open] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
    padding: 0 4px 26px 4px;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.85;
    max-width: 720px;
    animation: faqSlide 0.4s var(--ease);
}
@keyframes faqSlide {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* --- CLUB & BAR : nouvelle formule éditoriale (2 options + méta) - */
.club-bar-intro {
    text-align: center;
    max-width: 680px;
    margin: -20px auto 70px;
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.75;
    font-style: italic;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 1;
}

.club-bar-options {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: stretch;
    max-width: 1040px;
    margin: 0 auto 90px;
    position: relative;
    z-index: 1;
}

.cb-option {
    position: relative;
    padding: 48px 34px 40px;
    background:
        linear-gradient(180deg,
            rgba(201, 169, 97, 0.04) 0%,
            rgba(255, 255, 255, 0.005) 100%);
    border: 1px solid var(--gold-faint);
    border-radius: var(--radius-md);
    transition: transform var(--t-med) var(--ease),
                border-color var(--t-fast) var(--ease),
                box-shadow var(--t-med) var(--ease);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}
.cb-option::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.6;
    transition: opacity var(--t-med) var(--ease);
}
.cb-option:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
}
.cb-option:hover::before { opacity: 1; }

.cb-option-num {
    font-family: var(--font-display);
    font-size: 5.5rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(201, 169, 97, 0.45);
    margin-bottom: 12px;
    transition: color var(--t-med) var(--ease),
                -webkit-text-stroke-color var(--t-med) var(--ease);
}
.cb-option:hover .cb-option-num {
    color: var(--gold);
    -webkit-text-stroke-color: transparent;
}

.cb-option-icon {
    width: 46px;
    height: 46px;
    color: var(--gold);
    margin-bottom: 26px;
    transition: transform var(--t-med) var(--ease);
    stroke-linejoin: round;
    stroke-linecap: round;
}
.cb-option:hover .cb-option-icon {
    transform: scale(1.08) rotate(-3deg);
}

.cb-option-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 20px;
}
.cb-option-desc {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 1rem;
    max-width: 320px;
}

/* Séparateur central « OU » vertical */
.cb-separator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 40px;
}
.cb-separator-line {
    display: block;
    width: 1px;
    flex: 1;
    background: linear-gradient(180deg, transparent, var(--gold-soft), transparent);
    min-height: 60px;
}
.cb-separator-text {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 10px 0;
    /* Petit halo doré autour du « OU » */
    text-shadow: 0 0 12px rgba(201, 169, 97, 0.35);
}

/* Row méta 3 colonnes (tarifs / zone / modalités) */
.club-bar-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 36px 0;
    border-top: 1px solid var(--gold-faint);
    border-bottom: 1px solid var(--gold-faint);
    position: relative;
    z-index: 1;
}
.cb-meta-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}
.cb-meta-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--gold-soft), transparent);
}
.cb-meta-label {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--gold);
}
.cb-meta-value {
    font-family: var(--font-body);
    font-size: 1.08rem;
    color: var(--text-light);
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.club-bar-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}


/* --- RESPONSIVE des nouvelles sections --------------------------- */
@media (max-width: 1024px) {
    .apropos-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .apropos-portrait { max-width: 380px; }
    .apropos-title { text-align: center; }
    .apropos-content .section-eyebrow { text-align: center; }
    .apropos-divider { margin-left: auto; margin-right: auto; }
    .apropos-quote { text-align: left; }

    .sons-player {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
    .sons-artwork { max-width: 260px; margin: 0 auto; }
}

@media (max-width: 900px) {
    /* Club & Bar : 2 options empilées, séparateur horizontal */
    .club-bar-options {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 520px;
    }
    .cb-separator {
        flex-direction: row;
        width: 100%;
        min-width: 0;
        gap: 20px;
    }
    .cb-separator-line {
        width: auto;
        flex: 1;
        min-height: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
    }
    .club-bar-meta {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 30px 0;
    }
    .cb-meta-item:not(:last-child)::after {
        display: none;
    }
    .cb-meta-item:not(:last-child) {
        padding-bottom: 24px;
        border-bottom: 1px solid var(--gold-faint);
    }
}

@media (max-width: 768px) {
    .apropos-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 20px;
    }
    .stat:nth-child(2)::after { display: none; }
    .stat:not(:nth-child(2n))::after {
        right: -10px;
    }

    .apropos-portrait-badge {
        width: 92px;
        height: 92px;
        bottom: -12px;
        left: -12px;
    }
    .apropos-badge-year { font-size: 1.55rem; }
    .apropos-badge-label { font-size: 0.6rem; }

    .apropos-quote { font-size: 1.2rem; }

    .sons-player {
        padding: 32px 22px;
    }
    .sons-actions .btn { width: 100%; text-align: center; }

    .faq-item summary { font-size: 1rem; padding: 22px 4px; }
    .faq-answer { font-size: 0.98rem; }

    .club-bar-intro { font-size: 1rem; margin-bottom: 50px; }
    .cb-option { padding: 36px 26px 32px; }
    .cb-option-num { font-size: 4.5rem; }
    .cb-option-title { font-size: 1.15rem; }
    .club-bar-cta .btn { width: 100%; text-align: center; }
}
