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

        :root {
            --bg-dark: #0a0a0f;
            --gold: #c9a96e;
            --gold-light: #e8d5b5;
            --white: #f5f5f0;
            --white-muted: rgba(245, 245, 240, 0.7);
            --glass: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-dark);
            color: var(--white);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 500;
        }

        /* NAV */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1.2rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--glass);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
            transition: all 0.3s ease;
        }

        nav.scrolled {
            padding: 0.8rem 5%;
            background: rgba(10, 10, 15, 0.9);
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--gold);
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-toggle {
            display: none;
        }

        .nav-links a {
            color: var(--white-muted);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 400;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* HERO */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 600px;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            overflow: hidden;
        }

        /* Deep atmospheric gradient overlay */
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse at 20% 30%, rgba(201,169,110,0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 70%, rgba(201,169,110,0.05) 0%, transparent 50%),
                linear-gradient(180deg, rgba(10,10,15,0.2) 0%, rgba(10,10,15,0.6) 60%, rgba(10,10,15,0.9) 100%);
            z-index: 1;
        }

        #particles-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 0 5%;
        }

        .hero-subtitle {
            font-size: 0.9rem;
            letter-spacing: 4px;
            color: var(--gold);
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            opacity: 0;
        }

        .hero-title {
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 500;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            opacity: 0;
        }

        .hero-title span {
            color: var(--gold);
            font-style: italic;
        }

        .hero-description {
            font-size: 1.1rem;
            color: var(--white-muted);
            max-width: 600px;
            margin: 0 auto 2.5rem;
            font-weight: 300;
            opacity: 0;
        }

        .hero-cta {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: transparent;
            border: 1px solid var(--gold);
            color: var(--gold);
            text-decoration: none;
            font-size: 0.9rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.4s ease;
            opacity: 0;
        }

        .hero-cta:hover {
            background: var(--gold);
            color: var(--bg-dark);
        }

        /* SECTIONS */
        section {
            padding: 6rem 5%;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-label {
            font-size: 0.8rem;
            letter-spacing: 3px;
            color: var(--gold);
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 500;
        }

        /* DESTINATIONS */
        .destinations {
            background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0d14 100%);
        }

        .destinations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            perspective: 1000px;
        }

        .destination-card {
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            transform-style: preserve-3d;
            cursor: pointer;
        }

        .destination-card:hover {
            box-shadow: 0 25px 50px rgba(201, 169, 110, 0.15);
        }

        .destination-image {
            height: 240px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .destination-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(transparent, rgba(10, 10, 15, 0.9));
        }

        .destination-content {
            padding: 1.5rem;
            position: relative;
            z-index: 2;
            margin-top: -40px;
        }

        .destination-location {
            font-size: 0.75rem;
            letter-spacing: 2px;
            color: var(--gold);
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }

        .destination-name {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
        }

        .destination-desc {
            font-size: 0.9rem;
            color: var(--white-muted);
            line-height: 1.6;
        }

        .destination-price {
            margin-top: 1.5rem;
            padding-top: 1rem;
            border-top: 1px solid var(--glass-border);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .price-label {
            font-size: 0.8rem;
            color: var(--white-muted);
        }

        .price-value {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: var(--gold);
        }

        /* POURQUOI NOUS */
        .why-us {
            background: #0d0d14;
        }

        .features-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5%;
        }

        .feature-item {
            flex: 1 1 250px;
            max-width: 300px;
            text-align: center;
            padding: 2rem;
        }

        .feature-item {
            text-align: center;
            padding: 2rem;
        }

        .feature-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 1.5rem;
            color: var(--gold);
        }

        .feature-icon svg {
            width: 100%;
            height: 100%;
        }

        .feature-title {
            font-size: 1.2rem;
            margin-bottom: 0.75rem;
        }

        .feature-desc {
            font-size: 0.9rem;
            color: var(--white-muted);
            line-height: 1.6;
        }

        /* TÉMOIGNAGES */
        .testimonials {
            background: var(--bg-dark);
            padding: 6rem 5%;
        }

        .testimonials-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .testimonials-track {
            display: flex;
            transition: transform 0.6s ease;
        }

        .testimonial-slide {
            min-width: 100%;
            padding: 2rem;
            text-align: center;
        }

        .testimonial-quote {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.2rem, 3vw, 1.6rem);
            font-style: italic;
            line-height: 1.8;
            margin-bottom: 2rem;
            color: var(--white);
        }

        .testimonial-author {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--glass);
            border: 2px solid var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--gold);
        }

        .author-name {
            font-weight: 500;
            color: var(--white);
        }

        .author-title {
            font-size: 0.85rem;
            color: var(--white-muted);
        }

        .testimonials-dots {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
            margin-top: 2rem;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--glass-border);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: var(--gold);
        }

        /* CONTACT */
        .contact {
            background: linear-gradient(180deg, #0d0d14 0%, var(--bg-dark) 100%);
            padding-bottom: 0;
        }

        .contact-container {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .form-group {
            position: relative;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem 1.25rem;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 8px;
            color: var(--white);
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold);
            background: rgba(201, 169, 110, 0.05);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--white-muted);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            padding: 1rem 3rem;
            background: var(--gold);
            border: none;
            border-radius: 8px;
            color: var(--bg-dark);
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
        }

        /* FOOTER */
        footer {
            margin-top: 6rem;
            padding: 3rem 5%;
            border-top: 1px solid var(--glass-border);
            text-align: center;
        }

        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .footer-text {
            font-size: 0.85rem;
            color: var(--white-muted);
            margin-bottom: 1.5rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }

        .footer-links a {
            color: var(--white-muted);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--gold);
        }

        .footer-copy {
            font-size: 0.8rem;
            color: rgba(245, 245, 240, 0.4);
        }

        /* Responsive */
        @media (max-width: 768px) {
            section {
                padding: 4rem 5%;
            }
            
            .nav-toggle {
                display: flex;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 320px;
                height: 100vh;
                background: rgba(10, 10, 15, 0.98);
                backdrop-filter: blur(20px);
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                gap: 0;
                padding: 80px 30px;
                transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                z-index: 1001;
                border-left: 1px solid rgba(201, 169, 110, 0.2);
                overflow-y: auto;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links li {
                width: 100%;
                border-bottom: 1px solid rgba(201, 169, 110, 0.1);
            }

            .nav-links a {
                display: block;
                padding: 16px 0 !important;
                font-size: 16px !important;
                width: 100%;
            }

            .nav-toggle span {
                display: block;
                width: 26px;
                height: 2px;
                background: var(--gold);
                transition: all 0.3s ease;
                border-radius: 2px;
            }

            .nav-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .nav-toggle.active span:nth-child(2) {
                opacity: 0;
                transform: scaleX(0);
            }

            .nav-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }

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

            .features-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
/* ---- RGPD TARTEAUCITRON ---- */
#tarteaucitronAlertBig { background: linear-gradient(135deg,#12121a 0%,#1a1a2e 100%) !important; border-top: 3px solid #0066FF !important; padding: 18px 20px !important; }

