/* ============================================================
   SONOESEO — style.css
   Thème : noir profond · rétro-éclairage doré · texte or/blanc
   ============================================================ */

/* ── Variables globales ─────────────────────────────────────── */
:root {
    /* Fonds */
    /* --bg:           #090909;
    --bg2:          #0f0f0f;
    --bg3:          #141414; */


    --bg: #000000;
    --bg2: #000000;
    --bg3: #000000;

    --white: #f3f3f3;

    /* Thème or */
    /* --gold: rgba(255, 224, 150, 0.82); */
    --gold: #666666;
    /* texte au repos          */
    /* --gold-bright: #ffe299; */
    --gold-bright: var(--white);
    /* titres / accents forts  */
    --gold-dim: #8c8c8c;
    /* sous-titres, placeholders */
    --gold-hover: #f3f3f3;
    /* texte survolé / actif   */

    /* Bordures & lueurs */
    --border: #666666;
    /* bord standard           */
    --border-hi: #666666;
    /* bord hover              */
    --glow: #666666;
    /* halo extérieur          */
    --glow-sm: #666666;
    /* halo subtil             */
    --shadow: rgba(0, 0, 0, 0.70);

    /* Cards */
    --card: rgba(80, 80, 80, 0.03);
    --card-hover: rgba(173, 173, 173, 0.055);

    /* Typo */  
    --font-head: 'Poppins Semibold', sans-serif;
    --font-body: 'Poppins Regular', sans-serif;
    --font-logo: 'Orbitron', monospace;
    --text-color: var(var(--white));

    /* Misc */
    --radius: 14px;
    --radius-sm: 9px;
    --nav-h: 64px;

    /* Navbar (réutilisé dans footer etc.) */
    --nav-gold: var(--gold);
    --nav-gold-hover: var(--gold-hover);
    --nav-bg: #000000;
    --nav-dd-bg: #000000;
    --nav-glow: #666666; /*var(--glow);*/
    --nav-border: var(--border);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a {
    /* color: inherit; */
    text-decoration: none !important;
    /* all: unset; */
    text-decoration-line: none;
    /* transition: color .15s, opacity .15s; */
}

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

img {
    max-width: 100%;
    display: block;
}


/* ══════════════════════════════════════════════════════════════
   NAVBAR — flottante, halo doré, logo débordant
   ══════════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 14px;
    left: 50px;
    right: 50px;
    z-index: 1000;
    height: var(--nav-h);
    background: var(--nav-bg);
    border-radius: 18px;
    /* border: 1px solid var(--nav-border); */
    box-shadow:
        /* 0 0 0 1px rgba(255, 200, 80, .10) inset, */
        0 0 28px var(--nav-glow);
        /* 0 0 60px rgba(255, 190, 60, .07); */
        /* 0 12px 48px rgba(0, 0, 0, .70); */
    overflow: visible;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: box-shadow .3s;
}

.navbar.scrolled {
    box-shadow:
        0 0 0 1px rgba(255, 200, 80, .14) inset,
        0 0 36px var(--nav-glow),
        0 0 80px rgba(255, 190, 60, .09),
        0 16px 56px rgba(0, 0, 0, .82);
}

.nav-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    overflow: visible;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.nav-right {
    justify-content: flex-end;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--nav-gold);
    white-space: nowrap;
    padding: 7px 11px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    letter-spacing: .01em;
    transition: color .15s, background .15s;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--nav-gold-hover);
    background: rgba(255, 255, 255, .06);
    opacity: 1;
}

.nav-link.active {
    color: var(--nav-gold-hover);
    font-weight: 600;
}

/* Logo central débordant */
.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 28px;
    z-index: 2;
    transition: transform .3s;
    border: none;
}

.nav-logo img {
    /* width: 56px; height: 56px; */
    /* filter: drop-shadow(0 0 10px rgba(255,220,120,.35)); */
    background-color: var(--nav-bg);
    border-radius: 100px;
    margin: 5px;
    padding: 5px;
    border: none !important;
}

.nav-logo:hover {
    transform: scale(1.07);
    opacity: 1;
}

/* Chevron */
.nav-dd-trigger {
    gap: 5px;
}

