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

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f6f2;
    color: #1c1c1c;
    position: relative;
}

/* ===============================
   ANIMATION & CONTENU PRINCIPAL
================================= */
.main-content {
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes globeFloat {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-1px) rotate(6deg); }
    100% { transform: translateY(0) rotate(0deg); }
}


/* Photo d'arrière-plan limitée au contenu central */
.main-content::before {
    content: none;
}
.home-page .main-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("images/christine-fonlupt.jpg") no-repeat center 75%;
    background-size: 1100px auto;
    opacity: 0;
    animation: fadeIn 1.8s ease forwards;
    z-index: -2;
}

/* Calque doux */
.main-content::after {
    content: none;
}
.home-page .main-content::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(248, 246, 242, 0.65);
    z-index: -1;
}

/* ===============================
   HEADER
================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 5%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    letter-spacing: 0.3px;
    color: #2a2a2a;
}

.first {
    font-weight: 400;
}

.last {
    font-weight: 700;
}

/* Menu */
nav {
    display: flex;
    align-items: center;
}

.menu {
    list-style: none;
    display: flex;
    gap: 18px;
    align-items: center;
}

.menu li {
    position: relative;
}

.dropdown {
    position: relative;
}

.menu a {
    text-decoration: none;
    color: #666;
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 300;
    transition: color 0.3s ease;
    position: relative;
}

/* Ligne dorée subtile */
.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 1px;
    background: #c6a75e;
    opacity: 0.8;
    transition: width 0.3s ease;
}

.menu a:hover::after {
    width: 100%;
}

.menu a:hover {
    color: #c6a75e;
}

/* Sous-menu desktop */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    padding: 15px 0;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    z-index: 1100;
}

.submenu li {
    list-style: none;
}

.submenu a {
    display: block;
    padding: 8px 20px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Desktop uniquement */
@media (min-width: 901px) {
  .dropdown:hover > .submenu,
  .dropdown:focus-within > .submenu {
    display: block;
  }
}

.dropdown-toggle {
    display: contents;
}

.submenu-toggle {
    display: none;
}
/* Burger caché sur desktop */
.burger {
    display: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: #2a2a2a;
}

/* ===============================
   LANGUES
================================= */
.languages {
    font-size: 0.65rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-btn {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    letter-spacing: inherit;
    color: #888;
    cursor: pointer;
    transition: color 0.3s ease, opacity 0.3s ease;
    text-transform: uppercase;
}

.lang-btn:hover {
    color: #c6a75e;
}

.lang-btn.active {
    color: #c6a75e;
    font-weight: 500;
}

.languages span {
    opacity: 0.4;
}

.languages a {
    text-decoration: none;
    color: #888;
    transition: color 0.3s;
}

/* ===============================
   Bulles de traduction
================================= */
.translate-badge {
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: calc(100% - 36px);
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 999;
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.translate-badge.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.translate-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    line-height: 1;
    animation: globeFloat 1.8s ease-in-out infinite;
}

.translate-badge-text {
    font-size: 0.72rem;
    letter-spacing: 0.4px;
    color: #444;
    white-space: nowrap;
}

.translate-close {
    border: none;
    background: none;
    color: #777;
    cursor: pointer;
    padding: 0;
    margin-left: 2px;
    font-size: 0.82rem;
    line-height: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

.translate-close:hover {
    color: #c6a75e;
    transform: scale(1.08);
}

/* ===============================
   HERO
================================= */
.hero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 70vh;
    padding-top: 120px; /* compensation du header fixe */
    padding-bottom: 40px;
}

.hero .hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #2a2a2a;
}

.gold-line {
    width: 500px;
    height: 2px;
    background: #c6a75e;
    margin: 25px auto;
}

.hero-content p {
    letter-spacing: 3px;
    margin-top: 20px;
}

/* ===============================
   SECTIONS
================================= */
.content {
    padding: 140px 10%;
}

.home-intro {
    padding: 100px 10% 90px;
    text-align: center;
}

.quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-style: italic;
    opacity: 0.8;
}

/* ===============================
   NEXT EVENT
================================= */
.next-event {
    text-align: center;
    padding: 90px 10% 50px;
    margin-bottom: 20px;
}

.next-event h3 {
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 35px;
    font-weight: 500;
    font-size: 1.8rem;
}

.event-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 40px;
    max-width: 500px;
    margin: auto;
    background: #fff;
}

.date {
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* ===============================
   FOOTER
================================= */
footer {
    background: #111;
    color: #fff;
    width: 100%;
    padding: 25px 5%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-left,
.footer-center,
.footer-right {
    min-width: 180px;
    margin-bottom: 10px;
}

footer h3 {
    margin-bottom: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 1rem;
}

.footer-left a,
.footer-center a,
.footer-right a {
    color: #ccc;
    text-decoration: none;
    display: block;
    line-height: 1.4;
    margin-bottom: 4px;
    transition: color 0.3s;
    position: relative;
}

.footer-left a::after,
.footer-center a::after,
.footer-right a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 1px;
    background: #c6a75e;
    transition: width 0.3s ease;
}

.footer-left a:hover::after,
.footer-center a:hover::after,
.footer-right a:hover::after {
    width: 100%;
}

footer a:hover {
    color: #c6a75e;
}

footer i {
    width: 18px;
    margin-right: 8px;
    font-size: 0.85rem;
    opacity: 0.8;
}

footer a:hover i {
    opacity: 1;
}

.footer-left a:last-child,
.footer-center a:last-child,
.footer-right a:last-child {
    margin-bottom: 12px;
}

/* ===============================
   TABLETTE
================================= */
@media (max-width: 1000px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .gold-line {
        width: 260px;
    }
}

/* ===============================
   MOBILE
================================= */
@media (max-width: 900px) {
    header {
        padding: 14px 5%;
        flex-wrap: wrap;
        gap: 8px;
    }

    .logo {
        font-size: 1.05rem;
    }

    .burger {
        display: block;
    }

    nav {
        width: 100%;
    }

    .menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        padding: 25px 0;
        display: none;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    }

    .menu.active {
        display: flex;
    }

    /* On neutralise les sous-menus complexes sur mobile */
    .submenu {
        position: static;
        display: none;
        box-shadow: none;
        padding: 8px 0 0;
        min-width: auto;
        background: transparent;
        width: 100%;
        margin-top: 8px;
    }

    .dropdown:hover > .submenu,
    .dropdown:focus-within > .submenu {
        display: none;
    }
    .dropdown {
        width: 100%;
        text-align: center;
    }

   .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: auto;
	}

	.dropdown-toggle a {
    flex: initial;
	}

	 .submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    opacity: 0.75;
	}

	.submenu-toggle::before {
    content: "";
    width: 4px;
    height: 4px;
    display: block;
    border-right: 1px solid #666;
    border-bottom: 1px solid #666;
    transform: rotate(45deg);
    transform-origin: center;
    transition: transform 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
    opacity: 0.8;
    margin-top: -1px;
	}

	/* Animation ouverture */
	.dropdown.open > .dropdown-toggle .submenu-toggle::before {
    transform: rotate(-135deg);
    margin-top: 2px;
	}

	/* Hover déjà cohérent avec ton style */
	.submenu-toggle:hover::before {
    border-color: #c6a75e;
    opacity: 1;
}

    .dropdown.open .submenu {
        display: block;
    }

    .submenu {
        width: 100%;
        margin-top: 8px;
    }

    .submenu li {
        margin-bottom: 6px;
    }

   .languages {
    width: 100%;
    justify-content: center;
    font-size: 0.58rem;
    margin-top: 2px;
}

    .translate-badge {
        right: 12px;
        bottom: 12px;
        padding: 7px 10px;
        gap: 7px;
    }

    .translate-badge-text {
        font-size: 0.68rem;
    }

    .translate-badge-icon {
        font-size: 0.82rem;
    }

    .hero {
        min-height: 52vh;
        padding-top: 95px;
        padding-bottom: 20px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1;
    }

    .gold-line {
        width: 160px;
        margin: 18px auto;
    }

    .hero-content p {
        margin-top: 12px;
        letter-spacing: 2px;
        font-size: 0.85rem;
    }

    .home-intro {
        padding: 65px 8% 55px;
    }

    .quote {
        font-size: 1.25rem;
        line-height: 1.4;
    }

    .next-event {
        padding: 60px 8% 30px;
        margin-bottom: 10px;
    }

    .next-event h3 {
        margin-bottom: 24px;
        font-size: 1.5rem;
    }

    .event-card {
        padding: 28px 20px;
    }

    .main-content::before {
        background-size: 750px auto;
        background-position: center 60%;
    }

    footer {
        padding: 22px 7%;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        margin-bottom: 0;
    }

    .footer-left a::after,
    .footer-center a::after,
    .footer-right a::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .menu a {
    font-size: 0.75rem;
	}
	.submenu a {
        padding: 6px 0;
        font-size: 0.8rem;
    }
}
/* ===============================
   LOGO CLIQUABLE
================================= */
.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    letter-spacing: 0.3px;
    color: #2a2a2a;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

/* ===============================
   LIEN ACTIF MENU
================================= */
.menu a[aria-current="page"] {
    color: #c6a75e;
}

.menu a[aria-current="page"]::after {
    width: 100%;
}

/* Ouvrir aussi un dropdown actif sur desktop */
@media (min-width: 901px) {
    .dropdown.open > .submenu {
        display: block;
    }
}

/* ===============================
   PAGE INTERIEURE / BIO
================================= */
.bio-body .main-content::before {
    background: none;
}

.bio-main {
    padding-top: 0;
}

.page-hero {
    padding: 150px 10% 50px;
    text-align: center;
}

.page-hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 500;
    color: #2a2a2a;
}

.page-hero-content p {
    margin-top: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #666;
}

.bio-page {
    padding: 30px 8% 90px;
}

.bio-container {
    max-width: 900px;
    margin: 0 auto;
}

.bio-text {
    background: rgba(255, 255, 255, 0.88);
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    line-height: 1.9;
    font-size: 1rem;
}

.bio-text p {
    margin-bottom: 24px;
}

.bio-text p:last-child {
    margin-bottom: 0;
}

.bio-text a,
.bio-links a {
    color: #7f6330;
    text-decoration: none;
    border-bottom: 1px solid rgba(198, 167, 94, 0.45);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.bio-text a:hover,
.bio-links a:hover {
    color: #c6a75e;
    border-color: #c6a75e;
}

.bio-links {
    background: #fff;
    padding: 28px 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 110px;
}

.bio-links h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 18px;
}

.bio-links ul {
    list-style: none;
    padding: 0;
}

.bio-links li {
    margin-bottom: 12px;
    line-height: 1.5;
}

@media (max-width: 1000px) {
    .page-hero-content h1 {
        font-size: 3rem;
    }

    .bio-links {
        position: static;
    }
}

@media (max-width: 900px) {
    .page-hero {
        padding: 120px 8% 35px;
    }

    .page-hero-content h1 {
        font-size: 2.3rem;
    }

    .page-hero-content p {
        font-size: 0.72rem;
        letter-spacing: 1.6px;
    }

    .bio-page {
        padding: 20px 6% 60px;
    }

    .bio-container {
        max-width: 100%;
    }

    .bio-text {
        padding: 24px 20px;
        font-size: 0.96rem;
        line-height: 1.8;
    }

    .bio-links {
        padding: 22px 18px;
    }

    .bio-links h2 {
        font-size: 1.5rem;
    }
}
/* ===============================
   PAGE ENSEIGNEMENT – LARGEUR SPECIFIQUE
================================= */

.teaching-page .bio-page {
    padding: 30px 3.5% 90px;
}

.teaching-page .bio-container {
    max-width: 1440px;
}

.teaching-page .bio-text {
    padding: 54px 56px;
}
/* ===============================
   PAGE ENSEIGNEMENT – HIERARCHIE VISUELLE
================================= */

.teaching-page .bio-text h2 {
    color: #7f6330;
    font-size: 2.2rem;
    margin: 52px 0 22px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(198, 167, 94, 0.35);
}

.teaching-page .bio-text h3 {
    color: #2a2a2a;
    font-size: 1.55rem;
}

.teaching-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin: 26px 0 46px;
}

.teaching-card {
    background: linear-gradient(to bottom, rgba(255,255,255,0.98), rgba(248,246,242,0.96));
    border: 1px solid rgba(198, 167, 94, 0.22);
    border-top: 3px solid #c6a75e;
    padding: 30px 28px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.05);
    border-radius: 2px;
}

.teaching-card h3 {
    margin-top: 0;
    margin-bottom: 14px;
    color: #7f6330;
}

.teaching-card a {
    word-break: break-word;
}

.masterclass-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 22px 0 44px;
}

.masterclass-item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-left: 4px solid #c6a75e;
    padding: 20px 22px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.035);
}

.teaching-highlight {
    background: linear-gradient(135deg, rgba(198, 167, 94, 0.10), rgba(255,255,255,0.95));
    border: 1px solid rgba(198, 167, 94, 0.28);
    border-left: 4px solid #c6a75e;
    padding: 24px 26px;
    margin: 28px 0 40px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.03);
}

.teaching-section {
    margin-top: 54px;
}

.teaching-contact-box {
    margin-top: 52px;
    padding: 28px 30px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 3px solid #c6a75e;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
}

.teaching-contact-box h2 {
    margin-top: 0;
}

.teaching-contact-box p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1150px) {
    .masterclass-list,
    .teaching-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .teaching-page .bio-page {
        padding: 20px 4% 60px;
    }

    .teaching-page .bio-text {
        padding: 24px 20px;
    }

    .teaching-page .bio-text h2 {
        font-size: 1.75rem;
    }

    .teaching-card,
    .masterclass-item,
    .teaching-highlight,
    .teaching-contact-box {
        padding: 18px 16px;
    }
}
/* ===============================
   PAGE DISCOGRAPHIE
================================= */

.discography-page .bio-page {
    padding: 30px 4% 90px;
}

.discography-page .bio-container {
    max-width: 1280px;
}

.discography-page .bio-text {
    padding: 48px 44px;
}

/* Intro / actualité */
.disco-news {
    background: linear-gradient(135deg, rgba(198, 167, 94, 0.10), rgba(255,255,255,0.96));
    border: 1px solid rgba(198, 167, 94, 0.28);
    border-left: 4px solid #c6a75e;
    padding: 24px 26px;
    margin-bottom: 42px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.03);
}

.disco-news h2 {
    margin: 0 0 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    color: #7f6330;
}

.disco-news p:last-child {
    margin-bottom: 0;
}

/* Titres de section */
.disco-section {
    margin-top: 48px;
}

.disco-section h2 {
    color: #7f6330;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem;
    font-weight: 500;
    margin-bottom: 22px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(198, 167, 94, 0.35);
}

/* Grille d’albums */
.disco-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 28px;
    margin: 24px 0 10px;
}

/* Carte album */
.disco-item {
    background: linear-gradient(to bottom, rgba(255,255,255,0.98), rgba(248,246,242,0.96));
    border: 1px solid rgba(198, 167, 94, 0.22);
    border-top: 3px solid #c6a75e;
    padding: 28px 26px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.05);
}

.disco-item h3 {
    margin: 0 0 16px;
    color: #7f6330;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 500;
}

.disco-cover {
    width: 100%;
    max-width: 260px;
    height: auto;
    display: block;
    margin: 0 auto 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.disco-meta {
    font-size: 0.96rem;
    line-height: 1.8;
    color: #2a2a2a;
}

.disco-meta p {
    margin-bottom: 12px;
}

.disco-meta p:last-child {
    margin-bottom: 0;
}

/* Liens streaming */
.streaming-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-top: 18px;
}

