/* ============================================================================
   B. Chegra Production - Feuille de styles principale
   Thème clair (fond blanc).
   Accent unique rouge #CF1E29 (variante claire #F5555E au-dessus du hero).
   Textes sombres. Seuls les éléments au-dessus d'une image (hero, affiches du
   slider, bandes-annonces, lecteur vidéo) conservent un texte clair.
   ============================================================================ */

/* ============================================================================
   DESIGN TOKENS
   ============================================================================ */

:root {
    /* Fonds (thème clair - fond blanc) */
    --c-bg:            #FFFFFF;
    --c-bg-alt:        #F6F2EA;   /* blanc cassé chaud : sections & cartes */
    --c-bg-card:       #FFFFFF;
    --c-bg-footer:     #F2ECE1;   /* pied de page : légère teinte pour le délimiter */

    /* Accent doré (conservé) */
    --c-gold:          #C9A24E;
    --c-gold-hover:    #B88E38;   /* survol : doré plus profond, lisible sur blanc */
    --c-gold-light:    #E7C877;   /* variante claire : réservée aux fonds sombres/images */
    --c-gold-pale:     #F0D48A;   /* idem : sur images uniquement */

    /* Rouge secondaire */
    --c-red:           #CF1E29;
    --c-red-hover:     #AE1720;

    /* Textes (sombres sur fond clair) */
    --c-text:          #26251F;
    --c-text-strong:   #16150F;
    --c-text-soft:     #46433B;
    --c-text-muted:    #7C766B;
    --c-text-dim:      #A29C90;
    --c-text-link:     #3A382F;
    --c-dark:          #17150F;   /* texte sur bouton doré */

    /* État */
    --c-success:       #2E7D46;

    /* Bordures (sombre translucide sur clair) */
    --c-border:        rgba(38, 37, 31, .12);
    --c-border-strong: rgba(38, 37, 31, .26);

    /* Typographie */
    --f-display:       'Playfair Display', Georgia, serif;
    --f-body:          'Manrope', system-ui, -apple-system, sans-serif;

    /* Layout */
    --wrap:            1340px;
    --gutter:          clamp(20px, 5vw, 64px);
    --section-y:       clamp(72px, 11vh, 140px);
}

/* ============================================================================
   RESET
   ============================================================================ */

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

html { scroll-behavior: smooth; }

