        :root {
            --orange: #e38f2f;
            --orange-dark: #c77920;
            --orange-hover: #f5a03f;
            --turquoise: #2a5d5d;
            --turquoise-light: #3a7d7d;
            --bordeaux: #6b3434;
            --black: #0a0a0a;
            --gray: #1a1a1a;
            --gray-light: #242424;
            --white: #ffffff;
            --gold: #d4af37;
            --banner-bg-start: #0a3f35;
            --banner-bg-end: #0f5348;
        }

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

        html {
            overflow-x: clip;
            width: 100%;
        }

        /* LUMINOUS GRID BACKGROUND */
        .grid-bg-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            opacity: 0.6;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--black);
            color: #fff;
            overflow-x: clip;
            max-width: 100vw;
            width: 100%;
        }

        #root {
            overflow-x: clip;
            width: 100%;
        }

        /* LOADER */
        .loader {
            position: fixed;
            inset: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(17, 85, 74, 0.25) 0%, transparent 55%),
                        radial-gradient(ellipse at 70% 50%, rgba(166, 64, 31, 0.2) 0%, transparent 55%),
                        linear-gradient(160deg, #050a09 0%, #0a0a0a 40%, #0d0805 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
            overflow: hidden;
        }

        .loader-logo-wrap {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .loader-logo-wrap video {
            max-width: 320px;
            width: 60vw;
            height: auto;
            object-fit: contain;
        }
        #loader-3d-canvas {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        /* LOADER TEXT ANIMATION */
        .loader-text-wrap {
            position: absolute;
            bottom: 18%;
            left: 0;
            right: 0;
            z-index: 10;
            text-align: center;
            pointer-events: none;
        }
        .loader-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #fff;
            display: inline-block;
        }
        .loader-text .lt-char {
            display: inline-block;
            opacity: 0;
            transform: translateY(12px);
            animation: loaderCharIn 0.3s ease forwards;
        }
        .loader-text .lt-y {
            color: #e38f2f;
            font-style: italic;
            animation: loaderCharIn 0.3s ease forwards, loaderPulse 1.5s ease-in-out 0.8s infinite;
        }
        .loader-text .lt-space {
            width: 0.35em;
        }
        .loader-sub {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.55rem;
            letter-spacing: 0.35em;
            text-transform: uppercase;
            color: rgba(227, 143, 47, 0.6);
            margin-top: 0.6rem;
            opacity: 0;
            animation: loaderFadeIn 0.5s ease 0.8s forwards;
        }
        @keyframes loaderCharIn {
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes loaderPulse {
            0%, 100% { color: #e38f2f; text-shadow: 0 0 0px transparent; }
            50% { color: #f5b04a; text-shadow: 0 0 18px rgba(227, 143, 47, 0.5); }
        }
        @keyframes loaderFadeIn {
            to { opacity: 1; }
        }

        /* HEADER */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(227, 143, 47, 0.1);
            transition: all 0.3s ease;
        }

        .header.scrolled {
            background: rgba(10, 10, 10, 0.98);
            border-bottom-color: rgba(227, 143, 47, 0.2);
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-rf {
            display: flex;
            align-items: center;
            line-height: 1;
        }

        .logo-rf img {
            height: 50px;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            display: flex;
            align-items: center;
            gap: 0.3em;
        }

        .logo-title .logo-y {
            color: var(--orange);
            font-style: italic;
            font-size: 0.85em;
        }

        .logo-sub {
            font-size: 0.55rem;
            color: var(--orange);
            letter-spacing: 0.3em;
            text-transform: uppercase;
        }

        .nav {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .nav-link {
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            white-space: nowrap;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--orange);
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: var(--orange);
        }

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

        .lang-switcher {
            display: flex;
            gap: 0.5rem;
            font-size: 0.65rem;
            letter-spacing: 0.1em;
            border-left: 1px solid rgba(255, 255, 255, 0.1);
            padding-left: 2rem;
        }

        .lang-btn {
            color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0.3rem 0.5rem;
        }

        .lang-btn.active {
            color: var(--orange);
            font-weight: 700;
        }

        .lang-btn:hover {
            color: #fff;
            transform: translateY(-2px);
        }

        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            color: #fff;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .mobile-menu-btn:hover {
            color: var(--orange);
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 400px;
            height: 100vh;
            height: 100dvh;
            background: var(--black);
            z-index: 9999;
            transition: right 0.3s ease;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow: -5px 0 20px rgba(0,0,0,0.5);
        }

        .mobile-menu.open {
            right: 0;
        }

        .mobile-menu-header {
            padding: 1.2rem 2rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-shrink: 0;
        }

        .mobile-menu-close {
            font-size: 2rem;
            color: #fff;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .mobile-menu-close:hover {
            color: var(--orange);
        }

        .mobile-menu-content {
            padding: 1.2rem 2rem 2rem;
            overflow-y: auto;
            flex: 1;
            -webkit-overflow-scrolling: touch;
        }

        .mobile-nav-link {
            display: block;
            padding: 0.7rem 0;
            color: #fff;
            font-size: 1.1rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            cursor: pointer;
            transition: color 0.3s ease;
            -webkit-user-select: none;
            user-select: none;
            -webkit-tap-highlight-color: transparent;
            -webkit-touch-callout: none;
        }

        .mobile-nav-link:hover {
            color: var(--orange);
        }

        .mobile-lang-switcher {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .mobile-menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.8);
            z-index: 9998;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .mobile-menu-overlay.open {
            opacity: 1;
            pointer-events: auto;
        }

        /* HERO */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: rgba(10, 10, 10, 0.85);
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            opacity: 0.35;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            animation: slowZoom 20s ease-in-out infinite alternate;
        }

        @keyframes slowZoom {
            from { transform: scale(1); }
            to { transform: scale(1.1); }
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 30% 40%, rgba(227, 143, 47, 0.2), transparent 60%),
                        radial-gradient(circle at 70% 60%, rgba(42, 93, 93, 0.2), transparent 60%);
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            padding: 8rem 2rem 6rem;
            max-width: 1200px;
            animation: fadeInUp 1s ease-out;
        }

        /* Logo Hero Flottant */
        .hero-floating-logo {
            margin-bottom: 2rem;
            animation: heroLogoFloat var(--float-duration, 3s) ease-in-out infinite;
        }

        .hero-floating-logo img {
            max-width: 250px;
            height: auto;
            filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
        }

        @keyframes heroLogoFloat {
            0%, 100% {
                transform: translateY(0) translateX(0);
            }
            25% {
                transform: translateY(-15px) translateX(var(--offset-x, 20px));
            }
            50% {
                transform: translateY(0) translateX(0);
            }
            75% {
                transform: translateY(var(--offset-y, 10px)) translateX(calc(var(--offset-x, 20px) * -1));
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-logo-big {
            display: flex;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .hero-logo-big img {
            height: clamp(80px, 18vw, 160px);
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 8px 25px rgba(0,0,0,0.5));
            animation: heroLogoFloat 3s ease-in-out infinite;
        }

        .hero-subtitle {
            font-size: 0.7rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 2rem;
            font-weight: 400;
        }

        /* Particles canvas */
        .hero-particles {
            position: absolute;
            inset: 0;
            z-index: 5;
            pointer-events: none;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 10vw, 8rem);
            font-weight: 700;
            line-height: 0.95;
            margin-bottom: 2rem;
            letter-spacing: -0.02em;
            text-align: center;
        }

        /* Text reveal animation */
        .hero-title .reveal-letter {
            display: inline-block;
            opacity: 0;
            transform: translateY(60px) rotateX(-90deg);
            animation: letterReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        @keyframes letterReveal {
            0% {
                opacity: 0;
                transform: translateY(60px) rotateX(-90deg);
                filter: blur(8px);
            }
            50% {
                filter: blur(2px);
            }
            100% {
                opacity: 1;
                transform: translateY(0) rotateX(0deg);
                filter: blur(0);
            }
        }

        /* Golden shimmer on revealed letters */
        .hero-title .reveal-letter.revealed {
            background: linear-gradient(135deg, #fff 0%, #fff 40%, var(--orange) 50%, #fff 60%, #fff 100%);
            background-size: 200% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: letterReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards,
                       shimmer 2s ease 1.5s forwards;
        }

        @keyframes shimmer {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        /* After shimmer, go back to solid white */
        .hero-title .reveal-letter.shimmer-done {
            background: none;
            -webkit-text-fill-color: #fff;
        }

        .hero-title .hero-y {
            display: block;
            font-size: 0.55em;
            color: var(--orange);
            font-style: italic;
            font-weight: 400;
            letter-spacing: 0.2em;
            margin: 0.2em 0;
        }

        .hero-title .hero-y .reveal-letter.revealed,
        .hero-title .hero-y .reveal-letter.shimmer-done {
            background: none;
            -webkit-text-fill-color: var(--orange);
        }

        .hero-description {
            max-width: 700px;
            margin: 0 auto 3rem;
            font-size: 1rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 300;
        }

        .hero-cta {
            display: inline-block;
            border: 2px solid var(--orange);
            color: var(--orange);
            padding: 1rem 3rem;
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            animation: ctaPulse 3s ease-in-out infinite;
        }

        @keyframes ctaPulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(227, 143, 47, 0.4); }
            50% { box-shadow: 0 0 20px 6px rgba(227, 143, 47, 0.15); }
        }

        .hero-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--orange);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .hero-cta:hover::before {
            left: 0;
        }

        .hero-cta:hover {
            color: #000;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(227, 143, 47, 0.3);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255, 255, 255, 0.3);
            font-size: 2rem;
            animation: bounce 2s infinite;
            cursor: pointer;
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }

        /* SCROLL REVEAL ANIMATIONS */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal.reveal-left {
            transform: translateX(-40px);
        }
        .reveal.reveal-left.revealed {
            transform: translateX(0);
        }
        .reveal.reveal-right {
            transform: translateX(40px);
        }
        .reveal.reveal-right.revealed {
            transform: translateX(0);
        }
        .reveal.reveal-scale {
            transform: scale(0.9);
        }
        .reveal.reveal-scale.revealed {
            transform: scale(1);
        }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }

        /* BACK TO TOP BUTTON */
        .back-to-top {
            position: fixed;
            bottom: 6rem;
            right: 2rem;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(227, 143, 47, 0.15);
            border: 1px solid rgba(227, 143, 47, 0.4);
            color: var(--orange);
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 999;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .back-to-top:hover {
            background: rgba(227, 143, 47, 0.3);
            border-color: var(--orange);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(227, 143, 47, 0.2);
        }
        @media (max-width: 768px) {
            .back-to-top {
                width: 42px;
                height: 42px;
                bottom: 8rem;
                right: 1.5rem;
                font-size: 1.2rem;
            }
        }

        /* STATS */
        .stats-section {
            background: rgba(26, 26, 26, 0.88);
            padding: 1.5rem 2rem;
            border-top: 1px solid rgba(227, 143, 47, 0.2);
            border-bottom: 1px solid rgba(227, 143, 47, 0.2);
        }

        .stats-grid {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2.5rem;
            text-align: center;
        }

        .stat-item {
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .stat-item::after {
            content: '';
            position: absolute;
            right: -1.25rem;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 60%;
            background: rgba(255, 255, 255, 0.1);
        }

        .stat-item:last-child::after {
            display: none;
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--orange);
            font-family: 'Playfair Display', serif;
        }

        .stat-label {
            font-size: 0.65rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.5);
        }

        /* BANNER */
        .banner {
            background: linear-gradient(135deg, var(--banner-bg-start), var(--banner-bg-end));
            padding: 4rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .banner::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: rgba(227, 143, 47, 0.1);
            border-radius: 50%;
            animation: float 10s ease-in-out infinite;
        }

        .banner-subtitle {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            color: var(--orange);
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .banner-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            margin-bottom: 0.5rem;
        }

        .banner-price {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .banner-link {
            color: var(--orange);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border-bottom: 2px solid var(--orange);
            padding-bottom: 2px;
        }

        .banner-link:hover {
            color: #fff;
            border-bottom-color: #fff;
        }

        .banner-scroll-indicator {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1.5rem;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }

        .banner-scroll-indicator:hover {
            opacity: 0.8;
        }

        .banner-scroll-text {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--orange);
            text-transform: uppercase;
            letter-spacing: 0.15em;
        }

        .banner-scroll-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border: 2px solid var(--orange);
            border-radius: 50%;
            color: var(--orange);
            font-size: 0.9rem;
            animation: bounceDown 2s ease-in-out infinite;
        }

        @keyframes bounceDown {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(8px); }
        }

        @media (max-width: 768px) {
            .banner {
                padding: 3rem 1.5rem;
            }

            .banner-title {
                font-size: 2.2rem;
            }

            .banner-scroll-text {
                font-size: 0.75rem;
            }

            .banner-scroll-arrow {
                width: 36px;
                height: 36px;
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .banner {
                padding: 2.5rem 1rem;
            }

            .banner-title {
                font-size: 1.8rem;
            }

            .banner-price {
                font-size: 1.2rem;
            }

            .banner-scroll-indicator {
                margin-top: 1rem;
                gap: 0.3rem;
            }

            .banner-scroll-text {
                font-size: 0.7rem;
            }

            .banner-scroll-arrow {
                width: 32px;
                height: 32px;
                font-size: 0.75rem;
            }
        }

        /* GRID PHOTOS */
        .photo-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            background: #000;
        }

        .photo-card {
            position: relative;
            aspect-ratio: 4/3;
            overflow: hidden;
            cursor: pointer;
        }

        .photo-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease, filter 0.3s ease;
            filter: grayscale(30%);
        }

        .photo-card:hover img {
            transform: scale(1.15);
            filter: grayscale(0%);
        }

        .photo-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent 60%);
            display: flex;
            align-items: flex-end;
            padding: 2rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .photo-card:hover .photo-overlay {
            opacity: 1;
        }

        .photo-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: #fff;
            transform: translateY(20px);
            transition: transform 0.3s ease 0.1s;
        }

        .photo-card:hover .photo-title {
            transform: translateY(0);
        }

        /* DOME GALLERY */
        .dome-gallery-wrapper {
            width: 100%;
            height: 80vh;
            min-height: 500px;
            max-height: 800px;
            background: rgba(10, 10, 10, 0.85);
            position: relative;
            overflow: hidden;
        }
        @media (max-width: 768px) {
            .dome-gallery-wrapper {
                height: 60vh;
                min-height: 400px;
                max-height: 600px;
            }
        }
        @media (max-width: 480px) {
            .dome-gallery-wrapper {
                height: 50vh;
                min-height: 350px;
                max-height: 500px;
            }
        }

        .sphere-root {
            position: relative;
            width: 100%;
            height: 100%;
            --radius: 520px;
            --viewer-pad: 72px;
            --circ: calc(var(--radius) * 3.14);
            --rot-y: calc((360deg / var(--segments-x)) / 2);
            --rot-x: calc((360deg / var(--segments-y)) / 2);
            --item-width: calc(var(--circ) / var(--segments-x));
            --item-height: calc(var(--circ) / var(--segments-y));
        }
        .sphere-root * {
            box-sizing: border-box;
        }
        .sphere,
        .item,
        .item__image {
            -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
        }
        main.sphere-main {
            position: absolute;
            inset: 0;
            display: grid;
            place-items: center;
            overflow: hidden;
            touch-action: none;
            user-select: none;
            -webkit-user-select: none;
            background: transparent;
        }
        .stage {
            width: 100%;
            height: 100%;
            display: grid;
            place-items: center;
            -webkit-perspective: calc(var(--radius) * 2);
            perspective: calc(var(--radius) * 2);
            -webkit-perspective-origin: 50% 50%;
            perspective-origin: 50% 50%;
            contain: layout paint size;
        }
        .sphere {
            transform: translateZ(calc(var(--radius) * -1));
            will-change: transform;
        }
        .sphere-root .overlay,
        .sphere-root .overlay--blur {
            position: absolute;
            inset: 0;
            margin: auto;
            z-index: 3;
            pointer-events: none;
        }
        .sphere-root .overlay {
            background-image: radial-gradient(rgba(235, 235, 235, 0) 65%, var(--overlay-blur-color, #0a0a0a) 100%);
        }
        .sphere-root .overlay--blur {
            -webkit-mask-image: radial-gradient(rgba(235, 235, 235, 0) 70%, var(--overlay-blur-color, #0a0a0a) 90%);
            mask-image: radial-gradient(rgba(235, 235, 235, 0) 70%, var(--overlay-blur-color, #0a0a0a) 90%);
            backdrop-filter: blur(3px);
        }
        .item {
            width: calc(var(--item-width) * var(--item-size-x));
            height: calc(var(--item-height) * var(--item-size-y));
            position: absolute;
            top: -999px;
            bottom: -999px;
            left: -999px;
            right: -999px;
            margin: auto;
            transform-origin: 50% 50%;
            backface-visibility: hidden;
            will-change: transform;
            contain: layout style paint;
            transform: rotateY(calc(var(--rot-y) * (var(--offset-x) + ((var(--item-size-x) - 1) / 2)) + var(--rot-y-delta, 0deg)))
                rotateX(calc(var(--rot-x) * (var(--offset-y) - ((var(--item-size-y) - 1) / 2)) + var(--rot-x-delta, 0deg)))
                translateZ(var(--radius));
        }
        .item__image {
            position: absolute;
            display: block;
            inset: 10px;
            border-radius: var(--tile-radius, 12px);
            background: transparent;
            overflow: hidden;
            backface-visibility: hidden;
            cursor: pointer;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
            pointer-events: auto;
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }
        .item__image:focus {
            outline: none;
        }
        .item__image img,
        .item__image video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            pointer-events: none;
            backface-visibility: hidden;
            filter: var(--image-filter, none);
        }

        .viewer {
            position: absolute;
            inset: 0;
            z-index: 20;
            pointer-events: none;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: var(--viewer-pad);
        }
        .viewer .frame {
            height: 100%;
            aspect-ratio: 1;
            border-radius: var(--enlarge-radius, 32px);
            display: flex;
        }
        @media (max-aspect-ratio: 1/1) {
            .viewer .frame {
                height: auto;
                width: 100%;
            }
        }
        .viewer .scrim {
            position: absolute;
            inset: 0;
            z-index: 10;
            background: rgba(0, 0, 0, 0.4);
            pointer-events: none;
            opacity: 0;
            transition: opacity 500ms ease;
            backdrop-filter: blur(3px);
        }
        .sphere-root[data-enlarging='true'] .viewer .scrim {
            opacity: 1;
            pointer-events: all;
        }
        .viewer .enlarge {
            position: absolute;
            z-index: 30;
            border-radius: var(--enlarge-radius, 32px);
            overflow: hidden;
            transition: transform 500ms ease, opacity 500ms ease;
            transform-origin: top left;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
        }
        .viewer .enlarge img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: var(--image-filter, none);
        }
        /* VIDEO FULLSCREEN MODAL */
        .video-fullscreen-modal {
            position: fixed;
            inset: 0;
            z-index: 10000;
            background: rgba(0, 0, 0, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }
        .video-fullscreen-modal video {
            max-width: 100%;
            max-height: 100%;
            border-radius: 12px;
            outline: none;
        }
        .video-modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: none;
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            font-size: 1.3rem;
            cursor: pointer;
            z-index: 10001;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(4px);
            transition: background 0.2s ease;
        }
        .video-modal-close:hover {
            background: rgba(227, 143, 47, 0.8);
        }

        .sphere-root .enlarge-closing img {
            filter: var(--image-filter, none);
        }
        .edge-fade {
            position: absolute;
            left: 0;
            right: 0;
            height: 120px;
            z-index: 5;
            pointer-events: none;
            background: linear-gradient(to bottom, transparent, var(--overlay-blur-color, #0a0a0a));
        }
        .edge-fade--top {
            top: 0;
            transform: rotate(180deg);
        }
        .edge-fade--bottom {
            bottom: 0;
        }
        body.dg-scroll-lock {
            overflow: hidden !important;
        }

        /* SECTION */
        .section {
            padding: 6rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            overflow-x: hidden;
        }

        .section-parallax {
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
        }

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

        .section-label {
            font-size: 0.7rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 1rem;
            border: 1px solid rgba(227, 143, 47, 0.4);
            display: inline-block;
            padding: 0.5rem 1.5rem;
            transition: all 0.3s ease;
        }

        .section-label:hover {
            background: rgba(227, 143, 47, 0.1);
            border-color: var(--orange);
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .section-divider {
            width: 100px;
            height: 2px;
            background: linear-gradient(to right, transparent, var(--orange), transparent);
            margin: 1.5rem auto;
        }

        /* MENUS */
        .menus-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .menu-card {
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.4s ease;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.02);
        }

        .menu-card:hover {
            border-color: rgba(227, 143, 47, 0.4);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .menu-header {
            background: linear-gradient(135deg, rgba(227, 143, 47, 0.15), rgba(42, 93, 93, 0.08));
            padding: 3rem 2rem;
            text-align: center;
            border-bottom: 1px solid rgba(227, 143, 47, 0.2);
            cursor: pointer;
            position: relative;
            transition: background 0.3s ease;
        }

        .menu-header:hover {
            background: linear-gradient(135deg, rgba(227, 143, 47, 0.2), rgba(42, 93, 93, 0.12));
        }

        .menu-name {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 1rem;
            padding-right: 5rem;
        }

        .menu-price {
            font-size: 2.8rem;
            font-weight: 700;
        }

        .menu-arrow {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.2rem;
            color: #fff;
            transition: all 0.3s ease;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--orange), var(--orange-dark));
            border: 2px solid rgba(255, 255, 255, 0.2);
            animation: arrowPulse 2.5s ease-in-out infinite;
            box-shadow: 
                0 4px 16px rgba(227, 143, 47, 0.4),
                0 0 0 0 rgba(227, 143, 47, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        @keyframes arrowPulse {
            0%, 100% {
                box-shadow: 
                    0 4px 16px rgba(227, 143, 47, 0.4),
                    0 0 0 0 rgba(227, 143, 47, 0.5),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
                transform: translateY(-50%) scale(1);
            }
            50% {
                box-shadow: 
                    0 6px 20px rgba(227, 143, 47, 0.5),
                    0 0 25px 8px rgba(227, 143, 47, 0.4),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
                transform: translateY(-50%) scale(1.08);
            }
        }

        .menu-arrow:hover {
            background: linear-gradient(135deg, #f5a03f, var(--orange));
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow: 
                0 8px 24px rgba(227, 143, 47, 0.6),
                0 0 35px 12px rgba(227, 143, 47, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
            transform: translateY(-50%) scale(1.15);
            animation: none;
        }

        .menu-card.collapsed .menu-arrow {
            transform: translateY(-50%) rotate(-90deg);
        }
        
        .menu-card.collapsed .menu-arrow:hover {
            transform: translateY(-50%) rotate(-90deg) scale(1.15);
        }

        .menu-content {
            max-height: 0;
            overflow: hidden;
            padding: 0 2rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .menu-card.expanded .menu-content {
            max-height: 5000px;
            padding: 3rem 2rem;
        }

        .menu-items {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .menu-category-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: var(--orange);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 0.8rem 1.2rem;
            background: rgba(227, 143, 47, 0.1);
            border-left: 3px solid var(--orange);
            margin: 1rem 0;
        }

        .menu-dish {
            display: flex;
            gap: 1.5rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .menu-dish:hover {
            background: rgba(227, 143, 47, 0.08);
            border-color: rgba(227, 143, 47, 0.3);
            transform: translateY(-4px);
        }

        .menu-dish-image {
            width: 140px;
            height: 140px;
            min-width: 140px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-color: rgba(227, 143, 47, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            border: 2px solid rgba(227, 143, 47, 0.2);
            transition: transform 0.3s ease;
            border-radius: 8px;
        }

        .menu-dish:hover .menu-dish-image {
            transform: scale(1.05) rotate(2deg);
        }

        .menu-dish-info {
            flex: 1;
        }

        .menu-dish-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--orange);
        }

        .menu-dish-description {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
        }

        /* ALLERGENS */
        .allergens-container {
            display: flex;
            gap: 0.6rem;
            margin-top: 0.8rem;
            flex-wrap: wrap;
        }

        .allergen-icon {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.2rem;
            cursor: default;
            transition: transform 0.2s ease;
            padding: 0.35rem 0.5rem 0.25rem;
            border-radius: 8px;
            background: rgba(227, 143, 47, 0.08);
            border: 1px solid rgba(227, 143, 47, 0.15);
        }

        .allergen-icon:hover {
            transform: scale(1.05);
            background: rgba(227, 143, 47, 0.15);
        }

        .allergen-emoji {
            font-size: 1.15rem;
            line-height: 1;
        }

        .allergen-svg {
            width: 1.4rem;
            height: 1.4rem;
            color: rgba(227, 143, 47, 0.85);
        }

        .allergen-icon:hover .allergen-svg {
            color: rgba(227, 143, 47, 1);
        }

        .allergen-label {
            font-size: 0.6rem;
            color: rgba(255, 255, 255, 0.55);
            text-transform: uppercase;
            letter-spacing: 0.03em;
            line-height: 1;
            white-space: nowrap;
        }

        /* PHOTO ZOOM */
        .menu-dish-image {
            position: relative;
            cursor: pointer;
        }

        .menu-dish-image::before {
            content: '🔍';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 1.5rem;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 2;
        }

        .menu-dish-image:hover::before {
            opacity: 1;
        }

        .menu-choice-image {
            position: relative;
            cursor: pointer;
        }

        .menu-choice-image::before {
            content: '🔍';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 1.5rem;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 2;
        }

        .menu-choice-item:hover .menu-choice-image::before {
            opacity: 1;
        }

        /* PHOTO MODAL */
        .photo-modal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.95);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            animation: fadeIn 0.3s ease;
        }

        .photo-modal.active {
            display: flex;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .photo-modal-content {
            position: relative;
            max-width: 90vw;
            max-height: 90vh;
            animation: zoomIn 0.3s ease;
        }

        @keyframes zoomIn {
            from { transform: scale(0.8); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        .photo-modal-image {
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
            border: 3px solid var(--orange);
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
        }

        .photo-modal-close {
            position: absolute;
            top: -50px;
            right: 0;
            background: var(--orange);
            color: #000;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-weight: 700;
        }

        .photo-modal-close:hover {
            background: var(--orange-dark);
            transform: rotate(90deg) scale(1.1);
        }

        .menu-choice-section {
            padding: 1.5rem;
            background: rgba(42, 93, 93, 0.08);
            border: 1px solid rgba(42, 93, 93, 0.25);
            border-radius: 8px;
        }

        .menu-choice-label {
            display: inline-block;
            background: linear-gradient(135deg, var(--orange), var(--orange-dark));
            color: #000;
            padding: 0.6rem 1.8rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 15px rgba(227, 143, 47, 0.3);
            animation: choicePulse 2.5s ease-in-out infinite;
        }

        @keyframes choicePulse {
            0%, 100% { box-shadow: 0 4px 15px rgba(227, 143, 47, 0.3); }
            50% { box-shadow: 0 4px 25px rgba(227, 143, 47, 0.6), 0 0 40px rgba(227, 143, 47, 0.15); }
        }

        .menu-choice-share-sep {
            margin: 0 0.2rem;
            opacity: 0.6;
        }

        .menu-choice-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            align-items: stretch;
            justify-content: center;
        }

        .menu-choice-separator {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 0.5rem;
        }

        .menu-choice-ou {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--orange), var(--orange-dark));
            color: #000;
            font-weight: 800;
            font-size: 0.85rem;
            letter-spacing: 0.05em;
            box-shadow: 0 4px 15px rgba(227, 143, 47, 0.4);
        }

        .menu-choice-item {
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 1.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
            border-radius: 8px;
            flex: 1 1 200px;
            max-width: 350px;
        }

        .menu-choice-item:hover {
            background: rgba(227, 143, 47, 0.08);
            border-color: rgba(227, 143, 47, 0.4);
            transform: translateY(-8px);
            box-shadow: 0 10px 30px rgba(227, 143, 47, 0.2);
        }

        .menu-choice-image {
            width: 100%;
            height: 180px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-color: rgba(227, 143, 47, 0.1);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            border-radius: 8px;
            border: 2px solid rgba(227, 143, 47, 0.15);
            transition: transform 0.3s ease;
        }

        .menu-choice-item:hover .menu-choice-image {
            transform: scale(1.05);
        }

        .menu-choice-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--orange);
        }

        .menu-choice-description {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.5;
        }

        /* ITEMS GRID (dishes/cocktails) - Horizontal card style */
        .items-grid {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .item-card {
            display: flex;
            align-items: stretch;
            gap: 0;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 12px;
            overflow: hidden;
            transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
        }

        .item-card:hover {
            border-color: rgba(227, 143, 47, 0.3);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(227, 143, 47, 0.08);
            background: rgba(255, 255, 255, 0.05);
        }

        .item-image {
            width: 120px;
            min-width: 120px;
            background-size: 110%;
            background-position: center;
            background-repeat: no-repeat;
            background-color: rgba(227, 143, 47, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: background-size 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .item-card:hover .item-image {
            background-size: 125%;
        }

        .item-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, transparent 60%, rgba(0,0,0,0.3));
        }

        .zoom-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 1.2rem;
            background: rgba(227, 143, 47, 0.9);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 2;
            pointer-events: none;
        }

        .item-image:hover .zoom-icon {
            opacity: 1;
        }

        .item-content {
            flex: 1;
            padding: 1rem 1.2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-width: 0;
        }

        .item-info {
            flex: 1;
        }

        .item-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--orange);
            margin-bottom: 0.3rem;
            line-height: 1.3;
        }

        .item-description {
            color: rgba(255, 255, 255, 0.55);
            font-size: 0.82rem;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 0.5rem;
        }

        .item-price {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--orange);
            white-space: nowrap;
            background: none;
            padding: 0;
            border-radius: 0;
            box-shadow: none;
        }

        .item-dots {
            display: none;
        }

        .item-content .allergens-container {
            margin-top: 0.4rem;
            gap: 0.4rem;
        }

        .item-content .allergen-icon {
            padding: 0.2rem 0.35rem 0.15rem;
            border-radius: 6px;
        }

        .item-content .allergen-emoji {
            font-size: 0.95rem;
        }

        .item-content .allergen-svg {
            width: 1.1rem;
            height: 1.1rem;
        }

        .item-content .allergen-label {
            font-size: 0.5rem;
        }

        /* Category blocks and titles inside items section */
        .items-category-block {
            margin-bottom: 2.5rem;
        }

        .items-category-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            color: var(--orange);
            text-align: center;
            margin-bottom: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        @media (max-width: 768px) {
            .items-grid {
                gap: 0.8rem;
            }

            .item-card {
                border-radius: 10px;
            }

            .item-image {
                width: 110px;
                min-width: 110px;
            }

            .item-content {
                padding: 0.8rem 1rem;
            }

            .item-name {
                font-size: 0.95rem;
            }

            .item-description {
                font-size: 0.78rem;
                -webkit-line-clamp: 2;
                margin-bottom: 0.4rem;
            }

            .item-price {
                font-size: 1rem;
            }

            .items-category-title {
                font-size: 1.2rem;
                margin-bottom: 0.8rem;
            }

            .items-category-block {
                margin-bottom: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .items-grid {
                gap: 0.6rem;
            }

            .item-card {
                border-radius: 8px;
            }

            .item-image {
                width: 95px;
                min-width: 95px;
            }

            .item-content {
                padding: 0.6rem 0.7rem;
            }

            .item-name {
                font-size: 0.88rem;
                margin-bottom: 0.2rem;
            }

            .item-description {
                font-size: 0.73rem;
                -webkit-line-clamp: 2;
                margin-bottom: 0.3rem;
                line-height: 1.4;
            }

            .item-price {
                font-size: 0.95rem;
            }

            .items-category-title {
                font-size: 1.05rem;
                margin-bottom: 0.6rem;
            }

            .items-category-block {
                margin-bottom: 1.2rem;
            }
        }

        /* ABOUT SECTION */
        .about-section {
            background: rgba(26, 26, 26, 0.88);
            padding: 6rem 2rem;
        }

        .about-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.9;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 2rem;
        }

        /* REVIEWS CARD SWAP */
        .reviews-swap-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem 0 1rem;
        }

        .reviews-swap-container {
            position: relative;
            width: 420px;
            height: 320px;
            overflow: visible;
        }

        .review-swap-card {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            box-sizing: border-box;
            border-radius: 20px;
            background: linear-gradient(160deg, rgba(35, 30, 22, 0.98) 0%, rgba(18, 14, 10, 0.99) 100%);
            padding: 2.2rem 2.5rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            -webkit-transform-origin: 50% 60%;
            transform-origin: 50% 60%;
            will-change: transform, opacity;
            cursor: pointer;
            user-select: none;
            -webkit-user-select: none;
            border: 1px solid rgba(227, 143, 47, 0.12);
            -webkit-transition: box-shadow 0.3s ease;
            transition: box-shadow 0.3s ease;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
        }

        /* Fallback stacking if GSAP hasn't initialized yet */
        .review-swap-card:nth-child(1) { z-index: 6; }
        .review-swap-card:nth-child(2) { z-index: 5; transform: rotate(5deg) translateX(18px) translateY(6px); opacity: 0.7; }
        .review-swap-card:nth-child(3) { z-index: 4; transform: rotate(-5deg) translateX(-18px) translateY(6px); opacity: 0.55; }
        .review-swap-card:nth-child(4) { z-index: 3; transform: rotate(9deg) translateX(36px) translateY(12px); opacity: 0.4; }
        .review-swap-card:nth-child(5) { z-index: 2; transform: rotate(-9deg) translateX(-36px) translateY(12px); opacity: 0.3; }

        .review-swap-card::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 21px;
            background: linear-gradient(135deg, rgba(227, 143, 47, 0.25) 0%, transparent 40%, transparent 60%, rgba(227, 143, 47, 0.1) 100%);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .review-swap-card[data-slot="0"]::before {
            opacity: 1;
        }

        .review-swap-card[data-slot="0"] {
            box-shadow:
                0 20px 60px rgba(0, 0, 0, 0.7),
                0 0 40px rgba(227, 143, 47, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);
        }

        .review-swap-card .review-stars {
            color: var(--orange);
            font-size: 1.15rem;
            margin-bottom: 1rem;
            letter-spacing: 3px;
            text-shadow: 0 0 10px rgba(227, 143, 47, 0.3);
        }

        .review-swap-card .review-body {
            color: rgba(255, 255, 255, 0.88);
            line-height: 1.75;
            font-size: 0.95rem;
            flex: 1;
            display: flex;
            align-items: flex-start;
        }

        .review-swap-card .review-body p {
            margin: 0;
        }

        .review-swap-card .review-author {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-top: auto;
            padding-top: 1.2rem;
            border-top: 1px solid rgba(227, 143, 47, 0.1);
        }

        .review-swap-card .review-author img {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid rgba(227, 143, 47, 0.35);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
        }

        .review-swap-card .review-author-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .review-swap-card .review-author-name {
            font-weight: 700;
            color: var(--orange);
            font-size: 0.92rem;
            letter-spacing: 0.3px;
        }

        .review-swap-card .review-author-time {
            font-size: 0.72rem;
            color: rgba(255, 255, 255, 0.35);
        }

        .reviews-swap-nav {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .reviews-swap-btn {
            background: rgba(227, 143, 47, 0.1);
            border: 1px solid rgba(227, 143, 47, 0.2);
            color: var(--orange);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .reviews-swap-btn:hover {
            background: rgba(227, 143, 47, 0.2);
            border-color: rgba(227, 143, 47, 0.4);
            transform: scale(1.1);
        }

        .reviews-swap-counter {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
            font-variant-numeric: tabular-nums;
            min-width: 50px;
            text-align: center;
        }

        .reviews-swap-counter span {
            color: var(--orange);
            font-weight: 700;
            font-size: 1.05rem;
        }

        .reviews-swap-dots {
            display: flex;
            gap: 8px;
            justify-content: center;
        }

        .reviews-swap-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            border: none;
            cursor: pointer;
            padding: 0;
            transition: all 0.4s ease;
        }

        .reviews-swap-dot.active {
            background: var(--orange);
            box-shadow: 0 0 8px rgba(227, 143, 47, 0.4);
            transform: scale(1.3);
        }

        @media (max-width: 768px) {
            .reviews-swap-container {
                width: 360px;
                height: 300px;
            }
            .review-swap-card {
                padding: 1.8rem 1.8rem;
                border-radius: 16px;
            }
        }

        @media (max-width: 520px) {
            .reviews-swap-section {
                padding: 1rem 0;
                gap: 1.2rem;
            }
            .reviews-swap-container {
                width: calc(100vw - 80px);
                max-width: 320px;
                height: 290px;
            }
            .review-swap-card {
                padding: 1.3rem 1.1rem;
                border-radius: 14px;
            }
            .review-swap-card .review-body {
                font-size: 0.82rem;
                line-height: 1.55;
            }
            .review-swap-card .review-stars {
                font-size: 0.95rem;
                margin-bottom: 0.5rem;
                letter-spacing: 1.5px;
            }
            .review-swap-card .review-author img {
                width: 34px;
                height: 34px;
            }
            .review-swap-card .review-author-name {
                font-size: 0.82rem;
            }
            .review-swap-card .review-author {
                gap: 10px;
                padding-top: 0.8rem;
            }
            /* Fallback CSS more visible on mobile */
            .review-swap-card:nth-child(2) { transform: rotate(8deg) translateX(14px) translateY(10px); opacity: 0.7; }
            .review-swap-card:nth-child(3) { transform: rotate(-8deg) translateX(-14px) translateY(10px); opacity: 0.55; }
            .review-swap-card:nth-child(4) { transform: rotate(14deg) translateX(28px) translateY(18px); opacity: 0.4; }
            .reviews-swap-btn {
                width: 38px;
                height: 38px;
                font-size: 0.9rem;
            }
            .reviews-swap-nav {
                gap: 1rem;
            }
        }

        /* EVENTS - styles in css/styles.css */

        .event-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 2.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .event-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--orange);
            transition: height 0.3s ease;
        }

        .event-card:hover::before {
            height: 100%;
        }

        .event-card:hover {
            border-color: rgba(227, 143, 47, 0.3);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .event-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--orange);
            margin-bottom: 1rem;
        }

        .event-description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .event-card-info {
            padding: 1.2rem;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            flex: 1;
            min-width: 0;
        }

        .event-card-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--orange);
            margin: 0;
        }

        .event-card-desc {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin: 0;
        }

        .event-card-capacity {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin-top: 0.5rem;
        }

        .event-card-register-btn {
            background: var(--orange);
            color: #fff;
            border: none;
            border-radius: 20px;
            padding: 0.5rem 1.2rem;
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.3s;
            flex-shrink: 0;
        }

        .event-card-register-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 15px rgba(227, 143, 47, 0.4);
        }

        .event-card-register-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
            transform: none;
        }

        .event-card-spots {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--orange);
        }

        .event-card-full {
            color: #F44336;
        }

        .event-card-share-btn {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            width: 32px;
            height: 32px;
            min-width: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 0.85rem;
            transition: all 0.3s;
            padding: 0;
            position: absolute;
            bottom: 12px;
            right: 12px;
        }

        .event-card-share-btn:hover {
            background: rgba(227, 143, 47, 0.2);
            border-color: var(--orange);
            color: var(--orange);
        }

        .event-card-cover {
            position: relative;
            overflow: hidden;
        }

        .event-card-cover img,
        .event-card-cover video {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .event-card-placeholder {
            width: 100%;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            background: rgba(227, 143, 47, 0.1);
        }

        .event-card-count {
            position: absolute;
            bottom: 8px;
            right: 8px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .event-media {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .event-media img, .event-media video {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 6px;
        }

        /* GALLERY */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }

        .gallery-item {
            aspect-ratio: 1;
            background-size: cover;
            background-position: center;
            cursor: pointer;
            overflow: hidden;
            position: relative;
            border-radius: 8px;
        }

        .gallery-item::after {
            content: '🔍';
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(227, 143, 47, 0.9);
            font-size: 2rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover::after {
            opacity: 1;
        }

        /* LOCATION / NOUS TROUVER */
        .location-section {
            background: rgba(26, 26, 26, 0.88);
            padding: 3rem 2rem 2rem;
            overflow-x: hidden;
        }

        .location-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .location-info-bar {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            flex-wrap: wrap;
            margin-bottom: 1.2rem;
            padding: 0.8rem 1.2rem;
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 10px;
        }

        .location-info-top {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            flex-shrink: 0;
        }

        .location-info-item {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            text-decoration: none;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.78rem;
            transition: color 0.3s ease;
            white-space: nowrap;
        }

        .location-info-item:hover {
            color: var(--orange);
        }

        .location-info-item .icon {
            font-size: 0.9rem;
            flex-shrink: 0;
            line-height: 1;
        }

        .location-info-divider {
            width: 1px;
            height: 1rem;
            background: rgba(255, 255, 255, 0.15);
            flex-shrink: 0;
        }

        .location-hours-inline {
            display: flex;
            align-items: flex-start;
            gap: 0.4rem;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.68rem;
            line-height: 1.5;
        }

        .location-hours-inline .icon {
            font-size: 0.9rem;
            flex-shrink: 0;
            line-height: 1;
            margin-top: 0.1em;
        }

        .location-map {
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.08);
            height: 280px;
        }

        .location-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        @media (max-width: 768px) {
            .location-section {
                padding: 2.5rem 0.75rem 1.5rem;
            }
            .location-info-bar {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.6rem;
                padding: 0.8rem 0.75rem;
            }
            .location-info-top {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
                flex-shrink: 1;
                width: 100%;
            }
            .location-info-divider {
                display: none;
            }
            .location-info-item {
                font-size: 0.75rem;
                white-space: normal;
                word-break: break-word;
                align-items: flex-start;
            }
            .location-hours-inline {
                font-size: 0.7rem;
                white-space: normal;
                word-break: break-word;
            }
            .location-map {
                height: 220px;
            }
        }

        @media (max-width: 480px) {
            .location-section {
                padding: 2rem 0.5rem 1rem;
            }
            .location-info-bar {
                padding: 0.6rem;
                gap: 0.4rem;
            }
            .location-info-item {
                font-size: 0.7rem;
            }
            .location-hours-inline {
                font-size: 0.65rem;
            }
            .location-map {
                height: 200px;
            }
        }

        /* INSTAGRAM */
        .instagram-section {
            background: rgba(10, 10, 10, 0.85);
            padding: 6rem 2rem;
            border-top: 1px solid rgba(227, 143, 47, 0.2);
        }

        .instagram-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .instagram-handle {
            font-size: 1.5rem;
            color: var(--orange);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .instagram-handle::before {
            content: '📸';
            font-size: 1.8rem;
        }

        .instagram-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .instagram-item {
            aspect-ratio: 1;
            background-size: cover;
            background-position: center;
            cursor: pointer;
            overflow: hidden;
            position: relative;
            border-radius: 8px;
            border: 2px solid rgba(227, 143, 47, 0.1);
            transition: all 0.3s ease;
        }

        .instagram-item::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(227, 143, 47, 0.8), rgba(42, 93, 93, 0.8));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .instagram-item:hover {
            border-color: var(--orange);
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 35px rgba(227, 143, 47, 0.3);
        }

        .instagram-item:hover::before {
            opacity: 1;
        }

        .instagram-item::after {
            content: '❤️';
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            opacity: 0;
            transition: opacity 0.3s ease 0.1s;
            z-index: 2;
        }

        .instagram-item:hover::after {
            opacity: 1;
        }

        .instagram-cta {
            text-align: center;
            margin-top: 3rem;
        }

        .instagram-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            background: linear-gradient(135deg, var(--orange), var(--orange-dark));
            color: #000;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-size: 0.8rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(227, 143, 47, 0.3);
        }

        .instagram-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(227, 143, 47, 0.5);
        }

        .instagram-btn::before {
            content: '';
            display: inline-block;
            width: 1.2rem;
            height: 1.2rem;
            margin-right: 0.5rem;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
            vertical-align: middle;
        }

        .google-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            background: linear-gradient(135deg, var(--orange), var(--orange-dark));
            color: #000;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-size: 0.8rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(227, 143, 47, 0.3);
        }

        .google-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(227, 143, 47, 0.5);
        }

        .google-btn::before {
            content: '';
            display: inline-block;
            width: 1.2rem;
            height: 1.2rem;
            margin-right: 0.5rem;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92a5.06 5.06 0 0 1-2.2 3.32v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.1z'/%3E%3Cpath d='M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z'/%3E%3Cpath d='M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z'/%3E%3Cpath d='M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z'/%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
            vertical-align: middle;
        }

        /* SHOW MORE BUTTON */
        .show-more-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin: 2rem auto 0;
            padding: 0.8rem 2rem;
            background: transparent;
            border: 1px solid rgba(227, 143, 47, 0.4);
            color: var(--orange);
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .show-more-btn:hover {
            background: rgba(227, 143, 47, 0.1);
            border-color: var(--orange);
        }

        .show-more-btn .arrow {
            transition: transform 0.3s ease;
            font-size: 0.6rem;
        }

        .show-more-btn.expanded .arrow {
            transform: rotate(180deg);
        }

        @media (max-width: 768px) {
            .show-more-btn {
                margin: 1.2rem auto 0;
                padding: 0.6rem 1.5rem;
                font-size: 0.7rem;
            }
        }

        @media (max-width: 480px) {
            .show-more-btn {
                margin: 0.8rem auto 0;
                padding: 0.5rem 1.2rem;
                font-size: 0.65rem;
            }
        }

        /* ABOUT TRUNCATED */
        .about-text-truncated {
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* FOOTER */
        .footer {
            background: rgba(0, 0, 0, 0.9);
            border-top: 1px solid rgba(227, 143, 47, 0.2);
            padding: 2rem 2rem 1.2rem;
            font-size: 0.8rem;
        }

        .footer-content {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1rem;
            margin-bottom: 1.2rem;
        }

        /* Hide address, phone, social icons, nav in footer */
        .footer-content > .footer-section:last-child { display: none !important; }
        .footer-section a[href^="https://www.google.com/maps"] { display: none !important; }
        .footer-section a[href^="mailto:"] { display: none !important; }
        .footer-section a[href^="tel:"] { display: none !important; }
        .footer-social-icons { display: none !important; }

        /* Instagram section hidden */
        .instagram-section { display: none !important; }

        /* Hide old reservation form, replace with button */
        .reservation-form { display: none !important; }
        .reservation-cta-btn {
            display: inline-block;
            margin-top: 2rem;
            padding: 1rem 3rem;
            background: var(--orange);
            color: #000;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            letter-spacing: 0.05em;
        }
        .reservation-cta-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(227,143,47,0.4);
        }

        .footer-section h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1rem;
            margin-bottom: 0.8rem;
            color: var(--orange);
        }

        .footer-social-icons {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin-top: 0.8rem;
        }

        .footer-social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            transition: all 0.3s ease;
        }

        .footer-social-icon:hover {
            background: rgba(227, 143, 47, 0.15);
            border-color: var(--orange);
            color: var(--orange);
        }

        .footer-links {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.4rem 1.5rem;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            font-size: 0.8rem;
        }

        .footer-link:hover {
            color: var(--orange);
            transform: translateX(5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 1.2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.3);
        }

        @media (max-width: 768px) {
            .footer {
                padding: 1.5rem 1.2rem 1rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .footer-section h4 {
                font-size: 0.9rem;
                margin-bottom: 0.5rem;
            }
            .footer-links {
                grid-template-columns: 1fr 1fr;
                gap: 0.3rem 1rem;
            }
            .footer-link {
                font-size: 0.7rem;
            }
            .footer-section p {
                font-size: 0.7rem;
                line-height: 1.5;
            }
            .footer-social-icons {
                gap: 0.5rem;
            }
            .footer-social-icon {
                width: 34px;
                height: 34px;
            }
            .footer-social-icon svg {
                width: 16px;
                height: 16px;
            }
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .nav {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .photo-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-grid {
                gap: 1.5rem;
            }
        }

        @media (max-width: 767px) {
            .header-content {
                padding: 1rem;
            }

            .header-content {
                padding: 0.8rem 1rem;
                gap: 0.5rem;
            }

            .logo-container {
                min-width: 0;
                flex-shrink: 1;
                overflow: hidden;
            }

            .logo-rf img {
                height: 35px;
            }

            .logo-title {
                font-size: 0.85rem;
                white-space: nowrap;
            }

            .logo-sub {
                font-size: 0.4rem;
            }

            .lang-switcher {
                flex-shrink: 0;
                padding-left: 0.5rem;
                gap: 0;
            }
            .lang-switcher .lang-btn {
                display: none;
            }
            .lang-switcher .lang-dropdown-mobile {
                display: block !important;
                background: transparent;
                color: var(--orange);
                border: 1px solid rgba(227,143,47,0.4);
                border-radius: 6px;
                padding: 0.3rem 0.4rem;
                font-size: 0.75rem;
                font-weight: 600;
                cursor: pointer;
                -webkit-appearance: none;
                appearance: none;
            }
            .lang-switcher .lang-dropdown-mobile option {
                background: #1a1a1a;
                color: #fff;
            }

            .mobile-menu-btn {
                flex-shrink: 0;
            }

            .hero-content {
                padding: 5rem 1.5rem 2rem;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .stats-grid {
                gap: 1.2rem;
            }

            .stat-number {
                font-size: 1.4rem;
            }

            .stat-label {
                font-size: 0.55rem;
            }

            .photo-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .section#menus {
                padding: 4rem 1rem;
            }

            .section#plats {
                padding: 3rem 0.5rem;
            }

            .section-header {
                margin-bottom: 2rem;
            }

            .menu-header {
                padding: 1.5rem 1rem;
            }

            .menu-arrow {
                width: 36px;
                height: 36px;
                font-size: 1rem;
                right: 0.75rem;
            }

            .menu-name {
                font-size: 1.4rem;
                padding-right: 3rem;
            }

            .menu-price {
                font-size: 1.8rem;
            }

            .menu-content {
                padding: 0 0.75rem;
            }

            .menu-card.expanded .menu-content {
                padding: 1.5rem 0.75rem;
            }

            .menu-dish {
                flex-direction: row;
                padding: 1rem;
                gap: 1rem;
            }

            .menu-dish-image {
                width: 70px;
                height: 70px;
                min-width: 70px;
            }

            .menu-dish-name {
                font-size: 1.1rem;
            }

            .menu-dish-description {
                font-size: 0.8rem;
            }

            .menu-choice-section {
                padding: 1rem;
            }

            .menu-choice-grid {
                flex-direction: row;
                flex-wrap: wrap;
            }

            .menu-choice-item {
                flex: 1 1 180px;
            }

            .events-grid {
                grid-template-columns: 1fr;
                gap: 0.7rem;
            }

            .event-card {
                display: flex;
                flex-direction: row;
                align-items: stretch;
                border-radius: 10px;
                overflow: hidden;
                padding: 0;
                position: relative;
            }

            .event-card-cover {
                width: 110px;
                min-width: 110px;
                height: auto;
                min-height: 110px;
                overflow: hidden;
                flex-shrink: 0;
            }

            .event-card-cover img,
            .event-card-cover video {
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
            }

            .event-card-placeholder {
                font-size: 1.5rem;
                height: 100%;
            }

            .event-card-count {
                font-size: 0.55rem;
                padding: 2px 5px;
            }

            .event-card-info {
                padding: 0.7rem 0.8rem;
                display: flex;
                flex-direction: column;
                justify-content: center;
                flex: 1;
                min-width: 0;
                padding-right: 2.5rem;
            }

            .event-card-title {
                font-size: 0.9rem;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .event-card-desc {
                font-size: 0.72rem;
                -webkit-line-clamp: 1;
                margin-top: 0.15rem;
            }

            .event-card-capacity {
                margin-top: 0.3rem;
                font-size: 0.72rem;
                flex-wrap: wrap;
                gap: 6px;
            }

            .event-card-spots {
                font-size: 0.75rem !important;
            }

            .event-card-register-btn {
                font-size: 0.68rem;
                padding: 0.25rem 0.7rem;
            }

            .event-card-share-btn {
                display: flex;
                position: absolute;
                top: 8px;
                right: 8px;
                bottom: auto;
                width: 28px;
                height: 28px;
                min-width: 28px;
                font-size: 0.75rem;
                z-index: 2;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .instagram-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            /* Allergènes mobile */
            .allergen-icon {
                padding: 0.3rem 0.4rem 0.2rem;
            }

            .allergen-emoji {
                font-size: 1rem;
            }

            .allergen-svg {
                width: 1.2rem;
                height: 1.2rem;
            }

            .allergen-label {
                font-size: 0.55rem;
            }

            /* Modal photo mobile */
            .photo-modal-content {
                max-width: 95vw;
                max-height: 95vh;
            }

            .photo-modal-close {
                top: -40px;
                width: 35px;
                height: 35px;
                font-size: 1.3rem;
            }
        }

        @media (max-width: 480px) {
            .section#menus {
                padding: 3rem 0.5rem;
            }

            .section#plats {
                padding: 2rem 0.25rem;
            }

            .section-header {
                margin-bottom: 1.5rem;
            }

            .menu-header {
                padding: 1.2rem 0.75rem;
            }

            .menu-name {
                font-size: 1.2rem;
                padding-right: 2.5rem;
                letter-spacing: 0.08em;
            }

            .menu-price {
                font-size: 1.5rem;
            }

            .menu-content {
                padding: 0 0.5rem;
            }

            .menu-card.expanded .menu-content {
                padding: 1rem 0.5rem;
            }

            .menu-dish {
                flex-direction: column;
                padding: 0.75rem;
                gap: 0.75rem;
                align-items: center;
                text-align: center;
            }

            .menu-dish-image {
                width: 100%;
                height: 160px;
                min-width: unset;
                border-radius: 8px;
            }

            .menu-dish-info {
                width: 100%;
            }

            .menu-dish-name {
                font-size: 1.05rem;
            }

            .menu-dish-description {
                font-size: 0.8rem;
            }

            .menu-items {
                gap: 1.2rem;
            }

            .menu-choice-section {
                padding: 0.75rem;
            }

            .menu-choice-grid {
                flex-direction: column;
                align-items: center;
            }

            .menu-choice-item {
                flex: 1 1 auto;
                width: 100%;
                max-width: 100%;
            }

            .menu-choice-separator {
                padding: 0.25rem 0;
            }

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

            .instagram-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .instagram-handle {
                font-size: 1.2rem;
            }

            .item-name {
                font-size: 1.1rem;
            }

            .item-description {
                font-size: 0.85rem;
            }

            .item-price {
                font-size: 0.95rem;
                padding: 0.25rem 0.6rem;
            }

            .item-content {
                padding: 1.5rem;
            }
        }

        /* ========================================
           PROFILE CARD STYLES
           ======================================== */
        :root {
            --pointer-x: 50%;
            --pointer-y: 50%;
            --pointer-from-center: 0;
            --pointer-from-top: 0.5;
            --pointer-from-left: 0.5;
            --card-opacity: 0;
            --rotate-x: 0deg;
            --rotate-y: 0deg;
            --background-x: 50%;
            --background-y: 50%;
            --card-radius: 30px;
        }

        .pc-card-wrapper {
            -webkit-perspective: 500px;
            perspective: 500px;
            -webkit-transform: translate3d(0, 0, 0.1px);
            transform: translate3d(0, 0, 0.1px);
            position: relative;
            touch-action: pan-y;
            display: flex;
            justify-content: center;
        }

        .pc-behind {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background: radial-gradient(
                circle at var(--pointer-x) var(--pointer-y),
                rgba(125, 190, 255, 0.67) 0%,
                transparent 50%
            );
            filter: blur(50px) saturate(1.1);
            opacity: calc(0.8 * var(--card-opacity));
            transition: opacity 200ms ease;
        }

        .pc-card-wrapper:hover,
        .pc-card-wrapper.active {
            --card-opacity: 1;
        }

        .pc-card-wrapper.flipped {
            z-index: 10;
        }

        .pc-card {
            height: 80vh;
            height: 80svh;
            max-height: 540px;
            width: calc(80vh * 0.667);
            max-width: 100%;
            display: grid;
            aspect-ratio: 2/3;
            border-radius: var(--card-radius);
            position: relative;
            box-shadow: rgba(0, 0, 0, 0.8) calc((var(--pointer-from-left) * 10px) - 3px)
                calc((var(--pointer-from-top) * 20px) - 6px) 20px -5px;
            -webkit-transition: -webkit-transform 1s ease;
            transition: transform 1s ease;
            -webkit-transform: translateZ(0) rotateX(0deg) rotateY(0deg);
            transform: translateZ(0) rotateX(0deg) rotateY(0deg);
            background: rgba(0, 0, 0, 0.9);
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
        }

        .pc-card:hover,
        .pc-card.active {
            transition: none;
            -webkit-transform: translateZ(0) rotateX(var(--rotate-y)) rotateY(var(--rotate-x));
            transform: translateZ(0) rotateX(var(--rotate-y)) rotateY(var(--rotate-x));
        }

        .pc-card-shell.entering .pc-card {
            -webkit-transition: -webkit-transform 180ms ease-out;
            transition: transform 180ms ease-out;
        }

        .pc-card-shell {
            position: relative;
            z-index: 1;
        }

        .pc-card-front .pc-inside {
            display: grid;
            grid-area: 1/-1;
            border-radius: var(--card-radius);
        }

        .pc-card-front .pc-inside > .pc-glare,
        .pc-card-front .pc-inside > .pc-content {
            display: grid;
            grid-area: 1/-1;
            border-radius: var(--card-radius);
            pointer-events: none;
        }

        .pc-card-front .pc-inside > .pc-avatar-content {
            display: grid;
            grid-area: 1/-1;
            border-radius: var(--card-radius);
            pointer-events: none;
        }

        .pc-card-front .pc-avatar-content .avatar {
            pointer-events: none;
        }

        .pc-card-front .pc-user-info,
        .pc-card-front .pc-user-info * {
            display: flex;
            grid-area: auto;
            border-radius: 0;
            pointer-events: auto;
        }

        .pc-card-front .pc-user-info {
            border-radius: calc(max(0px, var(--card-radius) - 12px + 6px));
        }

        .pc-card-back .pc-back-content,
        .pc-card-back .pc-back-content * {
            pointer-events: auto;
        }

        .pc-inside {
            inset: 0;
            position: absolute;
            background-image: linear-gradient(145deg, rgba(96,73,110,0.2) 0%, rgba(113,196,255,0.1) 100%);
            background-color: rgba(0, 0, 0, 0.85);
            transform: none;
        }

        .pc-glare {
            transform: translate3d(0, 0, 1.1px);
            overflow: hidden;
            background-image: radial-gradient(
                farthest-corner circle at var(--pointer-x) var(--pointer-y),
                hsla(248, 25%, 80%, 0.3) 12%,
                hsla(207, 40%, 30%, 0.15) 90%
            );
            mix-blend-mode: overlay;
            filter: brightness(0.9) contrast(1.1);
            z-index: 4;
        }

        .pc-avatar-content {
            mix-blend-mode: normal;
            overflow: visible;
            -webkit-transform: translateZ(2px);
            transform: translateZ(2px);
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
        }

        .pc-avatar-content .avatar {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            position: absolute;
            inset: 0;
            transform-origin: 50% 100%;
            transform: translateX(calc((var(--pointer-from-left) - 0.5) * 6px)) translateZ(0)
                scaleY(calc(1 + (var(--pointer-from-top) - 0.5) * 0.02)) scaleX(calc(1 + (var(--pointer-from-left) - 0.5) * 0.01));
            backface-visibility: hidden;
            will-change: transform;
            transition: transform 120ms ease-out;
        }

        .pc-user-info {
            position: absolute;
            --ui-inset: 12px;
            --ui-radius-bias: 6px;
            bottom: var(--ui-inset);
            left: var(--ui-inset);
            right: var(--ui-inset);
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: calc(max(0px, var(--card-radius) - var(--ui-inset) + var(--ui-radius-bias)));
            padding: 10px 14px;
            pointer-events: auto;
        }

        .pc-user-details {
            display: flex !important;
            align-items: center;
            gap: 10px;
        }

        .pc-mini-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            flex-shrink: 0;
        }

        .pc-mini-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .pc-user-text {
            display: flex !important;
            align-items: flex-start;
            flex-direction: column;
            gap: 3px;
        }

        .pc-card-name {
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            line-height: 1.1;
        }

        .pc-card-title {
            font-size: 0.75rem;
            color: var(--orange);
            line-height: 1.2;
            font-weight: 400;
        }

        .pc-handle {
            font-size: 14px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1;
        }

        .pc-status {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1;
        }

        .pc-contact-btn {
            border: 1px solid rgba(227, 143, 47, 0.4);
            border-radius: 8px;
            padding: 8px 16px;
            font-size: 12px;
            font-weight: 600;
            color: var(--orange);
            background: rgba(227, 143, 47, 0.1);
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .pc-contact-btn:hover {
            border-color: var(--orange);
            background: rgba(227, 143, 47, 0.2);
            transform: translateY(-1px);
        }

        .pc-bar-actions {
            display: flex !important;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .pc-insta-btn {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.8);
            transition: all 0.2s ease;
            text-decoration: none;
            cursor: pointer;
        }

        .pc-insta-btn:hover {
            background: rgba(225, 48, 108, 0.2);
            border-color: rgba(225, 48, 108, 0.5);
            color: #E1306C;
            transform: translateY(-1px);
        }


        .team-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 3rem;
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
            width: 100%;
            box-sizing: border-box;
        }

        .pc-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            -webkit-transition: -webkit-transform 0.8s;
            transition: transform 0.8s;
            -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
        }

        .pc-card.flipped .pc-card-inner {
            -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
        }

        .pc-card-face {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: var(--card-radius);
            overflow: hidden;
        }

        .pc-card-front {
            z-index: 2;
        }

        .pc-card-back {
            -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
            background: rgba(10, 10, 10, 0.95);
            overflow: hidden;
        }

        .pc-back-content {
            padding: 2.5rem 2rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: stretch;
            position: relative;
            z-index: 10;
            overflow-y: auto;
            overflow-x: hidden;
            gap: 1.5rem;
            word-break: break-word;
        }

        .pc-back-content h3 {
            font-weight: 700 !important;
            font-size: 2rem !important;
            color: #fff !important;
            margin: 0 0 0.5rem 0 !important;
            text-align: center !important;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

        .pc-back-content > p {
            font-size: 1rem !important;
            color: rgba(255,255,255,0.9) !important;
            margin: 0 0 1rem 0 !important;
            text-align: center !important;
            line-height: 1.6 !important;
        }

        .pc-skills-section {
            margin: 0;
        }

        .pc-skills-section h4 {
            font-size: 1.1rem !important;
            color: var(--orange) !important;
            margin: 0 0 1rem 0 !important;
            text-align: center !important;
            font-weight: 600 !important;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .pc-skills-container {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            justify-content: center;
        }

        .pc-skill-badge {
            padding: 0.5rem 1rem;
            background: rgba(227, 143, 47, 0.2);
            border: 1px solid rgba(227, 143, 47, 0.5);
            border-radius: 25px;
            font-size: 0.9rem;
            color: #fff;
            font-weight: 500;
            text-shadow: 0 1px 2px rgba(0,0,0,0.5);
        }

        .pc-contact-links {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: auto;
            flex-wrap: wrap;
        }

        .pc-contact-link {
            padding: 0.75rem 1.5rem;
            background: var(--orange);
            color: #fff;
            border-radius: 10px;
            font-size: 1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.3);
        }

        .pc-contact-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.4);
            background: #f5a03f;
        }

        .pc-contact-link.secondary {
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.3);
        }

        .pc-contact-link.secondary:hover {
            background: rgba(255,255,255,0.25);
        }

        .pc-card-shell {
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .pc-card {
                height: 70vh;
                height: 70svh;
                max-height: 450px;
                width: calc(70vh * 0.667);
                max-width: 100%;
            }

            .team-grid {
                flex-direction: column;
                align-items: center;
                gap: 2rem;
                max-width: 100%;
                margin: 0 auto;
                padding: 1rem;
                box-sizing: border-box;
            }

            .pc-back-content {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .pc-card {
                height: 60vh;
                height: 60svh;
                max-height: 400px;
                width: calc(60vh * 0.667);
                max-width: 100%;
            }

            .pc-card-wrapper {
                max-width: 100%;
            }

            .team-grid {
                flex-direction: column;
                align-items: center;
                gap: 1.5rem;
                max-width: 100%;
                margin: 0 auto;
                padding: 0.5rem;
                box-sizing: border-box;
            }

            .pc-back-content {
                padding: 1.2rem 1rem;
                gap: 0.8rem;
            }

            .pc-back-content h3 {
                font-size: 1.4rem !important;
                margin-bottom: 0.2rem !important;
            }

            .pc-back-content > p {
                font-size: 0.85rem !important;
                margin-bottom: 0.5rem !important;
            }

            .pc-skills-section h4 {
                font-size: 0.9rem !important;
                margin-bottom: 0.5rem !important;
            }

            .pc-skill-badge {
                padding: 0.35rem 0.7rem;
                font-size: 0.8rem;
            }

            .pc-contact-link {
                padding: 0.55rem 1rem;
                font-size: 0.85rem;
            }
        }

        /* TABS PLATS/COCKTAILS STYLES */
        .tabs-container {
            max-width: 1400px;
            margin: 0 auto;
            overflow: hidden;
        }

        .tabs-header {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 2rem;
            padding: 0 1rem;
        }

        .tab-btn {
            padding: 0.85rem 2.5rem;
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            background: transparent;
            border: 2px solid var(--orange);
            color: var(--white);
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .tab-btn:hover {
            background: rgba(227, 143, 47, 0.2);
        }

        .tab-btn.active {
            background: var(--orange);
            color: var(--black);
        }

        .tabs-content {
            position: relative;
        }

        .tab-panel {
            display: none;
            animation: tabFadeIn 0.4s ease;
        }

        .tab-panel.active {
            display: block;
        }

        @keyframes tabFadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 768px) {
            .tabs-header {
                gap: 0.4rem;
                margin-bottom: 1.2rem;
            }
            .tab-btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.88rem;
                border-width: 1.5px;
                letter-spacing: 0.05em;
            }
        }

        @media (max-width: 480px) {
            .tabs-header {
                gap: 0.3rem;
                margin-bottom: 1rem;
                padding: 0 0.5rem;
            }
            .tab-btn {
                padding: 0.5rem 0;
                font-size: 0.8rem;
                flex: 1;
                text-align: center;
            }
        }

        /* GOOEY NAV */
        :root {
            --linear-ease: linear(0, 0.068, 0.19 2.7%, 0.804 8.1%, 1.037, 1.199 13.2%, 1.245, 1.27 15.8%, 1.274, 1.272 17.4%, 1.249 19.1%, 0.996 28%, 0.949, 0.928 33.3%, 0.926, 0.933 36.8%, 1.001 45.6%, 1.013, 1.019 50.8%, 1.018 54.4%, 1 63.1%, 0.995 68%, 1.001 85%, 1);
            --gooey-color-1: #e38f2f;
            --gooey-color-2: #f0a848;
            --gooey-color-3: #d47820;
            --gooey-color-4: #2a5d5d;
        }
        .gooey-container {
            position: relative;
        }
        .gooey-container nav {
            display: flex;
            position: relative;
            transform: translate3d(0, 0, 0.01px);
        }
        .gooey-container nav ul {
            display: flex;
            gap: 0.5rem;
            list-style: none;
            padding: 0;
            margin: 0;
            position: relative;
            z-index: 3;
        }
        .gooey-container nav ul li {
            border-radius: 100vw;
            position: relative;
            cursor: pointer;
            transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 0 0.5px 1.5px transparent;
        }
        .gooey-container nav ul li a {
            display: inline-block;
            padding: 0.6em 1em;
            text-decoration: none;
            white-space: nowrap;
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
        }
        .gooey-container nav ul li::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 100vw;
            opacity: 0;
            transform: scale(0);
            transition: all 0.3s ease;
            z-index: -1;
        }
        .gooey-container nav ul li.active::after {
            opacity: 1;
            transform: scale(1);
        }
        .gooey-container .gooey-effect {
            position: absolute;
            left: 0;
            top: 0;
            width: 0;
            height: 0;
            opacity: 1;
            pointer-events: none;
            display: grid;
            place-items: center;
            z-index: 1;
        }
        .gooey-container .gooey-effect.gooey-text {
            transition: color 0.3s ease;
        }
        .gooey-container .gooey-effect.gooey-filter {
            filter: blur(7px) contrast(100) blur(0);
            mix-blend-mode: lighten;
        }
        .gooey-container .gooey-effect.gooey-filter::before {
            content: '';
            position: absolute;
            inset: -75px;
            z-index: -2;
            background: black;
        }
        .gooey-container .gooey-effect.gooey-filter::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 100vw;
            transform: scale(0);
            opacity: 0;
            z-index: -1;
        }
        .gooey-container .gooey-effect.active::after {
            animation: gooeyPill 0.3s ease both;
        }
        @keyframes gooeyPill {
            to { transform: scale(1); opacity: 1; }
        }
        .gooey-particle, .gooey-point {
            display: block;
            opacity: 0;
            width: 20px;
            height: 20px;
            border-radius: 100%;
            transform-origin: center;
        }
        .gooey-particle {
            position: absolute;
            top: calc(50% - 8px);
            left: calc(50% - 8px);
            animation: gooeyParticle calc(var(--time)) ease 1 -350ms;
        }
        .gooey-point {
            background: var(--color);
            opacity: 1;
            animation: gooeyPoint calc(var(--time)) ease 1 -350ms;
        }
        @keyframes gooeyParticle {
            0% { transform: rotate(0deg) translate(var(--start-x), var(--start-y)); opacity: 1; animation-timing-function: cubic-bezier(0.55, 0, 1, 0.45); }
            70% { transform: rotate(calc(var(--rotate) * 0.5)) translate(calc(var(--end-x) * 1.2), calc(var(--end-y) * 1.2)); opacity: 1; animation-timing-function: ease; }
            85% { transform: rotate(calc(var(--rotate) * 0.66)) translate(var(--end-x), var(--end-y)); opacity: 1; }
            100% { transform: rotate(calc(var(--rotate) * 1.2)) translate(calc(var(--end-x) * 0.5), calc(var(--end-y) * 0.5)); opacity: 1; }
        }
        @keyframes gooeyPoint {
            0% { transform: scale(0); opacity: 0; animation-timing-function: cubic-bezier(0.55, 0, 1, 0.45); }
            25% { transform: scale(calc(var(--scale) * 0.25)); }
            38% { opacity: 1; }
            65% { transform: scale(var(--scale)); opacity: 1; animation-timing-function: ease; }
            85% { transform: scale(var(--scale)); opacity: 1; }
            100% { transform: scale(0); opacity: 0; }
        }

        /* GOOEY TABS (Plats/Cocktails) */
        .gooey-tabs .gooey-container nav ul {
            gap: 0.5rem;
            justify-content: center;
        }
        .gooey-tabs .gooey-container nav ul li {
            border: 2px solid var(--orange);
            color: var(--white);
        }
        .gooey-tabs .gooey-container nav ul li a {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            letter-spacing: 0.08em;
            color: inherit;
            padding: 0.85rem 2.5rem;
        }
        .gooey-tabs .gooey-container nav ul li.active {
            color: var(--black);
        }
        .gooey-tabs .gooey-container nav ul li::after {
            background: var(--orange);
        }
        .gooey-tabs .gooey-container .gooey-effect.gooey-text {
            color: var(--white);
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-weight: 600;
        }
        .gooey-tabs .gooey-container .gooey-effect.gooey-text.active {
            color: var(--black);
        }
        .gooey-tabs .gooey-container .gooey-effect.gooey-filter::after {
            background: var(--orange);
        }
        @media (max-width: 768px) {
            .gooey-tabs .gooey-container nav ul li a {
                padding: 0.6rem 1.2rem;
                font-size: 0.88rem;
            }
            .gooey-tabs .gooey-container nav ul li {
                border-width: 1.5px;
            }
        }
        @media (max-width: 480px) {
            .gooey-tabs .gooey-container nav ul {
                gap: 0.3rem;
            }
            .gooey-tabs .gooey-container nav ul li a {
                padding: 0.5rem 1rem;
                font-size: 0.8rem;
            }
        }

        /* GOOEY NAV (Top bar) */
        .gooey-nav .gooey-container {
            overflow: hidden;
            padding: 4px 0;
        }
        .gooey-nav .gooey-container .gooey-effect.gooey-filter {
            overflow: hidden;
            border-radius: 100vw;
        }
        .gooey-nav .gooey-container .gooey-effect.gooey-filter::before {
            inset: -30px;
        }
        .gooey-nav .gooey-container nav ul {
            gap: 0.4rem;
        }
        .gooey-nav .gooey-container nav ul li {
            color: rgba(255, 255, 255, 0.7);
        }
        .gooey-nav .gooey-container nav ul li a {
            font-size: 0.65rem;
            letter-spacing: 0.12em;
            color: inherit;
            padding: 0.4em 0.7em;
        }
        .gooey-nav .gooey-container nav ul li.active {
            color: var(--black);
        }
        .gooey-nav .gooey-container nav ul li::after {
            background: var(--orange);
        }
        .gooey-nav .gooey-container .gooey-effect.gooey-text {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.65rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            font-weight: 600;
        }
        .gooey-nav .gooey-container .gooey-effect.gooey-text.active {
            color: var(--black);
        }
        .gooey-nav .gooey-container .gooey-effect.gooey-filter::after {
            background: var(--orange);
        }

        /* GOOEY CATEGORIES */
        .gooey-categories {
            display: flex;
            justify-content: center;
            margin-bottom: 1.5rem;
            padding: 0 0.5rem;
        }
        .gooey-categories .gooey-container {
            overflow: hidden;
            padding: 4px 0;
        }
        .gooey-categories .gooey-container nav ul {
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.4rem;
        }
        .gooey-categories .gooey-container nav ul li {
            border: 1.5px solid rgba(227, 143, 47, 0.3);
            color: #ccc;
        }
        .gooey-categories .gooey-container nav ul li a {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.82rem;
            letter-spacing: 0.05em;
            color: inherit;
            padding: 0.45rem 1rem;
        }
        .gooey-categories .gooey-container nav ul li.active {
            color: var(--black);
            border-color: var(--orange);
        }
        .gooey-categories .gooey-container nav ul li::after {
            background: var(--orange);
        }
        .gooey-categories .gooey-container .gooey-effect.gooey-filter {
            overflow: hidden;
            border-radius: 100vw;
        }
        .gooey-categories .gooey-container .gooey-effect.gooey-filter::before {
            inset: -40px;
        }
        .gooey-categories .gooey-container .gooey-effect.gooey-filter::after {
            background: var(--orange);
        }
        .gooey-categories .gooey-container .gooey-effect.gooey-text {
            color: #ccc;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.82rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            font-weight: 600;
        }
        .gooey-categories .gooey-container .gooey-effect.gooey-text.active {
            color: var(--black);
        }
        @media (max-width: 768px) {
            .gooey-categories .gooey-container nav ul {
                flex-wrap: nowrap;
                justify-content: flex-start;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                padding-bottom: 4px;
            }
            .gooey-categories .gooey-container nav ul::-webkit-scrollbar { display: none; }
            .gooey-categories .gooey-container nav ul li { flex-shrink: 0; }
            .gooey-categories .gooey-container nav ul li a {
                padding: 0.35rem 0.8rem;
                font-size: 0.73rem;
            }
        }
        @media (max-width: 480px) {
            .gooey-categories .gooey-container nav ul li a {
                padding: 0.3rem 0.65rem;
                font-size: 0.68rem;
            }
        }

        /* GOOEY - Mobile fix: disable particle overlays on small screens */
        @media (max-width: 768px) {
            .gooey-container .gooey-effect.gooey-filter,
            .gooey-container .gooey-effect.gooey-text {
                display: none !important;
            }
        }

        /* CATEGORY FILTER BUTTONS (legacy) */
        .category-filters {
            display: flex;
            gap: 0.4rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
            padding: 0 0.5rem;
        }

        .category-filter-btn {
            padding: 0.45rem 1rem;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.82rem;
            font-weight: 600;
            background: rgba(227, 143, 47, 0.08);
            border: 1.5px solid rgba(227, 143, 47, 0.3);
            color: #ccc;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 25px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            white-space: nowrap;
        }

        .category-filter-btn:hover {
            background: rgba(227, 143, 47, 0.15);
            color: var(--orange);
            border-color: var(--orange);
        }

        .category-filter-btn.active {
            background: var(--orange);
            color: var(--black);
            border-color: var(--orange);
        }

        @media (max-width: 768px) {
            .category-filters {
                gap: 0.3rem;
                margin-bottom: 1rem;
                overflow-x: auto;
                flex-wrap: nowrap;
                justify-content: flex-start;
                padding: 0 0.8rem 0.4rem;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }
            .category-filters::-webkit-scrollbar {
                display: none;
            }
            .category-filter-btn {
                padding: 0.35rem 0.8rem;
                font-size: 0.73rem;
                flex-shrink: 0;
            }
        }

        @media (max-width: 480px) {
            .category-filters {
                gap: 0.25rem;
                margin-bottom: 0.8rem;
                padding: 0 0.5rem 0.3rem;
            }
            .category-filter-btn {
                padding: 0.3rem 0.65rem;
                font-size: 0.68rem;
            }
        }

        /* RESERVATION FORM STYLES */
        .reservation-section {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.88) 0%, rgba(10, 10, 10, 0.85) 100%);
            padding: 6rem 2rem;
        }

        .reservation-container {
            max-width: 700px;
            margin: 0 auto;
        }

        .thefork-widget-container {
            margin-top: 2rem;
            border-radius: 16px;
            overflow: hidden;
        }

        .thefork-widget-container iframe {
            display: block;
        }

        .reservation-form {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(227, 143, 47, 0.2);
            border-radius: 20px;
            padding: 3rem;
            margin-top: 3rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .form-group-res {
            margin-bottom: 1.5rem;
        }

        .form-group-res.full-width {
            grid-column: 1 / -1;
        }

        .form-label-res {
            display: block;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--orange);
            margin-bottom: 0.5rem;
        }

        .form-input-res {
            width: 100%;
            padding: 1rem 1.2rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: #fff;
            font-size: 1rem;
            font-family: 'DM Sans', sans-serif;
            transition: all 0.3s ease;
        }

        .form-input-res:focus {
            outline: none;
            border-color: var(--orange);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 0 3px rgba(227, 143, 47, 0.1);
        }

        .form-input-res::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        textarea.form-input-res {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn-res {
            width: 100%;
            padding: 1.2rem 2rem;
            background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
            border: none;
            border-radius: 50px;
            color: #fff;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }

        .submit-btn-res:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(227, 143, 47, 0.3);
        }

        .submit-btn-res:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        /* STEPPER PROGRESS */
        .stepper {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 2.5rem;
            gap: 0;
        }

        .step-dot {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            border: 2px solid rgba(255, 255, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.3);
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
        }

        .step-dot.active {
            background: var(--orange);
            border-color: var(--orange);
            color: var(--black);
            transform: scale(1.15);
            box-shadow: 0 0 20px rgba(227, 143, 47, 0.4);
        }

        .step-dot.completed {
            background: rgba(46, 204, 113, 0.2);
            border-color: #2ecc71;
            color: #2ecc71;
        }

        .step-line {
            width: 30px;
            height: 2px;
            background: rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
        }

        .step-line.completed {
            background: #2ecc71;
        }

        /* STEP CONTENT ANIMATION */
        .step-content {
            min-height: 180px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            animation: stepFadeIn 0.35s ease;
        }

        @keyframes stepFadeIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .step-content .form-group-res {
            width: 100%;
            max-width: 400px;
            margin-bottom: 0;
        }

        .step-content .form-row {
            width: 100%;
            max-width: 400px;
        }

        .step-content .checkbox-group-res,
        .step-content .checkbox-grid {
            width: 100%;
            max-width: 500px;
        }

        .step-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: var(--orange);
            text-align: center;
            margin-bottom: 1.5rem;
        }

        /* STEP NAVIGATION BUTTONS */
        /* Marketing consent checkbox */
        .marketing-consent-group {
            margin-top: 1.2rem;
        }

        .marketing-consent-label {
            display: flex;
            align-items: flex-start;
            gap: 0.7rem;
            cursor: pointer;
            position: relative;
            padding-left: 0;
            user-select: none;
        }

        .marketing-consent-checkbox {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
        }

        .marketing-consent-checkmark {
            width: 20px;
            height: 20px;
            min-width: 20px;
            border: 2px solid rgba(255, 255, 255, 0.25);
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.05);
            transition: all 0.25s ease;
            position: relative;
            margin-top: 1px;
        }

        .marketing-consent-checkbox:checked + .marketing-consent-checkmark {
            background: var(--orange);
            border-color: var(--orange);
        }

        .marketing-consent-checkbox:checked + .marketing-consent-checkmark::after {
            content: '';
            position: absolute;
            left: 5px;
            top: 1px;
            width: 6px;
            height: 10px;
            border: solid #000;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

        .marketing-consent-text {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.4;
        }

        .marketing-consent-label:hover .marketing-consent-checkmark {
            border-color: rgba(227, 143, 47, 0.5);
        }

        .step-nav {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            width: 100%;
            max-width: 400px;
        }

        .step-btn {
            flex: 1;
            padding: 1rem 1.5rem;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'DM Sans', sans-serif;
        }

        .step-btn-back {
            background: transparent;
            border: 1.5px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.6);
        }

        .step-btn-back:hover {
            border-color: rgba(255, 255, 255, 0.4);
            color: #fff;
        }

        .step-btn-next {
            background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
            border: none;
            color: #fff;
        }

        .step-btn-next:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(227, 143, 47, 0.3);
        }

        .step-btn-next:disabled {
            opacity: 0.4;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        /* OCCASION CUSTOM INPUT */
        .occasion-custom-input {
            margin-top: 0.8rem;
            animation: stepFadeIn 0.3s ease;
        }

        /* RECAP STEP */
        .recap-card {
            width: 100%;
            max-width: 450px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(227, 143, 47, 0.2);
            border-radius: 15px;
            padding: 1.5rem;
        }

        .recap-row {
            display: flex;
            justify-content: space-between;
            padding: 0.6rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .recap-row:last-child {
            border-bottom: none;
        }

        .recap-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(255, 255, 255, 0.5);
        }

        .recap-value {
            color: var(--orange);
            font-weight: 600;
            text-align: right;
            max-width: 60%;
        }

        .recap-edit {
            text-align: center;
            margin-top: 1rem;
        }

        .recap-edit-btn {
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.8rem;
            cursor: pointer;
            text-decoration: underline;
        }

        .recap-edit-btn:hover {
            color: var(--orange);
        }

        @media (max-width: 768px) {
            .stepper {
                margin-bottom: 2rem;
            }
            .step-dot {
                width: 30px;
                height: 30px;
                font-size: 0.7rem;
            }
            .step-line {
                width: 20px;
            }
            .step-title {
                font-size: 1.1rem;
            }
            .step-content {
                min-height: 150px;
            }
            .reservation-form {
                padding: 1.5rem;
            }
            .step-nav {
                gap: 0.8rem;
            }
            .step-btn {
                padding: 0.9rem 1rem;
                font-size: 0.85rem;
            }
        }

        .form-message {
            padding: 1rem 1.5rem;
            border-radius: 10px;
            margin-top: 1.5rem;
            text-align: center;
            font-size: 0.95rem;
        }

        .form-message.success {
            background: rgba(46, 204, 113, 0.15);
            border: 1px solid rgba(46, 204, 113, 0.3);
            color: #2ecc71;
        }

        .form-message.error {
            background: rgba(231, 76, 60, 0.15);
            border: 1px solid rgba(231, 76, 60, 0.3);
            color: #e74c3c;
        }

        /* Fix pour les select (fond sombre, texte blanc) */
        .form-input-res option {
            background: #1a1a1a;
            color: #fff;
        }

        select.form-input-res {
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
        }

        /* Fix pour le date picker */
        input[type="date"].form-input-res::-webkit-calendar-picker-indicator {
            filter: invert(1);
            cursor: pointer;
        }

        /* Styles pour les checkboxes du formulaire */
        .checkbox-group-res {
            margin-bottom: 1.5rem;
        }

        .checkbox-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 0.75rem;
            margin-top: 0.5rem;
        }

        .checkbox-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.4rem;
            cursor: pointer;
            padding: 1rem 0.6rem 0.8rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1.5px solid rgba(255, 255, 255, 0.08);
            border-radius: 14px;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            text-align: center;
        }

        .checkbox-item:hover {
            border-color: rgba(227, 143, 47, 0.4);
            background: rgba(227, 143, 47, 0.06);
            transform: translateY(-2px);
        }

        .checkbox-item.checked {
            border-color: var(--orange);
            background: rgba(227, 143, 47, 0.12);
            box-shadow: 0 0 20px rgba(227, 143, 47, 0.15), inset 0 0 20px rgba(227, 143, 47, 0.05);
        }

        .checkbox-item input[type="checkbox"] {
            display: none;
        }

        .checkbox-icon {
            position: absolute;
            top: 6px;
            right: 6px;
            width: 18px;
            height: 18px;
            border: 1.5px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 10px;
            color: white;
        }

        .checkbox-item.checked .checkbox-icon {
            background: var(--orange);
            border-color: var(--orange);
            box-shadow: 0 0 8px rgba(227, 143, 47, 0.4);
        }

        .checkbox-svg-icon {
            width: 32px;
            height: 32px;
            transition: all 0.35s ease;
            margin-bottom: 0.15rem;
            /* Invert black SVG to white, then reduce opacity */
            filter: invert(1) opacity(0.45);
        }

        .checkbox-item.checked .checkbox-svg-icon {
            /* Invert to white, then colorize to orange (#E38F2F) */
            filter: invert(65%) sepia(80%) saturate(500%) hue-rotate(350deg) brightness(95%) drop-shadow(0 0 6px rgba(227, 143, 47, 0.35));
        }

        .checkbox-item:hover .checkbox-svg-icon {
            filter: invert(65%) sepia(60%) saturate(400%) hue-rotate(350deg) brightness(95%) opacity(0.8);
        }

        .checkbox-label {
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 400;
            letter-spacing: 0.02em;
            line-height: 1.2;
            transition: color 0.3s ease;
        }

        .checkbox-item.checked .checkbox-label {
            color: rgba(255, 255, 255, 0.9);
        }

        .checkbox-emoji {
            font-size: 1.1rem;
        }

        /* Occasion grid - single select cards */
        .occasion-grid {
            grid-template-columns: repeat(3, 1fr);
            width: 100%;
            max-width: 500px;
        }

        .step-content .occasion-grid {
            max-width: 500px;
        }

        /* Section divider */
        .form-section-title {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--orange);
            margin-bottom: 0.8rem;
            margin-top: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(227, 143, 47, 0.2);
        }

        /* ===== TIME SLOTS GRID (Availability System) ===== */
        .time-slots-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.6rem;
            margin-top: 0.5rem;
        }

        .time-slot-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 0.8rem 0.4rem;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.03);
            cursor: pointer;
            transition: all 0.2s ease;
            min-height: 56px;
            position: relative;
        }

        .time-slot-btn:hover:not(:disabled):not(.slot-full):not(.slot-blocked) {
            border-color: rgba(227, 143, 47, 0.4);
            background: rgba(227, 143, 47, 0.08);
            transform: translateY(-1px);
        }

        .time-slot-btn.selected {
            border-color: var(--orange);
            background: rgba(227, 143, 47, 0.15);
            box-shadow: 0 0 12px rgba(227, 143, 47, 0.2);
        }

        .slot-time {
            font-size: 0.95rem;
            font-weight: 600;
            color: #fff;
            line-height: 1;
        }

        .slot-indicator {
            font-size: 0.6rem;
            margin-top: 0.25rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            line-height: 1;
        }

        /* Available */
        .slot-available {
            border-color: rgba(46, 204, 113, 0.3);
        }
        .slot-available .slot-indicator {
            color: #2ecc71;
        }

        /* Limited */
        .slot-limited {
            border-color: rgba(243, 156, 18, 0.3);
            background: rgba(243, 156, 18, 0.05);
        }
        .slot-limited .slot-indicator {
            color: #f39c12;
        }

        /* Full */
        .slot-full {
            border-color: rgba(231, 76, 60, 0.2);
            background: rgba(231, 76, 60, 0.05);
            cursor: not-allowed;
            opacity: 0.6;
        }
        .slot-full .slot-time {
            color: rgba(255, 255, 255, 0.4);
        }
        .slot-full .slot-indicator {
            color: #e74c3c;
        }

        /* Blocked */
        .slot-blocked {
            border-color: rgba(127, 140, 141, 0.2);
            background: rgba(127, 140, 141, 0.05);
            cursor: not-allowed;
            opacity: 0.5;
        }
        .slot-blocked .slot-time {
            color: rgba(255, 255, 255, 0.3);
        }
        .slot-blocked .slot-indicator {
            color: #7f8c8d;
        }

        /* Loading spinner */
        .availability-loading {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            gap: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
        }

        .availability-spinner {
            width: 28px;
            height: 28px;
            border: 3px solid rgba(227, 143, 47, 0.2);
            border-top-color: var(--orange);
            border-radius: 50%;
            animation: spinAvailability 0.8s linear infinite;
        }

        @keyframes spinAvailability {
            to { transform: rotate(360deg); }
        }

        /* Date error / closed day */
        .slot-date-error {
            text-align: center;
            padding: 1.5rem 1rem;
            color: #e74c3c;
            font-size: 0.85rem;
            background: rgba(231, 76, 60, 0.08);
            border-radius: 10px;
            border: 1px solid rgba(231, 76, 60, 0.15);
        }

        .input-error {
            border-color: rgba(231, 76, 60, 0.5) !important;
        }

        /* Select date placeholder */
        .time-slots-placeholder {
            text-align: center;
            padding: 2rem 1rem;
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.85rem;
        }

        @media (max-width: 768px) {
            .reservation-form {
                padding: 2rem 1.5rem;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .checkbox-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 0.6rem;
            }

            .checkbox-svg-icon {
                width: 26px;
                height: 26px;
            }

            .checkbox-label {
                font-size: 0.72rem;
            }

            .checkbox-item {
                padding: 0.8rem 0.4rem 0.6rem;
                border-radius: 12px;
            }

            .occasion-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .occasion-grid .checkbox-item {
                padding: 0.9rem 0.3rem 0.7rem;
            }

            .occasion-grid .checkbox-label {
                font-size: 0.68rem;
            }

            .time-slots-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 0.5rem;
            }

            .time-slot-btn {
                padding: 0.7rem 0.3rem;
                min-height: 50px;
            }

            .slot-time {
                font-size: 0.85rem;
            }

            .slot-indicator {
                font-size: 0.55rem;
            }
        }

        /* RESERVATION - Small mobile */
        @media (max-width: 480px) {
            .reservation-section {
                padding: 3rem 0.5rem;
            }

            .reservation-form {
                padding: 1.2rem 0.8rem;
                border-radius: 14px;
                margin-top: 2rem;
            }

            .stepper {
                margin-bottom: 1.5rem;
                gap: 0;
            }

            .step-dot {
                width: 26px;
                height: 26px;
                font-size: 0.6rem;
            }

            .step-line {
                width: 14px;
            }

            .step-label {
                font-size: 0.55rem;
            }

            .step-title {
                font-size: 1rem;
                margin-bottom: 0.3rem;
            }

            .step-subtitle {
                font-size: 0.75rem;
            }

            .step-content {
                min-height: 120px;
            }

            .step-content,
            .step-content .form-group-res,
            .step-content .form-row {
                width: 100%;
                max-width: 100% !important;
            }

            .step-nav {
                max-width: 100% !important;
            }

            .step-content .checkbox-group-res,
            .step-content .checkbox-grid,
            .step-content .occasion-grid {
                width: 100%;
                max-width: 100% !important;
            }

            .form-input-res {
                padding: 0.8rem 0.9rem;
                font-size: 0.9rem;
            }

            .form-label-res {
                font-size: 0.8rem;
            }

            .checkbox-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.5rem;
            }

            .checkbox-item {
                padding: 0.7rem 0.3rem 0.5rem;
                border-radius: 10px;
            }

            .checkbox-svg-icon {
                width: 22px;
                height: 22px;
            }

            .checkbox-label {
                font-size: 0.65rem;
            }

            .checkbox-icon {
                width: 15px;
                height: 15px;
                top: 4px;
                right: 4px;
                font-size: 8px;
            }

            .occasion-grid {
                grid-template-columns: repeat(2, 1fr);
                max-width: 100%;
            }

            .occasion-grid .checkbox-item {
                padding: 0.7rem 0.2rem 0.5rem;
            }

            .occasion-grid .checkbox-label {
                font-size: 0.62rem;
            }

            .recap-card {
                max-width: 100%;
                padding: 1rem;
                border-radius: 12px;
            }

            .recap-row {
                font-size: 0.85rem;
            }

            .recap-value {
                max-width: 55%;
                word-break: break-word;
            }

            .step-nav {
                gap: 0.6rem;
                margin-top: 1.5rem;
            }

            .step-btn {
                padding: 0.8rem 0.8rem;
                font-size: 0.8rem;
                border-radius: 10px;
            }

            .form-section-title {
                font-size: 0.7rem;
                margin-top: 1rem;
            }

            .time-slots-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.4rem;
            }

            .time-slot-btn {
                padding: 0.6rem 0.2rem;
                min-height: 46px;
                border-radius: 8px;
            }

            .slot-time {
                font-size: 0.8rem;
            }

            .slot-indicator {
                font-size: 0.5rem;
            }

            .availability-loading {
                padding: 1.5rem;
                font-size: 0.8rem;
            }

            .slot-date-error {
                padding: 1rem 0.8rem;
                font-size: 0.8rem;
            }
        }

        /* FLOATING RESERVATION CTA */
        .floating-cta {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 90;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.9rem 1.6rem;
            background: linear-gradient(135deg, #e38f2f, #c77920);
            color: #000;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            box-shadow: 0 8px 32px rgba(227, 143, 47, 0.4), 0 2px 8px rgba(0,0,0,0.3);
            cursor: pointer;
            transform: translateY(100px);
            opacity: 0;
            transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease, box-shadow 0.3s ease, scale 0.2s ease;
            -webkit-user-select: none;
            user-select: none;
            -webkit-tap-highlight-color: transparent;
        }
        .floating-cta.visible {
            transform: translateY(0);
            opacity: 1;
        }
        .floating-cta:hover {
            box-shadow: 0 12px 40px rgba(227, 143, 47, 0.55), 0 4px 12px rgba(0,0,0,0.4);
            scale: 1.05;
        }
        .floating-cta:active {
            scale: 0.97;
        }
        .floating-cta-icon {
            font-size: 1.2rem;
            line-height: 1;
        }
        .floating-cta-text-short { display: none; }
        .floating-cta-pulse {
            position: absolute;
            inset: -3px;
            border-radius: 50px;
            border: 2px solid rgba(227, 143, 47, 0.5);
            animation: floatingPulse 2s ease-in-out infinite;
            pointer-events: none;
        }
        @keyframes floatingPulse {
            0%, 100% { opacity: 0; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.04); }
        }

        @media (max-width: 768px) {
            .floating-cta {
                bottom: 1.5rem;
                left: 50%;
                right: auto;
                transform: translateX(-50%) translateY(100px);
                padding: 0.75rem 1.5rem;
                font-size: 0.9rem;
            }
            .floating-cta.visible {
                transform: translateX(-50%) translateY(0);
            }
            .floating-cta-text-long { display: none; }
            .floating-cta-text-short { display: inline; }
        }