.streaming-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: #444;
    font-size: 0.9rem;
    line-height: 1;
    transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.streaming-links a:hover {
    color: #c6a75e;
    border-color: rgba(198, 167, 94, 0.45);
    transform: translateY(-1px);
}

.streaming-links i {
    font-size: 1rem;
}

.streaming-links img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
}

/* Bloc plateformes général */
.streaming-platforms {
    margin-top: 54px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.streaming-platforms h2 {
    color: #7f6330;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 1000px) {
    .discography-page .bio-container {
        max-width: 100%;
    }

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

@media (max-width: 900px) {
    .discography-page .bio-page {
        padding: 20px 4% 60px;
    }

    .discography-page .bio-text {
        padding: 24px 20px;
    }

    .disco-news,
    .disco-item {
        padding: 20px 18px;
    }

    .disco-news h2,
    .disco-section h2,
    .streaming-platforms h2 {
        font-size: 1.7rem;
    }

    .disco-item h3 {
        font-size: 1.4rem;
    }

    .streaming-links a {
        font-size: 0.86rem;
        padding: 8px 10px;
    }
}
/* ===============================
   PAGE ACTUALITÉS
================================= */

.news-page .bio-page {
    padding: 30px 4% 90px;
}

.news-page .bio-container {
    max-width: 1280px;
}

.news-page .bio-text {
    padding: 48px 44px;
}

.news-section {
    margin-bottom: 58px;
    padding-bottom: 42px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.news-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.news-section h2 {
    color: #7f6330;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem;
    font-weight: 500;
    margin-bottom: 22px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(198, 167, 94, 0.35);
}

.news-highlight {
    background: linear-gradient(135deg, rgba(198, 167, 94, 0.10), rgba(255,255,255,0.96));
    border: 1px solid rgba(198, 167, 94, 0.28);
    border-left: 4px solid #c6a75e;
    padding: 24px 26px;
    margin: 24px 0 34px;
}

.news-image {
    display: block;
    max-width: 520px;
    width: 100%;
    height: auto;
    margin: 24px auto;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.news-image-small {
    max-width: 300px;
}

.news-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center;
    margin: 28px 0;
}

.news-gallery img {
    max-width: 260px;
    width: 100%;
    height: auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.news-dates {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px;
}

.news-dates > li {
    margin-bottom: 18px;
}

.news-dates ul {
    margin-top: 8px;
    margin-left: 22px;
}

.news-dates li {
    line-height: 1.7;
}

.news-concerts {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 28px;
}

.news-card {
    background: #fff;
    border: 1px solid rgba(198, 167, 94, 0.22);
    border-top: 3px solid #c6a75e;
    padding: 26px 24px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.045);
}

.news-card img {
    display: block;
    max-width: 260px;
    width: 100%;
    height: auto;
    margin: 20px auto 0;
}

@media (max-width: 900px) {
    .news-page .bio-page {
        padding: 20px 4% 60px;
    }

    .news-page .bio-text {
        padding: 24px 20px;
    }

    .news-section h2 {
        font-size: 1.7rem;
    }

    .news-concerts {
        grid-template-columns: 1fr;
    }

    .news-image {
        max-width: 100%;
    }

    .news-gallery img {
        max-width: 220px;
    }
}
/* ===============================
   PAGE AGENDA
================================= */

.agenda-page .bio-page {
    padding: 30px 4% 90px;
}

.agenda-page .bio-container {
    max-width: 1280px;
}

.agenda-page .bio-text {
    padding: 48px 44px;
}

.agenda-page .bio-text > p:first-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    text-align: center;
    color: #555;
    margin-bottom: 28px;
}

.agenda-page .image2 {
    display: block;
    max-width: 360px;
    width: 100%;
    height: auto;
    margin: 0 auto 42px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.agenda-page .bio-text h2 {
    color: #7f6330;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem;
    font-weight: 500;
    margin: 46px 0 22px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(198, 167, 94, 0.35);
}

.agenda-page .bio-text h2:first-of-type {
    margin-top: 0;
}

.agenda-page .bio-text p,
.agenda-page .bio-text li {
    line-height: 1.8;
}

.agenda-page .bio-text ul {
    list-style: none;
    padding: 0;
    margin: 22px 0 34px;
}

.agenda-page .bio-text ul li {
    background: #fff;
    border: 1px solid rgba(198, 167, 94, 0.22);
    border-left: 4px solid #c6a75e;
    padding: 16px 18px;
    margin-bottom: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.035);
}

.agenda-page .bio-text p {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-left: 4px solid #c6a75e;
    padding: 18px 20px;
    margin-bottom: 18px;
}

.agenda-page .bio-text hr {
    border: none;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 42px 0;
}

.agenda-page .bio-text a {
    color: #7f6330;
    text-decoration: none;
    border-bottom: 1px solid rgba(198, 167, 94, 0.45);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.agenda-page .bio-text a:hover {
    color: #c6a75e;
    border-color: #c6a75e;
}

.agenda-page .bio-text em {
    color: #555;
}

.agenda-page .bio-text strong {
    color: #2a2a2a;
}

.agenda-page .bio-text h2 + p,
.agenda-page .bio-text h2 + p + ul {
    margin-top: 0;
}

/* Bloc archives */
.agenda-page .bio-text h2:last-of-type {
    margin-top: 54px;
}

.agenda-page .bio-text h2:last-of-type + ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.agenda-page .bio-text h2:last-of-type + ul li {
    margin-bottom: 0;
    padding: 14px 16px;
}

/* Responsive */
@media (max-width: 900px) {
    .agenda-page .bio-page {
        padding: 20px 4% 60px;
    }

    .agenda-page .bio-text {
        padding: 24px 20px;
    }

    .agenda-page .bio-text h2 {
        font-size: 1.7rem;
    }

    .agenda-page .bio-text p,
    .agenda-page .bio-text ul li {
        padding: 15px 16px;
    }

    .agenda-page .bio-text h2:last-of-type + ul {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   PAGES SPECTACLES
   Base commune : page parent + pages individuelles
================================= */

.shows-page .bio-page,
.show-page .bio-page,
body.shows-page .bio-page,
body.show-page .bio-page {
    padding: 30px 3% 90px;
}

.shows-page .bio-container,
.show-page .bio-container,
.shows-page .bio-text,
.show-page .bio-text {
    width: 100%;
    max-width: 1100px;
}

.shows-page .bio-text,
.show-page .bio-text,
body.shows-page .bio-text,
body.show-page .bio-text {
    padding: 48px 56px;
}

/* Les titres de section restent sur le fond de la page,
   à l'extérieur des cartouches. */
.spectacles-section {
    margin-top: 68px;
}

.spectacles-section:first-child {
    margin-top: 0;
}

.spectacles-section + .spectacles-section {
    margin-top: 78px;
}

.spectacles-section-title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0 0 38px;
    padding: 0 0 12px;
    border-bottom: 1px solid rgba(198, 167, 94, 0.35);
    color: #7f6330;
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.15;
    text-align: left;
}

/* Icônes */
.section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.icon-music,
#spectacles-actuels .section-icon {
    background: linear-gradient(135deg, #c6a75e, #e0c27a);
}

.icon-theatre,
#autres-spectacles .section-icon {
    background: linear-gradient(135deg, #9b6b4a, #c6a75e);
}

.icon-child,
#jeunes-publics .section-icon {
    background: linear-gradient(135deg, #6f8f75, #9bc59a);
}

/* Listes de cartouches */
.spectacles-list {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

/* Cartouches */
.spectacle-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    padding: 36px 38px;
    overflow: hidden;
    border: 1px solid rgba(198, 167, 94, 0.22);
    border-left: 5px solid #c6a75e;
    border-radius: 14px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.98),
        rgba(248, 246, 242, 0.96)
    );
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.055);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.spectacle-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.085);
}

.spectacle-card-soft {
    background: linear-gradient(
        to bottom,
        rgba(253, 251, 247, 0.99),
        rgba(244, 239, 229, 0.95)
    );
}

.spectacle-card-text {
    flex: 1 1 auto;
    min-width: 0;
    text-align: left;
}

.spectacle-kicker {
    margin-bottom: 8px;
    color: #9b7f3b;
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.spectacle-card h3 {
    margin-bottom: 14px;
    color: #7f6330;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.15;
    text-align: left;
}

.spectacle-card p,
.spectacle-card li {
    line-height: 1.75;
    text-align: left;
}

.spectacle-card p + p {
    margin-top: 12px;
}

/* Informations à puces : artistes, mise en scène, presse,
   écoute, vidéo de présentation, etc. */
.spectacle-card ul,
.show-info-list {
    margin: 18px 0 0;
    padding-left: 22px;
    text-align: left;
}

.spectacle-card li,
.show-info-list li {
    padding-left: 3px;
    text-align: left;
}

.spectacle-card li + li,
.show-info-list li + li {
    margin-top: 8px;
}

.spectacle-card a {
    overflow-wrap: anywhere;
}

/* Images */
.spectacle-card-image {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex: 0 0 270px;
    width: 270px;
}

.spectacle-card-image a {
    display: block;
    width: 100%;
}

.spectacle-card-image img {
    display: block;
    width: 100%;
    max-width: 270px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.11);
}

.spectacle-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 270px;
    height: 170px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f3efe6, #eae3d2);
    color: #c6a75e;
    font-size: 1.9rem;
}

/* Liens et boutons */
.spectacle-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(198, 167, 94, 0.45);
    color: #7f6330;
    text-decoration: none;
    font-weight: 500;
}

.spectacle-link:hover {
    color: #c6a75e;
    border-color: #c6a75e;
}

/* Composants destinés aux futures pages individuelles */
.show-intro-card,
.show-detail-card,
.show-media-card,
.show-press-card {
    padding: 34px 38px;
    border: 1px solid rgba(198, 167, 94, 0.22);
    border-left: 5px solid #c6a75e;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.055);
    text-align: left;
}

.show-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
    gap: 48px;
    align-items: start;
}

.show-detail-text,
.show-detail-text p,
.show-detail-text li,
.show-media-card,
.show-press-card {
    text-align: left;
}

/* Bandeau d'annonce */
.announcement-bar {
    padding: 11px 15px;
    border-bottom: 1px solid #e0dcd5;
    background-color: #f8f6f2;
    font-size: 0.95rem;
    text-align: center;
}

.announcement-bar p {
    margin: 0;
}

.announcement-bar a {
    color: #b89c5a;
    font-weight: 500;
    text-decoration: none;
}

.announcement-bar a:hover {
    text-decoration: underline;
}

/* Tablette et mobile */
@media (max-width: 900px) {
    .shows-page .bio-page,
    .show-page .bio-page,
    body.shows-page .bio-page,
    body.show-page .bio-page {
        padding: 20px 4% 60px;
    }

    .shows-page .bio-text,
    .show-page .bio-text,
    body.shows-page .bio-text,
    body.show-page .bio-text {
        padding: 24px 20px;
    }

    .spectacles-section {
        margin-top: 54px;
    }

    .spectacles-section + .spectacles-section {
        margin-top: 64px;
    }

    .spectacles-section-title {
        gap: 13px;
        margin-bottom: 28px;
        font-size: 1.8rem;
        text-align: left;
    }

    .section-icon {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
    }

    .spectacles-list {
        gap: 28px;
    }

    .spectacle-card {
        flex-direction: column;
        align-items: stretch;
        gap: 26px;
        padding: 26px 22px;
        text-align: left;
    }

    .spectacle-card-text,
    .spectacle-card h3,
    .spectacle-card p,
    .spectacle-card ul,
    .spectacle-card li,
    .show-info-list,
    .show-info-list li {
        text-align: left;
    }

    .spectacle-card ul,
    .show-info-list {
        margin-left: 0;
        padding-left: 21px;
    }

    .spectacle-card-image {
        flex: none;
        width: 100%;
    }

    .spectacle-card-image img,
    .spectacle-placeholder {
        width: 100%;
        max-width: 300px;
    }

    .spectacle-card h3 {
        font-size: 1.55rem;
    }

    .show-detail-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .show-intro-card,
    .show-detail-card,
    .show-media-card,
    .show-press-card {
        padding: 26px 22px;
    }
}

@media (max-width: 520px) {
    .shows-page .bio-text,
    .show-page .bio-text,
    body.shows-page .bio-text,
    body.show-page .bio-text {
        padding: 20px 14px;
    }

    .spectacles-section-title {
        align-items: flex-start;
        font-size: 1.62rem;
    }

    .spectacle-card {
        padding: 23px 17px;
        border-left-width: 4px;
    }

    .spectacle-card-image img,
    .spectacle-placeholder {
        max-width: 270px;
    }
}

/* ===== Galerie Classic'O Temple ===== */

.season-gallery {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;
}

.season-gallery h2 {
  text-align: center;
  margin-bottom: 30px;
}

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

.gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.04);
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 260px;
  }
}
/* ===== Classic'O Temple : largeur page + galerie ===== */

body[data-page="classic-o-temple"] .bio-text {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

body[data-page="classic-o-temple"] .classic-gallery-section {
  max-width: 1100px;
  width: 100%;
  margin: 45px auto 0;
  padding: 0;
  box-sizing: border-box;
}

body[data-page="classic-o-temple"] .classic-gallery-section h2 {
  text-align: center;
  margin-bottom: 25px;
}

body[data-page="classic-o-temple"] .classic-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

body[data-page="classic-o-temple"] .classic-gallery-item {
  display: block;
  width: 100%;
  height: 220px;
  padding: 0;
  border: 0;
  overflow: hidden;
  border-radius: 14px;
  background: none;
  cursor: pointer;
}

body[data-page="classic-o-temple"] .classic-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

body[data-page="classic-o-temple"] .classic-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(0, 0, 0, 0.85);
}

body[data-page="classic-o-temple"] .classic-lightbox[hidden] {
  display: none;
}

body[data-page="classic-o-temple"] .classic-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

body[data-page="classic-o-temple"] .classic-lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  border: 0;
  background: transparent;
  color: white;
  font-size: 42px;
  cursor: pointer;
}

@media (max-width: 768px) {
  body[data-page="classic-o-temple"] .classic-gallery-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="classic-o-temple"] .classic-gallery-item {
    height: 240px;
  }
}