body {
    background: var(--c-bg);
    color: var(--c-text);
    font-family: var(--f-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

::selection { background: var(--c-red); color: #fff; }

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

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

ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 700; letter-spacing: -.01em; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

/* Surtitre doré : filet + libellé espacé */
.surtitre {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 13px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--c-red);
}

.surtitre::before { content: ''; width: 42px; height: 1px; background: var(--c-red); }

/* Le même sur-titre sert de bandeau hero (au-dessus de l'image, clair) et
   d'intitulé de page interne (sur blanc) : sur blanc, on passe au rouge. */
/* Sur fond blanc (page interne), pas d'ombre : elle est réservée au hero. */
.page-head .hero__surtitre { color: var(--c-red); text-shadow: none; }
.page-head .hero__surtitre::before { background: var(--c-red); }

/* ============================================================================
   BOUTONS
   ============================================================================ */

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 19px 36px;
    border-radius: 2px;
    background: var(--c-red);
    color: #fff;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: .03em;
    transition: background .3s ease, transform .3s ease;
}

.btn-gold:hover { background: var(--c-red-hover); transform: translateY(-2px); }

.btn-gold--sm {
    padding: 18px 40px;
    font-size: 16px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* ============================================================================
   HEADER
   ============================================================================ */

.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px var(--gutter);
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background .4s ease, border-color .4s ease, padding .4s ease;
}

/* Opaque au scroll, ou d'emblée sur les pages sans hero (--solid) */
.site-header.is-scrolled,
.site-header--solid {
    background: rgba(255, 255, 255, .92);
    border-bottom-color: var(--c-border);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.site-header.is-scrolled { padding: 14px var(--gutter); }

/* --- Couleur du contenu du header selon l'état ---
   Transparent au-dessus du hero (accueil) : contenu clair.
   Solide (scroll / pages internes) : fond blanc, contenu sombre.
   L'ordre compte : le solide doit venir après le transparent (même spécificité). */
.site-header .logo,
.site-header .nav-toggle { color: #F6F2E9; }
.site-header .nav-links a { color: rgba(246, 242, 233, .82); }
.site-header .nav-links a:hover { color: #fff; }
.site-header .nav-links li.active a { color: #fff; border-bottom-color: var(--c-red); }
.site-header .pro-link,
.site-header .socials a { color: #F6F2E9; border-color: rgba(255, 255, 255, .3); }
/* Le logo est noir : inversé en blanc au-dessus du hero, noir sur fond blanc.
   (La règle « solide » plus bas doit rester après pour l'emporter.) */
.site-header .logo img { filter: brightness(0) invert(1); }

.site-header.is-scrolled .logo,        .site-header--solid .logo,
.site-header.is-scrolled .nav-toggle,  .site-header--solid .nav-toggle { color: var(--c-text); }
.site-header.is-scrolled .nav-links a, .site-header--solid .nav-links a { color: var(--c-text-soft); }
.site-header.is-scrolled .nav-links a:hover, .site-header--solid .nav-links a:hover { color: var(--c-text); }
.site-header.is-scrolled .nav-links li.active a,
.site-header--solid .nav-links li.active a { color: var(--c-text); border-bottom-color: var(--c-red); }
.site-header.is-scrolled .pro-link,    .site-header--solid .pro-link,
.site-header.is-scrolled .socials a,   .site-header--solid .socials a { color: var(--c-text); border-color: var(--c-border-strong); }
.site-header.is-scrolled .logo img,    .site-header--solid .logo img { filter: none; }

.logo { display: flex; align-items: center; gap: 6px; color: var(--c-text); }
.logo img { display: block; height: 42px; width: auto; }
.logo b { font-family: var(--f-display); font-weight: 700; font-size: 25px; letter-spacing: .02em; }
.logo span {
    font-size: 10px;
    letter-spacing: .34em;
    text-transform: uppercase;
    color: var(--c-red);
    transform: translateY(-2px);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(28px, 3vw, 52px);
    white-space: nowrap;
}

.nav-links a {
    padding-bottom: 4px;
    border-bottom: 1.5px solid transparent;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: .04em;
    color: rgba(236, 231, 221, .82);
    transition: color .3s ease;
}

.nav-links a:hover { color: var(--c-text); }

.nav-links li.active a {
    font-weight: 600;
    color: var(--c-text);
    border-bottom-color: var(--c-red);
}

/* Réseaux sociaux (header + footer) */
.socials { display: flex; align-items: center; gap: 10px; }

.socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border: 1px solid var(--c-border-strong);
    border-radius: 999px;
    color: var(--c-text);
    transition: border-color .3s ease, color .3s ease;
}

.socials a:hover { border-color: var(--c-red); color: var(--c-red); }

/* Actions header : lien Espace pro + réseaux sociaux */
.header-actions { display: flex; align-items: center; gap: 16px; }

.pro-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border: 1px solid var(--c-border-strong);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--c-text);
    transition: border-color .3s ease, color .3s ease, background .3s ease;
}

.pro-link svg { color: var(--c-red); transition: color .3s ease; }
.pro-link:hover,
.pro-link.is-active { border-color: var(--c-red); color: var(--c-red); background: rgba(207, 30, 41, .08); }
.pro-link:hover svg { color: var(--c-red); }

/* Burger (mobile) */
.nav-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 8px;
    color: var(--c-text);
    cursor: pointer;
}

/* ============================================================================
   HERO
   ============================================================================ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}

/* Trois voiles : diagonal, bas, haut */
.hero__veil,
.hero__veil-bottom,
.hero__veil-top { position: absolute; pointer-events: none; }

.hero__veil {
    inset: 0;
    background: linear-gradient(105deg, rgba(30,29,24,.62) 0%, rgba(30,29,24,.34) 38%, rgba(30,29,24,.06) 72%, rgba(30,29,24,.2) 100%);
}

.hero__veil-bottom {
    left: 0; right: 0; bottom: 0;
    height: 42%;
    background: linear-gradient(to top, rgba(38,37,31,.9) 0%, rgba(38,37,31,0) 100%);
}

.hero__veil-top {
    left: 0; right: 0; top: 0;
    height: 26%;
    background: linear-gradient(to bottom, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 45%, rgba(0,0,0,0) 100%);
}

.hero__inner { position: relative; z-index: 3; width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.hero__content { max-width: 680px; }

.hero__surtitre {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: .26em;
    text-transform: uppercase;
    /* Rouge plus clair + ombre : lisible au-dessus de l'image sombre du hero */
    color: #F5555E;
    text-shadow: 0 1px 12px rgba(0, 0, 0, .75);
}

.hero__surtitre::before { content: ''; width: 52px; height: 2px; background: #F5555E; }

.hero h1 {
    font-size: clamp(48px, 7.4vw, 104px);
    line-height: .98;
    color: #F8F4EB;   /* toujours au-dessus de l'image sombre du hero */
    text-shadow: 0 2px 40px rgba(0, 0, 0, .5);
}

/* Rouge plus clair + ombre marquée : « vibrer » se détache du fond sombre */
.hero h1 em { font-style: italic; color: #F5555E; text-shadow: 0 3px 22px rgba(0, 0, 0, .7); }

.hero__lead {
    max-width: 520px;
    margin-top: 28px;
    font-size: clamp(17px, 1.7vw, 21px);
    line-height: 1.6;
    color: rgba(248, 244, 235, .84);   /* clair : au-dessus de l'image */
}

.hero .btn-gold { margin-top: 38px; }

/* Animation d'entrée (jouée au chargement par le JS) */
[data-h] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .9s ease, transform .9s ease;
}

[data-h].is-in { opacity: 1; transform: translateY(0); }

.hero [data-h]:nth-child(1) { transition-delay: .15s; }
.hero [data-h]:nth-child(2) { transition-delay: .28s; }
.hero [data-h]:nth-child(3) { transition-delay: .42s; }
.hero [data-h]:nth-child(4) { transition-delay: .56s; }

/* Révélation au scroll */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s ease, transform .8s ease;
}

[data-reveal].is-in { opacity: 1; transform: translateY(0); }

/* ============================================================================
   SECTION SPECTACLES
   ============================================================================ */

.section-shows {
    max-width: var(--wrap);
    margin-inline: auto;
    padding: var(--section-y) var(--gutter);
}

.section-shows__head { margin-bottom: clamp(44px, 6vh, 72px); }

.section-shows__head h2 { font-size: clamp(36px, 5.2vw, 64px); line-height: 1; }

.grid-shows {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 2.4vw, 32px);
}

/* --- Carte spectacle --- */

.show-card {
    display: block; /* <a> est inline par défaut : sans ça, aspect-ratio est ignoré */
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border: 1px solid var(--c-border);
    border-radius: 3px;
    background: var(--c-bg-card);
    box-shadow: 0 18px 44px -26px rgba(0, 0, 0, .6);
}

.show-card__img,
.show-card__placeholder {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.16, .84, .44, 1), filter .6s ease;
}

.show-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(120% 100% at 50% 30%, #34322B 0%, #262520 60%, #201F1A 100%);
}

.show-card__placeholder span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--c-red);
}

