
        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root { --primary: #75C4E7; --dark: #1a1a2e; --white: #ffffff; --gold: #C5A663; --navy: #1a3a5c; }
        body { font-family: 'Montserrat', sans-serif; }
        a { text-decoration: none; color: inherit; }

        .header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 15px 0; background: var(--navy); box-shadow: 0 2px 20px rgba(0,0,0,0.2); }
        .header-inner { display: flex; justify-content: space-between; align-items: center; max-width: 1400px; margin: 0 auto; padding: 0 40px; }
        .logo { display: flex; align-items: center; gap: 8px; font-size: 1.8rem; z-index: 1001; flex-shrink: 0; }
        .logo .anima { color: var(--white); font-weight: 700; }
        .logo .musica { color: var(--primary); font-weight: 600; }
        .nav { display: flex; align-items: center; gap: 35px; }
        .nav-link { color: var(--white); font-weight: 500; font-size: 0.95rem; padding: 8px 0; position: relative; white-space: nowrap; }
        .nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s; }
        .nav-link:hover::after, .nav-link.active::after { width: 100%; }
        .nav-link-mobile { display: none; }
        .btn-contact-header { background: var(--white); color: var(--navy); padding: 12px 28px; border-radius: 30px; font-weight: 600; font-size: 0.95rem; border: 2px solid var(--white); flex-shrink: 0; transition: background 0.2s, color 0.2s; }
        .btn-contact-header:hover { background: transparent; color: var(--white); }
        .burger { display: none; flex-direction: column; width: 40px; height: 40px; cursor: pointer; z-index: 1001; background: none; border: none; justify-content: center; align-items: center; }
        .burger span { display: block; width: 28px; height: 3px; background: var(--white); border-radius: 3px; margin: 3px 0; transition: transform 0.2s; }
        .burger.active span:nth-child(1) { transform: rotate(45deg) translate(6px,6px); }
        .burger.active span:nth-child(2) { opacity: 0; }
        .burger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }

        .hero { min-height: 72vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; background: var(--dark); }
        .hero::before { content: ''; position: absolute; inset: 0; background: url('Sardou_Junior_Scene.png') center/cover no-repeat; z-index: 1; opacity: 0.22; }
        .hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,58,92,0.88) 0%, rgba(26,26,46,0.93) 100%); z-index: 2; }
        .hero-content { position: relative; z-index: 3; text-align: center; padding: 0 20px; max-width: 860px; }
        .hero-badge { display: inline-block; background: var(--gold); color: var(--dark); padding: 10px 24px; border-radius: 30px; font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1.8px; margin-bottom: 28px; }
        .hero-content h1 { font-size: 3.6rem; font-weight: 700; color: var(--white); margin-bottom: 18px; line-height: 1.2; }
        .hero-content h1 span { color: var(--gold); }
        .hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.75); margin-bottom: 36px; line-height: 1.8; max-width: 660px; margin-left: auto; margin-right: auto; }
        .btn-gold { display: inline-block; padding: 15px 38px; border-radius: 30px; font-weight: 600; font-size: 1rem; background: var(--gold); color: var(--dark); border: 2px solid var(--gold); transition: background 0.2s, color 0.2s; }
        .btn-gold:hover { background: transparent; color: var(--gold); }
        .hero-buttons { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
        .btn-outline { display: inline-block; padding: 15px 38px; border-radius: 30px; font-weight: 600; font-size: 1rem; background: transparent; color: var(--white); border: 2px solid var(--white); transition: background 0.2s, color 0.2s; }
        .btn-outline:hover { background: var(--white); color: var(--dark); }


        .section-header { text-align: center; margin-bottom: 55px; }
        .section-header span { display: block; color: var(--gold); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 12px; }
        .section-header h2 { font-size: 2.2rem; font-weight: 700; color: var(--dark); }
        .section-header h2 em { color: var(--gold); font-style: normal; }

        .services-section { background: var(--white); padding: 90px 20px; }
        .services-grid { max-width: 1050px; margin: 0 auto; display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
        .service-card { background: #f8f9fa; border-radius: 16px; padding: 32px 28px; border-left: 4px solid var(--gold); transition: transform 0.3s, box-shadow 0.3s; }
        .service-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.08); }
        .service-card-icon { width: 52px; height: 52px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
        .service-card-icon svg { width: 24px; height: 24px; fill: var(--dark); }
        .service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
        .service-card p { font-size: 0.88rem; color: #666; line-height: 1.75; }

        .sardou-bloc { background: var(--dark); padding: 90px 20px; position: relative; overflow: hidden; }
        .sardou-bloc::before { content: ''; position: absolute; inset: 0; background: url('Sardou_Junior_Scene.png') center/cover no-repeat; z-index: 1; opacity: 0.18; }
        .sardou-bloc::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(26,26,46,0.95), rgba(26,26,46,0.72)); z-index: 2; }
        .sardou-inner { max-width: 1050px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 3; }
        .sardou-text .section-header { text-align: left; margin-bottom: 22px; }
        .sardou-text .section-header span { text-align: left; }
        .sardou-text .section-header h2 { color: var(--white); }
        .sardou-text p { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.85; margin-bottom: 14px; }
        .sardou-text .btn-gold { margin-top: 8px; }
        .sardou-points { display: flex; flex-direction: column; gap: 16px; }
        .sardou-point { display: flex; align-items: flex-start; gap: 16px; background: rgba(255,255,255,0.05); padding: 20px 22px; border-radius: 14px; border: 1px solid rgba(255,255,255,0.08); }
        .sardou-point-icon { width: 40px; height: 40px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .sardou-point-icon svg { width: 18px; height: 18px; fill: var(--dark); }
        .sardou-point h4 { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 3px; }
        .sardou-point p { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 0 !important; line-height: 1.5; }

        .spectacle-section { background: var(--white); padding: 90px 20px; }
        .spectacle-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
        .spectacle-card { text-align: center; }
        .spectacle-card-icon { width: 68px; height: 68px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
        .spectacle-card-icon svg { width: 28px; height: 28px; fill: var(--dark); }
        .spectacle-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
        .spectacle-card p { font-size: 0.88rem; color: #666; line-height: 1.7; }

        .villes-section { background: #f8f9fa; padding: 90px 20px; }
        .villes-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
        .ville-card { background: var(--white); border-radius: 14px; padding: 26px 22px; border-left: 4px solid var(--primary); box-shadow: 0 4px 16px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s; }
        .ville-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.1); }
        .ville-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
        .ville-card p { font-size: 0.8rem; color: #777; line-height: 1.55; }

        .dossier-section { background: var(--navy); padding: 70px 20px; }
        .dossier-inner { max-width: 780px; margin: 0 auto; display: flex; align-items: center; gap: 46px; }
        .dossier-icon-wrap { flex-shrink: 0; width: 96px; height: 96px; background: rgba(255,255,255,0.06); border-radius: 22px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.1); }
        .dossier-icon-wrap svg { width: 42px; height: 42px; fill: var(--gold); }
        .dossier-text h3 { font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
        .dossier-text p { color: rgba(255,255,255,0.6); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; }
        .btn-dossier { display: inline-flex; align-items: center; gap: 10px; background: var(--gold); color: var(--dark); padding: 13px 28px; border-radius: 30px; font-weight: 600; font-size: 0.92rem; transition: transform 0.2s, box-shadow 0.2s; }
        .btn-dossier:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(197,166,99,0.4); }
        .btn-dossier svg { width: 17px; height: 17px; fill: var(--dark); }

        .cross-section { background: var(--white); padding: 75px 20px; }
        .cross-grid { max-width: 1050px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
        .cross-card { background: #f8f9fa; border-radius: 14px; padding: 28px 22px; border-top: 3px solid var(--gold); text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
        .cross-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.08); }
        .cross-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
        .cross-card p { font-size: 0.8rem; color: #777; line-height: 1.5; margin-bottom: 12px; }
        .cross-card a { display: inline-block; color: var(--gold); font-weight: 600; font-size: 0.82rem; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

        .cta-section { background: var(--dark); padding: 90px 20px; text-align: center; position: relative; overflow: hidden; }
        .cta-section::before { content: ''; position: absolute; top: -40%; left: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(117,196,231,0.07) 0%, transparent 70%); pointer-events: none; }
        .cta-section::after { content: ''; position: absolute; bottom: -40%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(197,166,99,0.06) 0%, transparent 70%); pointer-events: none; }
        .cta-section h2 { font-size: 2.2rem; font-weight: 700; color: var(--white); margin-bottom: 14px; position: relative; z-index: 1; }
        .cta-section h2 em { color: var(--gold); font-style: normal; }
        .cta-section p { font-size: 1rem; color: rgba(255,255,255,0.7); margin-bottom: 34px; max-width: 560px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; line-height: 1.8; }
        .cta-section .btn-gold { position: relative; z-index: 1; }

        .footer { background: #0d0d1a; padding: 60px 20px 30px; }
        .footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; margin-bottom: 40px; }
        .footer-col h4 { color: var(--white); font-size: 1.1rem; font-weight: 600; margin-bottom: 20px; }
        .footer-col p, .footer-col a { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.8; display: block; }
        .footer-col a:hover { color: var(--gold); }
        .footer-social { display: flex; gap: 15px; margin-top: 15px; }
        .footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.3s; }
        .footer-social a:hover { background: var(--gold); }
        .footer-social svg { width: 18px; height: 18px; fill: var(--white); }
        .footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); }
        .footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.9rem; }

        @media (max-width: 900px) {
            .nav { position: fixed; inset: 0; background: var(--dark); flex-direction: column; justify-content: center; align-items: center; gap: 0; transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.4,0,0.2,1); z-index: 1000; }
            .nav.active { transform: translateX(0); }
            .nav-link { font-size: 1.5rem; padding: 15px 0; color: var(--gold); }
            .nav-link-mobile { display: block; margin-top: 30px; background: var(--gold); color: var(--dark); padding: 15px 40px; border-radius: 30px; font-weight: 600; }
            .btn-contact-header { display: none; }
            .burger { display: flex; }
            .services-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
            .sardou-inner { grid-template-columns: 1fr; gap: 36px; }
            .sardou-text .section-header { text-align: center; }
            .sardou-text .section-header span { text-align: center; }
            .sardou-text { text-align: center; }
            .sardou-text .btn-gold { margin-left: auto; margin-right: auto; display: block; width: fit-content; }
            .spectacle-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
            .villes-grid { grid-template-columns: repeat(2,1fr); }
            .cross-grid { grid-template-columns: repeat(2,1fr); }
            .footer-content { grid-template-columns: repeat(2,1fr); }
        }
        @media (max-width: 768px) {
            .header-inner { padding: 0 20px; }
            .hero-content h1 { font-size: 2.4rem; }
            .hero-sub { font-size: 0.95rem; }
            .section-header h2, .cta-section h2 { font-size: 1.8rem; }
            .dossier-inner { flex-direction: column; text-align: center; }
            .footer-content { grid-template-columns: 1fr; text-align: center; }
            .footer-social { justify-content: center; }
        }
        @media (max-width: 480px) {
            .hero-content h1 { font-size: 1.9rem; }
            .hero { min-height: 62vh; }
            .villes-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
            .ville-card { padding: 18px 14px; }
            .cross-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
        }

        .btn-email-cta { display: inline-block; background: var(--gold); color: var(--dark); padding: 12px 30px; border-radius: 30px; font-weight: 600; font-size: 0.95rem; transition: all 0.3s; box-shadow: 0 4px 15px rgba(197,166,99,0.3); text-decoration: none; }
        .btn-email-cta:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
        