        :root {
            --accent: #EA7B7B;
            --bg: #FFFFFF;
            --text: #1a1a1a;
        }

        body {
            font-family: 'Smooch Sans', sans-serif;
            background-color: var(--bg);
            color: var(--text);
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        .serif-italic { font-family: 'Playfair Display', serif; font-style: italic; }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 4px; }
        ::-webkit-scrollbar-track { background: #f1f1f1; }
        ::-webkit-scrollbar-thumb { background: var(--accent); }

        /* Animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .hero-zoom {
            animation: heroZoom 20s infinite alternate;
        }
        @keyframes heroZoom {
            from { transform: scale(1); }
            to { transform: scale(1.15); }
        }

        /* Search Modal */
        #search-modal {
            display: none;
            backdrop-filter: blur(15px);
            background: rgba(255,255,255,0.95);
        }

        /* Page Transitions */
        .page-content {
            display: none;
            animation: fadeIn 0.8s ease-out forwards;
        }
        .page-content.active { display: block; }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Luxury Filter Tabs */
        .filter-btn.active {
            color: var(--accent);
            border-bottom: 2px solid var(--accent);
        }

        /* Masonry-like Grids */
        .editorial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            grid-auto-rows: 400px;
            gap: 20px;
        }
        .grid-tall { grid-row: span 2; }
        .grid-wide { grid-column: span 2; }

        @media (max-width: 768px) {
            .grid-wide { grid-column: span 1; }
            .grid-tall { grid-row: span 1; }
        }