.show-card__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(24,23,19,.9) 2%, rgba(24,23,19,.28) 46%, rgba(24,23,19,0) 72%);
    transition: background .5s ease;
}

.show-card__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 22px; }

.show-card__genre {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 10.5px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--c-red);
}

.show-card__title {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 26px;
    line-height: 1.08;
    letter-spacing: 0;
    color: #F6F2E9;   /* superposé à l'affiche : reste clair */
}

/* Bloc révélé au survol */
.show-card__more {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(8px);
    transition: max-height .5s ease, opacity .45s ease, transform .45s ease;
}

.show-card__more p { margin-top: 11px; font-size: 14.5px; line-height: 1.55; color: #D2CCC2; }

.show-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--c-red);
}

/* Survol (CSS pur - pas besoin de JS).
   :not(.show-card--static) : pas d'effet sur les vignettes sans fiche. */
.show-card:not(.show-card--static):hover .show-card__img,
.show-card:not(.show-card--static):hover .show-card__placeholder { transform: scale(1.07); filter: brightness(.72); }

.show-card:not(.show-card--static):hover .show-card__shade {
    background: linear-gradient(to top, rgba(24,23,19,.94) 8%, rgba(24,23,19,.55) 60%, rgba(24,23,19,.18) 100%);
}

.show-card:not(.show-card--static):hover .show-card__more { max-height: 200px; opacity: 1; transform: translateY(0); }

