/* ─────────────────────────────────────────
   SevenAct — Styles
   Palette chaude autour du dégradé 234deg #fbab7e → #f7ce68.
   Neutres tirés vers le brun, accent complémentaire teal.
   Typography : Poppins, base 14px
───────────────────────────────────────── */

:root {
    /* Anciens noms conservés, remappés sur la nouvelle palette */
    --c-pink:    #C8651F;  /* terracotta — accent principal, liens, boutons */
    --c-pink-d:  #A24F13;  /* terracotta foncé — hover */
    --c-blue:    #2A8B82;  /* teal — accent secondaire */
    --c-orange:  #fbab7e;  /* apricot */
    --c-yellow:  #f7ce68;  /* honey */

    --c-heading: #2B1F15;  /* ink */
    --c-text:    #5C4A3C;  /* body */
    --c-soft:    #F5EDE0;  /* cream — sections alternées */
    --c-border:  #E8DCC8;  /* border chaud */
    --c-dark:    #2B1F15;  /* ink — footer */
    --c-muted:   #8A7A6B;  /* muted */
    --c-bg:      #FEFBF5;  /* ivory — fond principal */

    /* Nouveaux tokens */
    --c-terracotta: #C8651F;
    --c-apricot:    #fbab7e;
    --c-honey:      #f7ce68;
    --c-ink:        #2B1F15;
    --c-body:       #5C4A3C;
    --c-cream:      #F5EDE0;
    --c-ivory:      #FEFBF5;
    --c-teal:       #2A8B82;
    --c-teal-light: #B8DDD8;

    --c-success: #5C8A3C;
    --c-error:   #C44536;
    --c-warning: #D4A017;

    --grad-warm: linear-gradient(234deg, #fbab7e 0%, #f7ce68 100%);

    /* Ombres chaudes (à partir de --c-ink) */
    --shadow-sm: 0 2px 8px  rgba(43, 31, 21, 0.08);
    --shadow-md: 0 10px 30px rgba(43, 31, 21, 0.12);
    --shadow-lg: 0 20px 60px rgba(43, 31, 21, 0.16);

    --radius-sm: 6px;
    --radius-md: 14px;

    --container: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Poppins', 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.7em;
    color: var(--c-text);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    font-weight: 500;
}

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

a {
    color: var(--c-pink);
    text-decoration: none;
    transition: color .2s;
}
a:hover { color: var(--c-blue); }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    line-height: 1em;
    margin: 0 0 .6em;
    color: var(--c-heading);
}
h1 { font-size: 30px; }
h2 { font-size: 26px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }

p { margin: 0 0 1em; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    text-align: center;
    margin-bottom: .3em;
}
.section-subtitle {
    text-align: center;
    color: var(--c-muted);
    margin-bottom: 2.5em;
    font-size: 15px;
    font-weight: 400;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-block;
    padding: 10px 26px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .3s;
    text-align: center;
    letter-spacing: .3px;
}
.btn-primary {
    background: var(--c-teal);
    color: var(--c-ivory);
    border-color: var(--c-teal);
}
.btn-primary:hover {
    background: #22706A;
    border-color: #22706A;
    color: var(--c-ivory);
}
.btn-outline {
    background: transparent;
    color: var(--c-heading);
    border-color: var(--c-heading);
}
.btn-outline:hover {
    background: var(--c-heading);
    color: var(--c-ivory);
}
.btn-white {
    background: var(--c-ivory);
    color: var(--c-heading);
    border-color: var(--c-ivory);
}
.btn-white:hover { background: transparent; color: var(--c-ivory); border-color: var(--c-ivory); }
.btn-sm { padding: 7px 18px; font-size: 12px; }
.btn-ghost {
    background: transparent;
    border-color: var(--c-border);
    color: var(--c-heading);
}
.btn-ghost:hover { background: var(--c-soft); border-color: var(--c-pink); color: var(--c-pink); }