/* ========================================
   OVERRIDES - Section visibility & Footer
   ======================================== */
.footer-content > .footer-section:last-child { display: none !important; }
.footer-section a[href^="https://www.google.com/maps"] { display: none !important; }
.footer-section a[href^="mailto:"] { display: none !important; }
.footer-section a[href^="tel:"] { display: none !important; }
.footer-social-icons { display: none !important; }
.instagram-section { display: none !important; }
.reservation-form { display: none !important; }
.reservation-cta-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 3rem;
    background: var(--orange);
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}
.reservation-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(227,143,47,0.4);
}
.event-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    animation: evtFadeIn 0.25s ease;
}

@keyframes evtFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.event-modal {
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    max-width: 750px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: evtSlideUp 0.3s ease;
}

@keyframes evtSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.event-modal::-webkit-scrollbar { width: 5px; }
.event-modal::-webkit-scrollbar-track { background: transparent; }
.event-modal::-webkit-scrollbar-thumb { background: rgba(227, 143, 47, 0.25); border-radius: 3px; }

.event-modal-close {
    position: sticky;
    top: 0.8rem;
    float: right;
    margin-right: 0.8rem;
    margin-top: 0.8rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.event-modal-close:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #000;
}

.event-modal-header {
    padding: 1.8rem 2rem 1rem;
}