.section-shows__foot { display: flex; justify-content: center; margin-top: clamp(44px, 6vh, 72px); }

/* --- Slider de spectacles --- */

.slider { position: relative; }

.slider__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;                 /* Firefox */
    -ms-overflow-style: none;              /* IE/Edge */
    margin-inline: calc(var(--gutter) * -1);   /* les cartes peuvent affleurer les bords */
    padding-inline: var(--gutter);
}

.slider__viewport::-webkit-scrollbar { display: none; }

.slider__track {
    display: flex;
    gap: clamp(20px, 2.4vw, 32px);
}

/* Une carte du slider : largeur fixe -> le surplus défile */
.slide {
    flex: 0 0 clamp(260px, 30vw, 340px);
    scroll-snap-align: start;
}

/* Flèches de navigation */
.slider__arrow {
    position: absolute;
    top: calc((100% - 46px) / 2 - 20px);   /* centré sur la hauteur des cartes, hors points */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px; height: 46px;
    border: 1px solid var(--c-border-strong);
    border-radius: 999px;
    background: rgba(255, 255, 255, .9);
    color: var(--c-text);
    box-shadow: 0 6px 20px -8px rgba(0, 0, 0, .3);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    transition: background .3s ease, border-color .3s ease, color .3s ease, opacity .3s ease;
    z-index: 4;
}

.slider__arrow:hover { border-color: var(--c-red); color: var(--c-red); }
.slider__arrow--prev { left: -6px; }
.slider__arrow--next { right: -6px; }

/* Masquée quand on est en butée */
.slider__arrow[disabled] { opacity: 0; pointer-events: none; }

/* Masquée aussi quand tout tient sans défilement */
.slider--static .slider__arrow,
.slider--static .slider__dots { display: none; }

/* Points de progression */
.slider__dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 28px;
}

.slider__dots button {
    width: 8px; height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(38, 37, 31, .2);
    cursor: pointer;
    transition: background .3s ease, width .3s ease;
}

.slider__dots button.is-active { width: 22px; background: var(--c-red); }

/* ============================================================================
   FOOTER
   ============================================================================ */

.site-footer {
    border-top: 1px solid var(--c-border);
    background: var(--c-bg-footer);
    padding: clamp(56px, 8vh, 96px) var(--gutter) 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 46px 32px;
    max-width: var(--wrap);
    margin-inline: auto;
}

.footer-intro { max-width: 320px; }
.footer-intro .logo { display: inline-flex; margin-bottom: 20px; }
.footer-intro .logo img { height: 112px; }
.footer-intro p { font-size: 15px; line-height: 1.7; color: var(--c-text-muted); }

.footer-title {
    margin-bottom: 18px;
    font-family: var(--f-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--c-red);
}

.footer-list { display: flex; flex-direction: column; gap: 11px; font-size: 15px; }
.footer-list a { color: var(--c-text-link); transition: color .3s ease; }
.footer-list a:hover { color: var(--c-text); }
.footer-list li.muted { color: var(--c-text-muted); }

.site-footer .socials a { width: 38px; height: 38px; color: var(--c-text); border-color: var(--c-border-strong); }

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    max-width: var(--wrap);
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--c-border);
    font-size: 13px;
    color: var(--c-text-dim);
}

.footer-bottom nav { display: flex; gap: 20px; }
.footer-bottom a { color: var(--c-text-dim); transition: color .3s ease; }
.footer-bottom a:hover { color: var(--c-text); }

/* ============================================================================
   PAGES INTERNES (404, mentions…) - décalage sous le header fixe
   ============================================================================ */

.page-inner { padding: calc(var(--header-h, 90px) + var(--section-y)) var(--gutter) var(--section-y); }
.page-inner .wrap { padding-inline: 0; }

/* ============================================================================
   PAGE TOURNÉE
   ============================================================================ */

.page-head {
    max-width: var(--wrap);
    margin-inline: auto;
    padding: clamp(120px, 18vh, 180px) var(--gutter) clamp(48px, 7vh, 80px);
}

