        :root {
            --deep-navy: #213448;
            --white: #d59090;
            --steel-blue: #547792;
            --warm-accent: #F9B487;
        }

        body {
            font-family: 'Montagu Slab', serif;
            background-color: var(--white);
            color: var(--deep-navy);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* GEOMETRIC CLIPS */
        .clip-hero-left { clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%); }
        @media (max-width: 1024px) { .clip-hero-left { clip-path: none; } }
        
        .clip-slant-down { clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%); }
        .clip-slant-up { clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%); }
        .clip-footer { clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%); }
        .clip-btn { clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%); }
        .clip-card { clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%); }

        /* ANIMATIONS */
        @keyframes panBG {
            0% { transform: scale(1) translate(0, 0); }
            100% { transform: scale(1.1) translate(-2%, -2%); }
        }
        .hero-bg-anim { animation: panBG 15s infinite alternate ease-in-out; }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .animate-marquee { animation: marquee 25s linear infinite; }

        /* CUSTOM NAVIGATION */
        .nav-link {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            font-weight: 700;
            position: relative;
            transition: all 0.3s;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--warm-accent);
            transition: width 0.3s;
            transform: skewX(-20deg);
        }
        .nav-link.active::after, .nav-link:hover::after { width: 100%; }

        /* BUTTONS */
        .btn-bt {
            background: var(--warm-accent);
            color: var(--deep-navy);
            padding: 1rem 2.5rem;
            font-weight: 800;
            text-transform: uppercase;
            clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: none;
            display: inline-block;
        }
        .btn-bt:hover {
            transform: translateY(-3px) scale(1.05);
            filter: brightness(1.1);
        }

        /* LOOKBOOK SCATTER */
        .lookbook-item:nth-child(odd) { transform: rotate(-3deg) translateY(20px); }
        .lookbook-item:nth-child(even) { transform: rotate(3deg) translateY(-20px); }
        .lookbook-item:hover { transform: rotate(0deg) scale(1.1) !important; z-index: 50; }

        /* MOBILE MENU */
        #mobile-menu {
            clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
            transition: clip-path 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        }
        #mobile-menu.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }

        /* STAGGERED GRID */
        @media (min-width: 768px) {
            .stagger-grid .grid-item:nth-child(2n) { margin-top: 120px; }
            .stagger-grid .grid-item:nth-child(2n+1) { margin-top: -40px; }
        }

        /* MODAL */
        .modal-overlay {
            background: rgba(33, 52, 72, 0.98);
            backdrop-filter: blur(10px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s;
        }
        .modal-overlay.active { opacity: 1; visibility: visible; }
        .modal-content-box {
            transform: translateY(50px) scale(0.95);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .modal-overlay.active .modal-content-box { transform: translateY(0) scale(1); }
    