.event-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--orange);
    margin: 0 0 0.6rem;
}

.event-modal-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.event-modal-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0.6rem;
    gap: 0.6rem;
    padding: 0.8rem 2rem 2rem;
}

.event-modal-thumb {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    position: relative;
}

.event-modal-thumb img,
.event-modal-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.event-modal-thumb:hover img,
.event-modal-thumb:hover video {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.event-thumb-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    pointer-events: none;
}

/* EVENT LIGHTBOX (plein écran) */
.event-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: evtFadeIn 0.2s ease;
    padding: 1rem;
}

.event-lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.event-lightbox-close:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #000;
}

.event-lightbox-media {
    max-width: 90vw;
    max-height: 85vh;
/* ========================================
   RITMO Y FUSIÓN - STYLES PRINCIPAUX
   ======================================== */

:root {
    --orange: #e38f2f;
    --orange-dark: #c77920;
    --orange-hover: #f5a03f;
    --turquoise: #2a5d5d;
    --turquoise-light: #3a7d7d;
    --bordeaux: #6b3434;
    --black: #0a0a0a;
    --gray: #1a1a1a;
    --gray-light: #242424;
    --white: #ffffff;
    --gold: #d4af37;
    --banner-bg-start: #2a5d5d;
    --banner-bg-end: #3a7d7d;
}

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

html {
    overflow-x: hidden;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--black);
    color: #fff;
    overflow-x: hidden;
    max-width: 100vw;
}