/* ─── HEADER ─── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(254, 251, 245, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 var(--c-border);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
}
.logo img { height: 44px; }

.main-nav .nav-list {
    display: flex;
    gap: 4px;
    list-style: none;
    margin: 0; padding: 0;
    align-items: center;
}
.main-nav .nav-list a {
    display: inline-block;
    padding: 10px 16px;
    color: var(--c-heading);
    font-weight: 500;
    font-size: 14px;
    transition: color .2s;
}
.main-nav .nav-list a:hover { color: var(--c-pink); }

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 8px;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 26px; height: 2px;
    background: var(--c-heading);
    margin: 6px 0;
    transition: all .25s;
}

/* ─── HERO (gradient orange/jaune) ─── */
.hero {
    padding: 80px 0 100px;
    background: var(--grad-warm);
}
.hero-inner {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    align-items: center;
}
.hero-text h1 {
    font-size: 46px;
    line-height: 1.15em;
    color: var(--c-heading);
    margin-bottom: .5em;
}
.hero-text .accent-ludique    { color: var(--c-success); }  /* olive #5C8A3C */
.hero-text .accent-interactif { color: var(--c-error);   }  /* brique #C44536 */
.hero-text .accent-optimiste  { color: var(--c-teal);    }  /* teal   #2A8B82 */
.hero-lead {
    font-size: 16px;
    line-height: 1.7em;
    color: var(--c-heading);
    max-width: 540px;
    margin-bottom: 2em;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image img {
    max-width: 100%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

/* ─── COMPAGNIE ─── */
.section-compagnie {
    padding: 80px 0;
    background: var(--c-bg);
}
.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.section-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* ─── VALEURS ─── */
.section-valeurs {
    padding: 80px 0;
    background: var(--c-soft);
}
.valeurs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 20px;
}
.valeur-card {
    background: var(--c-bg);
    border-radius: var(--radius-md);
    padding: 30px 22px;
    text-align: center;
    transition: transform .3s, box-shadow .3s;
    box-shadow: var(--shadow-sm);
}
.valeur-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.valeur-icon { width: 70px; height: 70px; margin: 0 auto 14px; }
.valeur-icon img { width: 100%; height: 100%; object-fit: contain; }
.valeur-card h3 { font-size: 18px; margin-bottom: .5em; }
.valeur-card p {
    color: var(--c-text);
    font-size: 13px;
    line-height: 1.65em;
    margin: 0;
}

/* ─── SPECTACLES ─── */
.section-spectacles {
    padding: 80px 0;
    background: var(--c-bg);
}
.section-passes {
    padding: 80px 0;
    background: var(--c-soft);
}
.spectacles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}
.spectacle-card {
    background: var(--c-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all .3s;
    display: flex;
    flex-direction: column;
}
.spectacle-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.spectacle-cover {
    display: block;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--c-soft);
}
.spectacle-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.spectacle-card:hover .spectacle-cover img { transform: scale(1.05); }
.spectacle-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.spectacle-body h3 { margin: 0; font-size: 20px; }
.spectacle-body .subtitle { color: var(--c-muted); font-size: 13px; margin: 0; }
.spectacle-body p {
    color: var(--c-text);
    font-size: 13px;
    line-height: 1.65em;
    margin: 0;
    flex: 1;
}
.spectacle-body .btn { align-self: flex-start; margin-top: auto; }
.spectacle-passe { opacity: .92; }

.empty {
    text-align: center;
    color: var(--c-muted);
    padding: 40px 0;
    font-size: 14px;
}

/* ─── PARTENAIRES ─── */
.section-partners {
    padding: 80px 0;
    background: var(--grad-warm);
}
.section-partners .section-title,
.section-partners .section-subtitle {
    color: var(--c-ink);
}
.section-partners .partner h4 {
    color: var(--c-ink);
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0 4px;
}
.section-partners .partner p {
    color: var(--c-ink);
}
.section-partners .partner img {
    filter: none;
    background: transparent;
    max-height: 90px;
    object-fit: contain;
    margin: 0 auto;
}

/* ─── MERCI POUR LEUR CONFIANCE (fond blanc/ivoire) ─── */
.section-trust {
    padding: 80px 0;
    background: var(--c-bg);
}
.section-trust .section-title {
    margin-bottom: 2em;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 30px 40px;
    align-items: center;
    justify-items: center;
    margin-top: 20px;
}
.trust-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 80px;
}
.trust-logo img {
    max-height: 70px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: filter .3s, opacity .3s;
}
.trust-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    align-items: start;
    margin-top: 20px;
}
.partner {
    text-align: center;
    padding: 20px;
}
.partner img {
    max-height: 70px;
    margin: 0 auto 14px;
    filter: grayscale(30%);
    transition: filter .3s;
}
.partner:hover img { filter: grayscale(0); }
.partner h4 { font-size: 16px; color: var(--c-heading); }
.partner p {
    color: var(--c-text);
    font-size: 13px;
    line-height: 1.6em;
    margin: 0;
}

/* ─── CONTACT (gradient orange/jaune — bas de page) ─── */
.section-cta {
    padding: 80px 0;
    background: var(--grad-warm);
    color: var(--c-heading);
}
.section-cta h2,
.section-cta h3,
.section-cta p,
.section-cta label { color: var(--c-ink); }
.section-cta .contact-header {
    text-align: center;
    margin-bottom: 3em;
}
.section-cta .contact-header h2 { margin-bottom: .3em; }
.section-cta .contact-header p  { font-size: 16px; }

