* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        html,
        body {
            width: 100%;
            height: 100%;
            min-height: 100dvh;
            font-family: 'Montserrat', sans-serif;
            background-color: #0d0d0d;
            color: #ffffff;
            overflow: hidden;
            /* Prevents initial horizontal scrollbar layout jump */
            position: relative;
        }

        /* Background Slider Container */
        .hero-slider {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            height: 100dvh;
            z-index: 1;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transform: scale(1.08);
            transition: opacity 1.5s ease, transform 6s ease;
            will-change: transform, opacity;
            backface-visibility: hidden;
        }

        .slide.active {
            opacity: 0.45;
            transform: scale(1);
        }

        /* Top Branding Bar Overlay */
        .top-bar {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            padding: clamp(15px, 3vh, 30px) clamp(20px, 4vw, 50px);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 20;
            pointer-events: none;
        }

        .brand-text,
        .logo-container {
            pointer-events: auto;
        }

        .brand-text {
            font-family: 'Cinzel', serif;
            font-size: clamp(1.1rem, 2vw, 2.4rem);
            letter-spacing: 3px;
            font-weight: 700;
            color: #ffffff;
            text-transform: uppercase;
            opacity: 0;
            transform: translateY(-20px);
            will-change: transform, opacity;
        }

        .brand-text span {
            display: block;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
            letter-spacing: 3px;
            color: #d4af37;
            margin-top: 4px;
            font-weight: bold;
            text-align: center;
        }

        .logo-container {
            display: none;
        }

        .logo-container img {
            height: clamp(45px, 6vh, 85px);
            width: auto;
            filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
            opacity: 0;
            transform: translateY(-20px);
            will-change: transform, opacity;
        }

        /* Full Height Split Location Cards */
        .locations-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            height: 100dvh;
            display: flex;
            z-index: 10;
            overflow: hidden;
        }

        .location-card {
            flex: 1;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: clamp(80px, 12vh, 120px) 20px;
            position: relative;
            cursor: pointer;
            border-right: 1px solid rgba(255, 255, 255, 0.12);
            transition: background 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
            will-change: transform, opacity;
        }

        .location-card:last-child {
            border-right: none;
        }

        /* Full Height Dark Overlay On Hover */
        .location-card:hover {
            background: rgba(0, 0, 0, 0.45);
        }

        .location-card h2 {
            font-family: 'Cinzel', serif;
            font-size: clamp(1.4rem, 2.8vw, 3rem);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 8px;
            color: #ffffff;
            line-height: 1.2;
        }

        .location-card p {
            font-size: clamp(0.65rem, 1vw, 0.9rem);
            letter-spacing: 2px;
            color: #cccccc;
            margin-bottom: 25px;
            text-transform: uppercase;
        }

        .btn-enter {
            display: inline-block;
            padding: clamp(10px, 1.5vh, 14px) clamp(24px, 3vw, 36px);
            border: 1px solid #ffffff;
            color: #ffffff;
            text-decoration: none;
            text-transform: uppercase;
            font-size: clamp(0.7rem, 0.9vw, 0.85rem);
            letter-spacing: 2.5px;
            font-weight: 600;
            transition: all 0.3s ease;
            background: transparent;
        }

        .location-card:hover .btn-enter {
            background: #ffffff;
            color: #0d0d0d;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
        }

        /* Footer Tagline Overlay */
        .footer-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: clamp(15px, 2.5vh, 25px) 15px;
            text-align: center;
            z-index: 20;
            font-size: clamp(0.6rem, 0.8vw, 0.75rem);
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.6);
            pointer-events: none;
        }

        /* Mobile Responsive Overrides */
        @media (max-width: 768px) {

            html,
            body {
                overflow-x: hidden;
                overflow-y: auto;
            }

            .locations-wrapper {
                position: relative;
                flex-direction: column;
                height: auto;
                min-height: 100dvh;
            }

            .location-card {
                height: 50vh;
                min-height: 320px;
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.15);
                padding: 60px 20px;
            }

            .location-card:last-child {
                border-bottom: none;
            }

            .top-bar,
            .footer-bar {
                position: fixed;
            }
        }