.page-head h1 { font-size: clamp(40px, 6.4vw, 84px); line-height: 1; }
.page-head h1 em { font-style: italic; color: var(--c-red); }

.page-head__lead {
    max-width: 560px;
    margin-top: 24px;
    font-size: clamp(16px, 1.6vw, 19px);
    line-height: 1.65;
    color: var(--c-text-soft);
}

.tour-list {
    display: flex;
    flex-direction: column;
    gap: clamp(72px, 10vh, 128px);
    max-width: var(--wrap);
    margin-inline: auto;
    padding: 0 var(--gutter) clamp(72px, 11vh, 140px);
}

/* Séparateur : filet dégradé + losange doré */
.tour-sep { display: flex; align-items: center; gap: 18px; }
.tour-sep span { flex: 1; height: 1px; background: linear-gradient(to right, transparent, rgba(207, 30, 41, .3) 50%, transparent); }
.tour-sep i { flex: none; width: 5px; height: 5px; background: var(--c-red); transform: rotate(45deg); }

/* --- Bloc spectacle (alterné) --- */

.show-block {
    display: grid;
    grid-template-columns: .85fr minmax(0, 1fr);
    gap: clamp(32px, 4vw, 64px);
    align-items: start;
}

.show-block--reverse { grid-template-columns: minmax(0, 1fr) .85fr; }
.show-block--reverse .show-media { order: 2; }
.show-block--reverse .show-info  { order: 1; }

.show-media { display: flex; flex-direction: column; gap: 18px; }

/* L'affiche : ratio 2/3, jamais rognée sur sa hauteur */
.show-poster {
    position: relative;
    overflow: hidden;
    width: 100%;   /* sans ça, en flex mobile (margin-inline:auto) le conteneur s'écrase */
    aspect-ratio: 2 / 3;
    border: 1px solid var(--c-border);
    border-radius: 3px;
    background: var(--c-bg-card);
    box-shadow: 0 18px 44px -26px rgba(0, 0, 0, .6);
}

.show-poster img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.show-poster__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(120% 100% at 50% 30%, #FBF8F2 0%, #F1EBDF 60%, #E8E1D2 100%);
}

.show-poster__placeholder span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--c-red);
}

.show-actions {
    display: flex;
    align-items: stretch;
    gap: 12px;
    margin-top: 22px;
}

/* Deux boutons côte à côte, largeur égale (les libellés peuvent tenir sur 2 lignes) */
.show-actions > * {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    text-align: center;
    padding-inline: 16px;
}

.btn-gold--xs { padding: 15px 28px; font-size: 14.5px; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    border: 1px solid var(--c-red);
    border-radius: 2px;
    color: var(--c-text);
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: .04em;
    transition: background .3s ease, color .3s ease, border-color .3s ease;
}

a.btn-outline:hover { background: var(--c-red); border-color: var(--c-red); color: #fff; }

/* URL pas encore fournie : aspect identique, simplement inactif */
.btn-outline--soon { cursor: default; }

/* --- Colonne infos --- */

.show-info__genre {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--c-red);
}

.show-info h2 { font-size: clamp(28px, 3.4vw, 44px); line-height: 1.05; }

.show-info__desc {
    max-width: 520px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--c-text-soft);
}

/* Note mise en avant : proche du titre pour attirer l'oeil */
.show-info__note {
    max-width: 520px;
    margin-top: 16px;
    font-family: var(--f-display);
    font-size: clamp(19px, 1.9vw, 24px);
    line-height: 1.3;
    color: var(--c-text-strong);
}

.show-info__note-annee {
    font-size: 1.18em;
    color: var(--c-red);
}

/* --- Dates --- */

.show-dates { margin-top: 28px; }

.show-dates__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }

.show-dates__head span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--c-red);
}

.show-dates__head i { flex: 1; height: 1px; background: var(--c-border); }

.show-dates__empty { padding: 8px 0; font-size: 14.5px; font-style: italic; color: var(--c-text-muted); }
.show-dates__empty a { color: var(--c-red); text-decoration: underline; }

.dates-scroll { max-height: 236px; overflow-y: auto; padding-right: 18px; }
.dates-scroll::-webkit-scrollbar { width: 5px; }
.dates-scroll::-webkit-scrollbar-thumb { background: rgba(207, 30, 41, .4); border-radius: 3px; }
.dates-scroll::-webkit-scrollbar-track { background: rgba(38, 37, 31, .06); }
.dates-scroll { scrollbar-width: thin; scrollbar-color: rgba(207, 30, 41, .4) rgba(38, 37, 31, .06); }

