/* === HERO SECTION === */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 20px 60px;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: -3%;
            background-size: cover;
            background-position: center center;
            z-index: 1;
        }

        @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;
            text-align: center;
            width: 100%;
            max-width: 1100px;
        }

        .hero-kicker {
            font-size: 16px;
            font-weight: 500;
            color: #FFFFFF;
            margin-bottom: 20px;
            display: inline-block;
        }

        .hero-title {
            font-size: clamp(50px, 8vw, 110px) !important;
            font-family: 'Playfair Display', serif;
            line-height: 1.05 !important;
            font-weight: 700;
            text-align: center;
            letter-spacing: -1px;
            color: #FFFFFF;
            margin: 0;
        }

        .hero-desc {
            font-size: clamp(18px, 2.5vw, 24px) !important;
            max-width: 900px !important;
            margin: 30px auto !important;
            line-height: 1.5;
            color: #FFFFFF;
            text-align: center;
        }

        .hero-buttons {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .hero-buttons a {
            background-color: #FA5B00 !important;
            color: #F7F2EE !important;
            border: none !important;
            padding: 16px 45px !important;
            font-size: 18px !important;
            border-radius: 8px !important;
            font-weight: 600 !important;
            transition: opacity 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .hero-buttons a:hover {
            opacity: 0.8;
        }

        /* 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.4s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.1s;
        }

        .hero-content .hero-title {
            animation: heroFadeUp 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.2s;
        }

        .hero-content .hero-desc {
            animation: heroFadeUp 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.25s;
        }

        .hero-content .hero-buttons {
            animation: heroFadeUp 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.3s;
        }

        @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;
            }
        }

        /* === BENVENUTO SECTION === */
        .luxury-benvenuto {
            padding: 140px 20px;
            background-color: #1B1817;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .benvenuto-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            font-family: 'Source Sans 3', sans-serif;
            font-size: 14px !important;
            color: #EAEAEA;
            margin-bottom: 25px;
            letter-spacing: 0.5px;
        }

        .benvenuto-eyebrow::before {
            content: "";
            display: block;
            width: 35px;
            height: 1px;
            background-color: #EAEAEA;
        }

        .benvenuto-title {
            font-family: 'Playfair Display', serif !important;
            font-size: clamp(38px, 5vw, 76px) !important;
            line-height: 1.1 !important;
            font-weight: 700 !important;
            color: #FFFFFF;
            margin-bottom: 30px;
            letter-spacing: -0.5px;
        }

        .benvenuto-desc {
            font-family: 'Source Sans 3', sans-serif !important;
            font-size: clamp(16px, 1.8vw, 18px) !important;
            line-height: 1.6 !important;
            color: #EAEAEA;
            max-width: 780px;
            margin: 0 auto;
            font-weight: 400 !important;
        }

        /* === SERVIZI SECTION === */
        .luxury-services {
            padding: 140px 0;
            background-color: #1B1817;
        }

        .services-header {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-bottom: 70px;
        }

        @media (min-width: 992px) {
            .services-header {
                flex-direction: row;
                justify-content: space-between;
                align-items: flex-end;
                gap: 50px;
            }
        }

        .services-header-left {
            flex: 1;
        }

        .services-header-right {
            flex: 1;
            max-width: 550px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 25px;
        }

        .services-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            font-family: 'Source Sans 3', sans-serif;
            font-size: 14px;
            color: #EAEAEA;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

        .services-eyebrow::before {
            content: "";
            display: block;
            width: 35px;
            height: 1px;
            background-color: #EAEAEA;
        }

        .services-title {
            font-family: 'Playfair Display', serif !important;
            font-size: clamp(38px, 5vw, 64px) !important;
            line-height: 1.1 !important;
            font-weight: 700 !important;
            color: #FFFFFF;
            margin: 0;
            letter-spacing: -0.5px;
        }

        .services-desc {
            font-family: 'Source Sans 3', sans-serif !important;
            font-size: 18px !important;
            line-height: 1.6 !important;
            color: #EAEAEA;
            margin: 0;
            font-weight: 400;
        }

        .btn-servizi {
            background-color: #FA5B00 !important;
            color: #F7F2EE !important;
            padding: 16px 36px !important;
            font-size: 16px !important;
            border-radius: 8px !important;
            font-weight: 600 !important;
            display: inline-flex;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .btn-servizi:hover {
            opacity: 0.9;
        }

        .services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 60px 30px;
        }

        @media (min-width: 768px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 70px 40px;
            }
        }

        .service-card {
            display: flex;
            flex-direction: column;
            gap: 0;
            cursor: pointer;
        }

        .service-image-wrapper {
            width: 100%;
            aspect-ratio: 1 / 1.05;
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            background-color: #2a2523;
        }

        .service-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .service-card:hover .service-image-wrapper img {
            transform: scale(1.03);
        }

        .service-card h3 {
            font-family: 'Source Sans 3', sans-serif !important;
            font-size: 28px !important;
            font-weight: 500 !important;
            color: #FFFFFF;
            margin: 20px 0 12px 0;
            letter-spacing: -0.2px;
        }

        .service-card p {
            font-family: 'Source Sans 3', sans-serif !important;
            font-size: 17px !important;
            line-height: 1.6 !important;
            color: #EAEAEA;
            margin: 0;
            font-weight: 400 !important;
        }

        /* === OTHER SECTIONS (Lab, Testimonials, Prebook) === */
        .lab-section {
            background-color: #1b1817;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 50px;
            padding: 100px 0;
        }

        .lab-content {
            flex: 1;
            min-width: 320px;
        }

        .lab-price-tag {
            background: rgba(250, 91, 0, 0.1);
            border-left: 4px solid #FA5B00;
            padding: 15px 20px;
            margin-bottom: 35px;
            border-radius: 4px;
        }

        .price-value {
            font-size: 28px;
            font-weight: 700;
            color: #FA5B00;
        }

        .price-value small {
            font-size: 16px;
            color: #fff;
            font-weight: 400;
        }

        .lab-media {
            flex: 1;
            min-width: 320px;
            aspect-ratio: 1 / 1;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .lab-media video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            margin-top: 48px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .testimonial-quote {
            font-size: 1.05rem;
            font-style: italic;
            color: #EAEAEA;
            line-height: 1.6;
            flex-grow: 1;
        }

        .testimonial-author {
            font-weight: 600;
            font-size: 1.1rem;
            color: #FA5B00;
        }

        @media (min-width: 1024px) {
            .testimonial-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .text-center {
            text-align: center;
        }

        .max-w-3xl {
            max-width: 800px;
            margin-inline: auto;
        }

        .mb-8 {
            margin-bottom: 2rem;
        }

        /* === LUXURY FOOTER (REORDERED) === */
        .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;
        }

        /* Interactive Private Events Button */
        .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: 24px;
            height: 24px;
            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: 220px !important;
                height: 45px !important;
            }

            /* Кнопка в шапке — скрыта на мобильных, видна только на десктопе */
            .header-actions .btn-whatsapp {
                display: none !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: #F7F2EE !important;
                padding: 16px 32px !important;
                font-size: 18px !important;
                border-radius: 8px;
                font-weight: 600 !important;
                margin-top: 30px;
                justify-content: center;
                width: 100%;
            }

            /* Иконки соцсетей внутри мобильного меню */
            .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: 26px !important;
                height: 26px !important;
                fill: #FFF !important;
            }

            .mobile-socials a:hover svg {
                fill: #FA5B00 !important;
            }

            .social-icons {
                display: none !important;
            }

            /* Скрываем в десктопной шапке */
            .header-actions {
                gap: 12px !important;
                z-index: 1006 !important;
            }

            .mobile-toggle {
                display: block !important;
                margin-left: 0 !important;
                padding: 5px !important;
            }
        }

        @media (max-width: 480px) {
            .site-logo {
                max-width: 150px !important;
                height: 28px !important;
            }

            .header-actions .btn-whatsapp {
                padding: 6px 12px !important;
                font-size: 13px !important;
            }
        }

        @media (max-width: 768px) {
            .site-header {
                padding: 10px 0 !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: 16px !important;
                line-height: 1.5 !important;
                padding: 0 15px;
                margin: 20px auto 30px !important;
                color: rgba(255, 255, 255, 0.85);
            }

            .hero-buttons {
                flex-direction: column !important;
                width: 100%;
                gap: 15px !important;
                padding: 0 15px;
            }

            .hero-buttons a {
                width: 100% !important;
                max-width: 300px !important;
                padding: 14px 20px !important;
                font-size: 16px !important;
                border-radius: 6px !important;
            }

            .benvenuto-title {
                font-size: 38px !important;
            }

            .benvenuto-desc {
                font-size: 16px !important;
                padding: 0 15px;
            }

            .services-header-right {
                max-width: 100%;
            }

            .btn-servizi {
                width: 100%;
                justify-content: center;
            }

            .lab-section {
                flex-direction: column-reverse;
                gap: 30px;
            }

            .footer-grid {
                gap: 40px;
            }
        }

        /* === SCROLL REVEAL ANIMATION SYSTEM === */
        [data-reveal] {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1), transform 0.35s 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.05s;
        }

        [data-reveal-delay="2"] {
            transition-delay: 0.10s;
        }

        [data-reveal-delay="3"] {
            transition-delay: 0.15s;
        }

        [data-reveal-delay="4"] {
            transition-delay: 0.20s;
        }

        [data-reveal-delay="5"] {
            transition-delay: 0.25s;
        }

        .service-card {
            opacity: 0;
            transform: translateY(30px) scale(0.97);
            transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1), transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .service-card.is-visible {
            opacity: 1;
            transform: none;
        }

        .testimonial-card {
            opacity: 0;
            transform: translateY(25px);
            transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1), transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .testimonial-card.is-visible {
            opacity: 1;
            transform: none;
        }

        /* === GLOBAL BUTTON HOVER (ORANGE GLOW) === */
        .btn-whatsapp,
        .hero-buttons a,
        .btn-servizi,
        .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-servizi:hover,
        .holiday-btn:hover {
            transform: translateY(-4px) !important;
            box-shadow: 0 12px 24px rgba(250, 91, 0, 0.35) !important;
            opacity: 1 !important;
        }

        /* === SECTION GRADIENT DIVIDERS === */
        .hero::before {
            display: none;
            /* exclude hero */
        }

        @media (prefers-reduced-motion: reduce) {

            [data-reveal],
            .service-card,
            .testimonial-card {
                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;
        }

/* === OFFERTA SPECIFIC STYLES === */
.intro-section {
    padding: 100px 0;
    text-align: center;
    background: #110F0E;
}
.eyebrow {
    color: #FA5B00;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}
.intro-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 30px;
    color: #fff;
}
.intro-section p {
    max-width: 800px;
    margin: 0 auto 40px;
    color: #EAEAEA;
    font-size: 1.1rem;
    line-height: 1.6;
}
.btn-outline {
    display: inline-block;
    padding: 16px 36px;
    border: 1px solid rgba(250, 91, 0, 0.4);
    color: #FA5B00;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-outline:hover {
    background: rgba(250, 91, 0, 0.1);
    border-color: #FA5B00;
}

/* PACKAGE SECTION */
.package-section {
    padding: 100px 0;
    background: #1B1817;
}
.grid-half {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}
@media (min-width: 992px) {
    .grid-half {
        grid-template-columns: 1fr 1fr;
    }
}
.package-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 15px;
    color: #fff;
}
.location-pin {
    color: #a0a0a0;
    font-size: 16px;
    margin-bottom: 25px;
}
.rating-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}
.rating-score {
    background: #FA5B00;
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    padding: 10px 15px;
    border-radius: 8px;
}
.rating-text strong {
    display: block;
    color: #fff;
    font-size: 18px;
}
.rating-text span {
    color: #a0a0a0;
    font-size: 14px;
}
.features-list {
    margin-top: 30px;
}
.features-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #EAEAEA;
}
.features-list li::before {
    content: "✓";
    color: #FA5B00;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

/* CAROUSEL */
.carousel {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    width: 100%;
}
.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}
.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}
.carousel-btn:hover {
    background: #FA5B00;
}
.carousel-btn.prev {
    left: 15px;
}
.carousel-btn.next {
    right: 15px;
}
.carousel-btn svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}