/* ===============================
   CLASSIC'O TEMPLE — styles spécifiques
   Extraits de l'ancienne page HTML
================================= */
/* ===== Classic'O Temple : mise en page dédiée ===== */
    body[data-page="classic-o-temple"] .classic-temple-content .bio-container,
    body[data-page="classic-o-temple"] .classic-temple-content .bio-text {
      max-width: 1100px;
      width: 100%;
    }

    body[data-page="classic-o-temple"] .classic-season-list {
      gap: 46px;
    }

    body[data-page="classic-o-temple"] .classic-season-card {
      align-items: flex-start;
      padding-top: 40px;
      padding-bottom: 40px;
    }



    body[data-page="classic-o-temple"] .spectacles-section + .spectacles-section {
      margin-top: 78px;
    }

    body[data-page="classic-o-temple"] .spectacles-section-title {
      margin-bottom: 42px;
    }

    body[data-page="classic-o-temple"] .section-icon {
      color: #fff;
    }

    body[data-page="classic-o-temple"] .icon-music {
      background: linear-gradient(135deg, #c6a75e, #e0c27a);
    }

    body[data-page="classic-o-temple"] .icon-theatre {
      background: linear-gradient(135deg, #9b6b4a, #c6a75e);
    }

    body[data-page="classic-o-temple"] .classic-season-image {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      align-self: flex-start;
      min-width: 260px;
      max-width: 330px;
    }

    body[data-page="classic-o-temple"] .classic-lightbox-trigger {
      display: block;
      width: 100%;
      padding: 0;
      border: 0;
      background: transparent;
      cursor: pointer;
    }

    body[data-page="classic-o-temple"] .classic-season-image img {
      display: block;
      width: 100%;
      max-width: 300px;
      max-height: 390px;
      height: auto;
      object-fit: contain;
      border-radius: 14px;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
      background: #fff;
    }

    body[data-page="classic-o-temple"] .classic-season-image.classic-season-image-wide img {
      max-width: 330px;
      max-height: 240px;
    }

    body[data-page="classic-o-temple"] .classic-brochure-card .spectacle-card-text p:last-child {
      margin-top: 10px;
    }

    body[data-page="classic-o-temple"] .classic-popup-note {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: #9b7f3b;
      font-weight: 500;
      font-size: 0.95rem;
    }

    body[data-page="classic-o-temple"] .classic-season-image-wide .classic-lightbox-trigger {
      border-radius: 14px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    body[data-page="classic-o-temple"] .classic-season-image-wide .classic-lightbox-trigger:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
    }

    body[data-page="classic-o-temple"] .classic-lightbox {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding: 72px 28px 34px;
      overflow: auto;
      background: rgba(0, 0, 0, 0.88);
    }

    body[data-page="classic-o-temple"] .classic-lightbox[hidden] {
      display: none;
    }

    body[data-page="classic-o-temple"] .classic-lightbox figure {
      margin: 0;
      text-align: center;
    }

    body[data-page="classic-o-temple"] .classic-lightbox img {
      display: block;
      max-width: 92vw;
      max-height: 82vh;
      width: auto;
      height: auto;
      object-fit: contain;
      border-radius: 10px;
      background: #fff;
      margin: 0 auto;
    }

    body[data-page="classic-o-temple"] .classic-lightbox.classic-lightbox-brochure img {
      width: min(1450px, 96vw);
      max-width: none;
      max-height: none;
      height: auto;
    }

    body[data-page="classic-o-temple"] .classic-lightbox-open-original {
      display: inline-block;
      margin-top: 16px;
      padding: 9px 15px;
      border-radius: 999px;
      background: #fff;
      color: #333;
      text-decoration: none;
      font-size: 0.92rem;
    }

    body[data-page="classic-o-temple"] .classic-lightbox-close {
      position: absolute;
      top: 16px;
      right: 22px;
      border: 0;
      background: transparent;
      color: #fff;
      font-size: 44px;
      line-height: 1;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      body[data-page="classic-o-temple"] .classic-lightbox {
        padding: 68px 14px 24px;
      }

      body[data-page="classic-o-temple"] .classic-lightbox.classic-lightbox-brochure img {
        width: 1200px;
        max-width: none;
      }

      body[data-page="classic-o-temple"] .classic-season-card {
        align-items: stretch;
      }

  

    body[data-page="classic-o-temple"] .spectacles-section + .spectacles-section {
      margin-top: 78px;
    }

    body[data-page="classic-o-temple"] .spectacles-section-title {
      margin-bottom: 42px;
    }

    body[data-page="classic-o-temple"] .section-icon {
      color: #fff;
    }

    body[data-page="classic-o-temple"] .icon-music {
      background: linear-gradient(135deg, #c6a75e, #e0c27a);
    }

    body[data-page="classic-o-temple"] .icon-theatre {
      background: linear-gradient(135deg, #9b6b4a, #c6a75e);
    }

    body[data-page="classic-o-temple"] .classic-season-image {
        min-width: 0;
        max-width: none;
        width: 100%;
      }

      body[data-page="classic-o-temple"] .classic-season-image img,
      body[data-page="classic-o-temple"] .classic-season-image.classic-season-image-wide img {
        max-width: 100%;
        max-height: 520px;
      }
    }

    /* ===== Lightbox Classic'O Temple : version robuste ===== */
    #classicLightbox {
      position: fixed !important;
      inset: 0 !important;
      z-index: 2147483647 !important;
      display: block !important;
      overflow: auto !important;
      padding: 76px 18px 36px !important;
      background: rgba(0, 0, 0, 0.90) !important;
      -webkit-overflow-scrolling: touch !important;
      text-align: center !important;
    }

    #classicLightbox[hidden] {
      display: none !important;
    }

    #classicLightbox .classic-lightbox-close {
      position: fixed !important;
      top: 12px !important;
      right: 14px !important;
      z-index: 2147483647 !important;
      width: 48px !important;
      height: 48px !important;
      border: 0 !important;
      border-radius: 50% !important;
      background: rgba(255, 255, 255, 0.96) !important;
      color: #111 !important;
      font-size: 36px !important;
      line-height: 44px !important;
      cursor: pointer !important;
      box-shadow: 0 8px 24px rgba(0,0,0,.35) !important;
    }

    #classicLightbox figure {
      display: inline-block !important;
      width: min(1120px, 100%) !important;
      max-width: 100% !important;
      margin: 0 auto !important;
      text-align: center !important;
    }

    #classicLightbox img {
      display: block !important;
      width: 100% !important;
      max-width: 100% !important;
      height: auto !important;
      max-height: none !important;
      object-fit: contain !important;
      margin: 0 auto !important;
      background: #fff !important;
      border-radius: 10px !important;
    }

    #classicLightbox:not(.classic-lightbox-brochure) figure {
      width: auto !important;
      max-width: min(900px, 100%) !important;
    }

    #classicLightbox:not(.classic-lightbox-brochure) img {
      width: auto !important;
      max-width: 100% !important;
      max-height: calc(100vh - 130px) !important;
    }

    #classicLightbox .classic-lightbox-open-original {
      display: inline-block !important;
      margin-top: 16px !important;
      padding: 10px 16px !important;
      border-radius: 999px !important;
      background: #fff !important;
      color: #333 !important;
      text-decoration: none !important;
      font-size: 0.92rem !important;
    }

    @media (max-width: 768px) {
      #classicLightbox {
        padding: 70px 12px 28px !important;
      }

      #classicLightbox .classic-lightbox-close {
        top: 10px !important;
        right: 10px !important;
        width: 46px !important;
        height: 46px !important;
        font-size: 34px !important;
        line-height: 42px !important;
      }

      #classicLightbox figure,
      #classicLightbox.classic-lightbox-brochure figure {
        width: 100% !important;
      }

      #classicLightbox img,
      #classicLightbox.classic-lightbox-brochure img {
        width: 100% !important;
        max-width: 100% !important;
        max-height: none !important;
      }
    }


    /* ===== Saison 2026–2027 : informations et billetterie ===== */
    .classic-event-meta { margin: 14px 0 18px; padding: 14px 18px; border-left: 3px solid #c6a75e; background: rgba(198,167,94,.08); }
    .classic-event-meta p { margin: 5px 0; }
    .classic-event-programme { margin: 18px 0; }
    .classic-event-programme h4, .classic-booking h4 { margin-bottom: 8px; }
    .classic-event-programme ul { margin: 0; padding-left: 21px; }
    .classic-event-programme li + li { margin-top: 7px; }
    .classic-artist-links a { font-weight: 600; }
    .classic-booking { margin-top: 20px; padding: 18px; border-radius: 12px; background: #f8f6f2; }
    .classic-event-aside {
      display: flex;
      flex-direction: column;
      align-items: center;
      align-self: flex-start;
      min-width: 260px;
      max-width: 330px;
      width: 100%;
      gap: 18px;
    }

    .classic-event-aside .classic-season-image {
      width: 100%;
      min-width: 0;
      max-width: none;
      margin: 0;
    }

    .classic-event-aside .classic-booking-actions {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      gap: 14px;
    }

    .classic-event-aside .classic-booking-button {
      width: 100%;
      box-sizing: border-box;
      text-align: center;
    }

    .classic-event-aside .classic-booking-qr {
      display: block;
      margin: 0 auto;
    }

    .classic-booking-actions {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
    }
    .classic-booking-button { display: inline-block; padding: 11px 18px; border-radius: 999px; background: #9b7f3b; color: #fff; text-decoration: none; font-weight: 600; }
    .classic-booking-qr { width: 150px; height: 150px; object-fit: contain; border-radius: 8px; background: #fff; }
    .classic-brochure-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
    .classic-brochure-grid img { width: 100%; height: auto; }
    .classic-download-link { display: inline-block; margin-top: 18px; font-weight: 600; }
    @media (max-width: 768px) {
      .classic-brochure-grid { grid-template-columns: 1fr; }
      .classic-booking-actions {
        flex-direction: column;
        align-items: flex-start;
      }
    }

  
    .classic-season-overview {
      align-items: flex-start;
    }

    .classic-season-overview-content {
      flex: 1 1 560px;
    }

    .classic-season-overview-aside {
      display: flex;
      flex: 0 0 260px;
      flex-direction: column;
      align-items: center;
      gap: 18px;
      width: 260px;
    }

    .classic-arteka-logo {
      display: block;
      width: min(220px, 100%);
      height: auto;
      object-fit: contain;
    }

    .classic-season-ticketing {
      margin-top: 24px;
      padding: 20px;
      border-radius: 14px;
      background: #f8f6f2;
    }

    .classic-season-ticketing h4 {
      margin: 0 0 10px;
    }

    .classic-season-ticketing p {
      margin: 7px 0;
    }

    .classic-season-ticketing-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 16px;
    }

    .classic-subscribe-button,
    .classic-booking-button {
      display: inline-block;
      padding: 11px 18px;
      border-radius: 999px;
      background: #9b7f3b;
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      text-align: center;
    }

    .classic-subscribe-button {
      background: #6f5830;
    }

    .classic-season-qr {
      display: block;
      width: 170px;
      height: 170px;
      object-fit: contain;
      border-radius: 10px;
      background: #fff;
    }

    .classic-event-aside {
      display: flex;
      flex-direction: column;
      align-items: center;
      align-self: flex-start;
      min-width: 260px;
      max-width: 330px;
      width: 100%;
      gap: 16px;
    }

    .classic-event-aside .classic-booking-button {
      width: 100%;
      box-sizing: border-box;
    }

    .classic-event-aside .classic-season-image {
      width: 100%;
      min-width: 0;
      max-width: none;
      margin: 0;
    }

    @media (max-width: 768px) {
      .classic-season-overview-aside,
      .classic-event-aside {
        width: 100%;
        max-width: none;
        min-width: 0;
      }

      .classic-season-ticketing-actions {
        flex-direction: column;
      }

      .classic-season-ticketing-actions a {
        width: 100%;
        box-sizing: border-box;
      }
    }

  
    /* Mise en page finale Classic'O Temple */
    body[data-page="classic-o-temple"] .classic-season-list {
      gap: 30px;
    }

    body[data-page="classic-o-temple"] .classic-season-card {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 300px;
      column-gap: 38px;
      align-items: stretch;
    }

    body[data-page="classic-o-temple"] .classic-season-overview-content,
    body[data-page="classic-o-temple"] .spectacle-card-text {
      min-width: 0;
    }

    body[data-page="classic-o-temple"] .classic-season-overview-aside,
    body[data-page="classic-o-temple"] .classic-event-aside .classic-booking-button {
    width: min(220px, 100%);
    align-self: center;
}
   
    body[data-page="classic-o-temple"] .classic-season-overview-aside {
      justify-content: space-between;
      gap: 28px;
    }

    body[data-page="classic-o-temple"] .classic-season-overview-aside .classic-season-image {
      width: 100%;
      margin: 0;
    }

    body[data-page="classic-o-temple"] .classic-season-qr-link {
      margin-top: auto;
      display: flex;
      justify-content: center;
      width: 100%;
    }

    body[data-page="classic-o-temple"] .classic-season-qr {
      display: block;
      width: 160px;
      height: 160px;
      margin: 0 auto;
      object-fit: contain;
    }

    body[data-page="classic-o-temple"] .classic-ticketing-card {
      display: block;
      text-align: center;
    }

    body[data-page="classic-o-temple"] .classic-ticketing-inner {
      max-width: 860px;
      margin: 0 auto;
    }

    body[data-page="classic-o-temple"] .classic-ticketing-card .classic-arteka-logo {
      display: block;
      width: min(210px, 70%);
      height: auto;
      margin: 0 auto 18px;
      object-fit: contain;
    }

    body[data-page="classic-o-temple"] .classic-ticketing-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: stretch;
      gap: 14px;
      margin-top: 22px;
    }

    body[data-page="classic-o-temple"] .classic-ticketing-actions a {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      min-width: 190px;
      padding: 12px 20px;
      border-radius: 999px;
      box-sizing: border-box;
      text-decoration: none;
      font-weight: 600;
    }

    body[data-page="classic-o-temple"] .classic-booking-button,
    body[data-page="classic-o-temple"] .classic-subscribe-button {
      background: #6f5830;
      color: #fff;
    }

    body[data-page="classic-o-temple"] .classic-download-button {
      background: #b89a57;
      color: #fff;
    }

    body[data-page="classic-o-temple"] .classic-event-aside {
      justify-content: flex-start;
      gap: 18px;
    }

    body[data-page="classic-o-temple"] .classic-event-aside .classic-season-image {
      width: 100%;
      margin: 0;
    }

    body[data-page="classic-o-temple"] .classic-event-aside .classic-booking-button {
      width: min(220px, 100%);
      margin-top: auto;
      align-self: center;
      box-sizing: border-box;
    }

    @media (max-width: 768px) {
      body[data-page="classic-o-temple"] .classic-season-card {
        display: flex;
        flex-direction: column;
      }

      body[data-page="classic-o-temple"] .classic-season-overview-aside,
      body[data-page="classic-o-temple"] .classic-event-aside {
        width: 100%;
      }

      body[data-page="classic-o-temple"] .classic-ticketing-actions {
        flex-direction: column;
      }

      body[data-page="classic-o-temple"] .classic-ticketing-actions a {
        width: 100%;
      }
    }

  
    /* Ajustement final : logo dans l'introduction et billetterie dans le premier cartouche */
    body[data-page="classic-o-temple"] .classic-intro-logo {
      display: block;
      width: min(220px, 60%);
      height: auto;
      margin: 24px auto 0;
      object-fit: contain;
    }

    body[data-page="classic-o-temple"] .classic-overview-ticketing {
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid rgba(111, 88, 48, 0.25);
    }

    body[data-page="classic-o-temple"] .classic-overview-ticketing h4 {
      margin: 0 0 10px;
    }

    body[data-page="classic-o-temple"] .classic-overview-ticketing p {
      margin: 7px 0;
    }

    body[data-page="classic-o-temple"] .classic-overview-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 14px;
      margin-top: 18px;
    }

    body[data-page="classic-o-temple"] .classic-overview-actions a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 210px;
      padding: 12px 20px;
      border-radius: 999px;
      box-sizing: border-box;
      text-decoration: none;
      font-weight: 600;
      text-align: center;
    }

    body[data-page="classic-o-temple"] .classic-ticket-button {
      background: #6f5830;
      color: #fff;
    }

    body[data-page="classic-o-temple"] .classic-download-button {
      background: #b89a57;
      color: #fff;
    }

    @media (max-width: 768px) {
      body[data-page="classic-o-temple"] .classic-overview-actions {
        flex-direction: column;
        align-items: stretch;
      }

      body[data-page="classic-o-temple"] .classic-overview-actions a {
        width: 100%;
      }
    }

  
    /* Version mobile finalisée — Classic'O Temple */
    @media (max-width: 768px) {
      body[data-page="classic-o-temple"] main {
        overflow-x: hidden;
      }

      body[data-page="classic-o-temple"] .classic-intro-logo {
        width: min(190px, 68vw);
        margin-top: 20px;
      }

      body[data-page="classic-o-temple"] .classic-season-list {
        gap: 24px;
      }

      body[data-page="classic-o-temple"] .classic-season-card {
        display: flex;
        flex-direction: column;
        gap: 22px;
        padding: 24px 18px;
      }

      body[data-page="classic-o-temple"] .classic-season-overview-content,
      body[data-page="classic-o-temple"] .spectacle-card-text {
        order: 1;
        width: 100%;
      }

      body[data-page="classic-o-temple"] .classic-season-overview-aside,
      body[data-page="classic-o-temple"] .classic-event-aside {
        order: 2;
        display: contents;
      }

      /* Premier cartouche :
         texte, affiche, QR, billetterie et boutons. */
      body[data-page="classic-o-temple"] .classic-season-overview
      .classic-season-image {
        order: 2;
        width: min(100%, 330px);
        margin: 0 auto;
      }

      body[data-page="classic-o-temple"] .classic-season-overview
      .classic-season-qr-link {
        order: 3;
        width: 100%;
        margin: 2px auto 0;
      }

      body[data-page="classic-o-temple"] .classic-season-overview
      .classic-season-qr {
        width: 145px;
        height: 145px;
      }

      body[data-page="classic-o-temple"] .classic-overview-ticketing {
        margin-top: 22px;
        padding-top: 18px;
      }

      body[data-page="classic-o-temple"] .classic-overview-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
      }

      body[data-page="classic-o-temple"] .classic-overview-actions a {
        width: 100%;
        min-width: 0;
      }

      /* Fiches concerts :
         informations, affiche, puis bouton Réserver. */
      body[data-page="classic-o-temple"] .classic-event-aside
      .classic-season-image {
        order: 2;
        width: min(100%, 330px);
        margin: 0 auto;
      }

      body[data-page="classic-o-temple"] .classic-event-aside
      .classic-booking-button {
        order: 3;
        width: min(230px, 100%);
        margin: 0 auto;
        align-self: center;
      }

      body[data-page="classic-o-temple"] .spectacle-card-image img,
      body[data-page="classic-o-temple"] .classic-lightbox-trigger img {
        display: block;
        width: 100%;
        height: auto;
      }

      body[data-page="classic-o-temple"] h2,
      body[data-page="classic-o-temple"] h3,
      body[data-page="classic-o-temple"] h4 {
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
      }

      body[data-page="classic-o-temple"] p,
      body[data-page="classic-o-temple"] li {
        overflow-wrap: break-word;
      }
    }

    @media (max-width: 420px) {
      body[data-page="classic-o-temple"] .classic-season-card {
        padding: 21px 15px;
      }

      body[data-page="classic-o-temple"] .classic-season-overview
      .classic-season-image,
      body[data-page="classic-o-temple"] .classic-event-aside
      .classic-season-image {
        width: 100%;
      }

      body[data-page="classic-o-temple"] .classic-season-overview
      .classic-season-qr {
        width: 132px;
        height: 132px;
      }
    }

  
    /* Présentation finale des artistes et des programmes */
    body[data-page="classic-o-temple"] .classic-artist-links {
      text-align: left;
    }

    body[data-page="classic-o-temple"] .classic-artist-line {
      display: inline-block;
      white-space: nowrap;
      margin-top: 0.18em;
    }

    body[data-page="classic-o-temple"] .classic-event-programme,
    body[data-page="classic-o-temple"] .classic-event-programme h4,
    body[data-page="classic-o-temple"] .classic-event-programme ul,
    body[data-page="classic-o-temple"] .classic-event-programme li {
      text-align: left;
    }

    body[data-page="classic-o-temple"] .classic-event-programme ul {
      padding-left: 1.25rem;
    }

    @media (max-width: 380px) {
      body[data-page="classic-o-temple"] .classic-artist-line {
        white-space: normal;
      }
    }
  
    /* Programme : même composant visuel que Date, Lieu et Artistes */
    body[data-page="classic-o-temple"] .classic-event-programme,
    body[data-page="classic-o-temple"] .classic-event-programme h4,
    body[data-page="classic-o-temple"] .classic-event-programme ul,
    body[data-page="classic-o-temple"] .classic-event-programme li,
    body[data-page="classic-o-temple"] .classic-event-programme p,
    body[data-page="classic-o-temple"] .classic-event-meta,
    body[data-page="classic-o-temple"] .classic-event-meta p {
      text-align: left;
    }

    body[data-page="classic-o-temple"] .classic-event-programme h4 {
      margin-top: 0;
      margin-bottom: 8px;
    }

    body[data-page="classic-o-temple"] .classic-event-programme ul {
      margin-bottom: 0;
      padding-left: 21px;
    }

    body[data-page="classic-o-temple"] .classic-event-programme p:last-child {
      margin-bottom: 0;
    }
