<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --beige-lightest: #FDF8F0;
            --beige-light: #F5EDE0;
            --beige-medium: #E8DCC8;
            --beige-dark: #C4B396;
            --beige-darker: #A89272;
            --text-dark: #2C2418;
            --text-medium: #5A4E3C;
            --text-light: #8A7D6B;
            --white: #FFFFFF;
            --accent: #B8860B;
            --accent-hover: #9A7209;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--beige-lightest);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ===== MENU ICON (Always on top) ===== */
        .menu-toggle {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 10000;
            width: 50px;
            height: 50px;
            background: var(--text-dark);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .menu-toggle:hover {
            background: var(--accent);
            transform: scale(1.05);
        }

        .menu-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--beige-lightest);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ===== NAVBAR OVERLAY ===== */
        .navbar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(44, 36, 24, 0.97);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
        }

        .navbar-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .navbar-overlay nav {
            text-align: center;
        }

        .navbar-overlay nav a {
            display: block;
            color: var(--beige-light);
            text-decoration: none;
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            padding: 15px 40px;
            transition: all 0.3s ease;
            letter-spacing: 1px;
            position: relative;
        }

        .navbar-overlay nav a::after {
            content: '';
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 60%;
            height: 1px;
            background: var(--accent);
            transition: transform 0.3s ease;
        }

        .navbar-overlay nav a:hover {
            color: var(--accent);
        }

        .navbar-overlay nav a:hover::after {
            transform: translateX(-50%) scaleX(1);
        }

        /* ===== HERO SECTION ===== */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: var(--text-dark);
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.4;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                to bottom,
                rgba(44, 36, 24, 0.3) 0%,
                rgba(44, 36, 24, 0.6) 50%,
                rgba(253, 248, 240, 1) 100%
            );
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            padding: 0 20px;
            max-width: 1200px;
        }

        .hero-logo {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 5vw, 5rem);
            font-weight: 700;
            color: var(--beige-lightest);
            letter-spacing: 6px;
            text-transform: uppercase;
            margin-bottom: 10px;
            line-height: 1.1;
        }

        .hero-logo span {
            display: block;
            font-size: 1.5rem;
            font-weight: 400;
            letter-spacing: 12px;
            color: var(--beige-dark);
            margin-top: 5px;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: var(--beige-medium);
            font-weight: 300;
            margin-top: 20px;
            letter-spacing: 2px;
        }

        .hero-cta {
            margin-top: 40px;
        }

        .btn {
            display: inline-block;
            padding: 14px 40px;
            background: var(--accent);
            color: var(--white);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .btn:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(184, 134, 11, 0.3);
        }

        .btn-outline {
            background: transparent;
            border: 1px solid var(--beige-dark);
            color: var(--text-dark);
        }

        .btn-outline:hover {
            background: var(--text-dark);
            color: var(--beige-lightest);
            border-color: var(--text-dark);
            box-shadow: 0 6px 20px rgba(44, 36, 24, 0.2);
        }

        .hero-scroll {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
        }

        .hero-scroll a {
            color: var(--text-dark);
            font-size: 0.7rem;
            text-decoration: none;
            letter-spacing: 3px;
            text-transform: uppercase;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            opacity: 0.6;
            transition: opacity 0.3s;
        }

        .hero-scroll a:hover {
            opacity: 1;
        }

        .scroll-arrow {
            width: 1px;
            height: 40px;
            background: var(--text-dark);
            position: relative;
            animation: scrollDown 2s infinite;
        }

        @keyframes scrollDown {
            0% { height: 0; opacity: 0; }
            50% { height: 40px; opacity: 1; }
            100% { height: 40px; opacity: 0; }
        }

        /* ===== SECTIONS ===== */
        section {
            padding: 100px 20px;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-tag {
            font-size: 0.75rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 15px;
            font-weight: 500;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .section-line {
            width: 50px;
            height: 1px;
            background: var(--accent);
            margin: 20px auto;
        }

        .section-desc {
            font-size: 1rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
            font-weight: 300;
            line-height: 1.8;
        }

        /* ===== SECTIONS MERCI / ERREUR ===== */
    
        .confirmation-section,
        .error-section {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 999;
            justify-content: center;
            align-items: center;
        }
    
        .confirmation-section.active,
        .error-section.active {
            display: flex;
        }
    
        .confirmation-box,
        .error-box {
            max-width: 500px;
            text-align: center;
            padding: 60px 40px;
            border-radius: 16px;
            background: #111;
            border: 1px solid #222;
        }
    
        .confirmation-box h1,
        .error-box h1 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 28px;
        }
    
        .confirmation-box p,
        .error-box p {
            color: #aaa;
            line-height: 1.7;
            margin-bottom: 15px;
        }
    
        .gold {
            color: #c8a96e;
            font-weight: 600;
        }
    
        .error-box {
            border-color: #c0392b;
        }
    
        .btn-retour {
            display: inline-block;
            margin-top: 30px;
            padding: 14px 40px;
            background: #c8a96e;
            color: #0a0a0a;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: background 0.3s;
        }
    
        .btn-retour:hover {
            background: #b8964e;
        }
        
        /* ===== ACCUEIL VIDEO ===== */
        #accueil {
            background: var(--beige-lightest);
        }

        .video-container {
            max-width: 900px;
            margin: 0 auto 50px;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(44, 36, 24, 0.1);
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* ===== FEATURES GRID ===== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .feature-card {
            background: var(--white);
            border-radius: 4px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid var(--beige-medium);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(44, 36, 24, 0.1);
            border-color: var(--beige-dark);
        }

        .feature-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
            background: var(--beige-light);
        }

        .feature-content {
            padding: 30px;
        }

        .feature-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            margin-bottom: 12px;
            color: var(--text-dark);
        }

        .feature-content p {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 20px;
            font-weight: 300;
        }

        .feature-content .btn {
            padding: 10px 25px;
            font-size: 0.75rem;
        }

        /* ===== A PROPOS ===== */
        #apropos {
            background: var(--white);
        }

        .apropos-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .apropos-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 4px;
            background: var(--beige-light);
        }

        .apropos-text h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .apropos-text p {
            font-size: 0.95rem;
            color: var(--text-medium);
            line-height: 1.9;
            margin-bottom: 15px;
            font-weight: 300;
        }

        .stats-row {
            display: flex;
            gap: 40px;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid var(--beige-medium);
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--accent);
            font-weight: 700;
        }

        .stat-label {
            font-size: 0.75rem;
            color: var(--text-light);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-top: 5px;
        }

        /* ===== SPECTACLES ===== */
        #spectacles {
            background: var(--beige-lightest);
        }

        .spectacle-card {
            background: var(--white);
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 40px;
            border: 1px solid var(--beige-medium);
            transition: all 0.3s ease;
        }

        .spectacle-card:hover {
            box-shadow: 0 15px 40px rgba(44, 36, 24, 0.08);
        }

        .spectacle-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            align-items: center;
        }

        .spectacle-layout.reverse {
            direction: rtl;
        }

        .spectacle-layout.reverse > * {
            direction: ltr;
        }

        .spectacle-media {
            padding: 25px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            background: var(--beige-lightest);
            overflow: hidden;
        }
        
        .spectacle-image {
        display: flex;
        justify-content: center;
        }

        .spectacle-info {
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .spectacle-info h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 8px;
            color: var(--text-dark);
        }

        .spectacle-info .genre {
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 15px;
        }

        .spectacle-teaser {
             display: flex;
              justify-content: center;
              flex-direction: column;
             margin-top: 20px;
        }

        .spectacle-info p {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.8;
            font-weight: 300;
        }

        .embed-responsive {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            border-radius: 3px;
            overflow: hidden;
        }

        .embed-responsive iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .soundcloud-embed {
            border-radius: 3px;
            overflow: hidden;
        }

        .soundcloud-embed iframe {
            width: 100%;
            border: none;
        }

        /* ===== ARTISTES ===== */
        #artistes {
            background: var(--white);
        }

        .artistes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .artiste-card {
            background: var(--beige-lightest);
            border-radius: 4px;
            overflow: hidden;
            border: 1px solid var(--beige-medium);
            transition: all 0.3s ease;
            max-width: 350px;
            margin: 0 auto;
        }

        .artiste-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(44, 36, 24, 0.08);
        }

        .artiste-photo {
            width: 100%;
            height: 250px;
            object-fit: cover;
            background: var(--beige-light);
            display: block;
        }

        .artiste-body {
            padding: 25px;
        }

        .artiste-body h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            margin-bottom: 5px;
        }

        .artiste-body .role {
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 12px;
        }

        .artiste-body p {
            font-size: 0.85rem;
            color: var(--text-light);
            line-height: 1.7;
            font-weight: 300;
            margin-bottom: 15px;
        }

        .artiste-media {
            padding: 0 25px 25px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .artiste-media .embed-responsive {
            padding-bottom: 56.25%;
            border-radius: 3px;
        }

        /* ===== CONTACT ===== */
        #contact {
            background: var(--beige-lightest);
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: start;
        }

        .contact-info h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .contact-info p {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.8;
            font-weight: 300;
            margin-bottom: 30px;
        }

        .contact-detail {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: var(--beige-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .contact-detail-text {
            font-size: 0.9rem;
            color: var(--text-medium);
        }

        .contact-detail-text strong {
            display: block;
            font-size: 0.75rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-light);
            font-weight: 500;
            margin-bottom: 3px;
        }

        .contact-form {
            background: var(--white);
            padding: 40px;
            border-radius: 4px;
            border: 1px solid var(--beige-medium);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 0.75rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-light);
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid var(--beige-medium);
            background: var(--beige-lightest);
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            color: var(--text-dark);
            border-radius: 3px;
            transition: border-color 0.3s;
            outline: none;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--accent);
        }

        .form-group textarea {
            height: 140px;
            resize: vertical;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-submit {
            text-align: right;
        }

        .form-submit .btn {
            width: 100%;
        }

        .form-message {
            display: none;
            padding: 15px;
            border-radius: 3px;
            margin-top: 15px;
            font-size: 0.9rem;
            text-align: center;
        }

        .form-message.success {
            display: block;
            background: #E8F5E9;
            color: #2E7D32;
            border: 1px solid #C8E6C9;
        }

        /* ===== FAQ ===== */
        #faq {
            background: var(--white);
        }

        .faq-list {
            max-width: 750px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--beige-medium);
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 25px 0;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s;
        }

        .faq-question:hover {
            color: var(--accent);
        }

        .faq-icon {
            font-size: 1.5rem;
            font-weight: 300;
            transition: transform 0.3s;
            flex-shrink: 0;
            margin-left: 20px;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer p {
            padding-bottom: 25px;
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.8;
            font-weight: 300;
        }

        /* ===== MENTIONS LÉGALES ===== */
        #mentions {
            background: var(--beige-lightest);
        }

        .mentions-content {
            max-width: 750px;
            margin: 0 auto;
        }

        .mentions-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            margin-top: 35px;
            margin-bottom: 12px;
            color: var(--text-dark);
        }

        .mentions-content p {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.8;
            font-weight: 300;
            margin-bottom: 10px;
        }

        /* ===== FOOTER ===== */
        footer {
            background: var(--text-dark);
            color: var(--beige-dark);
            padding: 50px 20px 30px;
            text-align: center;
        }

        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--beige-light);
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        .footer-links a {
            color: var(--beige-dark);
            text-decoration: none;
            font-size: 0.8rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-copy {
            font-size: 0.75rem;
            color: var(--text-light);
            border-top: 1px solid rgba(200, 180, 150, 0.15);
            padding-top: 25px;
        }

        /* ===== SCROLL TO TOP ===== */
        .scroll-top {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 45px;
            height: 45px;
            background: var(--text-dark);
            color: var(--beige-lightest);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 100;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }

        /* ===== ANIMATIONS ===== */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 900px) {
            .hero-logo {
                font-size: 3rem;
            }

            .hero-logo span {
                font-size: 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .apropos-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .apropos-img {
                height: 250px;
            }

            .spectacle-layout,
            .spectacle-layout.reverse {
                grid-template-columns: 1fr;
                direction: ltr;
            }

            .contact-wrapper {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .stats-row {
                gap: 20px;
            }

            .stat-number {
                font-size: 2rem;
            }

            .navbar-overlay nav a {
                font-size: 1.4rem;
                padding: 12px 30px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .artistes-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero-logo {
                font-size: 2.2rem;
                letter-spacing: 3px;
            }

            section {
                padding: 70px 15px;
            }

            .contact-form {
                padding: 25px;
            }
        }
    </style>