/* LOADER */
.loader {
    position: fixed;
    inset: 0;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease;
}

.loader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--orange);
    display: flex;
    gap: 0.5rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-r {
    display: inline-block;
    transform: rotate(180deg);
    color: var(--turquoise);
}

.loader-f {
    color: var(--turquoise);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

/* EVENT BANNER */
.event-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(90deg, rgba(227, 143, 47, 0.15) 0%, rgba(227, 143, 47, 0.08) 100%);
    border-bottom: 1px solid rgba(227, 143, 47, 0.3);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1rem;
    transition: background 0.2s;
}
.event-banner:hover {
    background: linear-gradient(90deg, rgba(227, 143, 47, 0.25) 0%, rgba(227, 143, 47, 0.15) 100%);
}
.event-banner-content {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: #fff;
}
.event-banner-icon {
    font-size: 1rem;
}
.event-banner-text {
    color: rgba(255, 255, 255, 0.9);
}
.event-banner-text strong {
    color: #e38f2f;
}
.event-banner-cta {
    color: #e38f2f;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.2s;
}
.event-banner:hover .event-banner-cta {
    transform: translateX(3px);
}
.event-banner-close {
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.3rem;
    line-height: 1;
    transition: color 0.2s;
}
.event-banner-close:hover {
    color: rgba(255, 255, 255, 0.8);
}
.event-banner-text {
    animation: bannerFadeIn 0.4s ease;
}
@keyframes bannerFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}
.event-banner-dots {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 0.3rem;
}
.event-banner-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s;
}
.event-banner-dot.active {
    background: #e38f2f;
    transform: scale(1.3);
}