.dates-list li {
    display: grid;
    grid-template-columns: 104px 1fr auto;
    gap: 16px;
    align-items: baseline;
    padding: 13px 0;
    border-bottom: 1px solid var(--c-border);
}

.dates-list__day   { font-family: var(--f-display); font-size: 16px; color: var(--c-red); white-space: nowrap; }
.dates-list__city  { font-size: 15px; font-weight: 600; color: var(--c-text-strong); }
.dates-list__venue { font-size: 14px; color: var(--c-text-muted); text-align: right; }

/* --- Bande-annonce --- */

.show-trailer {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-top: 28px;
    overflow: hidden;
    border: 1px solid var(--c-border);
    border-radius: 3px;
    background: var(--c-bg-card);
    cursor: pointer;
}

.show-trailer img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.show-trailer__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,14,11,.72) 0%, rgba(15,14,11,.42) 45%, rgba(15,14,11,.58) 100%);
}

.show-trailer__play {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.show-trailer__play i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 999px;
    background: rgba(20, 19, 15, .35);
    color: #fff;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    transition: background .3s ease, transform .3s ease;
}

.show-trailer__play b {
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85);
    text-shadow: 0 1px 6px rgba(0, 0, 0, .6);
}

.show-trailer:hover .show-trailer__play i { background: var(--c-red); transform: scale(1.08); }

/* Lecteur vidéo (modale) */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--gutter);
    background: rgba(12, 11, 9, .92);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.video-modal video { width: 100%; max-width: 1100px; border-radius: 3px; box-shadow: var(--shadow-lg, 0 12px 40px rgba(0,0,0,.35)); }

.video-modal__close {
    position: absolute;
    top: 24px; right: 24px;
    width: 44px; height: 44px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 999px;
    background: transparent;
    color: #fff;
    font-size: 23px;
    line-height: 1;
    cursor: pointer;
    transition: border-color .3s ease, color .3s ease;
}

.video-modal__close:hover { border-color: var(--c-red); color: var(--c-red); }

/* ============================================================================
   PAGE SAISONS PASSÉES
   ============================================================================ */

.seasons {
    display: flex;
    flex-direction: column;
    gap: clamp(64px, 9vh, 110px);
    max-width: var(--wrap);
    margin-inline: auto;
    padding: 0 var(--gutter) clamp(72px, 11vh, 140px);
}

.season-head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: clamp(32px, 4vh, 52px);
}

.season-head h2 {
    font-weight: 600;
    font-size: clamp(26px, 3.2vw, 40px);
    line-height: 1;
    white-space: nowrap;
    margin: 0;
}

.season-head span { flex: 1; height: 1px; background: linear-gradient(to right, rgba(207, 30, 41, .35), transparent); }

.season-head b {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    white-space: nowrap;
}

.arch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(28px, 3vw, 44px);
}

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

.arch-card__poster {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    border: 1px solid var(--c-border);
    border-radius: 4px;
    background: var(--c-bg-card);
    box-shadow: 0 18px 44px -26px rgba(0, 0, 0, .6);
}

.arch-card__poster img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.16, .84, .44, 1);
}

/* Zoom au survol uniquement si la carte mène quelque part */
.arch-card--link:hover .arch-card__poster img { transform: scale(1.05); }

.arch-card__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(120% 100% at 50% 30%, #FBF8F2 0%, #F1EBDF 60%, #E8E1D2 100%);
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--c-red);
}

.arch-card__body { display: flex; flex-direction: column; flex: 1; padding-top: 20px; }

.arch-card__genre {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--c-red);
}

.arch-card__body h3 {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 23px;
    line-height: 1.12;
    letter-spacing: 0;
    color: var(--c-text-strong);
    margin: 0;
}

.arch-card__body p { margin: 11px 0 0; font-size: 15px; line-height: 1.6; color: var(--c-text-muted); }

.arch-card__more {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: auto;
    padding-top: 18px;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--c-red);
    transition: color .3s ease;
}

.arch-card__more:hover { color: var(--c-red-hover); }