/* ===============================
   PAGE PHOTOS
================================= */
/* ===============================
   RESET
================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f6f2;
    color: #1c1c1c;
    position: relative;
}

/* ===============================
   ANIMATION & CONTENU PRINCIPAL
================================= */
.main-content {
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes globeFloat {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-1px) rotate(6deg); }
    100% { transform: translateY(0) rotate(0deg); }
}


/* Photo d'arrière-plan limitée au contenu central */
.main-content::before {
    content: none;
}
.home-page .main-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("images/christine-fonlupt.jpg") no-repeat center 75%;
    background-size: 1100px auto;
    opacity: 0;
    animation: fadeIn 1.8s ease forwards;
    z-index: -2;
}

/* Calque doux */
.main-content::after {
    content: none;
}
.home-page .main-content::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(248, 246, 242, 0.65);
    z-index: -1;
}

/* ===============================
   HEADER
================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 5%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    letter-spacing: 0.3px;
    color: #2a2a2a;
}

.first {
    font-weight: 400;
}

.last {
    font-weight: 700;
}

/* Menu */
nav {
    display: flex;
    align-items: center;
}

.menu {
    list-style: none;
    display: flex;
    gap: 18px;
    align-items: center;
}

.menu li {
    position: relative;
}

.dropdown {
    position: relative;
}

.menu a {
    text-decoration: none;
    color: #666;
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 300;
    transition: color 0.3s ease;
    position: relative;
}

/* Ligne dorée subtile */
.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 1px;
    background: #c6a75e;
    opacity: 0.8;
    transition: width 0.3s ease;
}

.menu a:hover::after {
    width: 100%;
}

.menu a:hover {
    color: #c6a75e;
}

/* Sous-menu desktop */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    padding: 15px 0;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    z-index: 1100;
}

.submenu li {
    list-style: none;
}

.submenu a {
    display: block;
    padding: 8px 20px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Desktop uniquement */
@media (min-width: 901px) {
  .dropdown:hover > .submenu,
  .dropdown:focus-within > .submenu {
    display: block;
  }
}

.dropdown-toggle {
    display: contents;
}

.submenu-toggle {
    display: none;
}
/* Burger caché sur desktop */
.burger {
    display: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: #2a2a2a;
}

/* ===============================
   LANGUES
================================= */
.languages {
    font-size: 0.65rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-btn {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    letter-spacing: inherit;
    color: #888;
    cursor: pointer;
    transition: color 0.3s ease, opacity 0.3s ease;
    text-transform: uppercase;
}

.lang-btn:hover {
    color: #c6a75e;
}

.lang-btn.active {
    color: #c6a75e;
    font-weight: 500;
}

.languages span {
    opacity: 0.4;
}

.languages a {
    text-decoration: none;
    color: #888;
    transition: color 0.3s;
}

/* ===============================
   Bulles de traduction
================================= */
.translate-badge {
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: calc(100% - 36px);
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 999;
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.translate-badge.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.translate-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    line-height: 1;
    animation: globeFloat 1.8s ease-in-out infinite;
}

.translate-badge-text {
    font-size: 0.72rem;
    letter-spacing: 0.4px;
    color: #444;
    white-space: nowrap;
}

.translate-close {
    border: none;
    background: none;
    color: #777;
    cursor: pointer;
    padding: 0;
    margin-left: 2px;
    font-size: 0.82rem;
    line-height: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

.translate-close:hover {
    color: #c6a75e;
    transform: scale(1.08);
}

/* ===============================
   HERO
================================= */
.hero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 70vh;
    padding-top: 120px; /* compensation du header fixe */
    padding-bottom: 40px;
}

.hero .hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #2a2a2a;
}

.gold-line {
    width: 500px;
    height: 2px;
    background: #c6a75e;
    margin: 25px auto;
}

.hero-content p {
    letter-spacing: 3px;
    margin-top: 20px;
}

/* ===============================
   SECTIONS
================================= */
.content {
    padding: 140px 10%;
}

.home-intro {
    padding: 100px 10% 90px;
    text-align: center;
}

.quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-style: italic;
    opacity: 0.8;
}

/* ===============================
   NEXT EVENT
================================= */
.next-event {
    text-align: center;
    padding: 90px 10% 50px;
    margin-bottom: 20px;
}

.next-event h3 {
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 35px;
    font-weight: 500;
    font-size: 1.8rem;
}

.event-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 40px;
    max-width: 500px;
    margin: auto;
    background: #fff;
}

.date {
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* ===============================
   FOOTER
================================= */
footer {
    background: #111;
    color: #fff;
    width: 100%;
    padding: 25px 5%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-left,
.footer-center,
.footer-right {
    min-width: 180px;
    margin-bottom: 10px;
}

footer h3 {
    margin-bottom: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 1rem;
}

.footer-left a,
.footer-center a,
.footer-right a {
    color: #ccc;
    text-decoration: none;
    display: block;
    line-height: 1.4;
    margin-bottom: 4px;
    transition: color 0.3s;
    position: relative;
}

.footer-left a::after,
.footer-center a::after,
.footer-right a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 1px;
    background: #c6a75e;
    transition: width 0.3s ease;
}

.footer-left a:hover::after,
.footer-center a:hover::after,
.footer-right a:hover::after {
    width: 100%;
}

footer a:hover {
    color: #c6a75e;
}

footer i {
    width: 18px;
    margin-right: 8px;
    font-size: 0.85rem;
    opacity: 0.8;
}

footer a:hover i {
    opacity: 1;
}

.footer-left a:last-child,
.footer-center a:last-child,
.footer-right a:last-child {
    margin-bottom: 12px;
}

/* ===============================
   TABLETTE
================================= */
@media (max-width: 1000px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .gold-line {
        width: 260px;
    }
}

/* ===============================
   MOBILE
================================= */
@media (max-width: 900px) {
    header {
        padding: 14px 5%;
        flex-wrap: wrap;
        gap: 8px;
    }

    .logo {
        font-size: 1.05rem;
    }

    .burger {
        display: block;
    }

    nav {
        width: 100%;
    }

    .menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        padding: 25px 0;
        display: none;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    }

    .menu.active {
        display: flex;
    }

    /* On neutralise les sous-menus complexes sur mobile */
    .submenu {
        position: static;
        display: none;
        box-shadow: none;
        padding: 8px 0 0;
        min-width: auto;
        background: transparent;
        width: 100%;
        margin-top: 8px;
    }

    .dropdown:hover > .submenu,
    .dropdown:focus-within > .submenu {
        display: none;
    }
    .dropdown {
        width: 100%;
        text-align: center;
    }

   .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: auto;
	}

	.dropdown-toggle a {
    flex: initial;
	}

	 .submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    opacity: 0.75;
	}

	.submenu-toggle::before {
    content: "";
    width: 4px;
    height: 4px;
    display: block;
    border-right: 1px solid #666;
    border-bottom: 1px solid #666;
    transform: rotate(45deg);
    transform-origin: center;
    transition: transform 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
    opacity: 0.8;
    margin-top: -1px;
	}

	/* Animation ouverture */
	.dropdown.open > .dropdown-toggle .submenu-toggle::before {
    transform: rotate(-135deg);
    margin-top: 2px;
	}

	/* Hover déjà cohérent avec ton style */
	.submenu-toggle:hover::before {
    border-color: #c6a75e;
    opacity: 1;
}

    .dropdown.open .submenu {
        display: block;
    }

    .submenu {
        width: 100%;
        margin-top: 8px;
    }

    .submenu li {
        margin-bottom: 6px;
    }

   .languages {
    width: 100%;
    justify-content: center;
    font-size: 0.58rem;
    margin-top: 2px;
}

    .translate-badge {
        right: 12px;
        bottom: 12px;
        padding: 7px 10px;
        gap: 7px;
    }

    .translate-badge-text {
        font-size: 0.68rem;
    }

    .translate-badge-icon {
        font-size: 0.82rem;
    }

    .hero {
        min-height: 52vh;
        padding-top: 95px;
        padding-bottom: 20px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1;
    }

    .gold-line {
        width: 160px;
        margin: 18px auto;
    }

    .hero-content p {
        margin-top: 12px;
        letter-spacing: 2px;
        font-size: 0.85rem;
    }

    .home-intro {
        padding: 65px 8% 55px;
    }

    .quote {
        font-size: 1.25rem;
        line-height: 1.4;
    }

    .next-event {
        padding: 60px 8% 30px;
        margin-bottom: 10px;
    }

    .next-event h3 {
        margin-bottom: 24px;
        font-size: 1.5rem;
    }

    .event-card {
        padding: 28px 20px;
    }

    .main-content::before {
        background-size: 750px auto;
        background-position: center 60%;
    }

    footer {
        padding: 22px 7%;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        margin-bottom: 0;
    }

    .footer-left a::after,
    .footer-center a::after,
    .footer-right a::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .menu a {
    font-size: 0.75rem;
	}
	.submenu a {
        padding: 6px 0;
        font-size: 0.8rem;
    }
}
/* ===============================
   LOGO CLIQUABLE
================================= */
.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    letter-spacing: 0.3px;
    color: #2a2a2a;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

/* ===============================
   LIEN ACTIF MENU
================================= */
.menu a[aria-current="page"] {
    color: #c6a75e;
}

.menu a[aria-current="page"]::after {
    width: 100%;
}

/* Ouvrir aussi un dropdown actif sur desktop */
@media (min-width: 901px) {
    .dropdown.open > .submenu {
        display: block;
    }
}

/* ===============================
   PAGE INTERIEURE / BIO
================================= */
.bio-body .main-content::before {
    background: none;
}

.bio-main {
    padding-top: 0;
}

.page-hero {
    padding: 150px 10% 50px;
    text-align: center;
}

.page-hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 500;
    color: #2a2a2a;
}

.page-hero-content p {
    margin-top: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #666;
}

.bio-page {
    padding: 30px 8% 90px;
}

.bio-container {
    max-width: 900px;
    margin: 0 auto;
}

.bio-text {
    background: rgba(255, 255, 255, 0.88);
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    line-height: 1.9;
    font-size: 1rem;
}

.bio-text p {
    margin-bottom: 24px;
}

.bio-text p:last-child {
    margin-bottom: 0;
}

.bio-text a,
.bio-links a {
    color: #7f6330;
    text-decoration: none;
    border-bottom: 1px solid rgba(198, 167, 94, 0.45);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.bio-text a:hover,
.bio-links a:hover {
    color: #c6a75e;
    border-color: #c6a75e;
}

.bio-links {
    background: #fff;
    padding: 28px 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 110px;
}

.bio-links h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 18px;
}

.bio-links ul {
    list-style: none;
    padding: 0;
}

.bio-links li {
    margin-bottom: 12px;
    line-height: 1.5;
}

@media (max-width: 1000px) {
    .page-hero-content h1 {
        font-size: 3rem;
    }

    .bio-links {
        position: static;
    }
}