/* Quand la bannière est présente, le header est décalé via JS (--banner-height) */

@media (max-width: 480px) {
    .event-banner {
        padding: 0.45rem 2rem 0.45rem 0.8rem;
    }
    .event-banner-content {
        font-size: 0.75rem;
        gap: 0.4rem;
    }
    .event-banner-icon {
        font-size: 0.85rem;
    }
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(227, 143, 47, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    border-bottom-color: rgba(227, 143, 47, 0.2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-rf {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    display: flex;
    gap: 0.2rem;
    line-height: 1;
}

.logo-r {
    display: inline-block;
    transform: scaleX(-1) scaleY(-1);
    color: var(--turquoise);
}

.logo-f {
    color: var(--turquoise);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.logo-sub {
    font-size: 0.55rem;
    color: var(--orange);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-link {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--orange);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--orange);
}

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

.lang-switcher {
    display: flex;
    gap: 0.5rem;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
}

.lang-btn {
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.3rem 0.5rem;
}

.lang-btn.active {
    color: var(--orange);
    font-weight: 700;
}

.lang-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--orange);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    height: 100dvh;
    background: var(--black);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-header {
    padding: 1.2rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.mobile-menu-close {
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover {
    color: var(--orange);
}

.mobile-menu-content {
    padding: 1.2rem 2rem 2rem;
    overflow-y: auto;
    flex: 1;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav-link {
    display: block;
    padding: 0.7rem 0;
    color: #fff;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
    transition: color 0.3s ease;
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.mobile-nav-link:hover {
    color: var(--orange);
}

.mobile-lang-switcher {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.35;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(227, 143, 47, 0.2), transparent 60%),
                radial-gradient(circle at 70% 60%, rgba(42, 93, 93, 0.2), transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 8rem 2rem 2rem;
    max-width: 1200px;
    animation: fadeInUp 1s ease-out;
}

/* Logo Hero Flottant */
.hero-floating-logo {
    margin-bottom: 2rem;
    animation: heroLogoFloat var(--float-duration, 3s) ease-in-out infinite;
}

.hero-floating-logo img {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}

@keyframes heroLogoFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-15px) translateX(var(--offset-x, 20px));
    }
    50% {
        transform: translateY(0) translateX(0);
    }
    75% {
        transform: translateY(var(--offset-y, 10px)) translateX(calc(var(--offset-x, 20px) * -1));
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo-big {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.hero-logo-r {
    display: inline-block;
    transform: scaleX(-1) scaleY(-1);
    color: var(--turquoise);
    animation: floatR 3s ease-in-out infinite;
}

.hero-logo-f {
    color: var(--turquoise);
    animation: floatF 3s ease-in-out infinite 0.5s;
}

@keyframes floatR {
    0%, 100% { transform: translateY(0) scaleX(-1) scaleY(-1); }
    50% { transform: translateY(-10px) scaleX(-1) scaleY(-1); }
}

@keyframes floatF {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 10vw, 8rem);
    font-weight: 700;
    line-height: 0.95;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    white-space: pre-line;
}

.hero-description {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.hero-cta {
    display: inline-block;
    border: 2px solid var(--orange);
    color: var(--orange);
    padding: 1rem 3rem;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--orange);
    transition: left 0.3s ease;
    z-index: -1;
}

.hero-cta:hover::before {
    left: 0;
}

.hero-cta:hover {
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(227, 143, 47, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* STATS */
.stats-section {
    background: var(--gray);
    padding: 3rem 2rem;
    border-top: 1px solid rgba(227, 143, 47, 0.2);
    border-bottom: 1px solid rgba(227, 143, 47, 0.2);
}

.stats-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 3rem;
    gap: 3rem;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(255, 255, 255, 0.1);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--orange);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

/* BANNER */
.banner {
    background: linear-gradient(135deg, var(--banner-bg-start), var(--banner-bg-end));
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(227, 143, 47, 0.1);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

.banner-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--orange);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.banner-price {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.banner-link {
    color: var(--orange);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--orange);
    padding-bottom: 2px;
}

.banner-link:hover {
    color: #fff;
    border-bottom-color: #fff;
}

/* GRID PHOTOS */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #000;
}

.photo-card {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.3s ease;
    filter: grayscale(30%);
}

.photo-card:hover img {
    transform: scale(1.15);
    filter: grayscale(0%);
}

.photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-card:hover .photo-overlay {
    opacity: 1;
}

.photo-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.photo-card:hover .photo-title {
    transform: translateY(0);
}

/* DOME GALLERY */
.dome-gallery-wrapper {
    width: 100%;
    height: 80vh;
    min-height: 500px;
    max-height: 800px;
    background: var(--black);
    position: relative;
    overflow: hidden;
}
@media (max-width: 768px) {
    .dome-gallery-wrapper {
        height: 60vh;
        min-height: 400px;
        max-height: 600px;
    }
}
@media (max-width: 480px) {
    .dome-gallery-wrapper {
        height: 50vh;
        min-height: 350px;
        max-height: 500px;
    }
}

.sphere-root {
    position: relative;
    width: 100%;
    height: 100%;
    --radius: 520px;
    --viewer-pad: 72px;
    --circ: calc(var(--radius) * 3.14);
    --rot-y: calc((360deg / var(--segments-x)) / 2);
    --rot-x: calc((360deg / var(--segments-y)) / 2);
    --item-width: calc(var(--circ) / var(--segments-x));
    --item-height: calc(var(--circ) / var(--segments-y));
}
.sphere-root * {
    box-sizing: border-box;
}
.sphere,
.item,
.item__image {
    transform-style: preserve-3d;
}
main.sphere-main {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    background: transparent;
}
.stage {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    perspective: calc(var(--radius) * 2);
    perspective-origin: 50% 50%;
    contain: layout paint size;
}
.sphere {
    transform: translateZ(calc(var(--radius) * -1));
    will-change: transform;
}
.sphere-root .overlay,
.sphere-root .overlay--blur {
    position: absolute;
    inset: 0;
    margin: auto;
    z-index: 3;
    pointer-events: none;
}
.sphere-root .overlay {
    background-image: radial-gradient(rgba(235, 235, 235, 0) 65%, var(--overlay-blur-color, #0a0a0a) 100%);
}
.sphere-root .overlay--blur {
    -webkit-mask-image: radial-gradient(rgba(235, 235, 235, 0) 70%, var(--overlay-blur-color, #0a0a0a) 90%);
    mask-image: radial-gradient(rgba(235, 235, 235, 0) 70%, var(--overlay-blur-color, #0a0a0a) 90%);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}
.item {
    width: calc(var(--item-width) * var(--item-size-x));
    height: calc(var(--item-height) * var(--item-size-y));
    position: absolute;
    top: -999px;
    bottom: -999px;
    left: -999px;
    right: -999px;
    margin: auto;
    transform-origin: 50% 50%;
    backface-visibility: hidden;
    will-change: transform;
    contain: layout style paint;
    transform: rotateY(calc(var(--rot-y) * (var(--offset-x) + ((var(--item-size-x) - 1) / 2)) + var(--rot-y-delta, 0deg)))
        rotateX(calc(var(--rot-x) * (var(--offset-y) - ((var(--item-size-y) - 1) / 2)) + var(--rot-x-delta, 0deg)))
        translateZ(var(--radius));
}
.item__image {
    position: absolute;
    display: block;
    inset: 10px;
    border-radius: var(--tile-radius, 12px);
    background: transparent;
    min-width: 48px;
    min-height: 48px;
    overflow: hidden;
    backface-visibility: hidden;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    pointer-events: auto;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.item__image:focus {
    outline: none;
}
.item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    backface-visibility: hidden;
    filter: var(--image-filter, none);
}
.viewer {
    position: absolute;
    inset: 0;
    z-index: 20;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--viewer-pad);
}
.viewer .frame {
    height: 100%;
    aspect-ratio: 1;
    border-radius: var(--enlarge-radius, 32px);
    display: flex;
}
@media (max-aspect-ratio: 1/1) {
    .viewer .frame {
        height: auto;
        width: 100%;
    }
}
.viewer .scrim {
    position: absolute;
    inset: 0;
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    opacity: 0;
    transition: opacity 500ms ease;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}
.sphere-root[data-enlarging='true'] .viewer .scrim {
    opacity: 1;
    pointer-events: all;
}
.viewer .enlarge {
    position: absolute;
    z-index: 30;
    border-radius: var(--enlarge-radius, 32px);
    overflow: hidden;
    transition: transform 500ms ease, opacity 500ms ease;
    transform-origin: top left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.viewer .enlarge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: var(--image-filter, none);
}
.sphere-root .enlarge-closing img {
    filter: var(--image-filter, none);
}
.edge-fade {
    position: absolute;
    left: 0;
    right: 0;
    height: 120px;
    z-index: 5;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent, var(--overlay-blur-color, #0a0a0a));
}
.edge-fade--top {
    top: 0;
    transform: rotate(180deg);
}
.edge-fade--bottom {
    bottom: 0;
}
body.dg-scroll-lock {
    overflow: hidden !important;
}

/* GOOEY NAV */
:root {
    --linear-ease: linear(0, 0.068, 0.19 2.7%, 0.804 8.1%, 1.037, 1.199 13.2%, 1.245, 1.27 15.8%, 1.274, 1.272 17.4%, 1.249 19.1%, 0.996 28%, 0.949, 0.928 33.3%, 0.926, 0.933 36.8%, 1.001 45.6%, 1.013, 1.019 50.8%, 1.018 54.4%, 1 63.1%, 0.995 68%, 1.001 85%, 1);
    --gooey-color-1: #e38f2f;
    --gooey-color-2: #f0a848;
    --gooey-color-3: #d47820;
    --gooey-color-4: #2a5d5d;
}
.gooey-container { position: relative; }
.gooey-container nav { display: flex; position: relative; transform: translate3d(0, 0, 0.01px); }
.gooey-container nav ul { display: flex; gap: 0.5rem; list-style: none; padding: 0; margin: 0; position: relative; z-index: 3; }
.gooey-container nav ul li { border-radius: 100vw; position: relative; cursor: pointer; transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 0 0.5px 1.5px transparent; }
.gooey-container nav ul li a { display: inline-block; padding: 0.6em 1em; text-decoration: none; white-space: nowrap; font-weight: 600; text-transform: uppercase; cursor: pointer; }
.gooey-container nav ul li::after { content: ''; position: absolute; inset: 0; border-radius: 100vw; opacity: 0; transform: scale(0); transition: all 0.3s ease; z-index: -1; }
.gooey-container nav ul li.active::after { opacity: 1; transform: scale(1); }
.gooey-container .gooey-effect { position: absolute; left: 0; top: 0; width: 0; height: 0; opacity: 1; pointer-events: none; display: grid; place-items: center; z-index: 1; }
.gooey-container .gooey-effect.gooey-text { transition: color 0.3s ease; }
.gooey-container .gooey-effect.gooey-filter { filter: blur(7px) contrast(100) blur(0); mix-blend-mode: lighten; }
.gooey-container .gooey-effect.gooey-filter::before { content: ''; position: absolute; inset: -75px; z-index: -2; background: black; }
.gooey-container .gooey-effect.gooey-filter::after { content: ''; position: absolute; inset: 0; border-radius: 100vw; transform: scale(0); opacity: 0; z-index: -1; }
.gooey-container .gooey-effect.active::after { animation: gooeyPill 0.3s ease both; }
@keyframes gooeyPill { to { transform: scale(1); opacity: 1; } }
.gooey-particle, .gooey-point { display: block; opacity: 0; width: 20px; height: 20px; border-radius: 100%; transform-origin: center; }
.gooey-particle { position: absolute; top: calc(50% - 8px); left: calc(50% - 8px); animation: gooeyParticle calc(var(--time)) ease 1 -350ms; }
.gooey-point { background: var(--color); opacity: 1; animation: gooeyPoint calc(var(--time)) ease 1 -350ms; }
@keyframes gooeyParticle {
    0% { transform: rotate(0deg) translate(var(--start-x), var(--start-y)); opacity: 1; animation-timing-function: cubic-bezier(0.55, 0, 1, 0.45); }
    70% { transform: rotate(calc(var(--rotate) * 0.5)) translate(calc(var(--end-x) * 1.2), calc(var(--end-y) * 1.2)); opacity: 1; animation-timing-function: ease; }
    85% { transform: rotate(calc(var(--rotate) * 0.66)) translate(var(--end-x), var(--end-y)); opacity: 1; }
    100% { transform: rotate(calc(var(--rotate) * 1.2)) translate(calc(var(--end-x) * 0.5), calc(var(--end-y) * 0.5)); opacity: 1; }
}
@keyframes gooeyPoint {
    0% { transform: scale(0); opacity: 0; animation-timing-function: cubic-bezier(0.55, 0, 1, 0.45); }
    25% { transform: scale(calc(var(--scale) * 0.25)); }
    38% { opacity: 1; }
    65% { transform: scale(var(--scale)); opacity: 1; animation-timing-function: ease; }
    85% { transform: scale(var(--scale)); opacity: 1; }
    100% { transform: scale(0); opacity: 0; }
}
.gooey-tabs .gooey-container nav ul li { border: 2px solid var(--orange); color: var(--white); }
.gooey-tabs .gooey-container nav ul li a { font-family: 'Playfair Display', serif; font-size: 1.1rem; letter-spacing: 0.08em; color: inherit; padding: 0.85rem 2.5rem; }
.gooey-tabs .gooey-container nav ul li.active { color: var(--black); }
.gooey-tabs .gooey-container nav ul li::after { background: var(--orange); }
.gooey-tabs .gooey-container .gooey-effect.gooey-filter::after { background: var(--orange); }
.gooey-tabs .gooey-container .gooey-effect.gooey-text { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.1rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.gooey-tabs .gooey-container .gooey-effect.gooey-text.active { color: var(--black); }
.gooey-nav .gooey-container nav ul { gap: 0.4rem; }
.gooey-nav .gooey-container nav ul li { color: rgba(255, 255, 255, 0.7); }
.gooey-nav .gooey-container nav ul li a { font-size: 0.65rem; letter-spacing: 0.12em; color: inherit; padding: 0.4em 0.7em; }
.gooey-nav .gooey-container nav ul li.active { color: var(--black); }
.gooey-nav .gooey-container nav ul li::after { background: var(--orange); }
.gooey-nav .gooey-container .gooey-effect.gooey-filter::after { background: var(--orange); }
.gooey-nav .gooey-container .gooey-effect.gooey-text { color: rgba(255, 255, 255, 0.7); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }
.gooey-nav .gooey-container .gooey-effect.gooey-text.active { color: var(--black); }
.gooey-nav .gooey-container { overflow: hidden; padding: 4px 0; }
.gooey-nav .gooey-container .gooey-effect.gooey-filter { overflow: hidden; border-radius: 100vw; }
.gooey-nav .gooey-container .gooey-effect.gooey-filter::before { inset: -30px; }
/* Gooey categories */
.gooey-categories { display: flex; justify-content: center; margin-bottom: 1.5rem; padding: 0 0.5rem; }
.gooey-categories .gooey-container { overflow: hidden; padding: 4px 0; }
.gooey-categories .gooey-container nav ul { flex-wrap: wrap; justify-content: center; gap: 0.4rem; }
.gooey-categories .gooey-container nav ul li { border: 1.5px solid rgba(227, 143, 47, 0.3); color: #ccc; }
.gooey-categories .gooey-container nav ul li a { font-family: 'Lato', sans-serif; font-size: 0.82rem; letter-spacing: 0.05em; color: inherit; padding: 0.45rem 1rem; }
.gooey-categories .gooey-container nav ul li.active { color: var(--black); border-color: var(--orange); }
.gooey-categories .gooey-container nav ul li::after { background: var(--orange); }
.gooey-categories .gooey-container .gooey-effect.gooey-filter { overflow: hidden; border-radius: 100vw; }
.gooey-categories .gooey-container .gooey-effect.gooey-filter::before { inset: -40px; }
.gooey-categories .gooey-container .gooey-effect.gooey-filter::after { background: var(--orange); }
.gooey-categories .gooey-container .gooey-effect.gooey-text { color: #ccc; font-family: 'Lato', sans-serif; font-size: 0.82rem; letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600; }
.gooey-categories .gooey-container .gooey-effect.gooey-text.active { color: var(--black); }
/* Mobile: disable gooey overlays, keep pill transition only */
@media (max-width: 768px) {
    .gooey-container .gooey-effect.gooey-filter,
    .gooey-container .gooey-effect.gooey-text { display: none !important; }
    .gooey-categories .gooey-container nav ul { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px; }
    .gooey-categories .gooey-container nav ul::-webkit-scrollbar { display: none; }
    .gooey-categories .gooey-container nav ul li { flex-shrink: 0; }
    .gooey-categories .gooey-container nav ul li a { padding: 0.35rem 0.8rem; font-size: 0.73rem; }
}
@media (max-width: 480px) {
    .gooey-categories .gooey-container nav ul li a { padding: 0.3rem 0.65rem; font-size: 0.68rem; }
}

/* SECTION */
.section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow-x: hidden;
}

.section-parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

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

.section-label {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1rem;
    border: 1px solid rgba(227, 143, 47, 0.4);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.section-label:hover {
    background: rgba(227, 143, 47, 0.1);
    border-color: var(--orange);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--orange), transparent);
    margin: 1.5rem auto;
}

/* MENUS */
.menus-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 3rem;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.menu-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.menu-card:hover {
    border-color: rgba(227, 143, 47, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.menu-header {
    background: linear-gradient(135deg, rgba(227, 143, 47, 0.15), rgba(42, 93, 93, 0.08));
    padding: 3rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(227, 143, 47, 0.2);
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
}

.menu-header:hover {
    background: linear-gradient(135deg, rgba(227, 143, 47, 0.2), rgba(42, 93, 93, 0.12));
}

.menu-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1rem;
    padding-right: 5rem;
}

.menu-price {
    font-size: 2.8rem;
    font-weight: 700;
}

.menu-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: arrowPulse 2.5s ease-in-out infinite;
    box-shadow: 
        0 4px 16px rgba(227, 143, 47, 0.4),
        0 0 0 0 rgba(227, 143, 47, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

@keyframes arrowPulse {
    0%, 100% {
        box-shadow: 
            0 4px 16px rgba(227, 143, 47, 0.4),
            0 0 0 0 rgba(227, 143, 47, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
        transform: translateY(-50%) scale(1);
    }
    50% {
        box-shadow: 
            0 6px 20px rgba(227, 143, 47, 0.5),
            0 0 25px 8px rgba(227, 143, 47, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
        transform: translateY(-50%) scale(1.08);
    }
}

.menu-arrow:hover {
    background: linear-gradient(135deg, #f5a03f, var(--orange));
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 8px 24px rgba(227, 143, 47, 0.6),
        0 0 35px 12px rgba(227, 143, 47, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.15);
    animation: none;
}

.menu-card.collapsed .menu-arrow {
    transform: translateY(-50%) rotate(-90deg);
}

.menu-card.collapsed .menu-arrow:hover {
    transform: translateY(-50%) rotate(-90deg) scale(1.15);
}

.menu-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-card.expanded .menu-content {
    max-height: 5000px;
    padding: 3rem 2rem;
}

.menu-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.menu-dish {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.menu-dish:hover {
    background: rgba(227, 143, 47, 0.08);
    border-color: rgba(227, 143, 47, 0.3);
    transform: translateY(-4px);
}

.menu-dish-image {
    width: 100px;
    height: 100px;
    min-width: 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(227, 143, 47, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 2px solid rgba(227, 143, 47, 0.2);
    transition: transform 0.3s ease;
    position: relative;
    cursor: pointer;
}

.menu-dish-image::before {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.menu-dish-image:hover::before {
    opacity: 1;
}

.menu-dish:hover .menu-dish-image {
    transform: scale(1.05) rotate(2deg);
}

.menu-dish-info {
    flex: 1;
}

.menu-dish-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--orange);
}

.menu-dish-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ALLERGENS */
.allergens-container {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.8rem;
    flex-wrap: wrap;
}

.allergen-icon {
    position: relative;
    font-size: 1.3rem;
    cursor: help;
    transition: transform 0.2s ease;
    padding: 0.3rem;
    border-radius: 50%;
    background: rgba(227, 143, 47, 0.1);
    border: 1px solid rgba(227, 143, 47, 0.2);
}

.allergen-icon:hover {
    transform: scale(1.2);
    background: rgba(227, 143, 47, 0.2);
}

.allergen-tooltip {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.95);
    color: var(--orange);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 100;
    border: 1px solid rgba(227, 143, 47, 0.3);
}

.allergen-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.95);
}

.allergen-icon:hover .allergen-tooltip {
    opacity: 1;
}

/* PHOTO MODAL */
.photo-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.photo-modal.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.photo-modal-content {
    position: relative;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    animation: zoomIn 0.3s ease;
    display: flex;
    flex-direction: column;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.photo-modal-image {
    max-width: 100%;
    max-height: 65vh;
    object-fit: contain;
    border: 3px solid var(--orange);
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.photo-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: var(--orange);
    color: #000;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 700;
}

.photo-modal-close:hover {
    background: var(--orange-dark);
    transform: rotate(90deg) scale(1.1);
}

/* PHOTO MODAL DETAILS */
.photo-modal-details {
    background: rgba(15, 15, 15, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(227, 143, 47, 0.2);
    border-radius: 0 0 8px 8px;
    padding: 1.2rem 1.5rem;
    max-width: 100%;
}

.photo-modal-details-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
}

.photo-modal-item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--orange);
    margin: 0;
}

.photo-modal-item-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--orange);
    white-space: nowrap;
}

.photo-modal-item-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0.5rem 0 0;
}

.photo-modal-allergens {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.7rem;
}

.photo-modal-allergen {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.06);
    padding: 3px 8px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

/* ITEMS GRID (dishes/cocktails) - Horizontal card style */
.items-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.item-card {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.item-card-clickable {
    cursor: pointer;
}

.item-card-clickable:hover {
    border-color: rgba(227, 143, 47, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.item-card:hover {
    border-color: rgba(227, 143, 47, 0.3);
    transform: translateY(-2px);
}

.item-image {
    width: 120px;
    min-width: 120px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(227, 143, 47, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.item-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, rgba(0,0,0,0.3));
}

.zoom-icon {
    display: none;
}

.item-content {
    flex: 1;
    padding: 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.item-description {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.item-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--orange);
    white-space: nowrap;
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.item-dots {
    display: none;
}

/* Category blocks and titles inside items section */
.items-category-block {
    margin-bottom: 2.5rem;
}

.items-category-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--orange);
    text-align: center;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ABOUT SECTION */
.about-section {
    background: var(--gray);
    padding: 6rem 2rem;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
}

/* REVIEWS CAROUSEL */
.reviews-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.reviews-track-wrapper {
    overflow: hidden;
    border-radius: 8px;
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
    touch-action: pan-y;
}

.reviews-track-wrapper:active {
    cursor: grabbing;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.reviews-track.dragging {
    transition: none;
}

.review-slide {
    flex: 0 0 33.333%;
    padding: 0 0.75rem;
    box-sizing: border-box;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    border-color: rgba(227, 143, 47, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.review-stars {
    color: var(--orange);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.review-author {
    font-weight: 700;
    color: var(--orange);
    font-size: 0.9rem;
}

.reviews-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 143, 47, 0.3);
}

.reviews-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(227, 143, 47, 0.5);
}

.reviews-arrow.prev { left: 0; }
.reviews-arrow.next { right: 0; }

.reviews-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
}

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

.reviews-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.reviews-dot.active {
    background: var(--orange);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(227, 143, 47, 0.5);
}

.reviews-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.4);
}

/* EVENTS */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 1.2rem;
    gap: 1.2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.event-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-card:hover {
    border-color: rgba(227, 143, 47, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.event-card-cover {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: rgba(0,0,0,0.3);
}

.event-card-cover img,
.event-card-cover video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-card:hover .event-card-cover img,
.event-card:hover .event-card-cover video {
    transform: scale(1.06);
}

.event-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: rgba(227, 143, 47, 0.08);
}

.event-card-count {
    position: absolute;
    bottom: 6px;
    right: 6px;
    background: rgba(0, 0, 0, 0.65);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    color: #fff;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
}

.event-card-info {
    padding: 0.8rem 1rem 1rem;
}

.event-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--orange);
    margin: 0 0 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-card-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* EVENT MODAL */
.event-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    animation: evtFadeIn 0.25s ease;
}

@keyframes evtFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.event-modal {
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    max-width: 750px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: evtSlideUp 0.3s ease;
}

@keyframes evtSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.event-modal::-webkit-scrollbar { width: 5px; }
.event-modal::-webkit-scrollbar-track { background: transparent; }
.event-modal::-webkit-scrollbar-thumb { background: rgba(227, 143, 47, 0.25); border-radius: 3px; }

.event-modal-close {
    position: sticky;
    top: 0.8rem;
    float: right;
    margin-right: 0.8rem;
    margin-top: 0.8rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.event-modal-close:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #000;
}

.event-modal-header {
    padding: 1.8rem 2rem 1rem;
}

.event-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--orange);
    margin: 0 0 0.6rem;
}

.event-modal-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.event-modal-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0.6rem;
    gap: 0.6rem;
    padding: 0.8rem 2rem 2rem;
}

.event-modal-thumb {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    position: relative;
}

.event-modal-thumb img,
.event-modal-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.event-modal-thumb:hover img,
.event-modal-thumb:hover video {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.event-thumb-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    pointer-events: none;
}

/* EVENT LIGHTBOX (plein écran) */
.event-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: evtFadeIn 0.2s ease;
    padding: 1rem;
}

.event-lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.event-lightbox-close:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #000;
}

.event-lightbox-media {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 1rem;
    gap: 1rem;
}

.gallery-item {
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 143, 47, 0.9);
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* INSTAGRAM */
.instagram-section {
    background: var(--black);
    padding: 6rem 2rem;
    border-top: 1px solid rgba(227, 143, 47, 0.2);
}

.instagram-header {
    text-align: center;
    margin-bottom: 3rem;
}

.instagram-handle {
    font-size: 1.5rem;
    color: var(--orange);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.instagram-handle::before {
    content: '📸';
    font-size: 1.8rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 1rem;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.instagram-item {
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    border: 2px solid rgba(227, 143, 47, 0.1);
    transition: all 0.3s ease;
}

.instagram-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(227, 143, 47, 0.8), rgba(42, 93, 93, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-item:hover {
    border-color: var(--orange);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(227, 143, 47, 0.3);
}

.instagram-item:hover::before {
    opacity: 1;
}

.instagram-item::after {
    content: '❤️';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
    z-index: 2;
}

.instagram-item:hover::after {
    opacity: 1;
}

.instagram-cta {
    text-align: center;
    margin-top: 3rem;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(227, 143, 47, 0.3);
}

.instagram-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(227, 143, 47, 0.5);
}

/* FOOTER */
.footer {
    background: #000;
    border-top: 1px solid rgba(227, 143, 47, 0.2);
    padding: 4rem 2rem 2rem;
    font-size: 0.8rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 2rem;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--orange);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    min-height: 48px;
    line-height: 48px;
}

.footer-link:hover {
    color: var(--orange);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.85);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-gap: 2rem;
        gap: 2rem;
    }

    .events-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 1rem;
        gap: 1rem;
    }

    .event-card-cover {
        height: 130px;
    }

    .event-modal-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .header-content {
        padding: 1rem;
    }

    .logo-rf {
        font-size: 2rem;
    }

    .logo-title {
        font-size: 1rem;
    }

    .logo-sub {
        font-size: 0.45rem;
    }

    .lang-switcher {
        padding-left: 1rem;
        gap: 0.3rem;
    }

    .hero-content {
        padding: 5rem 1.5rem 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        grid-gap: 2rem;
        gap: 2rem;
    }

    .stat-item::after {
        display: none;
    }

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

    .section#menus {
        padding: 4rem 1rem;
    }

    .menu-header {
        padding: 1.5rem 1rem;
    }

    .menu-arrow {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        right: 0.75rem;
    }

    .menu-name {
        font-size: 1.4rem;
        padding-right: 3rem;
    }

    .menu-price {
        font-size: 1.8rem;
    }

    .menu-content {
        padding: 0 0.75rem;
    }

    .menu-card.expanded .menu-content {
        padding: 1.5rem 0.75rem;
    }

    .menu-dish {
        flex-direction: row;
        padding: 1rem;
        gap: 1rem;
    }

    .menu-dish-image {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }

    .menu-dish-name {
        font-size: 1.1rem;
    }

    .menu-dish-description {
        font-size: 0.8rem;
    }

    .items-grid {
        gap: 0.8rem;
    }

    .item-card {
        border-radius: 10px;
    }

    .item-image {
        width: 110px;
        min-width: 110px;
    }

    .item-content {
        padding: 0.8rem 1rem;
    }

    .item-name {
        font-size: 0.95rem;
    }

    .item-description {
        font-size: 0.78rem;
        -webkit-line-clamp: 2;
        margin-bottom: 0.4rem;
    }

    .item-price {
        font-size: 1rem;
    }

    .items-category-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .items-category-block {
        margin-bottom: 1.8rem;
    }

    .section#plats {
        padding: 3rem 0.5rem;
    }

    .review-slide {
        flex: 0 0 100%;
    }

    .reviews-carousel {
        padding: 0 2.5rem;
    }

    .reviews-arrow {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 0.8rem;
        gap: 0.8rem;
    }

    .event-card-cover {
        height: 110px;
    }

    .event-card-info {
        padding: 0.6rem 0.7rem 0.7rem;
    }

    .event-card-title {
        font-size: 0.85rem;
    }

    .event-card-desc {
        font-size: 0.72rem;
        -webkit-line-clamp: 1;
    }

    .event-modal {
        max-height: 92vh;
        border-radius: 10px;
    }

    .event-modal-overlay {
        padding: 0.5rem;
    }

    .event-modal-header {
        padding: 1.2rem 1.2rem 0.8rem;
    }

    .event-modal-title {
        font-size: 1.3rem;
    }

    .event-modal-description {
        font-size: 0.85rem;
    }

    .event-modal-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 0.5rem;
        gap: 0.5rem;
        padding: 0.5rem 1.2rem 1.2rem;
    }

    .event-lightbox-media {
        max-width: 95vw;
        max-height: 80vh;
    }

    .event-lightbox-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 38px;
        height: 38px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .photo-modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }

    .photo-modal-close {
        top: -40px;
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }

    .photo-modal-image {
        max-height: 55vh;
    }

    .photo-modal-details {
        padding: 1rem 1.1rem;
    }

    .photo-modal-item-name {
        font-size: 1.15rem;
    }

    .photo-modal-item-price {
        font-size: 1.1rem;
    }

    .photo-modal-item-desc {
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    .section#menus {
        padding: 3rem 0.5rem;
    }

    .menu-header {
        padding: 1.2rem 0.75rem;
    }

    .menu-name {
        font-size: 1.2rem;
        padding-right: 2.5rem;
        letter-spacing: 0.08em;
    }

    .menu-price {
        font-size: 1.5rem;
    }

    .menu-content {
        padding: 0 0.5rem;
    }

    .menu-card.expanded .menu-content {
        padding: 1rem 0.5rem;
    }

    .menu-dish {
        flex-direction: column;
        padding: 0.75rem;
        gap: 0.75rem;
        align-items: center;
        text-align: center;
    }

    .menu-dish-image {
        width: 100%;
        height: 160px;
        min-width: unset;
        border-radius: 8px;
    }

    .menu-dish-info {
        width: 100%;
    }

    .menu-dish-name {
        font-size: 1.05rem;
    }

    .menu-dish-description {
        font-size: 0.8rem;
    }

    .menu-items {
        gap: 1.2rem;
    }

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

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .instagram-handle {
        font-size: 1.2rem;
    }

    .items-grid {
        gap: 0.6rem;
    }

    .item-card {
        border-radius: 8px;
    }

    .item-image {
        width: 95px;
        min-width: 95px;
    }

    .item-content {
        padding: 0.6rem 0.7rem;
    }

    .item-name {
        font-size: 0.88rem;
        margin-bottom: 0.2rem;
    }

    .item-description {
        font-size: 0.73rem;
        -webkit-line-clamp: 2;
        margin-bottom: 0.3rem;
        line-height: 1.4;
    }

    .item-price {
        font-size: 0.95rem;
    }

    .items-category-title {
        font-size: 1.05rem;
        margin-bottom: 0.6rem;
    }

    .items-category-block {
        margin-bottom: 1.2rem;
    }

    .section#plats {
        padding: 2rem 0.25rem;
    }
}

