        :root {
            --brown: #8C5A3C;
            --cream: #EEFABD;
            --white: #FFFFFF;
            --black: #1A1A1A;
            --gray: #F4F4F4;
            --transition-slow: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
            --transition-med: all 0.4s ease;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Overlock', sans-serif;
            background-color: var(--white);
            color: var(--black);
            overflow-x: hidden;
            line-height: 1.8;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3 { font-weight: 900; color: var(--brown); line-height: 1.1; text-transform: none; }
        h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
        h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 20px; }
        p { font-size: 1.1rem; margin-bottom: 1.5rem; color: #333; }

        /* --- HEADER --- */
        header {
            position: fixed; top: 0; width: 100%; height: 90px;
            background: var(--white); z-index: 1000;
            display: flex; justify-content: space-between; align-items: center;
            padding: 0 5%; border-bottom: 1px solid rgba(0,0,0,0.05);
        }
.logo-wrapper{
    height:100%;
    display:flex;
    align-items:center;
    cursor:pointer;
}

.logo-box{
    height:60px;
    width:auto;
    max-width:200px;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.logo-img{
    height:170px;
    width:auto;
    object-fit:contain;
    display:block;
}        nav { display: flex; gap: 35px; }
        nav a { 
            text-decoration: none; color: var(--black); font-weight: 700; 
            text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1.5px;
            transition: var(--transition-med);
        }
        nav a:hover { color: var(--brown); }

        /* --- GLOBAL SPLIT LAYOUT --- */
        .split-section {
            display: flex; min-height: 90vh; width: 100%;
            overflow: hidden;
        }
        .split-side { flex: 1; position: relative; display: flex; flex-direction: column; justify-content: center; padding: 10%; }
        .split-image { padding: 0; overflow: hidden; }
        .split-image img { 
            width: 100%; height: 100%; object-fit: cover; display: block; 
            transition: transform 10s ease;
        }
        .split-section:hover .split-image img { transform: scale(1.1); }
        
        .bg-cream { background-color: var(--cream); }
        .bg-white { background-color: var(--white); }

        /* --- HERO --- */
        .hero-left { background: #f9f9f9; }
        .hero-text-box {
            background: var(--white); padding: 60px; position: absolute;
            left: 50%; top: 50%; transform: translate(-50%, -50%);
            width: 85%; z-index: 20; box-shadow: 40px 40px 0px var(--cream);
        }
        .marquee-container {
            overflow: hidden; white-space: nowrap; margin: 30px 0;
            background: var(--brown); color: var(--white); padding: 12px 0;
        }
        .marquee-text {
            display: inline-block; animation: marquee 25s linear infinite;
            font-weight: 700; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 2px;
        }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        /* --- DECORATIVE & BUTTONS --- */
        .deco-line { width: 80px; height: 5px; background: var(--brown); margin-bottom: 35px; }
        .btn {
            display: inline-flex; align-items: center; justify-content: center;
            padding: 18px 45px; background: var(--brown);
            color: var(--white); text-decoration: none; font-weight: 700;
            margin-top: 20px; transition: var(--transition-med); border: none; 
            cursor: pointer; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem;
        }
        .btn:hover { background: #6b432d; transform: translateY(-5px); box-shadow: 0 15px 30px rgba(140, 90, 60, 0.25); }
        
        /* --- PAGES --- */
        .page { display: none; padding-top: 90px; }
        .page.active { display: block; animation: pageIn 0.8s ease-out; }
        @keyframes pageIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

        /* --- QUICK VIEW OVERLAY --- */
        .overlay {
            position: fixed; inset: 0; background: rgba(0,0,0,0.9);
            backdrop-filter: blur(8px); z-index: 3000; display: none;
            align-items: center; justify-content: center; padding: 30px;
        }
        .overlay.active { display: flex; }
        .overlay-card {
            background: var(--white); width: 100%; max-width: 1200px;
            max-height: 85vh; overflow-y: auto; position: relative;
            box-shadow: 0 25px 50px rgba(0,0,0,0.5);
        }
        .close-overlay { 
            position: absolute; top: 25px; right: 25px; cursor: pointer; 
            z-index: 50; background: var(--white); border-radius: 50%; padding: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        /* --- FOOTER --- */
        footer { background: var(--brown); color: var(--white); padding: 100px 5% 40px; }
        .footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; margin-bottom: 80px; }
        .footer-logo { font-size: 2.2rem; font-weight: 900; margin-bottom: 25px; color: var(--white); }
        .footer-links h4 { margin-bottom: 25px; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; }
        .footer-links a { 
            display: block; color: rgba(255,255,255,0.7); text-decoration: none; 
            margin-bottom: 15px; transition: var(--transition-med); cursor: pointer;
        }
        .footer-links a:hover { color: var(--white); padding-left: 8px; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 40px; text-align: center; font-size: 0.85rem; opacity: 0.6; }

        input[type="email"] {
            width: 100%; padding: 18px; border: none; background: rgba(255,255,255,0.1); 
            color: white; margin-bottom: 15px; font-family: inherit; outline: none; border: 1px solid transparent;
        }
        input[type="email"]:focus { border-color: var(--cream); }
        input[type="email"]::placeholder { color: rgba(255,255,255,0.5); }

        /* --- LEGAL CONTENT STYLES --- */
        .legal-container { max-width: 800px; margin: 0 auto; padding: 100px 20px; }
        .legal-container h1 { margin-bottom: 40px; }
        .legal-container h3 { margin: 40px 0 20px; color: var(--brown); font-size: 1.5rem; }

        /* --- FILTER BAR --- */
        .filter-nav { 
            background: var(--cream); padding: 50px 5%; display: flex; 
            justify-content: center; gap: 20px; flex-wrap: wrap; 
        }
        .filter-item {
            padding: 12px 30px; border: 2px solid var(--brown); font-weight: 700;
            text-transform: uppercase; font-size: 0.8rem; cursor: pointer;
            transition: var(--transition-med); color: var(--brown);
        }
        .filter-item.active { background: var(--brown); color: var(--white); }

        @media (max-width: 1024px) {
            .split-section { flex-direction: column; }
            .split-section:nth-child(even) { flex-direction: column; }
            .footer-main { grid-template-columns: 1fr 1fr; }
            .hero-text-box { position: relative; transform: none; left: 0; top: 0; width: 100%; box-shadow: none; margin: 40px auto; }
        }