/* CHOICE SECTION */
.choice-section {
    padding: 100px 0;
    background: #110F0E;
}
.tabs-header {
    text-align: center;
    margin-bottom: 50px;
}
.tabs-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 15px;
    color: #fff;
}
input[name="local-tab"] {
    display: none;
}
.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.tab-btn {
    padding: 20px 40px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}
.tab-btn .title {
    display: block;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
    color: #fff;
}
.tab-btn .desc {
    color: #a0a0a0;
    font-size: 14px;
}
#tab-meletti:checked ~ .tabs-nav label[for="tab-meletti"],
#tab-bistro:checked ~ .tabs-nav label[for="tab-bistro"] {
    background: rgba(250, 91, 0, 0.1);
    border-color: #FA5B00;
}
.panels {
    position: relative;
}
.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}
#tab-meletti:checked ~ .panels #panel-meletti,
#tab-bistro:checked ~ .panels #panel-bistro {
    display: grid;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.schedule-list {
    margin-top: 30px;
}
.schedule-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 20px;
}
.schedule-list .time {
    font-weight: 700;
    color: #FA5B00;
    font-size: 18px;
    min-width: 60px;
}
.schedule-list .desc {
    color: #EAEAEA;
    font-size: 16px;
    line-height: 1.5;
}

/* CTA FINAL */
.cta-final {
    text-align: center;
    padding: 80px 0 20px;
}
.cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 54px);
    color: #fff;
    margin-bottom: 0;
}

/* BTN LARGE */
.btn-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #FA5B00;
    color: #F7F2EE !important;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    font-size: 18px;
    padding: 20px 52px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.btn-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(250, 91, 0, 0.35);
}