@media (max-width: 900px) {
    .page-hero {
        padding: 120px 8% 35px;
    }

    .page-hero-content h1 {
        font-size: 2.3rem;
    }

    .page-hero-content p {
        font-size: 0.72rem;
        letter-spacing: 1.6px;
    }

    .bio-page {
        padding: 20px 6% 60px;
    }

    .bio-container {
        max-width: 100%;
    }

    .bio-text {
        padding: 24px 20px;
        font-size: 0.96rem;
        line-height: 1.8;
    }

    .bio-links {
        padding: 22px 18px;
    }

    .bio-links h2 {
        font-size: 1.5rem;
    }
}
/* ===============================
   PAGE ENSEIGNEMENT – LARGEUR SPECIFIQUE
================================= */

.teaching-page .bio-page {
    padding: 30px 3.5% 90px;
}

.teaching-page .bio-container {
    max-width: 1440px;
}

.teaching-page .bio-text {
    padding: 54px 56px;
}
/* ===============================
   PAGE ENSEIGNEMENT – HIERARCHIE VISUELLE
================================= */

.teaching-page .bio-text h2 {
    color: #7f6330;
    font-size: 2.2rem;
    margin: 52px 0 22px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(198, 167, 94, 0.35);
}

.teaching-page .bio-text h3 {
    color: #2a2a2a;
    font-size: 1.55rem;
}

.teaching-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin: 26px 0 46px;
}

.teaching-card {
    background: linear-gradient(to bottom, rgba(255,255,255,0.98), rgba(248,246,242,0.96));
    border: 1px solid rgba(198, 167, 94, 0.22);
    border-top: 3px solid #c6a75e;
    padding: 30px 28px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.05);
    border-radius: 2px;
}

.teaching-card h3 {
    margin-top: 0;
    margin-bottom: 14px;
    color: #7f6330;
}

.teaching-card a {
    word-break: break-word;
}

.masterclass-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 22px 0 44px;
}

.masterclass-item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-left: 4px solid #c6a75e;
    padding: 20px 22px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.035);
}

.teaching-highlight {
    background: linear-gradient(135deg, rgba(198, 167, 94, 0.10), rgba(255,255,255,0.95));
    border: 1px solid rgba(198, 167, 94, 0.28);
    border-left: 4px solid #c6a75e;
    padding: 24px 26px;
    margin: 28px 0 40px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.03);
}

.teaching-section {
    margin-top: 54px;
}

.teaching-contact-box {
    margin-top: 52px;
    padding: 28px 30px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 3px solid #c6a75e;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
}

.teaching-contact-box h2 {
    margin-top: 0;
}

.teaching-contact-box p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1150px) {
    .masterclass-list,
    .teaching-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .teaching-page .bio-page {
        padding: 20px 4% 60px;
    }

    .teaching-page .bio-text {
        padding: 24px 20px;
    }

    .teaching-page .bio-text h2 {
        font-size: 1.75rem;
    }

    .teaching-card,
    .masterclass-item,
    .teaching-highlight,
    .teaching-contact-box {
        padding: 18px 16px;
    }
}
/* ===============================
   PAGE DISCOGRAPHIE
================================= */

.discography-page .bio-page {
    padding: 30px 4% 90px;
}

.discography-page .bio-container {
    max-width: 1280px;
}

.discography-page .bio-text {
    padding: 48px 44px;
}

/* Intro / actualité */
.disco-news {
    background: linear-gradient(135deg, rgba(198, 167, 94, 0.10), rgba(255,255,255,0.96));
    border: 1px solid rgba(198, 167, 94, 0.28);
    border-left: 4px solid #c6a75e;
    padding: 24px 26px;
    margin-bottom: 42px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.03);
}

.disco-news h2 {
    margin: 0 0 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    color: #7f6330;
}

.disco-news p:last-child {
    margin-bottom: 0;
}

/* Titres de section */
.disco-section {
    margin-top: 48px;
}

.disco-section h2 {
    color: #7f6330;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem;
    font-weight: 500;
    margin-bottom: 22px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(198, 167, 94, 0.35);
}

/* Grille d’albums */
.disco-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 28px;
    margin: 24px 0 10px;
}

/* Carte album */
.disco-item {
    background: linear-gradient(to bottom, rgba(255,255,255,0.98), rgba(248,246,242,0.96));
    border: 1px solid rgba(198, 167, 94, 0.22);
    border-top: 3px solid #c6a75e;
    padding: 28px 26px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.05);
}

.disco-item h3 {
    margin: 0 0 16px;
    color: #7f6330;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 500;
}

.disco-cover {
    width: 100%;
    max-width: 260px;
    height: auto;
    display: block;
    margin: 0 auto 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.disco-meta {
    font-size: 0.96rem;
    line-height: 1.8;
    color: #2a2a2a;
}

.disco-meta p {
    margin-bottom: 12px;
}

.disco-meta p:last-child {
    margin-bottom: 0;
}

/* Liens streaming */
.streaming-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-top: 18px;
}

.streaming-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: #444;
    font-size: 0.9rem;
    line-height: 1;
    transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.streaming-links a:hover {
    color: #c6a75e;
    border-color: rgba(198, 167, 94, 0.45);
    transform: translateY(-1px);
}

.streaming-links i {
    font-size: 1rem;
}

.streaming-links img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
}

/* Bloc plateformes général */
.streaming-platforms {
    margin-top: 54px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.streaming-platforms h2 {
    color: #7f6330;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 1000px) {
    .discography-page .bio-container {
        max-width: 100%;
    }

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

@media (max-width: 900px) {
    .discography-page .bio-page {
        padding: 20px 4% 60px;
    }

    .discography-page .bio-text {
        padding: 24px 20px;
    }

    .disco-news,
    .disco-item {
        padding: 20px 18px;
    }

    .disco-news h2,
    .disco-section h2,
    .streaming-platforms h2 {
        font-size: 1.7rem;
    }

    .disco-item h3 {
        font-size: 1.4rem;
    }

    .streaming-links a {
        font-size: 0.86rem;
        padding: 8px 10px;
    }
}
/* ===============================
   PAGE ACTUALITÉS
================================= */

.news-page .bio-page {
    padding: 30px 4% 90px;
}

.news-page .bio-container {
    max-width: 1280px;
}

.news-page .bio-text {
    padding: 48px 44px;
}

.news-section {
    margin-bottom: 58px;
    padding-bottom: 42px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.news-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.news-section h2 {
    color: #7f6330;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem;
    font-weight: 500;
    margin-bottom: 22px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(198, 167, 94, 0.35);
}

.news-highlight {
    background: linear-gradient(135deg, rgba(198, 167, 94, 0.10), rgba(255,255,255,0.96));
    border: 1px solid rgba(198, 167, 94, 0.28);
    border-left: 4px solid #c6a75e;
    padding: 24px 26px;
    margin: 24px 0 34px;
}

.news-image {
    display: block;
    max-width: 520px;
    width: 100%;
    height: auto;
    margin: 24px auto;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.news-image-small {
    max-width: 300px;
}

.news-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center;
    margin: 28px 0;
}

.news-gallery img {
    max-width: 260px;
    width: 100%;
    height: auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.news-dates {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px;
}

.news-dates > li {
    margin-bottom: 18px;
}

.news-dates ul {
    margin-top: 8px;
    margin-left: 22px;
}

.news-dates li {
    line-height: 1.7;
}

.news-concerts {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 28px;
}

.news-card {
    background: #fff;
    border: 1px solid rgba(198, 167, 94, 0.22);
    border-top: 3px solid #c6a75e;
    padding: 26px 24px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.045);
}

.news-card img {
    display: block;
    max-width: 260px;
    width: 100%;
    height: auto;
    margin: 20px auto 0;
}

@media (max-width: 900px) {
    .news-page .bio-page {
        padding: 20px 4% 60px;
    }

    .news-page .bio-text {
        padding: 24px 20px;
    }

    .news-section h2 {
        font-size: 1.7rem;
    }

    .news-concerts {
        grid-template-columns: 1fr;
    }

    .news-image {
        max-width: 100%;
    }

    .news-gallery img {
        max-width: 220px;
    }
}
/* ===============================
   PAGE AGENDA
================================= */

.agenda-page .bio-page {
    padding: 30px 4% 90px;
}

.agenda-page .bio-container {
    max-width: 1280px;
}

.agenda-page .bio-text {
    padding: 48px 44px;
}

.agenda-page .bio-text > p:first-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    text-align: center;
    color: #555;
    margin-bottom: 28px;
}

.agenda-page .image2 {
    display: block;
    max-width: 360px;
    width: 100%;
    height: auto;
    margin: 0 auto 42px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.agenda-page .bio-text h2 {
    color: #7f6330;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem;
    font-weight: 500;
    margin: 46px 0 22px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(198, 167, 94, 0.35);
}

.agenda-page .bio-text h2:first-of-type {
    margin-top: 0;
}

.agenda-page .bio-text p,
.agenda-page .bio-text li {
    line-height: 1.8;
}

.agenda-page .bio-text ul {
    list-style: none;
    padding: 0;
    margin: 22px 0 34px;
}

.agenda-page .bio-text ul li {
    background: #fff;
    border: 1px solid rgba(198, 167, 94, 0.22);
    border-left: 4px solid #c6a75e;
    padding: 16px 18px;
    margin-bottom: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.035);
}

.agenda-page .bio-text p {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-left: 4px solid #c6a75e;
    padding: 18px 20px;
    margin-bottom: 18px;
}

.agenda-page .bio-text hr {
    border: none;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 42px 0;
}

.agenda-page .bio-text a {
    color: #7f6330;
    text-decoration: none;
    border-bottom: 1px solid rgba(198, 167, 94, 0.45);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.agenda-page .bio-text a:hover {
    color: #c6a75e;
    border-color: #c6a75e;
}

.agenda-page .bio-text em {
    color: #555;
}

.agenda-page .bio-text strong {
    color: #2a2a2a;
}

.agenda-page .bio-text h2 + p,
.agenda-page .bio-text h2 + p + ul {
    margin-top: 0;
}

/* Bloc archives */
.agenda-page .bio-text h2:last-of-type {
    margin-top: 54px;
}

.agenda-page .bio-text h2:last-of-type + ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.agenda-page .bio-text h2:last-of-type + ul li {
    margin-bottom: 0;
    padding: 14px 16px;
}

/* Responsive */
@media (max-width: 900px) {
    .agenda-page .bio-page {
        padding: 20px 4% 60px;
    }

    .agenda-page .bio-text {
        padding: 24px 20px;
    }

    .agenda-page .bio-text h2 {
        font-size: 1.7rem;
    }

    .agenda-page .bio-text p,
    .agenda-page .bio-text ul li {
        padding: 15px 16px;
    }

    .agenda-page .bio-text h2:last-of-type + ul {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   PAGES SPECTACLES
   Base commune : page parent + pages individuelles
================================= */

.shows-page .bio-page,
.show-page .bio-page,
body.shows-page .bio-page,
body.show-page .bio-page {
    padding: 30px 3% 90px;
}

.shows-page .bio-container,
.show-page .bio-container,
.shows-page .bio-text,
.show-page .bio-text {
    width: 100%;
    max-width: 1100px;
}

.shows-page .bio-text,
.show-page .bio-text,
body.shows-page .bio-text,
body.show-page .bio-text {
    padding: 48px 56px;
}

/* Les titres de section restent sur le fond de la page,
   à l'extérieur des cartouches. */
.spectacles-section {
    margin-top: 68px;
}

.spectacles-section:first-child {
    margin-top: 0;
}

.spectacles-section + .spectacles-section {
    margin-top: 78px;
}

.spectacles-section-title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0 0 38px;
    padding: 0 0 12px;
    border-bottom: 1px solid rgba(198, 167, 94, 0.35);
    color: #7f6330;
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.15;
    text-align: left;
}

/* Icônes */
.section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.icon-music,
#spectacles-actuels .section-icon {
    background: linear-gradient(135deg, #c6a75e, #e0c27a);
}

.icon-theatre,
#autres-spectacles .section-icon {
    background: linear-gradient(135deg, #9b6b4a, #c6a75e);
}

.icon-child,
#jeunes-publics .section-icon {
    background: linear-gradient(135deg, #6f8f75, #9bc59a);
}

/* Listes de cartouches */
.spectacles-list {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

/* Cartouches */
.spectacle-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    padding: 36px 38px;
    overflow: hidden;
    border: 1px solid rgba(198, 167, 94, 0.22);
    border-left: 5px solid #c6a75e;
    border-radius: 14px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.98),
        rgba(248, 246, 242, 0.96)
    );
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.055);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.spectacle-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.085);
}

.spectacle-card-soft {
    background: linear-gradient(
        to bottom,
        rgba(253, 251, 247, 0.99),
        rgba(244, 239, 229, 0.95)
    );
}

.spectacle-card-text {
    flex: 1 1 auto;
    min-width: 0;
    text-align: left;
}

.spectacle-kicker {
    margin-bottom: 8px;
    color: #9b7f3b;
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.spectacle-card h3 {
    margin-bottom: 14px;
    color: #7f6330;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.15;
    text-align: left;
}

.spectacle-card p,
.spectacle-card li {
    line-height: 1.75;
    text-align: left;
}

.spectacle-card p + p {
    margin-top: 12px;
}

/* Informations à puces : artistes, mise en scène, presse,
   écoute, vidéo de présentation, etc. */
.spectacle-card ul,
.show-info-list {
    margin: 18px 0 0;
    padding-left: 22px;
    text-align: left;
}

.spectacle-card li,
.show-info-list li {
    padding-left: 3px;
    text-align: left;
}

.spectacle-card li + li,
.show-info-list li + li {
    margin-top: 8px;
}

.spectacle-card a {
    overflow-wrap: anywhere;
}

/* Images */
.spectacle-card-image {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex: 0 0 270px;
    width: 270px;
}

.spectacle-card-image a {
    display: block;
    width: 100%;
}

.spectacle-card-image img {
    display: block;
    width: 100%;
    max-width: 270px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.11);
}

.spectacle-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 270px;
    height: 170px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f3efe6, #eae3d2);
    color: #c6a75e;
    font-size: 1.9rem;
}

/* Liens et boutons */
.spectacle-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(198, 167, 94, 0.45);
    color: #7f6330;
    text-decoration: none;
    font-weight: 500;
}

.spectacle-link:hover {
    color: #c6a75e;
    border-color: #c6a75e;
}

/* Composants destinés aux futures pages individuelles */
.show-intro-card,
.show-detail-card,
.show-media-card,
.show-press-card {
    padding: 34px 38px;
    border: 1px solid rgba(198, 167, 94, 0.22);
    border-left: 5px solid #c6a75e;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.055);
    text-align: left;
}

.show-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
    gap: 48px;
    align-items: start;
}

.show-detail-text,
.show-detail-text p,
.show-detail-text li,
.show-media-card,
.show-press-card {
    text-align: left;
}

/* Bandeau d'annonce */
.announcement-bar {
    padding: 11px 15px;
    border-bottom: 1px solid #e0dcd5;
    background-color: #f8f6f2;
    font-size: 0.95rem;
    text-align: center;
}

.announcement-bar p {
    margin: 0;
}

.announcement-bar a {
    color: #b89c5a;
    font-weight: 500;
    text-decoration: none;
}

.announcement-bar a:hover {
    text-decoration: underline;
}