/* ============================================================================
   PAGE QUI SOMMES-NOUS
   ============================================================================ */

.team {
    max-width: var(--wrap);
    margin-inline: auto;
    padding: 0 var(--gutter) clamp(56px, 8vh, 96px);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(28px, 3vw, 44px);
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(28px, 3vw, 40px) clamp(20px, 2vw, 28px);
    border: 1px solid var(--c-border);
    border-radius: 4px;
    background: var(--c-bg-alt);
    text-align: center;
    transition: border-color .3s ease, transform .3s ease;
}

.team-card:hover { border-color: rgba(207, 30, 41, .35); transform: translateY(-3px); }

.team-card__photo {
    position: relative;
    overflow: hidden;
    width: 132px; height: 132px;
    margin-bottom: 22px;
    border: 1px solid rgba(207, 30, 41, .45);
    border-radius: 999px;
    background: radial-gradient(120% 120% at 50% 30%, #F5F0E6 0%, #EAE3D5 70%);
}

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

.team-card__initiales {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; height: 100%;
    font-family: var(--f-display);
    font-size: 38px;
    letter-spacing: .04em;
    color: var(--c-red);
}

.team-card__nom {
    margin: 0;
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 25px;
    line-height: 1.15;
    color: var(--c-text-strong);
}

.team-card__role {
    margin: 8px 0 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--c-red);
}

.team-card__message { margin: 16px 0 0; font-size: 15px; line-height: 1.65; color: var(--c-text-muted); }

.team-card__contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
}

.team-card__tel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--c-text-link);
    transition: color .3s ease;
}

.team-card__tel:hover { color: var(--c-red); }

.team-photo {
    margin: clamp(44px, 6vh, 72px) 0 0;
    overflow: hidden;
    border: 1px solid var(--c-border);
    border-radius: 4px;
}

.team-photo img { width: 100%; height: auto; }

/* --- Bandeau contact --- */

.contact-band {
    border-top: 1px solid var(--c-border);
    background: var(--c-bg-alt);
    padding: clamp(56px, 8vh, 96px) var(--gutter);
}

.contact-band__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: clamp(24px, 4vw, 56px);
    max-width: var(--wrap);
    margin-inline: auto;
}

.contact-band__inner { align-items: start; }
.contact-band__intro { flex: 1 1 340px; }
.contact-band h2 { margin: 0; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.05; }
.contact-band__lead { max-width: 460px; margin: 16px 0 0; font-size: 16px; line-height: 1.7; color: var(--c-text-soft); }

.contact-band__direct { margin: 22px 0 0; font-size: 16px; color: var(--c-text-muted); }
.contact-band__direct a { color: var(--c-red); transition: color .3s ease; }
.contact-band__direct a:hover { color: var(--c-red-hover); }
.contact-band__direct span { margin: 0 10px; opacity: .5; }

/* --- Formulaire --- */

.contact-form {
    flex: 1 1 420px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 520px;
}

.field { display: flex; flex-direction: column; gap: 7px; }

.field label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--c-red);
}

.field input,
.field textarea {
    padding: 13px 15px;
    border: 1px solid var(--c-border-strong);
    border-radius: 2px;
    background: #fff;
    color: var(--c-text);
    font-family: var(--f-body);
    font-size: 16px;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.field textarea { resize: vertical; min-height: 110px; }

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--c-red);
    box-shadow: 0 0 0 3px rgba(207, 30, 41, .18);
}

.field input::placeholder,
.field textarea::placeholder { color: var(--c-text-dim); }

.contact-form .btn-gold { align-self: flex-start; border: 0; }

/* reCAPTCHA : léger recadrage sur très petit écran */
.g-recaptcha { transform-origin: 0 0; }

/* --- Confirmation d'envoi --- */

.contact-ok {
    flex: 1 1 420px;
    max-width: 520px;
    padding: clamp(24px, 3vw, 36px);
    border: 1px solid rgba(78, 154, 99, .4);
    border-radius: 4px;
    background: rgba(78, 154, 99, .08);
    color: var(--c-text);
}

.contact-ok svg { color: var(--c-success); margin-bottom: 12px; }
.contact-ok p { margin: 0 0 6px; font-size: 16px; line-height: 1.6; }
.contact-ok p:last-child { margin: 0; color: var(--c-text-muted); }

