        :root {
            --primary-dark: #3A2525;
            --bg-white: #FFFFFF;
            --transition-slow: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }

        body {
            font-family: 'Roboto Flex', sans-serif;
            background-color: var(--bg-white);
            color: var(--primary-dark);
            margin: 0;
            overflow-x: hidden;
            font-variation-settings: "wdth" 100, "GRAD" 0, "XOPQ" 96, "XTRA" 468, "YOPQ" 79, "YTAS" 750, "YTDE" -203, "YTFI" 738, "YTLC" 514, "YTUC" 712;
        }

        /* --- HEADER --- */
        header {
            position: fixed;
            top: 0; width: 100%; z-index: 1000;
            background-color: var(--primary-dark);
            color: white;
            transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.5s ease;
        }
        header.hide { transform: translateY(-100%); }
        header.scrolled { background-color: rgba(58, 37, 37, 0.95); backdrop-filter: blur(10px); }

        .nav-item {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            padding: 10px 0;
            position: relative;
        }
        .nav-item::after {
            content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
            background: white; transition: width 0.4s ease;
        }
        .nav-item:hover::after { width: 100%; }

        /* --- HERO REVEALS --- */
        .hero-left-reveal { transform: translateY(100%); transition: var(--transition-slow); }
        .hero-right-reveal { transform: translateY(-100%); transition: var(--transition-slow); }
        .revealed { transform: translateY(0); }

        /* --- PARALLAX ZOOM --- */
        .parallax-container { overflow: hidden; position: relative; }
        .parallax-img { transition: transform 0.1s linear; transform: scale(1.5); }

        /* --- ANIMATIONS --- */
        .reveal-up { opacity: 0; transform: translateY(50px); transition: var(--transition-slow); }
        .reveal-up.active { opacity: 1; transform: translateY(0); }

        /* --- CUSTOM UI ELEMENTS --- */
        .editorial-frame {
            border: 20px solid var(--primary-dark);
            background: var(--bg-white);
            transition: var(--transition-slow);
        }
        .luxury-card {
            background: white;
            padding: 40px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.05);
        }
        .luxury-btn {
            border: 1px solid white;
            padding: 15px 40px;
            font-size: 10px;
            font-weight: 900;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            transition: all 0.4s ease;
        }
        .luxury-btn:hover { background: white; color: var(--primary-dark); }

        .dark-btn {
            border: 1px solid var(--primary-dark);
            background: var(--primary-dark);
            color: white;
            padding: 15px 40px;
            font-size: 10px;
            font-weight: 900;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            transition: all 0.4s ease;
        }
        .dark-btn:hover { background: transparent; color: var(--primary-dark); }

        /* Modal / Search Overlay */
        #search-overlay {
            position: fixed; inset: 0; background: var(--primary-dark);
            z-index: 2000; display: none; flex-direction: column;
            justify-content: center; align-items: center; color: white;
        }

        .search-input {
            background: transparent; border-bottom: 2px solid white;
            width: 80%; max-width: 800px; padding: 20px; font-size: 4rem;
            font-weight: 100; outline: none; text-align: center;
        }

        .mobile-nav {
            display: none; position: fixed; inset: 0; background: var(--primary-dark);
            z-index: 1500; flex-direction: column; align-items: center; justify-content: center;
        }