.dd-chevron {
    flex-shrink: 0;
    opacity: .7;
    transition: transform .25s cubic-bezier(.4, 0, .2, 1);
}

.nav-dropdown.dd-open .dd-chevron {
    transform: rotate(180deg);
}

.nav-dropdown.dd-open>.nav-dd-trigger {
    color: var(--nav-gold-hover);
    background: rgba(255, 255, 255, .07);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: var(--nav-dd-bg);
    border: 1px solid rgba(255, 210, 100, .14);
    border-radius: 16px;
    padding: 10px;
    min-width: 360px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px) scale(.985);
    transform-origin: top left;
    transition: opacity .2s cubic-bezier(.4, 0, .2, 1), transform .2s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 0 24px rgba(255, 190, 60, .10), 0 16px 48px rgba(0, 0, 0, .65), 0 0 0 1px rgba(255, 255, 255, .04) inset;
    z-index: 100;
}

.nav-dropdown-right .dropdown-panel {
    left: auto;
    right: 0;
    transform-origin: top right;
}

.nav-dropdown.dd-open .dropdown-panel {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0) scale(1);
}

.dp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.dp-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s;
}

.dp-item:hover {
    background: rgba(255, 255, 255, .07);
    opacity: 1;
}

.dp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 210, 100, .12);
    border-radius: 8px;
    flex-shrink: 0;
    color: var(--white);
    margin-top: 1px;
    transition: background .15s, color .15s;
}

.dp-item:hover .dp-icon {
    background: rgba(255, 255, 255, .11);
    color: var(--gold-hover);
}

.dp-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dp-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.2;
    transition: color .15s;
}

.dp-sub {
    font-size: 12px;
    color: rgba(255, 224, 150, .38);
    line-height: 1.3;
}

.dp-item:hover .dp-label {
    color: var(--gold-hover);
}

.dp-item:hover .dp-sub {
    color: rgba(255, 255, 255, .45);
}

/* Socials */
.nav-socials {
    display: flex;
    gap: 8px;
    margin-left: 8px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 7px;
    color: var(--nav-gold);
    transition: color .15s, background .15s;
}

.social-icon svg {
    fill: currentColor;
}

.social-icon:hover {
    color: var(--gold-hover);
    background: rgba(255, 255, 255, .08);
    opacity: 1;
}

/* Burger */
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-burger span {
    width: 24px;
    height: 2px;
    background: var(--nav-gold);
    display: block;
    transition: all .3s;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: calc(14px + var(--nav-h) + 8px);
    left: 20px;
    right: 20px;
    background: var(--nav-bg);
    border: 1px solid var(--nav-border);
    border-radius: 16px;
    padding: 12px 20px 20px;
    box-shadow: 0 0 28px var(--nav-glow), 0 12px 40px rgba(0, 0, 0, .7);
    z-index: 999;
    max-height: 70vh;
    overflow-y: auto;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-size: 15px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 210, 100, .08);
    color: var(--nav-gold);
    transition: color .15s;
}

.mobile-menu a:hover {
    color: var(--gold-hover);
    opacity: 1;
}

.mob-section {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 210, 100, .3);
    padding: 14px 0 4px;
}

.mobile-menu .mob-sub {
    padding: 9px 0 9px 12px;
    font-size: 14px;
    color: rgba(255, 224, 150, .6);
    border-bottom: 1px solid rgba(255, 210, 100, .05);
}

#contact-btn {
    background-color: var(--nav-bg);
    border-radius: 20px;
    filter: drop-shadow(0 0 10px rgba(255,220,120,.35));
    /* border-color: var(--gold); */
    padding-left: 20px;
    text-decoration: none;
}


/* ══════════════════════════════════════════════════════════════
   HERO BANNER
   ══════════════════════════════════════════════════════════════ */
.hero-banner {
    margin-top: calc(var(--nav-h) + 14px);
    min-height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 52px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .78) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: .06em;
    text-shadow: 0 0 40px rgba(255, 200, 80, .30), 0 2px 20px rgba(0, 0, 0, .6);
}

/* Home hero full screen */
.home-hero {
    margin-top: calc(var(--nav-h) + 14px);
    min-height: calc(100vh - var(--nav-h) - 14px);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .35) 0%, rgba(0, 0, 0, .65) 70%, var(--bg) 100%);
}

.home-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    animation: fadeUp .8s ease both;
    width: 100%;
    height: 100%;
}

.home-logo-big {
    /* width: 200rem; */
    margin: 0 auto 24px;
    display: block;
    width: 100%;
    height: 100%;
}

.home-logo-big img {
    margin: auto;
    max-height: 100vw;
    max-width: 100%;
    width: 75vw;
    /* filter: drop-shadow(0 0 24px rgba(255, 210, 80, .45)); */
}

/* ══════════════════════════════════════════════════════════════
   LAYOUT UTILITAIRES
   ══════════════════════════════════════════════════════════════ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--bg2);
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 52px;
    color: var(--gold-bright);
    letter-spacing: .04em;
    text-shadow: 0 0 30px rgba(255, 200, 80, .18);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}


/* ══════════════════════════════════════════════════════════════
   CARDS GÉNÉRIQUES
   ══════════════════════════════════════════════════════════════ */
.card {
    background: var(--card);
    /* border: 1px solid var(--border); */
    border-radius: 10px;
    padding: 28px;
    transition: border-color .25s, background .25s, box-shadow .25s;
    /* box-shadow: 0 0 20px var(--glow-sm); */
    box-shadow:
        0 0 0 1px rgba(255, 200, 80, .10) inset,
        0 0 28px var(--nav-glow),
        0 0 60px rgba(255, 190, 60, .07),
        0 12px 48px rgba(0, 0, 0, .70);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.card:hover {
    border-color: var(--border-hi);
    background: var(--card-hover);
    box-shadow: 0 0 20px var(--glow-sm);
    transition: box-shadow .3s;
}

.card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    color: var(--gold-bright);
}

.card-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
}

.card-title {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gold-bright);
}

.card-text {
    color: var(--gold-dim);
    font-size: 14px;
    line-height: 1.75;
}


/* ══════════════════════════════════════════════════════════════
   BOUTONS
   ══════════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 28px;
    border: 1.5px solid var(--gold-bright);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .03em;
    cursor: pointer;
    background: transparent;
    color: var(--gold-bright);
    transition: background .2s, color .2s, box-shadow .2s;
}

.btn:hover {
    background: var(--gold-bright);
    color: #000;
    box-shadow: 0 0 18px rgba(255, 210, 80, .35);
    opacity: 1;
}

.btn-solid {
    background: var(--gold-bright);
    color: #000;
    box-shadow: 0 0 14px rgba(255, 210, 80, .25);
}

.btn-solid:hover {
    background: transparent;
    color: var(--gold-bright);
    box-shadow: 0 0 20px rgba(255, 210, 80, .40);
}


/* ══════════════════════════════════════════════════════════════
   PAGE HOME — sections
   ══════════════════════════════════════════════════════════════ */
.equipe-section {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 64px;
    align-items: center;
}

.equipe-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 0 40px rgba(255, 190, 60, .10);
}

.equipe-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.equipe-text h2 {
    font-family: var(--font-head);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--gold-bright);
}

.equipe-text p {
    color: var(--gold-dim);
    margin-bottom: 26px;
}

.artistes-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.artistes-section h2 {
    font-family: var(--font-head);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gold-bright);
}

.artistes-section p {
    color: var(--gold-dim);
    line-height: 1.8;
    margin-bottom: 14px;
}

.artists-stack {
    position: relative;
    height: 380px;
}

.artist-card-img {
    position: absolute;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--border);
    transition: transform .3s;
}

.artist-card-img:hover {
    transform: scale(1.03);
    z-index: 10;
}

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

.artist-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, .85);
    padding: 8px 12px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .06em;
    text-align: center;
    color: var(--gold-bright);
    border-top: 1px solid var(--border);
}