/* ============================================================================
   RESPONSIVE
   ============================================================================ */

@media (max-width: 1080px) {
    .grid-shows { grid-template-columns: repeat(2, 1fr); }
    .arch-grid  { grid-template-columns: repeat(2, 1fr); }
    .team-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
    .arch-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .season-head b { display: none; }
    .contact-band__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 900px) {
    .show-block,
    .show-block--reverse { grid-template-columns: 1fr; }

    /* L'affiche repasse toujours au-dessus des infos */
    .show-block .show-media,
    .show-block--reverse .show-media { order: -1; }
    .show-block .show-info,
    .show-block--reverse .show-info { order: 0; }

    .show-poster { max-width: 420px; margin-inline: auto; }

    .dates-list li { grid-template-columns: 104px 1fr; row-gap: 4px; }
    .dates-list__venue { grid-column: 2; text-align: left; }
}

@media (max-width: 680px) {
    .grid-shows { grid-template-columns: 1fr; }

    .nav-toggle { display: block; order: 3; }

    .nav-links {
        position: fixed;
        top: 64px; left: 0; right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 12px var(--gutter) 20px;
        background: rgba(255, 255, 255, .98);
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--c-border);
        box-shadow: 0 24px 40px -28px rgba(0, 0, 0, .35);
        display: none;
    }

    .nav-links.is-open { display: flex; }
    /* Menu déroulant sur fond blanc : liens sombres quel que soit l'état du header */
    .site-header .nav-links a,
    .site-header--solid .nav-links a { color: var(--c-text); }
    .nav-links li { width: 100%; padding-block: 12px; }

    .site-header .socials { display: none; }

    /* Sur mobile, le lien pro reste accessible en pastille icône seule */
    .header-actions { gap: 10px; }
    .pro-link { padding: 8px; }
    .pro-link span { display: none; }
}

/* ============================================================================
   ESPACE PRO (connexion + espace de téléchargement)
   ============================================================================ */

/* En-tête de page compact pour les pages pro */
.page-head--slim { padding-bottom: clamp(28px, 4vh, 44px); }
.page-head--slim h1 { font-size: clamp(34px, 4.6vw, 60px); }

/* Lien « Se déconnecter » sous le titre de l'espace */
.pro-deco { margin-top: 22px; }
.pro-deco a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--c-text-muted);
    transition: color .3s ease;
}
.pro-deco a:hover { color: var(--c-red); }

/* --- Formulaire de connexion --- */
.pro-login {
    max-width: 500px;
    margin-inline: auto;
    padding: 0 20px clamp(80px, 12vh, 140px);
}

.pro-login__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: clamp(24px, 3vw, 36px);
    background: var(--c-bg-alt);
    border: 1px solid var(--c-border);
    border-radius: 8px;
}

/* Le widget reCAPTCHA a une largeur fixe (304px) : sur une carte étroite
   (mobile), on le met à l'échelle pour qu'il ne déborde pas. */
@media (max-width: 420px) {
    .pro-login__form .g-recaptcha { transform: scale(.85); transform-origin: 0 0; }
}

.pro-login__form .btn-gold { align-self: flex-start; border: 0; }

/* --- Espace : bloc spectacle + téléchargements --- */
.pro-block {
    max-width: var(--wrap);
    margin-inline: auto;
    padding: 0 var(--gutter) clamp(80px, 12vh, 140px);
    align-items: center;
}

.pro-downloads {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
    max-width: 420px;
}

.pro-dl {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
    text-align: left;
    width: 100%;
}

.pro-dl__poids { font-weight: 400; opacity: .75; }

/* Fichier pas encore fourni : bouton neutralisé */
.pro-dl--soon {
    background: transparent;
    color: var(--c-text-muted);
    border: 1px dashed var(--c-border-strong);
    cursor: not-allowed;
}
.pro-dl--soon em { font-style: normal; opacity: .8; }

@media (max-width: 900px) {
    .pro-block { grid-template-columns: 1fr; }
    .pro-block .show-poster { max-width: 340px; margin-inline: auto; }
}

/* Accessibilité : respect de la préférence « moins d'animations » */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

    [data-h], [data-reveal] { opacity: 1; transform: none; }
}