.section-cta .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 50px;
    align-items: start;
}
.section-cta .contact-visual img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 24px;
}
.section-cta .contact-info h3 { margin-bottom: .4em; font-size: 20px; }
.section-cta .contact-info p  { font-size: 15px; line-height: 1.65em; }
.section-cta .contact-info a {
    color: var(--c-ink);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}
.section-cta .contact-info a:hover { color: var(--c-pink); }

.section-cta .contact-form-wrap {
    background: transparent;
    padding: 0;
}
.section-cta .contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.section-cta .contact-form input,
.section-cta .contact-form textarea,
.section-cta .contact-form select {
    display: block;
    width: 100%;
    height: 46px;
    padding: 0 16px;
    margin: 0;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4;
    background: #fff;
    color: var(--c-ink);
    transition: border-color .2s, box-shadow .2s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.section-cta .contact-form textarea {
    height: auto;
    min-height: 140px;
    padding: 13px 16px;
    resize: vertical;
}
.section-cta .contact-form ::placeholder {
    color: var(--c-muted);
    opacity: 1;
}
/* Select : flèche custom + couleur "placeholder" tant qu'aucune option choisie */
.section-cta .contact-form select {
    padding-right: 44px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%232B1F15' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5l5 5 5-5'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px 8px;
    cursor: pointer;
}
.section-cta .contact-form select:required:invalid { color: var(--c-muted); }
.section-cta .contact-form select option { color: var(--c-ink); }
.section-cta .contact-form select option[value=""][disabled] { display: none; }
.section-cta .contact-form input:focus,
.section-cta .contact-form textarea:focus,
.section-cta .contact-form select:focus {
    outline: none;
    border-color: var(--c-teal);
    box-shadow: 0 0 0 3px rgba(42, 139, 130, 0.15);
}
.section-cta .contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.section-cta .alert {
    padding: 13px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
}

/* ─── PAGE HERO (sous-pages) ─── */
.page-hero {
    padding: 70px 0 50px;
    background: var(--grad-warm);
    text-align: center;
}
.page-hero h1 { margin-bottom: .3em; font-size: 36px; }
.page-hero p { color: var(--c-heading); font-size: 15px; }
.page-subtitle { color: var(--c-heading); }
.back-link {
    display: inline-block;
    color: var(--c-heading);
    font-size: 13px;
    margin-bottom: 14px;
}

.page-body { padding: 70px 0; background: var(--c-bg); }
.page-body-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}
.creation-cover {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}
.lead { font-size: 16px; color: var(--c-heading); line-height: 1.6em; }

.aside-card {
    position: sticky;
    top: 100px;
    background: var(--grad-warm);
    padding: 30px;
    border-radius: var(--radius-md);
    color: var(--c-heading);
}
.aside-card h3 { margin-top: 0; }

/* ─── CONTACT ─── */
.section-contact { padding: 70px 0 90px; background: var(--c-bg); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}
.contact-info h3 { color: var(--c-pink); }
.contact-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-heading);
    margin-bottom: 16px;
}
.contact-form input,
.contact-form textarea {
    display: block;
    width: 100%;
    padding: 11px 14px;
    margin-top: 6px;
    border: 1px solid var(--c-muted);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14px;
    background: var(--c-bg);
    transition: border-color .2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--c-pink);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.alert {
    padding: 13px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
}
.alert-success { background: #E8F1DC; color: #3E5E26; }
.alert-error   { background: #F8E4E1; color: #7A2A20; }

/* ─── FOOTER ─── */
.site-footer {
    background: var(--c-dark);
    color: #D6C9B8;
    padding: 50px 0 30px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 40px;
    align-items: center;
}
.footer-brand img { height: 44px; margin-bottom: 12px; filter: brightness(0) invert(1); }
.footer-brand p { color: #8b95a0; font-size: 13px; margin: 0; }
.footer-contact h4 { color: #fff; margin: 0 0 6px; font-size: 14px; }
.footer-contact a { color: var(--c-yellow); font-size: 14px; }
.footer-meta { text-align: right; font-size: 12px; color: #8b95a0; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
    .hero-inner,
    .section-grid,
    .page-body-grid,
    .contact-grid,
    .section-cta .contact-grid,
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .valeurs-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-meta  { text-align: left; }
    .aside-card   { position: static; }
    .hero-text h1 { font-size: 36px; }
}

@media (max-width: 720px) {
    .nav-toggle { display: block; }
    .main-nav .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        display: none;
    }
    .main-nav.open .nav-list { display: flex; }
    .main-nav .nav-list a { display: block; padding: 12px 16px; }
    .hero { padding: 50px 0 70px; }
    .hero-text h1 { font-size: 30px; }
    .section-compagnie,
    .section-valeurs,
    .section-spectacles,
    .section-passes,
    .section-partners,
    .section-cta { padding: 60px 0; }
    .form-row { grid-template-columns: 1fr; }
    .valeurs-grid { grid-template-columns: 1fr; }
    h1 { font-size: 24px; }
    h2 { font-size: 22px; }
    h3 { font-size: 18px; }
}

/* ───────────────────────────────────────────
   PAGE SPECTACLE (détail d'une création) — style WordPress original
   ─────────────────────────────────────────── */

/* Sous-nav sticky */
.spectacle-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(43, 31, 21, .92);
    backdrop-filter: blur(8px);
    color: #fff;
}
.spectacle-nav .container {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 24px;
}
.spectacle-nav .back-link {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    line-height: 1;
}
.spectacle-nav-title {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .5px;
    color: #fff;
    flex: 0 0 auto;
}
.spectacle-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 22px;
    margin-left: auto;
}
.spectacle-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: .8;
    transition: opacity .2s;
}
.spectacle-nav a:hover { opacity: 1; }