/* ══════════════════════════════════════════════════════════════
   ÉQUIPE
   ══════════════════════════════════════════════════════════════ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

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

.team-card-img {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    border: 1px solid var(--border);
    transition: border-color .3s, box-shadow .3s;
}

.team-card:hover .team-card-img {
    border-color: var(--border-hi);
    box-shadow: 0 0 20px var(--glow-sm);
}

.team-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.team-card:hover .team-card-img img {
    transform: scale(1.04);
}

.team-label {
    background: rgba(0, 0, 0, .85);
    border: 1px solid var(--border);
    border-top: none;
    padding: 8px 12px;
}

.team-label .name {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    color: var(--gold-dim);
    text-transform: uppercase;
}

.team-label .role {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--gold-bright);
}

.team-single {
    max-width: 240px;
    margin: 0 auto;
}


/* ══════════════════════════════════════════════════════════════
   PRÉSENTATION
   ══════════════════════════════════════════════════════════════ */
.pres-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 88px;
}

.pres-img {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 0 32px rgba(255, 190, 60, .08);
}

.pres-img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.pres-text h2 {
    font-family: var(--font-head);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold-bright);
}

.pres-text p {
    color: var(--gold-dim);
    margin-bottom: 16px;
    line-height: 1.8;
    font-size: 14px;
}


/* ══════════════════════════════════════════════════════════════
   CATALOGUE
   ══════════════════════════════════════════════════════════════ */
.catalogue-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 44px;
    align-items: start;
}

.catalogue-sidebar {
    position: sticky;
    top: calc(var(--nav-h) + 28px);
}

.search-box {
    position: relative;
    margin-bottom: 24px;
}

.search-box input {
    width: 100%;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 11px 16px 11px 40px;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.search-box input:focus {
    border-color: var(--border-hi);
    box-shadow: 0 0 12px var(--glow-sm);
}

.search-box input::placeholder {
    color: var(--gold-dim);
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-dim);
}

.cat-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 12px;
}

.cat-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--white);
    border: 1px solid transparent;
    transition: background .15s, border-color .15s;
}

.cat-item:hover {
    background: var(--card);
    border-color: var(--border);
}

.cat-item.active {
    background: var(--card);
    border-color: var(--border-hi);
    color: var(--gold-bright);
}

.cat-item input[type="checkbox"] {
    accent-color: var(--gold-bright);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .25s, transform .25s, box-shadow .25s;
}

.product-card:hover {
    border-color: var(--border-hi);
    transform: translateY(-3px);
    box-shadow: 0 0 20px var(--glow-sm);
}

.product-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg3);
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-info {
    padding: 14px;
}

.product-name {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gold-bright);
    line-height: 1.3;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
}

.product-tag {
    background: rgba(255, 210, 100, .07);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 3px 10px;
    font-size: 12px;
    color: var(--gold-dim);
}

.product-link {
    display: flex;
    align-items: center;
    color: var(--gold-dim);
    transition: color .2s;
}

.product-link:hover {
    color: var(--gold-bright);
    opacity: 1;
}


/* ══════════════════════════════════════════════════════════════
   PHOTOS — accordéon + galerie
   ══════════════════════════════════════════════════════════════ */
.accordion-item {
    border-bottom: 1px solid var(--border);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    cursor: pointer;
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
    transition: color .2s;
}

.accordion-header:hover {
    color: var(--gold-bright);
}

.accordion-arrow {
    transition: transform .3s;
    color: var(--gold-dim);
}

.accordion-item.open .accordion-arrow {
    transform: rotate(180deg);
    color: var(--gold-bright);
}

.accordion-item.open .accordion-header {
    color: var(--gold-bright);
}

.accordion-body {
    display: none;
    padding: 0 0 28px;
}

.accordion-item.open .accordion-body {
    display: block;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.photo-grid img {
    border-radius: 10px;
    aspect-ratio: 4/3;
    width: 100%;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: transform .3s, border-color .3s;
}

.photo-grid img:hover {
    transform: scale(1.02);
    border-color: var(--border-hi);
}


/* ══════════════════════════════════════════════════════════════
   VIDÉOS
   ══════════════════════════════════════════════════════════════ */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.video-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s;
}

.video-card:hover {
    border-color: var(--border-hi);
    box-shadow: 0 0 20px var(--glow-sm);
}