/* Tablette et mobile */
@media (max-width: 900px) {
    .shows-page .bio-page,
    .show-page .bio-page,
    body.shows-page .bio-page,
    body.show-page .bio-page {
        padding: 20px 4% 60px;
    }

    .shows-page .bio-text,
    .show-page .bio-text,
    body.shows-page .bio-text,
    body.show-page .bio-text {
        padding: 24px 20px;
    }

    .spectacles-section {
        margin-top: 54px;
    }

    .spectacles-section + .spectacles-section {
        margin-top: 64px;
    }

    .spectacles-section-title {
        gap: 13px;
        margin-bottom: 28px;
        font-size: 1.8rem;
        text-align: left;
    }

    .section-icon {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
    }

    .spectacles-list {
        gap: 28px;
    }

    .spectacle-card {
        flex-direction: column;
        align-items: stretch;
        gap: 26px;
        padding: 26px 22px;
        text-align: left;
    }

    .spectacle-card-text,
    .spectacle-card h3,
    .spectacle-card p,
    .spectacle-card ul,
    .spectacle-card li,
    .show-info-list,
    .show-info-list li {
        text-align: left;
    }

    .spectacle-card ul,
    .show-info-list {
        margin-left: 0;
        padding-left: 21px;
    }

    .spectacle-card-image {
        flex: none;
        width: 100%;
    }

    .spectacle-card-image img,
    .spectacle-placeholder {
        width: 100%;
        max-width: 300px;
    }

    .spectacle-card h3 {
        font-size: 1.55rem;
    }

    .show-detail-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .show-intro-card,
    .show-detail-card,
    .show-media-card,
    .show-press-card {
        padding: 26px 22px;
    }
}

@media (max-width: 520px) {
    .shows-page .bio-text,
    .show-page .bio-text,
    body.shows-page .bio-text,
    body.show-page .bio-text {
        padding: 20px 14px;
    }

    .spectacles-section-title {
        align-items: flex-start;
        font-size: 1.62rem;
    }

    .spectacle-card {
        padding: 23px 17px;
        border-left-width: 4px;
    }

    .spectacle-card-image img,
    .spectacle-placeholder {
        max-width: 270px;
    }
}

/* ===== Galerie Classic'O Temple ===== */

.season-gallery {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;
}

.season-gallery h2 {
  text-align: center;
  margin-bottom: 30px;
}

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

.gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.04);
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 260px;
  }
}
/* ===== Classic'O Temple : largeur page + galerie ===== */

body[data-page="classic-o-temple"] .bio-text {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

body[data-page="classic-o-temple"] .classic-gallery-section {
  max-width: 1100px;
  width: 100%;
  margin: 45px auto 0;
  padding: 0;
  box-sizing: border-box;
}

body[data-page="classic-o-temple"] .classic-gallery-section h2 {
  text-align: center;
  margin-bottom: 25px;
}

body[data-page="classic-o-temple"] .classic-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

body[data-page="classic-o-temple"] .classic-gallery-item {
  display: block;
  width: 100%;
  height: 220px;
  padding: 0;
  border: 0;
  overflow: hidden;
  border-radius: 14px;
  background: none;
  cursor: pointer;
}

body[data-page="classic-o-temple"] .classic-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

body[data-page="classic-o-temple"] .classic-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(0, 0, 0, 0.85);
}

body[data-page="classic-o-temple"] .classic-lightbox[hidden] {
  display: none;
}

body[data-page="classic-o-temple"] .classic-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

body[data-page="classic-o-temple"] .classic-lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  border: 0;
  background: transparent;
  color: white;
  font-size: 42px;
  cursor: pointer;
}

@media (max-width: 768px) {
  body[data-page="classic-o-temple"] .classic-gallery-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="classic-o-temple"] .classic-gallery-item {
    height: 240px;
  }
}

/* ===============================
   CLASSIC'O TEMPLE — styles spécifiques
   Extraits de l'ancienne page HTML
================================= */
/* ===== Classic'O Temple : mise en page dédiée ===== */
    body[data-page="classic-o-temple"] .classic-temple-content .bio-container,
    body[data-page="classic-o-temple"] .classic-temple-content .bio-text {
      max-width: 1100px;
      width: 100%;
    }

    body[data-page="classic-o-temple"] .classic-season-list {
      gap: 46px;
    }

    body[data-page="classic-o-temple"] .classic-season-card {
      align-items: flex-start;
      padding-top: 40px;
      padding-bottom: 40px;
    }



    body[data-page="classic-o-temple"] .spectacles-section + .spectacles-section {
      margin-top: 78px;
    }

    body[data-page="classic-o-temple"] .spectacles-section-title {
      margin-bottom: 42px;
    }

    body[data-page="classic-o-temple"] .section-icon {
      color: #fff;
    }

    body[data-page="classic-o-temple"] .icon-music {
      background: linear-gradient(135deg, #c6a75e, #e0c27a);
    }

    body[data-page="classic-o-temple"] .icon-theatre {
      background: linear-gradient(135deg, #9b6b4a, #c6a75e);
    }

    body[data-page="classic-o-temple"] .classic-season-image {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      align-self: flex-start;
      min-width: 260px;
      max-width: 330px;
    }

    body[data-page="classic-o-temple"] .classic-lightbox-trigger {
      display: block;
      width: 100%;
      padding: 0;
      border: 0;
      background: transparent;
      cursor: pointer;
    }

    body[data-page="classic-o-temple"] .classic-season-image img {
      display: block;
      width: 100%;
      max-width: 300px;
      max-height: 390px;
      height: auto;
      object-fit: contain;
      border-radius: 14px;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
      background: #fff;
    }

    body[data-page="classic-o-temple"] .classic-season-image.classic-season-image-wide img {
      max-width: 330px;
      max-height: 240px;
    }

    body[data-page="classic-o-temple"] .classic-brochure-card .spectacle-card-text p:last-child {
      margin-top: 10px;
    }

    body[data-page="classic-o-temple"] .classic-popup-note {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: #9b7f3b;
      font-weight: 500;
      font-size: 0.95rem;
    }

    body[data-page="classic-o-temple"] .classic-season-image-wide .classic-lightbox-trigger {
      border-radius: 14px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    body[data-page="classic-o-temple"] .classic-season-image-wide .classic-lightbox-trigger:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
    }

    body[data-page="classic-o-temple"] .classic-lightbox {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding: 72px 28px 34px;
      overflow: auto;
      background: rgba(0, 0, 0, 0.88);
    }

    body[data-page="classic-o-temple"] .classic-lightbox[hidden] {
      display: none;
    }

    body[data-page="classic-o-temple"] .classic-lightbox figure {
      margin: 0;
      text-align: center;
    }

    body[data-page="classic-o-temple"] .classic-lightbox img {
      display: block;
      max-width: 92vw;
      max-height: 82vh;
      width: auto;
      height: auto;
      object-fit: contain;
      border-radius: 10px;
      background: #fff;
      margin: 0 auto;
    }

    body[data-page="classic-o-temple"] .classic-lightbox.classic-lightbox-brochure img {
      width: min(1450px, 96vw);
      max-width: none;
      max-height: none;
      height: auto;
    }

    body[data-page="classic-o-temple"] .classic-lightbox-open-original {
      display: inline-block;
      margin-top: 16px;
      padding: 9px 15px;
      border-radius: 999px;
      background: #fff;
      color: #333;
      text-decoration: none;
      font-size: 0.92rem;
    }

    body[data-page="classic-o-temple"] .classic-lightbox-close {
      position: absolute;
      top: 16px;
      right: 22px;
      border: 0;
      background: transparent;
      color: #fff;
      font-size: 44px;
      line-height: 1;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      body[data-page="classic-o-temple"] .classic-lightbox {
        padding: 68px 14px 24px;
      }

      body[data-page="classic-o-temple"] .classic-lightbox.classic-lightbox-brochure img {
        width: 1200px;
        max-width: none;
      }

      body[data-page="classic-o-temple"] .classic-season-card {
        align-items: stretch;
      }

  

    body[data-page="classic-o-temple"] .spectacles-section + .spectacles-section {
      margin-top: 78px;
    }

    body[data-page="classic-o-temple"] .spectacles-section-title {
      margin-bottom: 42px;
    }

    body[data-page="classic-o-temple"] .section-icon {
      color: #fff;
    }

    body[data-page="classic-o-temple"] .icon-music {
      background: linear-gradient(135deg, #c6a75e, #e0c27a);
    }

    body[data-page="classic-o-temple"] .icon-theatre {
      background: linear-gradient(135deg, #9b6b4a, #c6a75e);
    }

    body[data-page="classic-o-temple"] .classic-season-image {
        min-width: 0;
        max-width: none;
        width: 100%;
      }

      body[data-page="classic-o-temple"] .classic-season-image img,
      body[data-page="classic-o-temple"] .classic-season-image.classic-season-image-wide img {
        max-width: 100%;
        max-height: 520px;
      }
    }

    /* ===== Lightbox Classic'O Temple : version robuste ===== */
    #classicLightbox {
      position: fixed !important;
      inset: 0 !important;
      z-index: 2147483647 !important;
      display: block !important;
      overflow: auto !important;
      padding: 76px 18px 36px !important;
      background: rgba(0, 0, 0, 0.90) !important;
      -webkit-overflow-scrolling: touch !important;
      text-align: center !important;
    }

    #classicLightbox[hidden] {
      display: none !important;
    }

    #classicLightbox .classic-lightbox-close {
      position: fixed !important;
      top: 12px !important;
      right: 14px !important;
      z-index: 2147483647 !important;
      width: 48px !important;
      height: 48px !important;
      border: 0 !important;
      border-radius: 50% !important;
      background: rgba(255, 255, 255, 0.96) !important;
      color: #111 !important;
      font-size: 36px !important;
      line-height: 44px !important;
      cursor: pointer !important;
      box-shadow: 0 8px 24px rgba(0,0,0,.35) !important;
    }

    #classicLightbox figure {
      display: inline-block !important;
      width: min(1120px, 100%) !important;
      max-width: 100% !important;
      margin: 0 auto !important;
      text-align: center !important;
    }

    #classicLightbox img {
      display: block !important;
      width: 100% !important;
      max-width: 100% !important;
      height: auto !important;
      max-height: none !important;
      object-fit: contain !important;
      margin: 0 auto !important;
      background: #fff !important;
      border-radius: 10px !important;
    }

    #classicLightbox:not(.classic-lightbox-brochure) figure {
      width: auto !important;
      max-width: min(900px, 100%) !important;
    }

    #classicLightbox:not(.classic-lightbox-brochure) img {
      width: auto !important;
      max-width: 100% !important;
      max-height: calc(100vh - 130px) !important;
    }

    #classicLightbox .classic-lightbox-open-original {
      display: inline-block !important;
      margin-top: 16px !important;
      padding: 10px 16px !important;
      border-radius: 999px !important;
      background: #fff !important;
      color: #333 !important;
      text-decoration: none !important;
      font-size: 0.92rem !important;
    }

    @media (max-width: 768px) {
      #classicLightbox {
        padding: 70px 12px 28px !important;
      }

      #classicLightbox .classic-lightbox-close {
        top: 10px !important;
        right: 10px !important;
        width: 46px !important;
        height: 46px !important;
        font-size: 34px !important;
        line-height: 42px !important;
      }

      #classicLightbox figure,
      #classicLightbox.classic-lightbox-brochure figure {
        width: 100% !important;
      }

      #classicLightbox img,
      #classicLightbox.classic-lightbox-brochure img {
        width: 100% !important;
        max-width: 100% !important;
        max-height: none !important;
      }
    }


    /* ===== Saison 2026–2027 : informations et billetterie ===== */
    .classic-event-meta { margin: 14px 0 18px; padding: 14px 18px; border-left: 3px solid #c6a75e; background: rgba(198,167,94,.08); }
    .classic-event-meta p { margin: 5px 0; }
    .classic-event-programme { margin: 18px 0; }
    .classic-event-programme h4, .classic-booking h4 { margin-bottom: 8px; }
    .classic-event-programme ul { margin: 0; padding-left: 21px; }
    .classic-event-programme li + li { margin-top: 7px; }
    .classic-artist-links a { font-weight: 600; }
    .classic-booking { margin-top: 20px; padding: 18px; border-radius: 12px; background: #f8f6f2; }
    .classic-event-aside {
      display: flex;
      flex-direction: column;
      align-items: center;
      align-self: flex-start;
      min-width: 260px;
      max-width: 330px;
      width: 100%;
      gap: 18px;
    }

    .classic-event-aside .classic-season-image {
      width: 100%;
      min-width: 0;
      max-width: none;
      margin: 0;
    }

    .classic-event-aside .classic-booking-actions {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      gap: 14px;
    }

    .classic-event-aside .classic-booking-button {
      width: 100%;
      box-sizing: border-box;
      text-align: center;
    }

    .classic-event-aside .classic-booking-qr {
      display: block;
      margin: 0 auto;
    }

    .classic-booking-actions {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
    }
    .classic-booking-button { display: inline-block; padding: 11px 18px; border-radius: 999px; background: #9b7f3b; color: #fff; text-decoration: none; font-weight: 600; }
    .classic-booking-qr { width: 150px; height: 150px; object-fit: contain; border-radius: 8px; background: #fff; }
    .classic-brochure-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
    .classic-brochure-grid img { width: 100%; height: auto; }
    .classic-download-link { display: inline-block; margin-top: 18px; font-weight: 600; }
    @media (max-width: 768px) {
      .classic-brochure-grid { grid-template-columns: 1fr; }
      .classic-booking-actions {
        flex-direction: column;
        align-items: flex-start;
      }
    }

  
    .classic-season-overview {
      align-items: flex-start;
    }

    .classic-season-overview-content {
      flex: 1 1 560px;
    }

    .classic-season-overview-aside {
      display: flex;
      flex: 0 0 260px;
      flex-direction: column;
      align-items: center;
      gap: 18px;
      width: 260px;
    }

    .classic-arteka-logo {
      display: block;
      width: min(220px, 100%);
      height: auto;
      object-fit: contain;
    }

    .classic-season-ticketing {
      margin-top: 24px;
      padding: 20px;
      border-radius: 14px;
      background: #f8f6f2;
    }

    .classic-season-ticketing h4 {
      margin: 0 0 10px;
    }

    .classic-season-ticketing p {
      margin: 7px 0;
    }

    .classic-season-ticketing-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 16px;
    }

    .classic-subscribe-button,
    .classic-booking-button {
      display: inline-block;
      padding: 11px 18px;
      border-radius: 999px;
      background: #9b7f3b;
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      text-align: center;
    }

    .classic-subscribe-button {
      background: #6f5830;
    }

    .classic-season-qr {
      display: block;
      width: 170px;
      height: 170px;
      object-fit: contain;
      border-radius: 10px;
      background: #fff;
    }

    .classic-event-aside {
      display: flex;
      flex-direction: column;
      align-items: center;
      align-self: flex-start;
      min-width: 260px;
      max-width: 330px;
      width: 100%;
      gap: 16px;
    }

    .classic-event-aside .classic-booking-button {
      width: 100%;
      box-sizing: border-box;
    }

    .classic-event-aside .classic-season-image {
      width: 100%;
      min-width: 0;
      max-width: none;
      margin: 0;
    }

    @media (max-width: 768px) {
      .classic-season-overview-aside,
      .classic-event-aside {
        width: 100%;
        max-width: none;
        min-width: 0;
      }

      .classic-season-ticketing-actions {
        flex-direction: column;
      }

      .classic-season-ticketing-actions a {
        width: 100%;
        box-sizing: border-box;
      }
    }

  
    /* Mise en page finale Classic'O Temple */
    body[data-page="classic-o-temple"] .classic-season-list {
      gap: 30px;
    }

    body[data-page="classic-o-temple"] .classic-season-card {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 300px;
      column-gap: 38px;
      align-items: stretch;
    }

    body[data-page="classic-o-temple"] .classic-season-overview-content,
    body[data-page="classic-o-temple"] .spectacle-card-text {
      min-width: 0;
    }

    body[data-page="classic-o-temple"] .classic-season-overview-aside,
    body[data-page="classic-o-temple"] .classic-event-aside .classic-booking-button {
    width: min(220px, 100%);
    align-self: center;
}
   
    body[data-page="classic-o-temple"] .classic-season-overview-aside {
      justify-content: space-between;
      gap: 28px;
    }

    body[data-page="classic-o-temple"] .classic-season-overview-aside .classic-season-image {
      width: 100%;
      margin: 0;
    }

    body[data-page="classic-o-temple"] .classic-season-qr-link {
      margin-top: auto;
      display: flex;
      justify-content: center;
      width: 100%;
    }

    body[data-page="classic-o-temple"] .classic-season-qr {
      display: block;
      width: 160px;
      height: 160px;
      margin: 0 auto;
      object-fit: contain;
    }

    body[data-page="classic-o-temple"] .classic-ticketing-card {
      display: block;
      text-align: center;
    }

    body[data-page="classic-o-temple"] .classic-ticketing-inner {
      max-width: 860px;
      margin: 0 auto;
    }

    body[data-page="classic-o-temple"] .classic-ticketing-card .classic-arteka-logo {
      display: block;
      width: min(210px, 70%);
      height: auto;
      margin: 0 auto 18px;
      object-fit: contain;
    }

    body[data-page="classic-o-temple"] .classic-ticketing-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: stretch;
      gap: 14px;
      margin-top: 22px;
    }

    body[data-page="classic-o-temple"] .classic-ticketing-actions a {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      min-width: 190px;
      padding: 12px 20px;
      border-radius: 999px;
      box-sizing: border-box;
      text-decoration: none;
      font-weight: 600;
    }

    body[data-page="classic-o-temple"] .classic-booking-button,
    body[data-page="classic-o-temple"] .classic-subscribe-button {
      background: #6f5830;
      color: #fff;
    }

    body[data-page="classic-o-temple"] .classic-download-button {
      background: #b89a57;
      color: #fff;
    }

    body[data-page="classic-o-temple"] .classic-event-aside {
      justify-content: flex-start;
      gap: 18px;
    }

    body[data-page="classic-o-temple"] .classic-event-aside .classic-season-image {
      width: 100%;
      margin: 0;
    }

    body[data-page="classic-o-temple"] .classic-event-aside .classic-booking-button {
      width: min(220px, 100%);
      margin-top: auto;
      align-self: center;
      box-sizing: border-box;
    }

    @media (max-width: 768px) {
      body[data-page="classic-o-temple"] .classic-season-card {
        display: flex;
        flex-direction: column;
      }

      body[data-page="classic-o-temple"] .classic-season-overview-aside,
      body[data-page="classic-o-temple"] .classic-event-aside {
        width: 100%;
      }

      body[data-page="classic-o-temple"] .classic-ticketing-actions {
        flex-direction: column;
      }

      body[data-page="classic-o-temple"] .classic-ticketing-actions a {
        width: 100%;
      }
    }

  
    /* Ajustement final : logo dans l'introduction et billetterie dans le premier cartouche */
    body[data-page="classic-o-temple"] .classic-intro-logo {
      display: block;
      width: min(220px, 60%);
      height: auto;
      margin: 24px auto 0;
      object-fit: contain;
    }

    body[data-page="classic-o-temple"] .classic-overview-ticketing {
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid rgba(111, 88, 48, 0.25);
    }

    body[data-page="classic-o-temple"] .classic-overview-ticketing h4 {
      margin: 0 0 10px;
    }

    body[data-page="classic-o-temple"] .classic-overview-ticketing p {
      margin: 7px 0;
    }

    body[data-page="classic-o-temple"] .classic-overview-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 14px;
      margin-top: 18px;
    }

    body[data-page="classic-o-temple"] .classic-overview-actions a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 210px;
      padding: 12px 20px;
      border-radius: 999px;
      box-sizing: border-box;
      text-decoration: none;
      font-weight: 600;
      text-align: center;
    }

    body[data-page="classic-o-temple"] .classic-ticket-button {
      background: #6f5830;
      color: #fff;
    }

    body[data-page="classic-o-temple"] .classic-download-button {
      background: #b89a57;
      color: #fff;
    }

    @media (max-width: 768px) {
      body[data-page="classic-o-temple"] .classic-overview-actions {
        flex-direction: column;
        align-items: stretch;
      }

      body[data-page="classic-o-temple"] .classic-overview-actions a {
        width: 100%;
      }
    }

  
    /* Version mobile finalisée — Classic'O Temple */
    @media (max-width: 768px) {
      body[data-page="classic-o-temple"] main {
        overflow-x: hidden;
      }

      body[data-page="classic-o-temple"] .classic-intro-logo {
        width: min(190px, 68vw);
        margin-top: 20px;
      }

      body[data-page="classic-o-temple"] .classic-season-list {
        gap: 24px;
      }

      body[data-page="classic-o-temple"] .classic-season-card {
        display: flex;
        flex-direction: column;
        gap: 22px;
        padding: 24px 18px;
      }

      body[data-page="classic-o-temple"] .classic-season-overview-content,
      body[data-page="classic-o-temple"] .spectacle-card-text {
        order: 1;
        width: 100%;
      }

      body[data-page="classic-o-temple"] .classic-season-overview-aside,
      body[data-page="classic-o-temple"] .classic-event-aside {
        order: 2;
        display: contents;
      }

      /* Premier cartouche :
         texte, affiche, QR, billetterie et boutons. */
      body[data-page="classic-o-temple"] .classic-season-overview
      .classic-season-image {
        order: 2;
        width: min(100%, 330px);
        margin: 0 auto;
      }

      body[data-page="classic-o-temple"] .classic-season-overview
      .classic-season-qr-link {
        order: 3;
        width: 100%;
        margin: 2px auto 0;
      }

      body[data-page="classic-o-temple"] .classic-season-overview
      .classic-season-qr {
        width: 145px;
        height: 145px;
      }

      body[data-page="classic-o-temple"] .classic-overview-ticketing {
        margin-top: 22px;
        padding-top: 18px;
      }

      body[data-page="classic-o-temple"] .classic-overview-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
      }

      body[data-page="classic-o-temple"] .classic-overview-actions a {
        width: 100%;
        min-width: 0;
      }

      /* Fiches concerts :
         informations, affiche, puis bouton Réserver. */
      body[data-page="classic-o-temple"] .classic-event-aside
      .classic-season-image {
        order: 2;
        width: min(100%, 330px);
        margin: 0 auto;
      }

      body[data-page="classic-o-temple"] .classic-event-aside
      .classic-booking-button {
        order: 3;
        width: min(230px, 100%);
        margin: 0 auto;
        align-self: center;
      }

      body[data-page="classic-o-temple"] .spectacle-card-image img,
      body[data-page="classic-o-temple"] .classic-lightbox-trigger img {
        display: block;
        width: 100%;
        height: auto;
      }

      body[data-page="classic-o-temple"] h2,
      body[data-page="classic-o-temple"] h3,
      body[data-page="classic-o-temple"] h4 {
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
      }

      body[data-page="classic-o-temple"] p,
      body[data-page="classic-o-temple"] li {
        overflow-wrap: break-word;
      }
    }

    @media (max-width: 420px) {
      body[data-page="classic-o-temple"] .classic-season-card {
        padding: 21px 15px;
      }

      body[data-page="classic-o-temple"] .classic-season-overview
      .classic-season-image,
      body[data-page="classic-o-temple"] .classic-event-aside
      .classic-season-image {
        width: 100%;
      }

      body[data-page="classic-o-temple"] .classic-season-overview
      .classic-season-qr {
        width: 132px;
        height: 132px;
      }
    }

  
    /* Présentation finale des artistes et des programmes */
    body[data-page="classic-o-temple"] .classic-artist-links {
      text-align: left;
    }

    body[data-page="classic-o-temple"] .classic-artist-line {
      display: inline-block;
      white-space: nowrap;
      margin-top: 0.18em;
    }

    body[data-page="classic-o-temple"] .classic-event-programme,
    body[data-page="classic-o-temple"] .classic-event-programme h4,
    body[data-page="classic-o-temple"] .classic-event-programme ul,
    body[data-page="classic-o-temple"] .classic-event-programme li {
      text-align: left;
    }

    body[data-page="classic-o-temple"] .classic-event-programme ul {
      padding-left: 1.25rem;
    }

    @media (max-width: 380px) {
      body[data-page="classic-o-temple"] .classic-artist-line {
        white-space: normal;
      }
    }
  
    /* Programme : même composant visuel que Date, Lieu et Artistes */
    body[data-page="classic-o-temple"] .classic-event-programme,
    body[data-page="classic-o-temple"] .classic-event-programme h4,
    body[data-page="classic-o-temple"] .classic-event-programme ul,
    body[data-page="classic-o-temple"] .classic-event-programme li,
    body[data-page="classic-o-temple"] .classic-event-programme p,
    body[data-page="classic-o-temple"] .classic-event-meta,
    body[data-page="classic-o-temple"] .classic-event-meta p {
      text-align: left;
    }

    body[data-page="classic-o-temple"] .classic-event-programme h4 {
      margin-top: 0;
      margin-bottom: 8px;
    }

    body[data-page="classic-o-temple"] .classic-event-programme ul {
      margin-bottom: 0;
      padding-left: 21px;
    }

    body[data-page="classic-o-temple"] .classic-event-programme p:last-child {
      margin-bottom: 0;
    }


