        :root {
            --navy: #0F172A;
            --teal: #0D9488;
            --soft-white: #F8FAFC;
            --romantic-bg: #FAF9F6;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--romantic-bg);
            color: #334155;
            scroll-behavior: smooth;
        }

        h1, h2, h3, .font-heading { font-family: 'DM Sans', sans-serif; }
        .serif { font-family: 'Playfair Display', serif; }

        /* Glamorous Glassmorphism */
        .glass-nav {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(15, 23, 42, 0.05);
        }

        /* Lookbook Animations */
        .reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
        .reveal.active { opacity: 1; transform: translateY(0); }

        .service-card {
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.15);
        }

        /* Filter Active State */
        .filter-btn.active {
            background: var(--navy);
            color: white;
            border-color: var(--navy);
        }

        /* Modal Transitions */
        .modal-overlay { opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
        .modal-overlay.open { opacity: 1; pointer-events: auto; }
        
        /* Romantic E-commerce Touches */
        .lookbook-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 60%, rgba(15, 23, 42, 0.6));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .lookbook-item:hover::after { opacity: 1; }

        .custom-scrollbar::-webkit-scrollbar { width: 6px; }
        .custom-scrollbar::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