.video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg3);
    cursor: pointer;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.video-card:hover .video-thumb img {
    transform: scale(1.04);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    background: rgba(200, 0, 0, .9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s, background .2s;
    box-shadow: 0 0 18px rgba(0, 0, 0, .5);
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #ff0000;
}

.play-btn svg {
    margin-left: 4px;
}

.video-meta {
    padding: 16px;
}

.video-meta h3 {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gold-bright);
}

.video-meta p {
    color: var(--gold-dim);
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.video-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.video-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 210, 100, .06);
    border-radius: 100px;
    padding: 3px 10px;
    font-size: 12px;
    color: var(--gold-dim);
    border: 1px solid var(--border);
}


/* ══════════════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════════════ */
.contact-layout {
    max-width: 700px;
    margin: 0 auto;
}

.contact-info-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 40px;
    box-shadow: 0 0 24px var(--glow-sm);
}

.contact-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.contact-brand h2 {
    font-family: var(--font-logo);
    font-size: 20px;
    letter-spacing: .1em;
    color: var(--gold-bright);
}

.contact-brand p {
    color: var(--gold-dim);
    font-size: 13px;
    margin-top: 4px;
}

.contact-brand img {
    color: var(--gold-bright);
    width: 44px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 14px;
}

.contact-detail svg {
    color: var(--gold-dim);
    flex-shrink: 0;
}

.contact-form-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: 0 0 24px var(--glow-sm);
}

.form-title {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: var(--gold-bright);
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    color: var(--gold-dim);
    margin-bottom: 7px;
}

.form-control {
    width: 100%;
    background: rgba(255, 210, 100, .04);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.form-control:focus {
    border-color: var(--border-hi);
    box-shadow: 0 0 12px var(--glow-sm);
}

.form-control::placeholder {
    color: var(--gold-dim);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 0;
}

.radio-group input {
    accent-color: var(--gold-bright);
}

.form-submit {
    text-align: center;
    margin-top: 24px;
}

.recaptcha-placeholder {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--gold-dim);
}

.alert {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-success {
    background: rgba(34, 197, 94, .08);
    border: 1px solid rgba(34, 197, 94, .25);
    color: #4ade80;
}

.alert-error {
    background: rgba(239, 68, 68, .08);
    border: 1px solid rgba(239, 68, 68, .25);
    color: #f87171;
}


/* ══════════════════════════════════════════════════════════════
   PRESTATIONS — countdown + timeline
   ══════════════════════════════════════════════════════════════ */
.countdown-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 44px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 72px;
    box-shadow: 0 0 36px var(--glow-sm), 0 0 0 1px rgba(255, 210, 100, .06) inset;
}

.countdown-label {
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 10px;
}

.countdown-event {
    font-family: var(--font-logo);
    font-size: clamp(18px, 3vw, 26px);
    letter-spacing: .15em;
    color: var(--gold-bright);
    margin-bottom: 24px;
    text-shadow: 0 0 20px rgba(255, 200, 80, .25);
}

.countdown-timer {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.countdown-days {
    font-family: var(--font-head);
    font-size: clamp(60px, 8vw, 90px);
    font-weight: 700;
    line-height: 1;
    color: var(--gold-bright);
    text-shadow: 0 0 30px rgba(255, 200, 80, .30);
}

.countdown-days-label {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 500;
    color: var(--gold-dim);
    margin-right: 8px;
}

.countdown-time {
    font-family: var(--font-head);
    font-size: clamp(60px, 8vw, 90px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: .05em;
    color: var(--gold-bright);
    text-shadow: 0 0 30px rgba(255, 200, 80, .30);
}

.countdown-sep {
    font-size: 50px;
    font-weight: 300;
    color: var(--gold-dim);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--border) 10%, var(--border) 90%, transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 24px 1fr;
    align-items: center;
    gap: 0;
    margin-bottom: 28px;
}

.timeline-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 20px;
    transition: border-color .25s, box-shadow .25s;
}

.timeline-card:hover {
    border-color: var(--border-hi);
    box-shadow: 0 0 14px var(--glow-sm);
}

.timeline-card h3 {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--gold-bright);
}

.timeline-card p {
    font-size: 13px;
    color: var(--gold-dim);
    margin-top: 3px;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    background: var(--gold-bright);
    border-radius: 50%;
    border: 3px solid var(--bg);
    outline: 2px solid var(--border);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 8px rgba(255, 200, 80, .40);
}