/* ===============================
   PAGE PHOTOS — galerie épurée
================================= */
.photos-page .page-hero { padding-bottom: 38px; }
.photos-page .photos-intro {
  max-width: 780px;
  margin: 24px auto 0;
  color: #555;
  font-size: 0.98rem;
  line-height: 1.8;
  letter-spacing: 0;
  text-transform: none;
}
.photos-gallery-page {
  width: min(1500px, 94%);
  margin: 0 auto;
  padding: 16px 0 105px;
}
.photo-section + .photo-section { margin-top: 96px; }
.photo-section-heading {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(198, 167, 94, 0.36);
}
.photo-section-number { color: #c6a75e; font-size: 0.76rem; letter-spacing: 2px; }
.photo-section-heading h2 {
  margin: 0;
  color: #2a2a2a;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.45rem;
  font-weight: 500;
}
.photo-grid {
  columns: 3;
  column-gap: 22px;
}
.photo-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 22px;
  break-inside: avoid;
  overflow: hidden;
  background: #ece9e3;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.055);
}
.photo-open {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}
.photo-open img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.45s ease, filter 0.35s ease;
}
.photo-open:hover img,
.photo-open:focus-visible img { transform: scale(1.025); filter: brightness(0.91); }
.photo-zoom {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50%;
  background: rgba(20,20,20,.42);
  color: #fff;
  opacity: 0;
  transform: translate(-50%, -45%);
  transition: opacity .3s ease, transform .3s ease;
}
.photo-open:hover .photo-zoom,
.photo-open:focus-visible .photo-zoom { opacity: 1; transform: translate(-50%, -50%); }
.photo-open:focus-visible,
.photo-download:focus-visible,
.photo-lightbox-close:focus-visible,
.photo-lightbox-nav:focus-visible { outline: 2px solid #c6a75e; outline-offset: 3px; }
.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  padding: 66px 82px 32px;
  background: rgba(0, 0, 0, 0.93);
}
.photo-lightbox[hidden] { display: none; }
.photo-lightbox figure { width: min(1240px, 100%); margin: 0; text-align: center; }
.photo-lightbox img {
  display: block;
  max-width: 100%;
  max-height: 76vh;
  width: auto;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}
.photo-lightbox figcaption { margin: 15px auto 0; color: #f2f2f2; }
.photo-lightbox-title {
  margin: 0 0 5px;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 500;
}
.photo-lightbox-text { margin: 0 0 7px; color: #ddd; font-size: .9rem; }
.photo-lightbox-credit { margin: 0; color: #d7d7d7; font-size: .78rem; letter-spacing: .3px; }
.photo-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-size: 0.76rem;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.photo-download:hover { border-color: #c6a75e; background: #c6a75e; color: #fff; }
.photo-lightbox-download { margin-top: 13px; }
.photo-lightbox-close {
  position: fixed;
  top: 15px;
  right: 19px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  background: rgba(255,255,255,.96);
  color: #111;
  font-size: 32px;
  line-height: 40px;
  cursor: pointer;
}
.photo-lightbox-nav {
  position: fixed;
  top: 50%;
  width: 50px;
  height: 64px;
  border: 0;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 43px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .25s ease;
}
.photo-lightbox-nav:hover { background: rgba(198,167,94,.65); }
.photo-lightbox-prev { left: 16px; }
.photo-lightbox-next { right: 16px; }
body.photo-lightbox-open { overflow: hidden; }
@media (max-width: 1050px) {
  .photo-grid { columns: 2; }
}
@media (max-width: 700px) {
  .photos-gallery-page { width: min(92%, 560px); padding-bottom: 70px; }
  .photo-section + .photo-section { margin-top: 68px; }
  .photo-section-heading h2 { font-size: 2rem; }
  .photo-grid { columns: 1; }
  .photo-card { margin-bottom: 18px; }
  .photo-lightbox { padding: 68px 12px 24px; }
  .photo-lightbox img { max-height: 70vh; }
  .photo-lightbox-nav {
    top: auto;
    bottom: 18px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,.16);
    font-size: 34px;
    transform: none;
  }
  .photo-lightbox-prev { left: 12px; }
  .photo-lightbox-next { right: 12px; }
}
/* ===============================
   PAGE PRESSE
   À ajouter à la fin de cricri.css
================================= */

.press-page .page-hero {
  padding-bottom: 38px;
}

.press-intro {
  max-width: 820px;
  margin: 20px auto 0;
  color: #666;
  font-size: 0.92rem;
  line-height: 1.8;
  letter-spacing: 0.4px;
  text-transform: none;
}

.press-page-content {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 10px 0 100px;
}

.press-section {
  padding: 62px 0 72px;
  border-bottom: 1px solid rgba(198, 167, 94, 0.55);
}

.press-section:first-child {
  padding-top: 20px;
}

.press-section:last-child {
  border-bottom: 0;
}

.press-section-heading {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 28px;
}

.press-section-number {
  color: #c6a75e;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  letter-spacing: 2px;
}

.press-section-heading h2 {
  margin: 0;
  color: #2a2a2a;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.65rem;
  font-weight: 500;
  line-height: 1;
}
.press-section-intro {
  width: 100%;
  max-width: none;
  margin: 0 0 34px;
  color: #555;
  font-size: 1rem;
  line-height: 1.85;
}
.press-section-intro a {
  color: #7f6330;
  text-decoration: none;
  border-bottom: 1px solid rgba(198, 167, 94, 0.5);
}

.press-featured-quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.press-featured-quotes blockquote {
  margin: 0;
  padding: 28px 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(198, 167, 94, 0.24);
  border-top: 3px solid #c6a75e;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.045);
}

.press-featured-quotes p {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.38rem;
  font-style: italic;
  line-height: 1.45;
}

.press-featured-quotes cite {
  color: #7f6330;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.press-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.press-grid-one {
  grid-template-columns: minmax(0, 760px);
}

.press-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(198, 167, 94, 0.22);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.press-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
}

.press-card-preview {
  position: relative;
  min-height: 165px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(198, 167, 94, 0.15), rgba(255, 255, 255, 0.98)),
    repeating-linear-gradient(0deg, transparent 0, transparent 14px, rgba(0,0,0,0.025) 15px);
  border-bottom: 1px solid rgba(198, 167, 94, 0.22);
}

.press-publication {
  display: block;
  max-width: calc(100% - 48px);
  color: #2a2a2a;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.1;
}

.press-year {
  display: block;
  margin-top: 8px;
  color: #7f6330;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
}

.press-card-preview i {
  position: absolute;
  right: 22px;
  bottom: 20px;
  color: rgba(127, 99, 48, 0.55);
  font-size: 2.4rem;
}

.press-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 24px 26px;
}