/* Sections du détail spectacle */
.spectacle-section {
    padding: 90px 0;
    position: relative;
}
.spectacle-section-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.spectacle-section-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
}
.spectacle-section-bg > .container { position: relative; z-index: 1; }

/* Texte en blanc sur les sections à fond parallax */
.spectacle-section-bg,
.spectacle-section-bg p,
.spectacle-section-bg h1,
.spectacle-section-bg h2,
.spectacle-section-bg h3,
.spectacle-section-bg h4,
.spectacle-section-bg h5,
.spectacle-section-bg h6,
.spectacle-section-bg .spectacle-title,
.spectacle-section-bg .spectacle-hero-title,
.spectacle-section-bg .creation-body p,
.spectacle-section-bg .creation-body strong,
.spectacle-section-bg .spectacle-intro p,
.spectacle-section-bg .spectacle-practical p,
.spectacle-section-bg .creation-team p {
    color: #ffffff;
}
.spectacle-section-bg .creation-team h4,
.spectacle-section-bg .spectacle-intro strong {
    color: #ffffff;
    opacity: .92;
}
.spectacle-section-bg .spectacle-practical {
    border-top-color: rgba(255, 255, 255, .25);
}
.spectacle-section-light {
    background: var(--c-bg);
}

/* Titres de section centrés ("Photos", "Vidéo") */
.spectacle-title {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 18px;
    font-weight: 400;
    color: var(--c-pink);
    margin: 0 0 36px;
    line-height: 1.3em;
}
/* Variante : titre aligné à gauche ("Le spectacle") */
.spectacle-title--left {
    text-align: left;
}

/* — HERO : titre + intro + infos pratiques + affiche — */
.spectacle-hero {
    padding: 110px 0 90px;
    position: relative;
}
.spectacle-hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}
.spectacle-hero-title {
    font-size: 40px;
    line-height: 1.3em;
    color: var(--c-heading);
    margin: 0 0 30px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.spectacle-intro p {
    font-size: 16px;
    line-height: 1.7em;
    color: var(--c-heading);
    margin: 0 0 1em;
}
.spectacle-intro strong {
    color: var(--c-pink);
    font-weight: 600;
}
.spectacle-practical {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(43, 31, 21, .15);
}
.spectacle-practical p {
    margin: 0 0 .6em;
    font-size: 16px;
    line-height: 1.7em;
    color: var(--c-heading);
    opacity: .85;
}

/* Affiche du hero — sticky */
.spectacle-affiche {
    position: sticky;
    top: 100px;
}
.spectacle-affiche img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
    box-shadow: 0 18px 50px rgba(43, 31, 21, .25);
}

/* — SECTIONS SPLIT (Le spectacle / Équipe) — */
.spectacle-split {
    display: grid;
    gap: 60px;
    align-items: start;
}
.spectacle-split--image-left {
    grid-template-columns: 1fr 2fr;
}
.spectacle-split--image-right {
    grid-template-columns: 2fr 1fr;
}
.spectacle-side-image {
    position: sticky;
    top: 100px;
}
.spectacle-side-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
    box-shadow: 0 14px 40px rgba(43, 31, 21, .22);
}

.creation-body p {
    line-height: 1.7em;
    margin: 0 0 1em;
    color: var(--c-heading);
    font-size: 14px;
}
.creation-body strong { color: var(--c-heading); }

