        @import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

        @font-face {
            font-family: 'Cubao';
            src: url('../assets/fonts/cubao-free-regular.otf') format('opentype');
            font-weight: normal;
            font-style: normal;
        }

        body, html {
            margin: 0;
            padding: 0;
            width: 100%;
            background-color: #000;
            font-family: 'DM Sans', sans-serif;
            color: #fff;
        }

        /* Make the body tall enough for five scenes */
        body {
            height: 1000vh; 
        }

        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: transparent;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-sizing: border-box;
            padding: 40px 80px;
            z-index: 100;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .navbar .logo {
            height: 24px;
        }

        .navbar .logo img {
            height: 100%;
        }

        .navbar .nav-links {
            display: flex;
            gap: 30px;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .navbar .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1px;
            transition: color 0.3s;
        }

        .navbar .nav-links a:hover {
            color: #a3c4a6;
        }

        .navbar .lang-switch {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .navbar .lang-switch svg {
            color: #fff;
        }

        .navbar .lang-switch a {
            color: #fff;
            text-decoration: none;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1px;
            transition: color 0.3s;
        }

        .navbar .lang-switch a:hover {
            color: #a3c4a6;
        }

        .navbar-right {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .nav-btn {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            text-decoration: none;
            padding: 10px 20px;
            transition: all 0.3s ease;
            /* No rounded corners */
            border-radius: 0;
        }

        .nav-btn-outline {
            color: #fff;
            border: 1px solid rgba(255,255,255,0.4);
        }

        .nav-btn-outline:hover {
            border-color: #a3c4a6;
            color: #a3c4a6;
        }

        .nav-btn-solid {
            background-color: #fff;
            color: #000;
            border: 1px solid #fff;
        }

        .nav-btn-solid:hover {
            background-color: #a3c4a6;
            border-color: #a3c4a6;
            color: #000;
        }

        .shuffle-widget {
            position: fixed;
            bottom: 40px;
            left: 80px;
            width: 140px;
            height: 140px;
            z-index: 100;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
            cursor: pointer;
        }

        .shuffle-circle {
            position: absolute;
            width: 70px;
            height: 70px;
            background-color: #a3c4a6; /* soft green */
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #000;
            font-size: 11px;
            font-family: 'Cubao', sans-serif;
            letter-spacing: 1px;
            z-index: 2;
            pointer-events: auto;
        }

        .shuffle-text {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 1;
            will-change: transform;
        }

        .shuffle-text svg {
            overflow: visible;
        }

        .shuffle-text text {
            font-size: 6px;
            font-weight: 500;
            fill: #fff;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .top-gradient {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 180px;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
            -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
            z-index: 90;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        /* Sticky container locks to screen */
        .sticky-container {
            position: sticky;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Scene Container */
        .scene {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            will-change: opacity;
            pointer-events: none;
        }

        /* Image Layers */
        .layer {
            position: absolute;
            object-fit: cover;
            width: 100%;
            height: 100%;
            will-change: transform, filter;
            transform-origin: center center;
            pointer-events: none;
        }

        .bg-layer { z-index: 1; }
        .fg-layer { z-index: 3; }

        /* Story Text Container */
        .story-content {
            position: absolute;
            z-index: 2;
            width: 100%;
            height: 100%;
            pointer-events: none;
            opacity: 0;
            transform: translateY(50px);
            filter: blur(10px);
            will-change: opacity, transform, filter;
            text-shadow: 0px 4px 20px rgba(0,0,0,0.7);
        }

        .story-block {
            position: absolute;
            max-width: 450px;
        }

        .story-block.top-left {
            top: 25%;
            left: 80px;
            text-align: left;
        }

        .story-block.bottom-right {
            bottom: 20%;
            right: 80px;
            text-align: right;
        }

        .menu-thumbnail-wrapper {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            width: 100%;
            max-width: 450px;
            margin-bottom: 24px;
            pointer-events: auto; /* Required since story-content is pointer-events: none */
            float: right;
        }

        .menu-thumbnail-img {
            display: block;
            width: 100%;
            height: auto;
            border-radius: 0; /* No rounded corners */
            margin-bottom: 16px;
            transition: transform 0.4s ease, filter 0.4s ease;
        }

        .menu-thumbnail-img:hover {
            transform: scale(1.02);
            filter: brightness(1.1);
        }

        .menu-direct-btn {
            display: inline-block;
            width: auto;
            min-width: 160px;
            text-align: center;
        }


        /* Scene 5 Footer */
        .scene5-footer {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            box-sizing: border-box;
            padding: 24px 80px 14px;
            display: flex;
            flex-direction: column;
            background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 60%, transparent 100%);
            z-index: 10;
            pointer-events: auto;
        }

        .footer-main {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 24px;
            margin-bottom: 18px;
        }

        .footer-col {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .footer-col-title {
            font-family: 'Cubao', sans-serif;
            font-size: 13px;
            font-weight: normal;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 6px;
        }

        .footer-col a {
            color: rgba(255,255,255,0.55);
            text-decoration: none;
            font-size: 12px;
            font-weight: 400;
            line-height: 1.8;
            transition: color 0.3s;
        }

        .footer-col a:hover { color: #a3c4a6; }

        /* Store location col */
        .footer-store-address {
            font-size: 12px;
            color: rgba(255,255,255,0.55);
            line-height: 1.8;
            margin: 0;
        }

        /* Social icons */
        .footer-social-icons {
            display: flex;
            gap: 14px;
            margin-top: 4px;
        }

        .footer-social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: border-color 0.3s, color 0.3s;
        }

        .footer-social-icons a:hover { border-color: #a3c4a6; color: #a3c4a6; }

        .footer-social-icons svg { width: 14px; height: 14px; }

        /* Contact buttons */
        .footer-contact-btns {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-btn {
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(255,255,255,0.3);
            padding: 8px 16px;
            min-width: 180px;
            cursor: pointer;
            transition: border-color 0.3s;
        }

        .footer-btn:hover { border-color: #a3c4a6; }

        .footer-btn-number {
            font-size: 11px;
            color: rgba(255,255,255,0.5);
            letter-spacing: 1px;
        }

        .footer-btn-label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #fff;
            margin-top: 3px;
        }

        /* Footer bottom bar */
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 10px;
            border-top: 1px solid rgba(255,255,255,0.15);
        }

        .footer-bottom span, .footer-bottom a {
            font-size: 10px;
            color: rgba(255,255,255,0.3);
            text-decoration: none;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            transition: color 0.3s;
        }

        .footer-bottom a:hover { color: rgba(255,255,255,0.6); }

        .footer-bottom-links {
            display: flex;
            gap: 24px;
        }

        .story-title {
            font-family: 'Cubao', sans-serif;
            font-size: 64px;
            font-weight: normal;
            margin-bottom: 15px;
            letter-spacing: 2px;
            line-height: 1.1;
        }

        .story-text {
            position: relative;
            display: inline-block;
            font-size: 18px;
            line-height: 1.6;
            font-weight: 400;
        }

        .story-text::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: calc(var(--line-progress, 0) * 100%);
            height: 2px;
            background-color: #fff;
            transition: width 0.1s linear;
        }

        .story-block.bottom-right .story-text::after {
            left: auto;
            right: 0;
        }

        /* Black Transition Overlay */
        .black-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #000;
            z-index: 20;
            opacity: 0;
            pointer-events: none;
            will-change: opacity;
        }

        /* Intro Screen */
        .intro-screen {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #000;
            z-index: 50;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            will-change: opacity;
        }

        .intro-text {
            font-family: 'DM Sans', sans-serif;
            font-size: 18px;
            font-weight: 500;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .intro-logo {
            width: 320px;
        }

        .intro-scroll-hint {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            margin-top: 40px; /* Space it right under the logo */
            opacity: 0;
            animation: scrollHintFadeIn 0.6s ease 1.2s forwards;
        }

        .intro-scroll-label {
            font-family: 'Cubao', sans-serif;
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.6);
        }

        .intro-scroll-arrow {
            width: 20px;
            height: 20px;
            color: rgba(255,255,255,0.5);
            animation: scrollArrowBounce 1.4s ease-in-out infinite;
        }

        @keyframes scrollHintFadeIn {
            to { opacity: 1; }
        }

        @keyframes scrollArrowBounce {
            0%, 100% { transform: translateY(0); }
            50%       { transform: translateY(7px); }
        }

        /* =============================================
           PRELOADER
        ============================================= */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #000;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 24px;
            transition: opacity 0.6s ease;
        }

        #preloader-counter {
            font-family: 'Cubao', sans-serif;
            font-size: clamp(36px, 5vw, 60px);
            color: #fff;
            line-height: 1;
            letter-spacing: 2px;
            font-variant-numeric: tabular-nums;
            user-select: none;
        }

        #preloader-bar-track {
            width: clamp(200px, 30vw, 400px);
            height: 1px;
            background-color: rgba(255, 255, 255, 0.15);
            position: relative;
            overflow: hidden;
        }

        #preloader-bar-fill {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0%;
            background-color: #fff;
            transition: width 0.05s linear;
        }