.press-card-category {
  margin: 0 0 8px;
  color: #9b7f3b;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.press-card h3 {
  margin: 0 0 16px;
  color: #2a2a2a;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 600;
}

.press-card blockquote {
  margin: 0 0 24px;
  color: #444;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.24rem;
  font-style: italic;
  line-height: 1.55;
}

.press-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: auto;
}

.press-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(198, 167, 94, 0.38);
  color: #6f5830;
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.press-actions a:hover {
  color: #c6a75e;
  border-color: #c6a75e;
  background: rgba(198, 167, 94, 0.06);
}

.press-subsection {
  margin-top: 46px;
}

.press-subsection > h3 {
  margin: 0 0 24px;
  color: #7f6330;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 500;
}

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

.testimonial-card {
  margin: 0;
  padding: 30px 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(198, 167, 94, 0.23);
  border-left: 4px solid #c6a75e;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
}

.testimonial-card p {
  margin: 0 0 22px;
  color: #343434;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.38rem;
  font-style: italic;
  line-height: 1.55;
}

.testimonial-card cite {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #7f6330;
  font-style: normal;
}

.testimonial-card cite strong {
  color: #2a2a2a;
  font-size: 0.95rem;
}

.testimonial-card cite span {
  font-size: 0.76rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 1000px) {
  .press-featured-quotes,
  .press-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .press-grid-one {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .press-page-content {
    width: min(92%, 680px);
    padding-bottom: 70px;
  }

  .press-section {
    padding: 48px 0 56px;
  }

  .press-section-heading {
    gap: 12px;
    margin-bottom: 24px;
  }

  .press-section-heading h2 {
    font-size: 2.15rem;
  }

  .press-featured-quotes,
  .press-grid,
  .press-grid-two,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .press-card-preview {
    min-height: 135px;
  }

  .press-card-content,
  .testimonial-card {
    padding: 22px 20px;
  }

  .press-featured-quotes blockquote {
    padding: 24px 20px;
  }
}

/* ===============================
   PAGE VIDÉOS
================================= */
.videos-page .page-hero{padding-bottom:38px;}
.videos-intro{max-width:900px;margin:20px auto 0;color:#666;font-size:.92rem;line-height:1.8;letter-spacing:.4px;text-transform:none;}
.videos-page-content{width:min(1180px,92%);margin:0 auto;padding:10px 0 100px;}
.video-section{padding:62px 0 72px;border-bottom:1px solid rgba(198,167,94,.55);}
.video-section:first-child{padding-top:20px;}
.video-section:last-child{border-bottom:0;}
.video-section-heading{display:flex;align-items:baseline;gap:18px;margin-bottom:28px;}
.video-section-number{color:#c6a75e;font-family:"Cormorant Garamond",serif;font-size:1rem;letter-spacing:2px;}
.video-section-heading h2{margin:0;color:#2a2a2a;font-family:"Cormorant Garamond",serif;font-size:2.65rem;font-weight:500;line-height:1;}
.video-section-intro{width:100%;margin:0 0 34px;color:#555;font-size:1rem;line-height:1.85;}
.video-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:26px;}
.video-card{display:flex;min-width:0;overflow:hidden;flex-direction:column;background:rgba(255,255,255,.94);border:1px solid rgba(198,167,94,.22);border-top:3px solid #c6a75e;box-shadow:0 14px 30px rgba(0,0,0,.05);transition:transform .25s ease,box-shadow .25s ease;}
.video-card:hover{transform:translateY(-3px);box-shadow:0 18px 38px rgba(0,0,0,.08);}
.video-thumbnail{position:relative;display:block;aspect-ratio:16/9;overflow:hidden;background:#171717;text-decoration:none;}
.video-thumbnail img{width:100%;height:100%;display:block;object-fit:cover;transition:transform .35s ease,opacity .35s ease;}
.video-thumbnail:hover img{transform:scale(1.025);opacity:.86;}
.video-play{position:absolute;inset:50% auto auto 50%;display:flex;width:58px;height:58px;align-items:center;justify-content:center;transform:translate(-50%,-50%);border:1px solid rgba(255,255,255,.75);border-radius:50%;background:rgba(15,15,15,.72);color:#fff;font-size:1.1rem;box-shadow:0 8px 24px rgba(0,0,0,.26);transition:background .25s ease,transform .25s ease;}
.video-thumbnail:hover .video-play{background:#c6a75e;transform:translate(-50%,-50%) scale(1.06);}
.video-kind{position:absolute;left:14px;bottom:12px;padding:6px 9px;background:rgba(17,17,17,.78);color:#fff;font-size:.68rem;letter-spacing:1px;text-transform:uppercase;}
.video-thumbnail-instagram{background:linear-gradient(135deg,#32233a 0%,#8a3158 48%,#c88945 100%);}
.video-instagram-mark{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.2);font-size:7rem;}
.video-thumbnail-instagram .video-play{font-size:1rem;}
.video-card-content{display:flex;flex:1;flex-direction:column;padding:23px 24px 26px;}
.video-card-topline{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:10px;}
.video-card-category{color:#9b7f3b;font-size:.72rem;font-weight:500;letter-spacing:1.3px;text-transform:uppercase;}
.video-duration{color:#777;font-size:.75rem;white-space:nowrap;}
.video-card h3{margin:0 0 12px;color:#2a2a2a;font-family:"Cormorant Garamond",serif;font-size:1.48rem;font-weight:600;line-height:1.25;}
.video-meta{margin:0 0 22px;color:#66615a;font-size:.82rem;line-height:1.6;}
.video-action{display:inline-flex;align-items:center;align-self:flex-start;gap:8px;margin-top:auto;padding:9px 12px;border:1px solid rgba(198,167,94,.38);color:#6f5830;text-decoration:none;font-size:.82rem;transition:color .25s ease,border-color .25s ease,background .25s ease;}
.video-action:hover{color:#c6a75e;border-color:#c6a75e;background:rgba(198,167,94,.06);}
@media(max-width:1000px){.video-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media(max-width:760px){.videos-page-content{width:min(92%,680px);padding-bottom:70px}.video-section{padding:48px 0 56px}.video-section-heading{gap:12px;margin-bottom:24px}.video-section-heading h2{font-size:2.15rem}.video-grid{grid-template-columns:1fr}.video-card-content{padding:22px 20px}.video-play{width:52px;height:52px}}


/* ===============================
   AJUSTEMENTS PAGE VIDÉOS
================================= */
.video-work-subtitle{
  margin:-5px 0 13px;
  color:#8b7440;
  font-family:"Cormorant Garamond",serif;
  font-size:1.03rem;
  font-style:italic;
  letter-spacing:.02em;
}

/* =========================================
   CARNETS DE TOURNÉE
   DRAPEAU À GAUCHE DU TITRE
========================================= */

#carnets-de-tournee .video-grid-tour{
    grid-template-columns:repeat(2,minmax(0,1fr));
}

#carnets-de-tournee .video-card{
    display:flex;
    flex-direction:column;
}

#carnets-de-tournee .video-thumbnail-instagram,
#carnets-de-tournee .video-play{
    display:none;
}

#carnets-de-tournee .video-card-content{
    padding:22px 24px 24px;
}

#carnets-de-tournee .video-card-topline{
    margin-bottom:14px;
}

/* Ligne contenant le drapeau et le titre */
#carnets-de-tournee .carnet-title-line{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:12px;
}

/* Taille réelle des drapeaux */
#carnets-de-tournee .carnet-flag{
    display:block;
    width:68px;
    max-width:68px;
    height:44px;
    max-height:44px;
    object-fit:contain;
    flex:0 0 68px;
    border-radius:3px;
    box-shadow:0 2px 8px rgba(0,0,0,.12);
}

/* Titre placé à droite du drapeau */
#carnets-de-tournee .carnet-title-line h3{
    margin:0;
    font-size:1.55rem;
    line-height:1.2;
}

/* Année alignée sous le titre */
#carnets-de-tournee .video-meta{
    margin-left:82px;
}

@media(max-width:1000px){

    #carnets-de-tournee .video-grid-tour{
        grid-template-columns:1fr;
    }

}

@media(max-width:760px){

    #carnets-de-tournee .carnet-title-line{
        gap:10px;
    }

    #carnets-de-tournee .carnet-flag{
        width:54px;
        max-width:54px;
        height:36px;
        max-height:36px;
        flex-basis:54px;
    }

    #carnets-de-tournee .carnet-title-line h3{
        font-size:1.35rem;
    }

    #carnets-de-tournee .video-meta{
        margin-left:64px;
    }

}

/* ===============================
   PAGE MÉDIAS — PAGE PARENT
================================= */
.media-page .page-hero{padding-bottom:38px;}
.media-intro{max-width:860px;margin:20px auto 0;color:#666;font-size:.92rem;line-height:1.8;letter-spacing:.4px;text-transform:none;}
.media-hub{width:min(1180px,92%);margin:0 auto;padding:10px 0 100px;}
.media-panel{padding:62px 0 72px;border-bottom:1px solid rgba(198,167,94,.55);}
.media-panel:first-child{padding-top:20px;}
.media-panel:last-child{border-bottom:0;}
.media-panel-heading{display:flex;align-items:flex-start;gap:18px;margin-bottom:28px;}
.media-panel-number{padding-top:8px;color:#c6a75e;font-family:"Cormorant Garamond",serif;font-size:1rem;letter-spacing:2px;}
.media-eyebrow{margin:0 0 7px;color:#8a7442;font-size:.68rem;font-weight:500;letter-spacing:1.7px;text-transform:uppercase;}
.media-panel-heading h2{margin:0;color:#2a2a2a;font-family:"Cormorant Garamond",serif;font-size:2.65rem;font-weight:500;line-height:1;}
.media-panel-intro{max-width:930px;margin:0 0 34px;color:#555;font-size:1rem;line-height:1.85;}
.media-video-feature{display:grid;grid-template-columns:minmax(0,1.45fr) minmax(300px,.9fr);overflow:hidden;background:rgba(255,255,255,.94);border:1px solid rgba(198,167,94,.24);border-top:3px solid #c6a75e;box-shadow:0 16px 36px rgba(0,0,0,.055);}
.media-video-image{position:relative;display:block;min-height:380px;overflow:hidden;background:#171717;}
.media-video-image img{width:100%;height:100%;display:block;object-fit:cover;transition:transform .35s ease,opacity .35s ease;}
.media-video-image:hover img{transform:scale(1.025);opacity:.86;}
.media-play{position:absolute;inset:50% auto auto 50%;display:flex;width:66px;height:66px;align-items:center;justify-content:center;transform:translate(-50%,-50%);border:1px solid rgba(255,255,255,.8);border-radius:50%;background:rgba(15,15,15,.72);color:#fff;font-size:1.2rem;box-shadow:0 8px 24px rgba(0,0,0,.26);transition:background .25s ease,transform .25s ease;}
.media-video-image:hover .media-play{background:#c6a75e;transform:translate(-50%,-50%) scale(1.06);}
.media-video-copy{display:flex;flex-direction:column;justify-content:center;padding:42px 38px;}
.media-card-label{margin:0 0 13px;color:#8a7442;font-size:.7rem;font-weight:500;letter-spacing:1.5px;text-transform:uppercase;}
.media-video-copy h3{margin:0 0 18px;font-family:"Cormorant Garamond",serif;font-size:2rem;font-weight:500;line-height:1.2;}
.media-video-copy p:not(.media-card-label){margin:0 0 26px;color:#555;font-size:.94rem;line-height:1.8;}
.media-link{display:inline-flex;align-items:center;gap:10px;width:max-content;color:#775b25;text-decoration:none;font-size:.78rem;font-weight:500;letter-spacing:.8px;text-transform:uppercase;border-bottom:1px solid rgba(198,167,94,.52);padding-bottom:5px;transition:color .25s ease,gap .25s ease;}
.media-link:hover{color:#c6a75e;gap:14px;}
.media-quotes{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px;}
.media-quotes blockquote{margin:0;padding:27px 25px;background:rgba(255,255,255,.9);border:1px solid rgba(198,167,94,.24);border-top:3px solid #c6a75e;box-shadow:0 12px 28px rgba(0,0,0,.045);}
.media-quotes p{margin:0 0 18px;font-family:"Cormorant Garamond",serif;font-size:1.26rem;font-style:italic;line-height:1.48;}
.media-quotes cite{color:#7f6330;font-size:.72rem;font-style:normal;font-weight:500;letter-spacing:.8px;text-transform:uppercase;line-height:1.5;}
.media-panel-action{margin-top:32px;}
.media-photo-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;}
.media-photo-grid a{position:relative;display:block;aspect-ratio:4/5;overflow:hidden;background:#e8e2d8;box-shadow:0 12px 28px rgba(0,0,0,.055);}
.media-photo-grid img{width:100%;height:100%;display:block;object-fit:cover;transition:transform .4s ease,filter .4s ease;}
.media-photo-grid a:hover img{transform:scale(1.035);filter:brightness(.9);}
@media(max-width:900px){
  .media-video-feature{grid-template-columns:1fr;}
  .media-video-image{min-height:0;aspect-ratio:16/9;}
  .media-quotes{grid-template-columns:repeat(2,minmax(0,1fr));}
  .media-photo-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:600px){
  .media-hub{width:min(92%,680px);padding-bottom:70px;}
  .media-panel{padding:48px 0 56px;}
  .media-panel-heading h2{font-size:2.15rem;}
  .media-video-copy{padding:28px 22px 32px;}
  .media-video-copy h3{font-size:1.65rem;}
  .media-quotes{grid-template-columns:1fr;}
  .media-photo-grid{gap:10px;}
}

/* ===============================
   AJUSTEMENTS PAGE MÉDIAS
================================= */
@media (min-width: 1001px) {
  /* Vignette vidéo réduite approximativement de moitié */
  .media-video-feature {
    grid-template-columns: minmax(280px, .5fr) minmax(0, 1fr);
  }

  .media-video-image {
    min-height: 260px;
  }
}

/* Le texte d’introduction Presse occupe toute la largeur du main */
#presse .media-panel-intro {
  max-width: none;
  width: 100%;
}

/* Les photos conservent leurs proportions portrait ou paysage */
.media-photo-grid {
  align-items: start;
}

.media-photo-grid a {
  aspect-ratio: auto;
  overflow: visible;
  background: transparent;
}

.media-photo-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
}


/* ===============================
   PAGE MÉDIAS — GALERIE ALIGNÉE
================================= */
.media-photo-grid{
  width:min(860px,100%);
  margin:28px auto 0;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  align-items:stretch;
}

.media-photo-grid a{
  position:relative;
  display:block;
  aspect-ratio:4/3;
  overflow:hidden;
  background:#e8e2d8;
  box-shadow:0 12px 28px rgba(0,0,0,.055);
}

.media-photo-grid img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
  transition:transform .4s ease,filter .4s ease;
}

/* Le cadrage conserve le visage dans la photographie verticale */
.media-photo-grid .media-photo-black-white img{
  object-position:center 42%;
}

.media-photo-grid a:hover img{
  transform:scale(1.025);
  filter:brightness(.94);
}

@media(max-width:600px){
  .media-photo-grid{
    grid-template-columns:1fr;
    gap:12px;
  }
}