/* === FALLBACKS aspect-ratio pour navigateurs anciens (iOS < 15, Chrome < 88) === */
@supports not (aspect-ratio: 1) {
    .photo-card {
        height: 0;
        padding-bottom: 100%; /* 1:1 */
        position: relative;
    }
    .photo-card > * {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
    }

    .viewer .frame {
        height: 0;
        padding-bottom: 100%; /* 1:1 */
        position: relative;
    }
    .viewer .frame > * {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
    }

    .event-modal-thumb {
        height: 0;
        padding-bottom: 100%; /* 1:1 */
    }
    .event-modal-thumb > * {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
    }

    .gallery-item {
        height: 0;
        padding-bottom: 100%; /* 1:1 */
    }
    .gallery-item > * {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
    }

    .instagram-item {
        height: 0;
        padding-bottom: 100%; /* 1:1 */
    }
    .instagram-item > * {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
    }
}

/* === FALLBACKS flex gap pour navigateurs anciens (iOS < 14.5, Chrome < 84) === */
/* Note: sur navigateurs modernes supportant flex gap, l'espacement peut être
   légèrement doublé (gap + margin). C'est un compromis acceptable pour assurer
   que les vieux navigateurs aient un espacement correct. */

/* Containers flex en row */
.logo-container > * + * { margin-left: 1rem; }
.nav > * + * { margin-left: 1rem; }
.lang-switcher > * + * { margin-left: 0.5rem; }
.mobile-lang-switcher > * + * { margin-left: 1rem; }
.menu-dish > * + * { margin-left: 1.5rem; }
.allergens-container > * + * { margin-left: 0.5rem; }
.photo-modal-allergens > * + * { margin-left: 0.5rem; }
.reviews-dots > * + * { margin-left: 0.5rem; }
.instagram-btn > * + * { margin-left: 0.8rem; }
.gooey-container nav ul > * + * { margin-left: 0.5rem; }

