
        /* ==================== VARIABLES ==================== */
        :root {
           --primary: #680201;
            --primary-dark: #460702;
            --primary-light: #680201;
            --secondary: #DACCB4;
            --white: #F9F0EE;
            --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        /* ==================== RESET ==================== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--primary);
            color: var(--white);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* ==================== TYPOGRAPHY ==================== */
        h1, h2, h3, h4 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            line-height: 1.2;
        }

        h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
        h2 { font-size: clamp(2rem, 4vw, 2.3rem);
             white-space: nowrap;
        }
        h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }

        .wrap-text {
             white-space: normal;
             font-size: clamp(2rem, 4vw, 3rem);
        }

        p {
            font-weight: 300;
            line-height: 1.8;
            font-size: 1rem;
        }

        /* ==================== PRELOADER ==================== */
        .preloader {
            position: fixed;
            inset: 0;
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }

        .preloader.loaded {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .preloader-logo {
            width: 120px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: preloaderPulse 1.5s ease-in-out infinite;
        }

        .preloader-logo img {
            max-width: 100%;
            max-height: 100%;
        }

        .preloader-text {
            margin-top: 2rem;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1rem;
            letter-spacing: 8px;
            text-transform: uppercase;
            color: var(--secondary);
            animation: textPulse 1.5s ease-in-out infinite;
        }

        @keyframes preloaderPulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.08); opacity: 0.7; }
        }

        @keyframes textPulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        /* ==================== ANIMATIONS ==================== */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(60px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes scrollDown {
            0% { opacity: 1; top: 8px; }
            100% { opacity: 0; top: 30px; }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideLeft {
            from { opacity: 0; transform: translateX(-80px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideRight {
            from { opacity: 0; transform: translateX(80px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        @keyframes floatRotate {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(5deg); }
        }

        @keyframes rotateInfinite {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes liquidMotion {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes shimmer {
            0% { background-position: -200% center; }
            100% { background-position: 200% center; }
        }

        @keyframes lineFlow {
            0% { transform: translateY(-100%); }
            100% { transform: translateY(100%); }
        }

        /* ==================== REVEAL ANIMATIONS ==================== */
        .fade-up {
            opacity: 0;
            transform: translateY(60px);
            transition: opacity 0.9s var(--transition-smooth), transform 0.9s var(--transition-smooth);
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-left {
            opacity: 0;
            transform: translateX(-60px);
            transition: opacity 0.9s var(--transition-smooth), transform 0.9s var(--transition-smooth);
        }

        .fade-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-right {
            opacity: 0;
            transform: translateX(60px);
            transition: opacity 0.9s var(--transition-smooth), transform 0.9s var(--transition-smooth);
        }

        .fade-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-scale {
            opacity: 0;
            transform: scale(0.85);
            transition: opacity 0.9s var(--transition-smooth), transform 0.9s var(--transition-smooth);
        }

        .fade-scale.visible {
            opacity: 1;
            transform: scale(1);
        }

        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }
        .delay-4 { transition-delay: 0.4s; }
        .delay-5 { transition-delay: 0.5s; }
        .delay-6 { transition-delay: 0.6s; }
        .delay-7 { transition-delay: 0.7s; }
        .delay-8 { transition-delay: 0.8s; }

        /* ==================== FLOATING ELEMENTS ==================== */
        .floating-bg {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .floating-orb {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(218, 204, 180, 0.1) 0%, transparent 70%);
        }

        .orb-1 {
            width: 400px;
            height: 400px;
            top: 10%;
            right: -100px;
            animation: float 15s ease-in-out infinite;
        }

        .orb-2 {
            width: 300px;
            height: 300px;
            bottom: 20%;
            left: -80px;
            animation: float 12s ease-in-out infinite reverse;
        }

        .orb-3 {
            width: 200px;
            height: 200px;
            top: 50%;
            left: 30%;
            animation: float 18s ease-in-out infinite 2s;
        }

        /* ==================== NAVIGATION ==================== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            margin: 0 auto;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: transparent;
            border-radius: 0;
            transition: all 0.9s ease;
        }

        .navbar.scrolled {
            background-image: url(/img/bg_red.png);
            background-size: cover;
            background-position: bottom;            backdrop-filter: blur(20px);
            padding: 0.8rem 2rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            top: 20px;
            left: 10%;
            right: 10%;
            width: 80%;
            max-width: 1400px;
            border-radius: 20px;
        }

        .nav-logo {
            height: 100px;
            transition: height 0.4s var(--transition-smooth);
        }

        .navbar.scrolled .nav-logo {
            height: 70px;
            width: auto;
        }

        .nav-logo img {
            height: 100%;
            width: auto;
            transition: transform 0.7s ease;
        }

        .nav-logo:hover img {
            transform: scale(1.05);
        }

        /* ==================== HAMBURGER ==================== */
        .hamburger {
            display: flex;
            flex-direction: column;
            gap: 6px;
            padding: 10px;
            cursor: pointer;
            z-index: 1001;
            background: transparent;
            border: none;
        }

        .hamburger span {
            width: 30px;
            height: 2px;
            background: var(--white);
            transition: all 0.4s var(--transition-smooth);
            transform-origin: center;
        }

        .hamburger:hover span {
            background: var(--secondary);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(20px);
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* ==================== SIDE MENU ==================== */
        .side-menu {
            position: fixed;
            top: 0;
            right: 0;
            width: 400px;
            height: 100vh;
            background: var(--primary-dark);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 4rem;
            transform: translateX(100%);
            transition: transform 0.5s var(--transition-smooth);
            z-index: 999;
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
        }

        .side-menu.active {
            transform: translateX(0);
        }

        .menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 998;
        }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* ==================== SIDE MENU LINKS ==================== */
        .side-menu-nav {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .side-menu-link {
            color: var(--white);
            text-decoration: none;
            font-size: 2rem;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 500;
            letter-spacing: 2px;
            padding: 1rem 0;
            position: relative;
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.4s ease, color 0.3s ease;
            border-bottom: 1px solid rgba(218, 204, 180, 0.1);
        }

        .side-menu-link:last-child {
            border-bottom: none;
        }

        .side-menu-link::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.4s ease;
        }

        .side-menu-link:hover {
            color: var(--secondary);
            transform: translateX(10px);
        }

        .side-menu-link:hover::before {
            width: 50px;
        }

        .side-menu.active .side-menu-link {
            opacity: 1;
            transform: translateX(0);
        }

        .side-menu.active .side-menu-link:nth-child(1) { transition-delay: 0.1s; }
        .side-menu.active .side-menu-link:nth-child(2) { transition-delay: 0.2s; }
        .side-menu.active .side-menu-link:nth-child(3) { transition-delay: 0.3s; }
        .side-menu.active .side-menu-link:nth-child(4) { transition-delay: 0.4s; }
        .side-menu.active .side-menu-link:nth-child(5) { transition-delay: 0.5s; }
        .side-menu.active .side-menu-link:nth-child(6) { transition-delay: 0.6s; }

        .side-menu-cta {
            margin-top: 3rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease 0.6s;
        }

        .side-menu.active .side-menu-cta {
            opacity: 1;
            transform: translateY(0);
        }

        .side-menu-cta .btn {
            width: 100%;
            text-align: center;
        }

        /* ==================== BUTTONS ==================== */
        .btn {
            padding: 1.2rem 3rem;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.4s ease;
            border: none;
        }

        .btn-primary {
            background: var(--secondary);
            color: var(--primary);
            transition: all 0.4s ease, transform 0.15s ease-out;
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(218, 204, 180, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--secondary);
        }

        .btn-outline:hover {
            background: var(--secondary);
            color: var(--primary);
            transform: translateY(-5px);
        }

        /* ==================== SECTIONS BASE ==================== */
        section {
            padding: 8rem 5%;
            position: relative;
            overflow: hidden;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 5rem;
        }

        .section-tag {
            color: var(--secondary);
            font-size: 0.85rem;
            letter-spacing: 6px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            display: block;
        }

        .section-header p {
            opacity: 0.85;
        }

        .accent {
            color: var(--secondary);
        }

        /* ==================== SECTION 1 - WHY VISIT HERO ==================== */
        #why-visit {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 120px;
        }

        /* Perfume Motion Background */
        .perfume-motion-bg {
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse at 30% 70%, rgba(218, 204, 180, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 30%, rgba(218, 204, 180, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(0, 40, 100, 0.3) 0%, transparent 70%);
            background-size: 200% 200%;
            animation: liquidMotion 15s ease-in-out infinite;
            filter: blur(40px);
            opacity: 0.6;
            pointer-events: none;
        }

        .why-visit-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* Glassmorphism Box */
        .why-visit-box {
            background: linear-gradient(to right, var(--primary), var(--primary-light));
            backdrop-filter: blur(20px);
            border: 1px solid rgba(218, 204, 180, 0.15);
            border-radius: 30px;
            padding: 4rem;
            position: relative;
            overflow: hidden;
        }

        .why-visit-box::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 30px;
            padding: 2px;
            background: linear-gradient(135deg, rgba(218, 204, 180, 0.3), transparent, rgba(218, 204, 180, 0.1));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }

        .why-visit-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .why-visit-header h1 {
            margin-bottom: 1rem;
        }

        .why-visit-header .subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 300;
        }

        /* Grid Layout for Perfume + Cards */
        .why-visit-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr 1fr;
            grid-template-rows: auto auto;
            gap: 2rem;
            align-items: center;
            justify-items: center;
        }

        /* Perfume 3D Model Container */
        .perfume-container {
            grid-column: 2;
            grid-row: 1 / 3;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .perfume-3d {
            width: 350px;
            height: 450px;
            animation: floatRotate 6s ease-in-out infinite;
        }

        /* Visit Cards */
        .visit-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(218, 204, 180, 0.2);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: all 0.4s ease;
            width: 100%;
            max-width: 280px;
        }

        .visit-card:hover {
            transform: translateY(-10px);
            border-color: var(--secondary);
            background: rgba(218, 204, 180, 0.08);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .visit-card-icon {
            width: 60px;
            height: 60px;
            border: 2px solid var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.5rem;
            color: var(--secondary);
            transition: all 0.5s ease;
            position: relative;
        }

        /* Logo dans l'ic�ne */
        .visit-card-icon .icon-logo {
            width: 30px;
            height: 30px;
            opacity: 1;
            transition: opacity 0.5s ease;
        }

        /* �toile au hover */
        .visit-card-icon .icon-hover {
            position: absolute;
            font-size: 1.5rem;
            color: var(--primary);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        /* Au survol de la carte */
        .visit-card:hover .icon-logo {
            opacity: 0;
        }

        .visit-card:hover .icon-hover {
            opacity: 1;
        }

        .visit-card:hover .visit-card-icon {
            background: var(--secondary);
            border-color: var(--secondary);
            transform: rotateY(360deg);
        }

        .visit-card h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--secondary);
        }

        .visit-card p {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Card positions */
        .visit-card:nth-child(1) { grid-column: 1; grid-row: 1; }
        .visit-card:nth-child(2) { grid-column: 3; grid-row: 1; }
        .visit-card:nth-child(3) { grid-column: 1; grid-row: 2; }
        .visit-card:nth-child(4) { grid-column: 3; grid-row: 2; }

        /* ==================== SECTION 2 - SECTORS ==================== */
        #sectors {
            background: linear-gradient(180deg, #001540 0%, var(--primary) 100%);
            padding-top: 4rem;
            z-index: 2;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1.5rem;
            max-width: 1400px;
            margin: 0 auto;
            justify-items: center;
            align-items: start;
            padding-bottom: 140px;
        }

        .category-card {
            position: relative;
            width: 200px;
            height: 500px;
            overflow: visible;
            cursor: pointer;
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
            border-radius: 100px;
            border: 2px solid rgba(218, 204, 180, 0.2);
            transition: all 0.5s ease;
            transform-origin: center top;
        }

        .category-card-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 100px;
            transition: transform 0.6s ease;
        }

        .category-card-inner {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.8s ease;
        }

        .category-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgb(192 0 26 / 70%) 0%, rgba(38, 48, 86, 0.2) 40%, transparent 100%);
            border-radius: 100px;
            transition: all 0.5s ease;
        }

        .category-content {
            position: absolute;
            bottom: -70px;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            text-align: center;
            opacity: 0;
            transition: all 0.3s ease;
            pointer-events: none;
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
            backdrop-filter: blur(10px);
            padding: 1.5rem 1rem;
            border-radius: 15px;
            border: 1px solid rgba(218, 204, 180, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        /* Hover effects UNIQUEMENT sur desktop */
        @media (hover: hover) {
            .categories-grid:hover .category-card {
                transform: scale(0.95);
                opacity: 0.6;
            }

            .categories-grid .category-card:hover {
                transform: scale(1.08) translateY(15px);
                opacity: 1;
                border-color: var(--secondary);
                z-index: 10;
            }

            .category-card:hover .category-card-img {
                transform: scale(1.1);
            }

            .category-card:hover .category-overlay {
                background: linear-gradient(to top, rgba(38, 48, 86, 0.5) 0%, transparent 60%);
                opacity: 0;
            }

            .category-card:hover .category-content {
                opacity: 1;
                bottom: -180px;
            }
        }

        /* �tat actif pour mobile (au tap) */
        .category-card.active {
            transform: scale(1.05) translateY(10px);
            border-color: var(--secondary);
            z-index: 10;
        }

        .category-card.active .category-card-img {
            transform: scale(1.1);
        }

        .category-card.active .category-overlay {
            background: linear-gradient(to top, rgba(38, 48, 86, 0.5) 0%, transparent 60%);
            opacity: 0;
        }

        .category-card.active .category-content {
            opacity: 1;
            bottom: -180px;
        }

        .category-content h3 {
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
            color: var(--secondary);
            transition: color 0.3s ease;
        }

        .category-content p {
            font-size: 0.8rem;
            opacity: 0.7;
            color: var(--white);
        }

        /* ==================== SECTION 3 - WORLDWIDE SCENTS ==================== */
        #worldwide-scents {
            background: var(--primary);
            padding: 8rem 5%;
            z-index: 1;
        }

        .worldwide-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
        }

        .worldwide-text .section-tag {
            text-align: left;
        }

        .worldwide-text h2 {
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .worldwide-text .highlight {
            font-size: 1.3rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
            font-weight: 400;
        }

        .worldwide-text p {
            opacity: 0.85;
            margin-bottom: 1rem;
        }

        /* Globe 3D Container */
        .globe-container {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .globe-3d {
            width: 350px;
            height: 350px;
            animation: floatRotate 6s ease-in-out infinite;
        }

        /* ==================== SECTION 4 - TICKET BOOKING ==================== */
        #ticket-booking {
            background: var(--secondary);
            color: var(--primary);
            padding: 8rem 5%;
        }

        .booking-container {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
        }

        .booking-container .section-tag {
            color: var(--primary);
            opacity: 0.7;
        }

        .booking-container h2 {
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .booking-container .subtitle {
            color: var(--primary);
            opacity: 0.8;
            margin-bottom: 3rem;
            font-size: 1.2rem;
        }

        .booking-form {
            text-align: left;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 1rem 1.2rem;
            border: 2px solid rgba(0, 29, 81, 0.2);
            border-radius: 10px;
            font-family: inherit;
            font-size: 1rem;
            background: rgba(255, 255, 255, 0.8);
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: white;
            box-shadow: 0 5px 20px rgba(0, 29, 81, 0.1);
        }

        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(0, 29, 81, 0.4);
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin: 1.5rem 0;
        }

        .checkbox-group input[type="checkbox"] {
            width: 20px;
            height: 20px;
            accent-color: var(--primary);
            cursor: pointer;
        }

        .checkbox-group label {
            font-size: 0.95rem;
            font-weight: 400;
            text-transform: none;
            letter-spacing: 0;
            cursor: pointer;
        }

        .booking-submit {
            width: 100%;
            padding: 1.2rem 3rem;
            background: var(--primary);
            color: var(--secondary);
            border: none;
            border-radius: 10px;
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.4s ease;
            margin-top: 1rem;
        }

        .booking-submit:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 29, 81, 0.3);
        }

        .form-disclaimer {
            font-size: 0.8rem;
            opacity: 0.6;
            text-align: center;
            margin-top: 1.5rem;
        }

        /* ==================== SECTION 5 - NEWSLETTER ==================== */
        .newsletter {
            background: var(--primary-dark);
            padding: 6rem 5%;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .newsletter::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--secondary), transparent);
        }

        .newsletter::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--secondary), transparent);
        }

        .newsletter-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .newsletter-content h2 {
            margin-bottom: 1rem;
        }

        .newsletter-content p {
            opacity: 0.8;
            margin-bottom: 2.5rem;
        }

        .newsletter-form {
            width: 100%;
        }

        .newsletter-input-wrapper {
            display: flex;
            gap: 0;
            border: 2px solid var(--secondary);
            border-radius: 50px;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .newsletter-input-wrapper:focus-within {
            box-shadow: 0 0 30px rgba(218, 204, 180, 0.2);
        }

        .newsletter-form input[type="email"] {
            flex: 1;
            padding: 1.2rem 2rem;
            background: transparent;
            border: none;
            color: var(--white);
            font-size: 1rem;
            font-family: inherit;
            outline: none;
        }

        .newsletter-form input[type="email"]::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .newsletter-btn {
            padding: 1.2rem 2.5rem;
            background: var(--secondary);
            color: var(--primary);
            border: none;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.4s ease;
            white-space: nowrap;
        }

        .newsletter-btn:hover {
            background: var(--white);
            color: var(--primary-dark);
        }

        /* ==================== FOOTER ==================== */
        footer {
            background: var(--primary-dark);
            padding: 5rem 5% 2rem;
        }

        .footer-container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            max-width: 1400px;
            margin: 0 auto 4rem;
        }

        .footer-brand .footer-logo {
            height: 70px;
            margin-bottom: 1.5rem;
        }

        .footer-brand .footer-logo img {
            height: 100%;
            width: auto;
        }

        .footer-brand p {
            opacity: 0.7;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        .footer-col h4 {
            color: var(--secondary);
            font-size: 0.9rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col li {
            margin-bottom: 0.8rem;
        }

        .footer-col a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.7;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-col a:hover {
            opacity: 1;
            color: var(--secondary);
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            border: 1px solid rgba(218, 204, 180, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-size: 1.1rem;
            transition: all 0.4s ease;
        }

        .social-links a:hover {
            background: var(--secondary);
            color: var(--primary);
            border-color: var(--secondary);
            transform: translateY(-5px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(218, 204, 180, 0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            opacity: 0.6;
            font-size: 0.85rem;
        }

        .footer-bottom-links {
            display: flex;
            gap: 2rem;
        }

        .footer-bottom-links a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: var(--secondary);
        }

        /* ==================== BACK TO TOP ==================== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--secondary);
            color: var(--primary);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s ease;
            z-index: 999;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            background: var(--white);
            transform: translateY(-5px);
        }

        /* ==================== RESPONSIVE OPTIMIS� ==================== */

        /* 1. Grand �cran */
        @media (max-width: 1200px) {
            .categories-grid {
                grid-template-columns: repeat(3, 1fr);
                padding-bottom: 200px;
            }

            .why-visit-grid {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto;
            }

            .perfume-container {
                grid-column: 1 / -1;
                grid-row: 1;
            }

            .visit-card:nth-child(1) { grid-column: 1; grid-row: 2; }
            .visit-card:nth-child(2) { grid-column: 2; grid-row: 2; }
            .visit-card:nth-child(3) { grid-column: 1; grid-row: 3; }
            .visit-card:nth-child(4) { grid-column: 2; grid-row: 3; }
        }

        /* 2. Tablette */
        @media (max-width: 1024px) {
            .scroll-indicator {
                display: none !important;
            }
            .worldwide-container {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }

            .worldwide-text .section-tag {
                text-align: center;
            }

            .globe-container {
                order: -1;
            }

            .globe-3d {
                width: 300px;
                height: 300px;
            }

            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* 3. Mobile */
        @media (max-width: 768px) {
            .scroll-indicator {
                display: none !important;
            }

            /* HERO */
            .hero {
                min-height: 85vh;
                padding-top: 110px;
            }

            .hero h1 {
                white-space: nowrap;
                font-size: clamp(2.5rem, 12vw, 3.5rem) !important;
                line-height: 1.1;
            }

            .hero-tagline {
                white-space: nowrap;
                font-size: 0.5rem;
                letter-spacing: 3px;
            }

            .hero-subtitle {
                font-size: 1rem;
                padding: 0 1rem;
            }

            .hero-content {
                padding: 0 1rem;
            }

            .hero-actions {
                flex-direction: column;
                gap: 1rem;
                width: 100%;
                padding: 0 1.5rem;
            }

            .hero-actions .btn {
                padding: 1rem 1rem;
                font-size: 0.75rem;
                width: 100%;
                text-align: center;
            }

            section {
                padding: 4rem 4%;
            }

            h2 {
                white-space: normal;
                font-size: clamp(1.5rem, 6vw, 2rem);
                line-height: 1.2;
            }

            .section-tag {
                font-size: 0.7rem;
                letter-spacing: 3px;
            }

            .section-header {
                margin-bottom: 2.5rem;
            }

            .section-header p {
                font-size: 0.9rem;
                padding: 0 0.5rem;
            }

            /* NAVBAR */
            .navbar {
                padding: 1rem 4%;
            }

            .nav-logo {
                height: 55px;
            }

            .navbar.scrolled {
                width: 94%;
                left: 3%;
                right: 3%;
                padding: 0.5rem 1rem;
                border-radius: 25px;
                top: 10px;
            }

            .navbar.scrolled .nav-logo {
                height: 40px;
            }

            .hamburger {
                padding: 8px;
            }

            .hamburger span {
                width: 24px;
                height: 2px;
            }

            /* WHY VISIT */
            #why-visit {
                padding-top: 80px;
                padding-bottom: 3rem;
            }

            .why-visit-box {
                padding: 1.5rem;
                border-radius: 20px;
            }

            .why-visit-header {
                margin-bottom: 2rem;
            }

            .why-visit-header .subtitle {
                font-size: 1rem;
            }

            .why-visit-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .perfume-container {
                grid-column: 1;
                grid-row: 1;
            }

            .perfume-3d {
                width: 220px;
                height: 280px;
            }

            .visit-card {
                max-width: 100%;
                padding: 1.5rem;
            }

            .visit-card:nth-child(1),
            .visit-card:nth-child(2),
            .visit-card:nth-child(3),
            .visit-card:nth-child(4) {
                grid-column: 1;
                grid-row: auto;
            }

            .visit-card h3 {
                font-size: 1.1rem;
            }

            .visit-card p {
                font-size: 0.85rem;
            }

            .visit-card-icon {
                width: 50px;
                height: 50px;
            }

            .visit-card-icon .icon-logo {
                width: 25px;
                height: 25px;
            }

            /* CATEGORIES */
            #about {
                padding-top: 3rem;
            }

            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
                padding-bottom: 160px;
                justify-items: center;
            }

            .category-card {
                width: 140px;
                height: 300px;
                border-radius: 70px;
            }

            .category-card-img,
            .category-overlay {
                border-radius: 70px;
            }

            /* Hover d�sactiv� sur mobile - g�r� par JavaScript tap */

            .category-content {
                width: 140px;
                padding: 1rem 0.8rem;
                bottom: -60px;
            }

            .category-card:hover .category-content {
                bottom: -140px;
            }

            .category-content h3 {
                font-size: 0.9rem;
            }

            .category-content p {
                font-size: 0.65rem;
                line-height: 1.4;
            }

            /* WORLDWIDE */
            #worldwide-scents {
                padding: 4rem 4%;
            }

            .worldwide-text h2 {
                font-size: clamp(1.5rem, 6vw, 2rem);
            }

            .worldwide-text .highlight {
                font-size: 1.1rem;
            }

            .worldwide-text p {
                font-size: 0.9rem;
            }

            .globe-3d {
                width: 230px;
                height: 230px;
            }

            /* NEWSLETTER */
            .newsletter {
                padding: 3rem 4%;
            }

            .newsletter-content h2 {
                font-size: clamp(1.5rem, 6vw, 2rem);
            }

            .newsletter-content p {
                font-size: 0.9rem;
                margin-bottom: 1.5rem;
            }

            .newsletter-input-wrapper {
                flex-direction: column;
                border-radius: 15px;
                border: none;
            }

            .newsletter-form input[type="email"] {
                padding: 1rem 1.5rem;
                text-align: center;
                border: 2px solid var(--secondary);
                border-radius: 15px 15px 0 0;
            }

            .newsletter-btn {
                padding: 1rem 2rem;
                border-radius: 0 0 15px 15px;
            }

            /* FOOTER */
            footer {
                padding: 3rem 4% 1.5rem;
            }

            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

            .footer-brand .footer-logo {
                height: 50px;
            }

            .footer-brand p {
                font-size: 0.85rem;
            }

            .footer-col h4 {
                font-size: 0.8rem;
                margin-bottom: 1rem;
            }

            .footer-col a {
                font-size: 0.85rem;
            }

            .social-links {
                justify-content: center;
            }

            .social-links a {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
                padding-top: 1.5rem;
            }

            .footer-bottom p {
                font-size: 0.75rem;
            }

            /* SIDE MENU */
            .side-menu {
                width: 100%;
                padding: 2.5rem 2rem;
            }

            .side-menu-link {
                font-size: 1.4rem;
                padding: 0.8rem 0;
            }

            .side-menu-cta {
                margin-top: 2rem;
            }

            .side-menu-cta .btn {
                padding: 1rem 2rem;
                font-size: 0.8rem;
            }

            /* BACK TO TOP */
            .back-to-top {
                width: 40px;
                height: 40px;
                bottom: 15px;
                right: 15px;
                font-size: 1rem;
            }

            /* PRELOADER */
            .preloader-logo {
                width: 80px;
                height: 80px;
            }

            .preloader-text {
                font-size: 0.8rem;
                letter-spacing: 5px;
            }
        }

        /* 4. Petit mobile */
        @media (max-width: 480px) {
            .nav-logo {
                height: 60px;
            }

            .navbar.scrolled .nav-logo {
                height: 60px;
            }

            .hero h1 {
                font-size: clamp(1.5rem, 9vw, 2rem);
            }

            .hero-tagline {
                font-size: 0.7rem;
                letter-spacing: 3px;
            }

            .hero-subtitle {
                font-size: 0.9rem;
            }

            .hero-actions .btn {
                padding: 0.9rem 1.2rem;
                font-size: 0.7rem;
            }

            .categories-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding-bottom: 180px;
            }

            .category-card {
                width: 160px;
                height: 350px;
                border-radius: 80px;
            }

            .category-card-img,
            .category-overlay {
                border-radius: 80px;
            }

            .category-content {
                width: 160px;
            }

            .category-content h3 {
                font-size: 1rem;
            }

            .category-content p {
                font-size: 0.7rem;
            }

            .section-header {
                margin-bottom: 2rem;
            }

            .section-tag {
                font-size: 0.65rem;
                letter-spacing: 3px;
            }

            h2 {
                font-size: clamp(1.3rem, 5.5vw, 1.8rem);
            }

            .perfume-3d {
                width: 180px;
                height: 240px;
            }

            .globe-3d {
                width: 200px;
                height: 200px;
            }

            .why-visit-box {
                padding: 1.2rem;
                border-radius: 15px;
            }

            .visit-card {
                padding: 1.2rem;
                border-radius: 15px;
            }

            .visit-card h3 {
                font-size: 1rem;
            }

            .visit-card p {
                font-size: 0.8rem;
            }

            .worldwide-text .highlight {
                font-size: 1rem;
            }

            .worldwide-text p {
                font-size: 0.85rem;
            }

            .booking-container .subtitle {
                font-size: 0.9rem;
            }

            .newsletter-content p {
                font-size: 0.85rem;
            }

            .side-menu-link {
                font-size: 1.2rem;
            }

            .footer-brand .footer-logo {
                height: 45px;
            }
        }

        /* 5. Tr�s petit �cran (iPhone SE, etc.) */
        @media (max-width: 375px) {
            .hero h1 {
                font-size: 1.4rem;
            }

            .hero-actions .btn {
                padding: 0.8rem 1rem;
                font-size: 0.65rem;
            }

            .why-visit-box {
                padding: 1rem;
            }

            .visit-card {
                padding: 1rem;
            }

            .perfume-3d {
                width: 160px;
                height: 220px;
            }

            .globe-3d {
                width: 180px;
                height: 180px;
            }

            .category-card {
                width: 140px;
                height: 320px;
            }

            h2 {
                font-size: 1.2rem;
            } 
        }

        /* Fix orientation paysage mobile */
        @media (max-height: 500px) and (orientation: landscape) {
            .hero {
                min-height: 100vh;
                padding-top: 60px;
            }

            .hero-content {
                padding-top: 2rem;
            }

            .nav-logo {
                height: 40px;
            }

            .navbar.scrolled .nav-logo {
                height: 35px;
            }
        }

        /* ========================================
           HERO SECTION (VISITOR)
        ======================================== */
        .hero {
            min-height: 75vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero-background {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .hero-bg-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%) scale(1.1);
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                135deg,
                rgba(26, 34, 64, 0.7) 0%,
                rgba(38, 48, 86, 0.6) 50%,
                rgba(26, 34, 64, 0.7) 100%
            );
        }

        .hero-overlay::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 20% 80%, rgba(218, 204, 180, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(218, 204, 180, 0.08) 0%, transparent 50%);
        }

        .hero-lines {
            position: absolute;
            inset: 0;
            overflow: hidden;
            opacity: 0.1;
            z-index: 1;
        }

        .hero-lines span {
            position: absolute;
            display: block;
            width: 1px;
            height: 100%;
            background: linear-gradient(to bottom, transparent, var(--secondary), transparent);
            animation: lineFlow 8s linear infinite;
        }

        .hero-lines span:nth-child(1) { left: 10%; animation-delay: 0s; }
        .hero-lines span:nth-child(2) { left: 30%; animation-delay: 2s; }
        .hero-lines span:nth-child(3) { left: 50%; animation-delay: 1s; }
        .hero-lines span:nth-child(4) { left: 70%; animation-delay: 3s; }
        .hero-lines span:nth-child(5) { left: 90%; animation-delay: 0.5s; }

        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 150px;
            background: linear-gradient(to bottom, transparent, var(--primary-light));
            z-index: 1;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            padding: 0 2rem;
        }

        .hero-tagline {
            color: var(--secondary);
            font-size: 1rem;
            letter-spacing: 6px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeUp 1s var(--transition-smooth) forwards;
            animation-delay: 0.5s;
        }

        .hero h1 {
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeUp 1s var(--transition-smooth) forwards;
            animation-delay: 0.7s;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            font-weight: 300;
            opacity: 0;
            animation: fadeUp 1s var(--transition-smooth) forwards;
            animation-delay: 0.9s;
        }

        .hero-actions {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeUp 1s var(--transition-smooth) forwards;
            animation-delay: 1.1s;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            opacity: 0;
            animation: fadeUp 1s var(--transition-smooth) forwards;
            animation-delay: 1.4s;
        }

        .scroll-indicator span {
            display: block;
            width: 30px;
            height: 50px;
            border: 2px solid var(--secondary);
            border-radius: 20px;
            position: relative;
        }

        .scroll-indicator span::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 6px;
            background: var(--secondary);
            border-radius: 50%;
            animation: scrollDown 2s infinite;
        }

