
        /* Menu Page Specific Styles */
        .page-hero {
            min-height: 40vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 120px 20px 60px;
            background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .page-hero-content {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .page-tagline {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: #d4af37;
            margin-bottom: 1rem;
        }

        .page-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 400;
            color: #fff;
            margin: 0;
            line-height: 1.2;
        }

        .page-subtitle {
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 1.5rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Menu Section */
        .menu-section {
            background: #0a0a0a;
            padding: 80px 20px 120px;
            position: relative;
        }

        .menu-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 60px;
            background: linear-gradient(180deg, rgba(212, 175, 55, 0.5), transparent);
        }

        .menu-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .menu-intro {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: #d4af37;
            margin-bottom: 1.5rem;
        }

        .label-line {
            width: 30px;
            height: 1px;
            background: #d4af37;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }

        /* Menu Card */
        .menu-card {
            position: relative;
            background: linear-gradient(145deg, #151515 0%, #0d0d0d 100%);
            border: 1px solid rgba(212, 175, 55, 0.15);
            border-radius: 4px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .menu-card:hover {
            transform: translateY(-8px);
            border-color: rgba(212, 175, 55, 0.4);
            box-shadow:
                0 20px 40px rgba(0, 0, 0, 0.4),
                0 0 60px rgba(212, 175, 55, 0.08);
        }

        .menu-card-image {
            position: relative;
            aspect-ratio: 1/1;
            overflow: hidden;
            background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .menu-card-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 30%;
            background: linear-gradient(to top, #0d0d0d, transparent);
            pointer-events: none;
            z-index: 1;
        }

        .menu-card-image img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .menu-card:hover .menu-card-image img {
            transform: scale(1.05);
        }

        .menu-card {
            cursor: pointer;
        }

        /* Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.92);
            backdrop-filter: blur(8px);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: linear-gradient(145deg, #151515 0%, #0a0a0a 100%);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 6px;
            max-width: 600px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            transform: scale(0.9) translateY(20px);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .modal-overlay.active .modal-content {
            transform: scale(1) translateY(0);
        }

        .modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 44px;
            height: 44px;
            background: rgba(10, 10, 10, 0.8);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: rgba(212, 175, 55, 0.2);
            border-color: #d4af37;
        }

        .modal-close svg {
            width: 20px;
            height: 20px;
            stroke: #d4af37;
        }

        .modal-image {
            width: 100%;
            aspect-ratio: 1/1;
            background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            position: relative;
        }

        .modal-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 40%;
            background: linear-gradient(to top, #0a0a0a, transparent);
            pointer-events: none;
        }

        .modal-image img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
        }

        .modal-body {
            padding: 32px 36px 40px;
        }

        .modal-category {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: #d4af37;
            margin-bottom: 12px;
            display: block;
        }

        .modal-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.25rem;
            font-weight: 500;
            color: #fff;
            margin: 0 0 16px;
            line-height: 1.2;
        }

        .modal-description {
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin: 0;
        }

        .modal-divider {
            width: 60px;
            height: 1px;
            background: linear-gradient(90deg, #d4af37, transparent);
            margin: 24px 0;
        }

        /* Prevent body scroll when modal open */
        body.modal-open {
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .modal-content {
                max-height: 85vh;
            }

            .modal-body {
                padding: 24px 24px 32px;
            }

            .modal-title {
                font-size: 1.75rem;
            }

            .modal-image {
                padding: 20px;
            }
        }

        .menu-card-content {
            padding: 24px 28px 28px;
        }

        .menu-card-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 500;
            color: #fff;
            margin: 0 0 8px;
            line-height: 1.3;
        }

        .menu-card-category {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.65rem;
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #d4af37;
            margin-bottom: 12px;
            display: block;
        }

        .menu-card-description {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.875rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
            margin: 0;
        }

        .menu-card-accent {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(4px);
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.3s ease;
        }

        .menu-card:hover .menu-card-accent {
            opacity: 1;
            transform: scale(1);
        }

        .menu-card-accent svg {
            width: 16px;
            height: 16px;
            stroke: #d4af37;
        }

        /* Custom Drinks CTA */
        .custom-cta {
            margin-top: 80px;
            text-align: center;
            padding: 60px 40px;
            background: linear-gradient(145deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
            border: 1px solid rgba(212, 175, 55, 0.15);
            border-radius: 4px;
            position: relative;
            overflow: hidden;
        }

        .custom-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
        }

        .custom-cta-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.75rem, 4vw, 2.25rem);
            font-weight: 400;
            color: #fff;
            margin: 0 0 16px;
        }

        .custom-cta-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.6);
            max-width: 500px;
            margin: 0 auto 28px;
            line-height: 1.7;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            text-decoration: none;
            padding: 16px 32px;
            border-radius: 2px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-primary {
            background: #d4af37;
            color: #0a0a0a;
            border: 1px solid #d4af37;
        }

        .btn-primary:hover {
            background: transparent;
            color: #d4af37;
        }



        /* Responsive */
        @media (max-width: 768px) {
            .menu-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .menu-card-content {
                padding: 20px 24px 24px;
            }

            .custom-cta {
                padding: 40px 24px;
            }
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 0.8s ease forwards;
        }

        .fade-in-delay-1 {
            animation-delay: 0.1s;
        }

        .fade-in-delay-2 {
            animation-delay: 0.2s;
        }

        .fade-in-delay-3 {
            animation-delay: 0.3s;
        }

        .fade-in-delay-4 {
            animation-delay: 0.4s;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }