        :root {
            --brand-green: #A8BBA3;
            --brand-gold: #D4AF37;
            --brand-dark: #000000;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--brand-dark);
            color: #fff;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        .iceland-regular { font-family: "Iceland", sans-serif; }
        
        /* Animation Primitives */
        .reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1); }
        .reveal.active { opacity: 1; transform: translateY(0); }

        /* Typewriter Cursor */
        .typewriter-cursor::after {
            content: '|';
            animation: blink 1s step-end infinite;
            color: var(--brand-gold);
        }
        @keyframes blink { 50% { opacity: 0; } }

        /* Scroll Motion Tracking Classes */
        .motion-slide { transition: transform 0.1s linear; will-change: transform; }

        /* Hero Styling */
        .hero-video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }
        .hero-overlay {
            background: linear-gradient(to right, rgba(0,0,0,0.9) 20%, rgba(0,0,0,0.4) 100%);
        }

        /* Buttons */
        .btn-luxury {
            border: 1px solid #fff;
            padding: 14px 32px;
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        .btn-luxury:hover {
            background-color: #fff;
            color: #000;
        }

        /* Navigation */
        .nav-item {
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
            cursor: pointer;
        }
        .nav-item::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -5px;
            left: 0;
            background: #fff;
            transition: width 0.3s ease;
        }
        .nav-item:hover::after { width: 100%; }

        /* Product Cards */
        .card-glow {
            transition: all 0.4s ease;
            border: 1px solid rgba(255,255,255,0.05);
        }
        .card-glow:hover {
            border-color: var(--brand-gold);
            box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
            transform: translateY(-10px);
        }

        /* Page Transitions */
        .page-node { display: none; }
        .page-node.active { display: block; animation: fadeIn 0.8s ease forwards; }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: #000; }
        ::-webkit-scrollbar-thumb { background: #333; }
        ::-webkit-scrollbar-thumb:hover { background: var(--brand-gold); }

        /* Split Section Images */
        .split-img { transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
    