/* === GLOBAL RESET & SMOOTH SCROLL === */
        html {
            scroll-behavior: smooth;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #1B1817;
            color: #FFFFFF;
            font-family: 'Source Sans 3', sans-serif;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            transition: all 0.3s ease;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            max-width: 1536px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 10;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }
        }

        /* === LUXURY HEADER (BULLETPROOF) === */
        .site-header {
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            width: 100% !important;
            z-index: 1002 !important;
            background-color: transparent;
            padding: 20px 0;
            border-bottom: 1px solid transparent;
            transition: background-color 0.4s ease, padding 0.3s ease, border-bottom-color 0.4s ease, backdrop-filter 0.4s ease;
        }

        .site-header.scrolled {
            background-color: rgba(27, 24, 23, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .site-header.menu-open {
            background-color: rgba(27, 24, 23, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }

        .header-container {
            max-width: 1536px !important;
            margin: 0 auto !important;
            padding: 0 40px !important;
            display: flex !important;
            flex-direction: row !important;
            justify-content: space-between !important;
            align-items: center !important;
            width: 100% !important;
        }

        .site-logo {
            width: auto !important;
            max-width: 320px !important;
            height: 48px !important;
            object-fit: contain !important;
            flex-shrink: 0 !important;
            display: block !important;
            position: relative;
            z-index: 1003;
            opacity: 0;
            animation: logoReveal 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.2s;
        }

        @keyframes logoReveal {
            0% {
                filter: blur(12px);
                transform: scale(1.08);
                opacity: 0;
            }

            100% {
                filter: blur(0);
                transform: scale(1);
                opacity: 1;
            }
        }

        .main-nav {
            display: block !important;
        }

        .main-nav .nav-list {
            display: flex !important;
            flex-direction: row !important;
            gap: 35px !important;
            align-items: center !important;
        }

        .main-nav a.nav-item {
            font-family: 'Source Sans 3', sans-serif !important;
            font-size: 18px !important;
            font-weight: 500 !important;
            letter-spacing: 0.5px !important;
            color: #FFFFFF !important;
            position: relative;
            padding-bottom: 4px;
        }

        .main-nav a.nav-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #FA5B00;
            transition: width 0.3s ease;
        }

        .main-nav a.nav-item:hover {
            color: #FA5B00 !important;
        }

        .main-nav a.nav-item:hover::after {
            width: 100%;
        }

        .header-actions {
            display: flex !important;
            flex-direction: row !important;
            align-items: center !important;
            gap: 25px !important;
            position: relative;
            z-index: 1003;
        }

        .social-icons {
            display: flex !important;
            flex-direction: row !important;
            align-items: center !important;
            gap: 15px !important;
        }

        .social-icons svg {
            width: 22px !important;
            height: 22px !important;
            fill: #FFFFFF !important;
            transition: fill 0.3s ease !important;
            display: block !important;
        }

        .social-icons a:hover svg {
            fill: #FA5B00 !important;
        }

        .btn-whatsapp {
            padding: 16px 32px !important;
            font-size: 18px !important;
            background-color: #FA5B00 !important;
            color: #F7F2EE !important;
            font-weight: 600 !important;
            border-radius: 8px !important;
            border: none !important;
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            white-space: nowrap !important;
        }

        .header-actions .btn-whatsapp {
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }
        
        .header-actions .btn-whatsapp.is-visible {
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-nav-btn {
            display: none !important;
        }

        .mobile-toggle {
            display: none !important;
            background: none !important;
            border: none !important;
            color: #FFFFFF !important;
            cursor: pointer !important;
            z-index: 1005;
        }

        .mobile-socials {
            display: none !important;
        }

        /* === MOBILE MENU OVERLAY & DRAWER === */
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(4px);
            z-index: 1000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        .mobile-overlay.is-open {
            opacity: 1;
            pointer-events: auto;
        }

        /* === HOLIDAY MODAL === */
        .holiday-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.5s ease;
            padding: 20px;
        }

        .holiday-modal-overlay.is-visible {
            opacity: 1;
            pointer-events: auto;
        }

        body.modal-open {
            overflow: hidden;
        }

        .holiday-modal {
            background-color: #1B1817;
            border: 1px solid rgba(250, 91, 0, 0.2);
            border-radius: 12px;
            width: 100%;
            max-width: 500px;
            padding: 40px 20px 40px 40px;
            position: relative;
            transform: translateY(20px);
            transition: transform 0.5s ease;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            text-align: center;
            max-height: 90vh;
            display: flex;
            flex-direction: column;
        }

        .holiday-modal-content {
            overflow-y: auto;
            padding-right: 20px;
            -webkit-overflow-scrolling: touch;
        }

        /* Custom scrollbar for modal content */
        .holiday-modal-content::-webkit-scrollbar {
            width: 4px;
        }
        .holiday-modal-content::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 4px;
        }
        .holiday-modal-content::-webkit-scrollbar-thumb {
            background: rgba(250, 91, 0, 0.5);
            border-radius: 4px;
        }
        .holiday-modal-content::-webkit-scrollbar-thumb:hover {
            background: rgba(250, 91, 0, 0.8);
        }

        .holiday-modal-overlay.is-visible .holiday-modal {
            transform: translateY(0);
        }

        .holiday-modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            color: #a0a0a0;
            font-size: 32px;
            cursor: pointer;
            transition: color 0.3s;
            line-height: 1;
            padding: 0;
            z-index: 10;
        }

        .holiday-modal-close:hover {
            color: #FA5B00;
        }

        .holiday-kicker {
            display: block;
            color: #FA5B00;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
            font-weight: 600;
            font-family: 'Source Sans 3', sans-serif;
        }

        .holiday-title {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            color: #FFFFFF;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .holiday-desc {
            color: #EAEAEA;
            font-family: 'Source Sans 3', sans-serif;
            font-size: 17px;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .holiday-desc strong {
            color: #FFFFFF;
        }

        .holiday-hours-box {
            background-color: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 30px;
            text-align: left;
            font-family: 'Source Sans 3', sans-serif;
            color: #EAEAEA;
            font-size: 16px;
            line-height: 1.5;
        }

        .holiday-btn {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            background-color: #FA5B00;
            color: #F7F2EE;
            font-family: 'Source Sans 3', sans-serif;
            font-weight: 600;
            font-size: 16px;
            padding: 16px 28px;
            border-radius: 8px;
            text-decoration: none;
            width: 100%;
        }

        @media (max-width: 768px) {
            .holiday-modal {
                padding: 40px 10px 30px 20px;
                max-height: 85vh;
            }
            .holiday-modal-content {
                padding-right: 10px;
            }
            .holiday-modal-close {
                top: 10px;
                right: 15px;
            }
        }

        /* === HERO SECTION === */
        .hero {
            position: relative;
            min-height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 80px;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: -5%;
            background-image: url('https://rjdavx8ozyznxeyh.public.blob.vercel-storage.com/production/websites/uploaded-media/20210309144349-ascoli-piceno-tz622Vi7vMhtuFYQPDDfyOUTNxXvSk.jpg');
            background-size: cover;
            background-position: center;
            z-index: 1;
            animation: heroBgDrift 25s ease-in-out infinite;
        }

        @keyframes heroBgDrift {

            0%,
            100% {
                transform: scale(1) translate(0, 0);
            }

            50% {
                transform: scale(1.04) translate(-0.5%, -0.3%);
            }
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(60, 25, 5, 0.6) 0%, rgba(27, 24, 23, 0.8) 70%, rgba(27, 24, 23, 1) 100%);
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 1000px;
            padding: 0 20px;
        }

        .hero-kicker {
            display: inline-block;
            font-size: 16px;
            font-weight: 500;
            color: #FFFFFF;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .hero-title {
            font-size: clamp(48px, 6vw, 90px) !important;
            font-family: 'Playfair Display', serif;
            line-height: 1.1;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 30px;
            letter-spacing: -1px;
            text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .hero-desc {
            font-size: clamp(18px, 2.5vw, 24px) !important;
            max-width: 900px;
            margin: 0 auto 40px;
            line-height: 1.5;
            color: #EAEAEA;
        }

        .hero-buttons a {
            background-color: #FA5B00 !important;
            color: #F7F2EE !important;
            padding: 18px 45px !important;
            font-size: 18px !important;
            border-radius: 8px !important;
            font-weight: 600 !important;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        /* Hero staggered text reveal */
        .hero-content .hero-kicker,
        .hero-content .hero-title,
        .hero-content .hero-desc,
        .hero-content .hero-buttons {
            opacity: 0;
            transform: translateY(35px);
        }

        .hero-content .hero-kicker {
            animation: heroFadeUp 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.05s;
        }

        .hero-content .hero-title {
            animation: heroFadeUp 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.15s;
        }

        .hero-content .hero-desc {
            animation: heroFadeUp 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.2s;
        }

        .hero-content .hero-buttons {
            animation: heroFadeUp 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.25s;
        }

        @keyframes heroFadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Hero floating particles */
        .hero::before,
        .hero::after {
            content: '';
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(250, 91, 0, 0.5);
            border-radius: 50%;
            z-index: 2;
            pointer-events: none;
        }

        .hero::before {
            left: 15%;
            bottom: 20%;
            box-shadow: 60vw 10vh 0 2px rgba(250, 91, 0, 0.15), 25vw -15vh 0 1px rgba(255, 255, 255, 0.08), 45vw -30vh 0 3px rgba(250, 91, 0, 0.1);
            animation: particleFloat1 12s ease-in-out infinite;
        }

        .hero::after {
            right: 20%;
            top: 30%;
            box-shadow: -30vw 20vh 0 2px rgba(250, 91, 0, 0.12), 10vw 15vh 0 1px rgba(255, 255, 255, 0.06);
            animation: particleFloat2 15s ease-in-out infinite;
        }

        @keyframes particleFloat1 {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.6;
            }

            25% {
                transform: translate(15px, -25px) scale(1.2);
                opacity: 0.8;
            }

            50% {
                transform: translate(-10px, -50px) scale(0.8);
                opacity: 0.4;
            }

            75% {
                transform: translate(20px, -30px) scale(1.1);
                opacity: 0.7;
            }
        }

        @keyframes particleFloat2 {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.5;
            }

            33% {
                transform: translate(-20px, 15px) scale(1.3);
                opacity: 0.7;
            }

            66% {
                transform: translate(10px, -20px) scale(0.9);
                opacity: 0.3;
            }
        }

        /* === TYPOGRAPHY GLOBALS === */
        h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(38px, 5vw, 64px);
            line-height: 1.1;
            font-weight: 700;
            margin-bottom: 30px;
            letter-spacing: -0.5px;
        }

        h3 {
            font-family: 'Source Sans 3', sans-serif;
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        p {
            font-size: 18px;
            line-height: 1.6;
            color: #EAEAEA;
            font-weight: 400;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            font-size: 14px;
            color: #EAEAEA;
            margin-bottom: 25px;
            letter-spacing: 0.5px;
        }

        .eyebrow::before {
            content: "";
            display: block;
            width: 35px;
            height: 1px;
            background-color: #EAEAEA;
        }

        /* === INTRO SECTION (Cena) === */
        .intro-section {
            padding: 140px 20px;
            text-align: center;
        }

        .intro-section p {
            max-width: 900px;
            margin: 0 auto 40px;
            font-size: clamp(18px, 2vw, 22px);
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            padding: 14px 32px;
            background: transparent;
            color: #FA5B00;
            border: 2px solid #FA5B00;
            font-size: 16px;
            border-radius: 8px;
            font-weight: 600;
        }

        /* === PACKAGE GRID (Pernotto) === */
        .package-section {
            padding: 140px 20px;
        }

        .grid-half {
            display: grid;
            grid-template-columns: 1fr;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
        }

        @media (min-width: 900px) {
            .grid-half {
                grid-template-columns: 1fr 1fr;
            }
        }

        .location-pin {
            color: #a0a0a0;
            margin-bottom: 25px;
            font-size: 16px;
        }

        .rating-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.03);
            padding: 15px 20px;
            border-radius: 8px;
            margin: 20px 0 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .rating-score {
            background: #FA5B00;
            color: #1B1817;
            font-size: 24px;
            font-weight: 700;
            padding: 8px 14px;
            border-radius: 6px;
            margin-right: 15px;
        }

        .rating-text strong {
            display: block;
            font-size: 18px;
            color: #FFF;
        }

        .rating-text span {
            font-size: 14px;
            color: #FA5B00;
        }

        .features-list {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-top: 30px;
        }

        @media (min-width: 600px) {
            .features-list {
                grid-template-columns: 1fr 1fr;
            }
        }

        .features-list li {
            color: #EAEAEA;
            font-size: 16px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .features-list li::before {
            content: "•";
            color: #FA5B00;
            font-size: 24px;
            line-height: 0.8;
        }

        .pernotto-image {
            width: 100%;
            border-radius: 12px;
            aspect-ratio: 4/5;
            object-fit: cover;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }

        /* === TABS SYSTEM (Colazione) === */
        .choice-section {
            padding: 140px 20px;
        }

        .tabs-header {
            text-align: center;
            margin-bottom: 60px;
            max-width: 800px;
            margin-inline: auto;
        }

        .tabs-nav {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        @media (min-width: 600px) {
            .tabs-nav {
                grid-template-columns: 1fr 1fr;
            }
        }

        .tab-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 24px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.02);
        }

        .tab-btn .title {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 5px;
            color: #FFF;
        }

        .tab-btn .desc {
            font-size: 16px;
            color: #a0a0a0;
        }

        input[name="local-tab"] {
            display: none;
        }

        #tab-bistro:checked~.tabs-nav label[for="tab-bistro"] {
            border-color: #FA5B00;
            background: rgba(250, 91, 0, 0.08);
        }

        #tab-bistro:checked~.tabs-nav label[for="tab-bistro"] .desc {
            color: #FA5B00;
        }

        .tab-panel {
            display: none;
            animation: slideUp 0.5s ease forwards;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        #tab-bistro:checked~.panels #panel-bistro {
            display: grid;
        }

        /* === CAROUSEL (Smooth JS + Vanilla CSS) === */
        .carousel {
            position: relative;
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            background: #2a2523;
            aspect-ratio: 4/5;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }

        .carousel-track {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            width: 100%;
            height: 100%;
            scrollbar-width: none;
        }

        .carousel-track::-webkit-scrollbar {
            display: none;
        }

        .carousel-slide {
            flex: 0 0 100%;
            scroll-snap-align: center;
            position: relative;
            height: 100%;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px 20px 20px;
            background: linear-gradient(transparent, rgba(27, 24, 23, 0.95));
            font-weight: 500;
            color: #FFF;
            font-size: 16px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(27, 24, 23, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            font-size: 24px;
            transition: all 0.3s;
            backdrop-filter: blur(4px);
        }

        .carousel-btn:hover {
            background: #FA5B00;
            border-color: #FA5B00;
            transform: translateY(-50%) scale(1.08);
        }

        .carousel-btn.prev {
            left: 15px;
        }

        .carousel-btn.next {
            right: 15px;
        }

        .carousel-btn svg {
            width: 22px;
            height: 22px;
            stroke: currentColor;
            stroke-width: 1.5px;
            fill: none;
        }

        /* === FINAL CTA: MINIMALIST MONOLITH === */
        .cta-monolith {
            margin: 120px auto 40px; /* Ampi margini per dare respiro */
            text-align: center;
            padding: 0 20px;
            max-width: 1000px;
            /* Nessun bordo, nessuno sfondo: si fonde col #1B1817 del body */
        }

        /* Glowing Horizon Transition */
        .glowing-horizon {
            width: 100%;
            height: 1px;
            background: radial-gradient(circle, rgba(250,91,0,0.6) 0%, rgba(250,91,0,0) 70%);
            box-shadow: 0 0 15px rgba(250, 91, 0, 0.25);
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .monolith-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3rem, 5vw, 4.5rem);
            color: #F7F2EE;
            line-height: 1.1;
            margin-bottom: 30px;
            font-weight: 700;
        }

        .monolith-title i {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-weight: 400;
            color: #FA5B00;
        }

        .monolith-subtitle {
            font-family: 'Source Sans 3', sans-serif;
            font-size: 1.25rem;
            color: #a0a0a0;
            margin: 0 auto 50px;
            max-width: 600px;
            line-height: 1.6;
        }

        /* Pulsante fluttuante a forma di pillola con leggero glow */
        .btn-pill-glow {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #FA5B00;
            color: #F7F2EE;
            padding: 20px 50px;
            font-size: 18px;
            font-family: 'Source Sans 3', sans-serif;
            border-radius: 50px; /* Pill shape */
            font-weight: 600;
            text-decoration: none;
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
            box-shadow: 0 0 25px rgba(250, 91, 0, 0.2);
            animation: pulse-glow 3s infinite alternate;
        }

        .btn-pill-glow:hover {
            transform: translateY(-3px);
            background-color: #ff6a14;
            box-shadow: 0 10px 30px rgba(250, 91, 0, 0.4);
            animation: none;
        }

        @keyframes pulse-glow {
            0% {
                box-shadow: 0 0 15px rgba(250, 91, 0, 0.15);
            }
            100% {
                box-shadow: 0 0 35px rgba(250, 91, 0, 0.35);
            }
        }

        /* === LUXURY FOOTER === */
        .site-footer {
            padding: 80px 0 40px;
            background-color: #110F0E;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 50px;
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1.2fr 1fr;
                gap: 60px;
            }
        }

        .footer-col h4 {
            font-family: 'Source Sans 3', sans-serif;
            color: #FFFFFF;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

        /* 1. Navigation */
        .footer-col.links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-col.links a {
            color: #a0a0a0;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .footer-col.links a:hover {
            color: #FA5B00;
        }

        /* 2. Working Hours */
        .hours-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 20px;
        }

        .hours-list li {
            display: flex;
            justify-content: space-between;
            color: #a0a0a0;
            font-size: 15px;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
            padding-bottom: 4px;
        }

        .hours-list li span:last-child {
            color: #FFFFFF;
        }

        .hours-list li.closed span:last-child {
            color: #FA5B00;
            font-weight: 600;
        }

        .private-events-link {
            display: block;
            margin-top: 15px;
            text-decoration: none;
        }

        .private-events {
            font-size: 14px;
            color: #EAEAEA;
            line-height: 1.6;
            font-style: italic;
            padding: 15px;
            background: rgba(255, 255, 255, 0.03);
            border-left: 3px solid #FA5B00;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .private-events-link:hover .private-events {
            background: rgba(250, 91, 0, 0.08);
            transform: translateX(5px);
        }

        /* 3. Brand & Contacts */
        .footer-address p {
            color: #a0a0a0;
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .footer-phone {
            color: #FA5B00;
            font-weight: 600;
            font-size: 18px;
            display: inline-block;
            margin-top: 5px;
        }

        .footer-phone:hover {
            opacity: 0.8;
        }

        .footer-socials {
            display: flex;
            gap: 20px;
            margin-top: 25px;
        }

        .footer-socials svg {
            width: 22px;
            height: 22px;
            fill: #a0a0a0;
            transition: fill 0.3s;
        }

        .footer-socials a:hover svg {
            fill: #FA5B00;
        }

        .footer-bottom {
            margin-top: 60px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-bottom-links {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            font-size: 14px;
        }

        .footer-bottom-links .footer-link {
            color: #a0a0a0;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-bottom-links .footer-link:hover {
            color: #FA5B00 !important;
        }

        .footer-bottom-links .footer-copy {
            color: #666;
        }

        .footer-bottom-links .footer-sep {
            color: #666;
            opacity: 0.5;
        }

        @media (max-width: 768px) {
            .footer-bottom-links {
                flex-direction: column;
                gap: 12px;
                padding-bottom: 35px; /* Lift text slightly on mobile */
            }
            .footer-bottom-links .footer-sep {
                display: none;
            }
            .footer-bottom-links #openPrivacyBtn {
                order: -1;
            }
            .footer-bottom-links .footer-copy {
                order: 0;
            }
            .footer-bottom-links .footer-design {
                order: 1;
            }
        }

        /* === MOBILE OVERRIDES (DRAWER MENU) === */
        @media (max-width: 991px) {
            .header-container {
                padding: 0 20px !important;
            }

            .site-logo {
                max-width: 150px !important;
                height: 35px !important;
            }

            /* Скрываем кнопку в шапке при открытом меню */
            .site-header.menu-open .header-actions .btn-whatsapp {
                opacity: 0 !important;
                visibility: hidden !important;
            }

            /* Выдвижное меню (Drawer) */
            .main-nav {
                position: fixed !important;
                top: 0 !important;
                left: -100% !important;
                width: 320px !important;
                max-width: 85vw !important;
                height: 100dvh !important;
                background-color: #110F0E !important;
                border-right: 1px solid rgba(255, 255, 255, 0.05) !important;
                display: flex !important;
                flex-direction: column !important;
                justify-content: center !important;
                padding: 40px !important;
                transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
                z-index: 1005 !important;
            }

            .main-nav.is-open {
                left: 0 !important;
                box-shadow: 10px 0 40px rgba(0, 0, 0, 0.8) !important;
            }

            .main-nav .nav-list {
                flex-direction: column !important;
                gap: 35px !important;
                text-align: left !important;
                align-items: flex-start !important;
            }

            .main-nav a.nav-item {
                font-size: 24px !important;
            }

            .mobile-nav-btn {
                display: inline-flex !important;
                background-color: #FA5B00;
                color: #1B1817 !important;
                padding: 16px 32px !important;
                font-size: 18px !important;
                border-radius: 8px;
                font-weight: 600 !important;
                margin-top: 30px;
                justify-content: center;
                width: 100%;
                transition: opacity 0.3s ease;
            }

            .mobile-nav-btn:hover {
                opacity: 0.9;
            }

            .mobile-socials {
                display: flex !important;
                gap: 20px !important;
                margin-top: 30px !important;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                padding-top: 25px;
                width: 100%;
                justify-content: flex-start;
            }

            .mobile-socials svg {
                width: 24px !important;
                height: 24px !important;
                fill: #FFF !important;
            }

            .mobile-socials a:hover svg {
                fill: #FA5B00 !important;
            }

            .social-icons {
                display: none !important;
            }

            /* Скрываем в десктопной шапке */
            .header-actions {
                gap: 10px !important;
                z-index: 1006 !important;
            }

            .mobile-toggle {
                display: block !important;
                margin-left: 0 !important;
                padding: 5px !important;
            }
        }

        @media (max-width: 768px) {
            .site-header {
                padding: 10px 0 !important;
            }

            .header-actions .btn-whatsapp {
                padding: 8px 14px !important;
                font-size: 14px !important;
            }

            .mobile-toggle svg {
                width: 26px !important;
                height: 26px !important;
            }

            .hero-title {
                font-size: 52px !important;
                margin-bottom: 20px !important;
            }

            .hero-desc {
                display: block !important;
                font-size: 18px !important;
                padding: 0 10px;
                margin-bottom: 30px !important;
            }

            .hero-buttons {
                flex-direction: column !important;
                width: 100%;
                gap: 15px !important;
                padding: 0 15px;
                margin-top: 20px !important;
            }

            .hero-buttons a {
                width: 100% !important;
                max-width: 300px !important;
                padding: 14px 20px !important;
                font-size: 16px !important;
                border-radius: 6px !important;
            }

            .footer-grid {
                gap: 40px;
            }
        }

        /* === SCROLL REVEAL ANIMATION SYSTEM === */
        [data-reveal] {
            opacity: 0;
            transform: translateY(35px);
            transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
        }

        [data-reveal="left"] {
            opacity: 0;
            transform: translateX(-40px);
        }

        [data-reveal="scale"] {
            opacity: 0;
            transform: scale(0.92);
        }

        [data-reveal].is-visible {
            opacity: 1;
            transform: none;
        }

        [data-reveal-delay="1"] {
            transition-delay: 0.12s;
        }

        [data-reveal-delay="2"] {
            transition-delay: 0.24s;
        }

        [data-reveal-delay="3"] {
            transition-delay: 0.36s;
        }

        [data-reveal-delay="4"] {
            transition-delay: 0.48s;
        }

        [data-reveal-delay="5"] {
            transition-delay: 0.60s;
        }

        .tab-panel [data-reveal] {
            opacity: 0;
            transform: translateY(25px);
        }

        .tab-panel [data-reveal].is-visible {
            opacity: 1;
            transform: none;
        }

        /* === GLOBAL BUTTON HOVER (ORANGE GLOW) === */
        .btn-whatsapp,
        .hero-buttons a,
        .btn-outline,
        .btn-large,
        .holiday-btn {
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s !important;
        }

        .btn-whatsapp:hover,
        .hero-buttons a:hover,
        .btn-outline:hover,
        .btn-large:hover,
        .holiday-btn:hover {
            transform: translateY(-4px) !important;
            box-shadow: 0 12px 24px rgba(250, 91, 0, 0.35) !important;
            opacity: 1 !important;
        }

        .btn-outline:hover {
            background: #FA5B00;
            color: #1B1817;
        }

        /* === SECTION GRADIENT DIVIDERS === */

        @media (prefers-reduced-motion: reduce) {
            [data-reveal] {
                opacity: 1 !important;
                transform: none !important;
                transition: none !important;
            }

            .hero-content .hero-kicker,
            .hero-content .hero-title,
            .hero-content .hero-desc,
            .hero-content .hero-buttons {
                opacity: 1 !important;
                transform: none !important;
                animation: none !important;
            }

            .hero-bg {
                animation: none !important;
            }

            .hero::before,
            .hero::after {
                animation: none !important;
            }
        }

        .footer-bottom a#openPrivacyBtn:hover {
            color: #FA5B00 !important;
        }

        /* === SUNDAY LUNCH MODAL (MINIMALIST & MATTE #161413 - NO GRADIENTS) === */
        .sunday-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            z-index: 99998;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.5s ease;
            padding: 20px;
        }

        .sunday-modal-overlay.is-visible {
            opacity: 1;
            pointer-events: auto;
        }

        .sunday-modal {
            background-color: #161413;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            width: 100%;
            max-width: 440px;
            padding: 36px 32px 32px;
            position: relative;
            text-align: center;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
        }

        .sunday-modal-overlay.is-visible .sunday-modal {
            opacity: 1;
            transform: translateY(0);
        }

        /* Spinning Close Button (90deg hover, 180deg active) */
        .sunday-modal-close {
            position: absolute;
            top: 14px;
            right: 16px;
            background: transparent;
            border: none;
            color: #999999;
            width: 32px;
            height: 32px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            padding: 0;
            transform: rotate(0deg);
            transform-origin: center center;
            transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
        }

        .sunday-modal-close svg {
            display: block;
            pointer-events: none;
        }

        .sunday-modal-close:hover {
            color: #FA5B00;
            transform: rotate(90deg);
        }

        .sunday-modal-close:active {
            color: #FA5B00;
            transform: rotate(180deg);
        }

        .sunday-modal-title {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .sunday-modal-text {
            font-family: 'Source Sans 3', sans-serif;
            font-size: 16px;
            font-weight: 400;
            color: #C5C5C5;
            line-height: 1.5;
            margin: 0;
        }