/* — ÉQUIPE (texte gauche dans split--image-right) — */
.creation-team {
    text-align: left;
}
.creation-team h4 {
    color: var(--c-pink);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 16px;
    font-weight: 400;
    margin: 32px 0 14px;
    line-height: 1.3em;
}
.creation-team h4:first-child { margin-top: 0; }
.creation-team p {
    margin: 0 0 .6em;
    line-height: 1.7em;
    color: var(--c-heading);
    font-size: 14px;
}

/* — DATES en 3 colonnes par année — */
.spectacle-dates-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1040px;
    margin: 0 auto;
    text-align: left;
}
.date-col .date-year {
    color: var(--c-pink);
    font-size: 32px;
    margin: 0 0 18px;
    font-weight: 400;
    letter-spacing: 1px;
}
.date-col .date-when {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--c-heading);
    white-space: pre-line;
}

/* — GALERIE PHOTOS — */
.spectacle-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.gallery-item {
    display: block;
    overflow: hidden;
    border-radius: var(--radius-sm);
    aspect-ratio: 4 / 3;
    background: var(--c-cream, #F4EBDC);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
    display: block;
}
.gallery-item { cursor: zoom-in; position: relative; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(43, 31, 21, 0);
    transition: background .25s ease;
    pointer-events: none;
}
.gallery-item:hover::after { background: rgba(43, 31, 21, .18); }

/* — LIGHTBOX — */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(43, 31, 21, .94);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    padding: 40px 70px;
}
.lightbox.is-open {
    opacity: 1;
    visibility: visible;
}
.lightbox-figure {
    margin: 0;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    cursor: zoom-out;
}
.lightbox-img {
    max-width: 100%;
    max-height: calc(100vh - 140px);
    width: auto;
    height: auto;
    display: block;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
    background: #2B1F15;
    cursor: default;
}
.lightbox-caption {
    color: #fefbf5;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: .75;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(254, 251, 245, .08);
    border: 1px solid rgba(254, 251, 245, .15);
    color: #fefbf5;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, transform .2s ease;
    backdrop-filter: blur(6px);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--c-pink);
    border-color: var(--c-pink);
    transform: scale(1.05);
}
.lightbox-close {
    top: 24px;
    right: 24px;
    font-size: 28px;
}
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.05); }

@media (max-width: 640px) {
    .lightbox { padding: 20px 10px; }
    .lightbox-img { max-height: calc(100vh - 100px); }
    .lightbox-close { top: 12px; right: 12px; width: 42px; height: 42px; }
    .lightbox-prev { left: 8px; width: 42px; height: 42px; }
    .lightbox-next { right: 8px; width: 42px; height: 42px; }
}

/* — VIDÉO — */
.spectacle-video {
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(0,0,0,.25);
    background: #000;
}
.spectacle-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* — CTA — */
.spectacle-cta {
    padding: 80px 0;
    background: var(--grad-warm);
    text-align: center;
    color: var(--c-heading);
}
.spectacle-cta h2 { margin: 0 0 .5em; }
.spectacle-cta p { margin: 0 0 26px; opacity: .9; }

/* — RESPONSIVE — */
@media (max-width: 960px) {
    .spectacle-hero { padding: 70px 0 60px; }
    .spectacle-hero-title { font-size: 32px; }
    .spectacle-section { padding: 60px 0; }
    .spectacle-section-bg { background-attachment: scroll; }
    .spectacle-hero-grid,
    .spectacle-split--image-left,
    .spectacle-split--image-right {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    /* Sur mobile : remettre l'image AVANT le texte dans le split image-right (équipe) */
    .spectacle-split--image-right .spectacle-side-image { order: -1; }
    .spectacle-affiche,
    .spectacle-side-image {
        position: static;
        max-width: 360px;
        margin: 0 auto;
    }
    .spectacle-dates-cols { grid-template-columns: 1fr; gap: 36px; max-width: 480px; }
    .spectacle-gallery { grid-template-columns: repeat(3, 1fr); }
    .spectacle-nav .container { flex-wrap: wrap; padding: 10px 16px; }
    .spectacle-nav-title { font-size: 13px; }
    .spectacle-nav ul { gap: 14px; }
    .spectacle-nav a { font-size: 11px; letter-spacing: .5px; }
    .spectacle-title { font-size: 22px; margin-bottom: 36px; }
}
@media (max-width: 640px) {
    .spectacle-hero-title { font-size: 26px; }
    .spectacle-gallery { grid-template-columns: repeat(2, 1fr); }
    .spectacle-section { padding: 50px 0; }
    .spectacle-nav ul { width: 100%; justify-content: center; margin-left: 0; }
}

