        :root {
            --luxury-brown: #7B542F;
            --pure-black: #000000;
            --pure-white: #FFFFFF;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--pure-black);
            color: var(--pure-white);
            font-family: 'Red Hat Display', sans-serif;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Typography */
        h1, h2, h3, h4, .logo {
            text-transform: uppercase;
            letter-spacing: 0.25em;
        }
        
        p { font-weight: 300; line-height: 1.8; letter-spacing: 0.02em; }

        /* Header logic: Disappears on scroll */
        header {
            background-color: var(--pure-black);
            height: 60px;
            width: 100%;
            position: fixed;
            top: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
            padding: 0 5%;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        header.nav-hidden {
            transform: translateY(-100%);
        }

        .logo { font-size: 0.9rem; font-weight: 900; cursor: pointer; }
        .menu-btn { font-weight: 500; cursor: pointer; font-size: 0.7rem; letter-spacing: 0.3em; transition: 0.3s; }
        .menu-btn:hover { opacity: 0.6; }

        /* Smaller Top Dropdown Menu */
        #menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.4);
            backdrop-filter: blur(5px);
            z-index: 2000;
            display: none;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        #menu-box {
            width: 320px;
            background: BLACK;
            padding: 40px;
            position: absolute;
            top: 0;
            transform: translateY(-100%);
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            text-align: center;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .menu-item {
            display: block;
            padding: 12px 0;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            cursor: pointer;
            transition: 0.3s;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .menu-item:last-child { border-bottom: none; }
        .menu-item:hover { letter-spacing: 0.5em; opacity: 0.7; }

        /* Hero with Ken Burns Animation */
        .hero {
            height: 120vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 0 10%;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(0,0,0,0.8) 20%, transparent),
                        url('https://static.wixstatic.com/media/88aac0_949e58bbbd864228b45411724423d571~mv2.jpg/v1/fill/w_2164,h_1275,al_r,q_90,usm_0.66_1.00_0.01,enc_avif,quality_auto/88aac0_949e58bbbd864228b45411724423d571~mv2.jpg');
            background-size: cover;
            background-position: center;
            z-index: -1;
            animation: zoomBg 20s infinite alternate ease-in-out;
        }

        @keyframes zoomBg {
            from { transform: scale(1); }
            to { transform: scale(1.1); }
        }

        /* Buttons */
        .btn {
            padding: 14px 40px;
            border: 1px solid white;
            background: transparent;
            color: white;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 0.2em;
            transition: all 0.4s ease;
            cursor: pointer;
            display: inline-block;
            font-size: 0.65rem;
        }
        .btn:hover { background: white; color: black; }

        /* Section Mechanics */
        .section-brown { background-color: var(--luxury-brown); }
        .section-black { background-color: var(--pure-black); }

        /* Collection Overlap */
        .coll-row {
            display: flex;
            align-items: center;
            position: relative;
            padding: 120px 5%;
            overflow: visible;
        }
        .coll-image { width: 65%; height: 700px; overflow: hidden; }
        .coll-image img { width: 100%; height: 100%; object-fit: cover; transition: 1.5s; filter: grayscale(0.5); }
        .coll-row:hover img { transform: scale(1.05); filter: grayscale(0); }

        .coll-text-card {
            width: 40%;
            padding: 60px;
            position: absolute;
            right: 5%;
            z-index: 10;
            box-shadow: 30px 30px 60px rgba(0,0,0,0.25);
        }
        .row-reverse .coll-image { margin-left: auto; }
        .row-reverse .coll-text-card { left: 5%; right: auto; }

        /* Floating Chatbot */
        #chat-trigger {
    position: fixed;          /* Makes it stay on screen */
    right: 30px;              /* Distance from right */
    bottom: 30px;             /* Distance from bottom */
            transform: translateX(-50%);
            width: 50px;
            height: 50px;
            border: 1px solid white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            animation: pulse 2.5s infinite;
            background: transparent;
        }

#chat-trigger:hover {
    transform: scale(1.1);
}

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
            70% { box-shadow: 0 0 0 15px rgba(255,255,255,0); }
            100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
        }

        .chat-window {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 320px;
            height: 400px;
            background: black;
            border: 1px solid var(--luxury-brown);
            z-index: 5000;
            display: none;
            flex-direction: column;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
        }

        /* Pages */
        .page { display: none; }
        .page.active { display: block; }

        /* Quick View Modal */
        #qv-overlay {
            position: fixed;
            inset: 0;
            background: black;
            z-index: 9999;
            display: none;
            overflow-y: auto;
            padding: 100px 5%;
        }

        /* Filter Styles */
        .filter-btn { opacity: 0.4; transition: 0.3s; cursor: pointer; }
        .filter-btn.active { opacity: 1; border-bottom: 1px solid white; }