/* Containers flex en column */
.menu-items > * + * { margin-top: 2rem; }
.items-grid > * + * { margin-top: 1rem; }
.footer-links > * + * { margin-top: 0.8rem; }

/* === EVENT REGISTRATION SYSTEM === */

/* Capacity badge + register button on event cards */
.event-card-capacity {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    gap: 0.5rem;
}
.event-card-capacity > * + * { margin-left: 0.5rem; }

.event-card-spots {
    font-size: 0.8rem;
    color: var(--orange);
    font-weight: 600;
}

.event-card-full {
    color: #ef4444;
}

.event-card-register-btn {
    background: var(--orange);
    color: #000;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
}

.event-card-register-btn:hover:not(:disabled) {
    background: #fff;
    transform: translateY(-1px);
}

.event-card-register-btn:disabled {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.4);
    cursor: not-allowed;
}

.event-card-share-btn {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.5rem 0.7rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.event-card-share-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Registration form styles */
.reg-label {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.reg-input {
    width: 100%;
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.reg-input:focus {
    outline: none;
    border-color: var(--orange);
}

/* Guest count selector */
.guest-selector {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.4rem;
}
.guest-selector > * + * { margin-left: 0.5rem; }

.guest-btn {
    flex: 1;
    padding: 0.6rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.guest-btn:hover:not(:disabled) {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.guest-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.guest-btn-active {
    flex: 1;
    padding: 0.6rem;
    border: 2px solid var(--orange);
    background: rgba(227, 143, 47, 0.15);
    color: var(--orange);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

/* Instagram unlock popup */
.insta-unlock-popup {
    background: rgba(0, 0, 0, 0.85);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
    animation: fadeInUp 0.3s ease;
}

.insta-unlock-content p {
    color: rgba(255, 255, 255, 0.8);
}

.insta-follow-btn {
    display: inline-block;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.3s, opacity 0.3s;
    margin-bottom: 0.8rem;
}

.insta-follow-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.insta-done-btn {
    display: block;
    width: 100%;
    padding: 0.6rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    margin-top: 0.6rem;
    font-family: inherit;
    transition: all 0.3s;
}

.insta-done-btn:hover {
    border-color: var(--orange);
    color: var(--orange);
}

/* Status messages */
.reg-status {
    padding: 0.6rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-align: center;
}

.reg-status-success {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.reg-status-error {
    background: rgba(220, 38, 38, 0.15);
    color: #ef4444;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* FIX: Photo modal - scrollable with details visible */
.photo-modal.active {
    display: flex !important;
    align-items: flex-start !important;
    overflow-y: auto !important;
    padding: 2rem 1rem !important;
}
.photo-modal-content {
    max-width: 550px !important;
    width: 100% !important;
    margin: auto !important;
    overflow: visible !important;
}
.photo-modal-image {
    max-width: 100% !important;
    max-height: 65vh !important;
    object-fit: contain !important;
    border-radius: 8px !important;
    display: block !important;
}
.photo-modal-details-row {
    padding: 0.8rem 0 0.3rem !important;
}
.photo-modal-item-name {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #fff !important;
}
.photo-modal-item-price {
    color: var(--orange) !important;
    font-weight: 600 !important;
}
.photo-modal-item-desc {
    color: rgba(255,255,255,0.7) !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    padding: 0.3rem 0 !important;
}
.photo-modal-allergens {
    padding: 0.5rem 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
}
.photo-modal-allergen {
    font-size: 0.8rem !important;
    color: rgba(255,255,255,0.6) !important;
}
@media (max-width: 768px) {
    .photo-modal-content {
        max-width: 95vw !important;
    }
    .photo-modal-image {
        max-height: 50vh !important;
    }
}