.timeline-item.left .timeline-card {
    grid-column: 1;
    justify-self: end;
}

.timeline-item.left .timeline-dot {
    grid-column: 2;
}

.timeline-item.left .empty {
    grid-column: 3;
}

.timeline-item.right .empty {
    grid-column: 1;
}

.timeline-item.right .timeline-dot {
    grid-column: 2;
}

.timeline-item.right .timeline-card {
    grid-column: 3;
    justify-self: start;
    width: 100%;
}


/* ══════════════════════════════════════════════════════════════
   ARTISTES — mosaïque
   ══════════════════════════════════════════════════════════════ */
.artistes-mosaic {
    position: relative;
    height: 560px;
    max-width: 800px;
    margin: 0 auto;
}

.artiste-card {
    position: absolute;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: transform .3s, box-shadow .3s;
}

.artiste-card:hover {
    transform: scale(1.04) rotate(0deg) !important;
    z-index: 10;
    box-shadow: 0 0 28px rgba(255, 200, 80, .20);
    border-color: var(--border-hi);
}

.artiste-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.artiste-card .artiste-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, .85);
    border-top: 1px solid var(--border);
    padding: 10px 14px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    letter-spacing: .06em;
    color: var(--gold-bright);
}


/* ══════════════════════════════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════════════════════════════ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius);
    box-shadow: 0 0 40px rgba(255, 190, 60, .15);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    transition: color .2s;
}

.lightbox-close:hover {
    color: var(--gold-hover);
}


/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.site-footer {
    background: #060606;
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 40px rgba(255, 190, 60, .06);
    padding: 60px 0 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 52px;
    display: grid;
    grid-template-columns: 200px repeat(6, 1fr);
    gap: 32px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.footer-logo svg {
    filter: drop-shadow(0 0 8px rgba(255, 200, 80, .25));
}

.footer-brand-name {
    font-family: var(--font-logo);
    font-size: 13px;
    letter-spacing: .12em;
    color: var(--gold-dim);
}

.footer-col h4 {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--gold-bright);
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: var(--gold-dim);
    margin-bottom: 9px;
    line-height: 1.4;
    transition: color .15s;
}

.footer-col a:hover {
    color: var(--gold-bright);
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--gold-dim);
}

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

.footer-socials a {
    color: var(--gold-dim);
    transition: color .2s;
}

.footer-socials a:hover {
    color: var(--gold-bright);
    opacity: 1;
}


/* ══════════════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp .7s ease both;
}

.fade-up-1 {
    animation-delay: .10s;
}

.fade-up-2 {
    animation-delay: .20s;
}

.fade-up-3 {
    animation-delay: .30s;
}

.reveal {
    opacity: 0;
}

/* activated by JS IntersectionObserver */


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .footer-inner {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalogue-layout {
        grid-template-columns: 220px 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 10px;
        left: 12px;
        right: 12px;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .mobile-menu {
        left: 12px;
        right: 12px;
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .equipe-section,
    .artistes-section,
    .pres-block {
        grid-template-columns: 1fr;
    }

    .pres-block.reverse {
        direction: ltr;
    }

    .artistes-mosaic {
        height: 400px;
        transform: scale(0.85);
    }

    .catalogue-layout {
        grid-template-columns: 1fr;
    }

    .catalogue-sidebar {
        position: static;
    }

    .products-grid {
        grid-template-columns: 1fr 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 12px;
    }

    .timeline-item {
        grid-template-columns: 24px 1fr;
    }

    .timeline-item.left .empty,
    .timeline-item.right .empty {
        display: none;
    }

    .timeline-item.left .timeline-card,
    .timeline-item.right .timeline-card {
        grid-column: 2;
        justify-self: stretch;
    }

    .timeline-item .timeline-dot {
        grid-column: 1;
    }

    .form-grid-2 {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-catalogue-col {
        display: none;
    }

    .contact-form-card {
        padding: 24px;
    }

    .countdown-box {
        padding: 28px 20px;
    }
}

@media (max-width: 480px) {

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 28px;
    }
}

a {
    text-decoration: none;
}