        :root {
            --paper: #FDFCFB;
            --ink: #121212;
            --accent: #C5A059;
            --soft-grey: #F4F4F2;
        }

        body {
            background-color: var(--paper);
            color: var(--ink);
            font-family: 'Montserrat', sans-serif;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        .font-serif { font-family: 'Cormorant Garamond', serif; }
        .font-cursive { font-family: 'Dancing Script', cursive; }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 4px; }
        ::-webkit-scrollbar-track { background: var(--paper); }
        ::-webkit-scrollbar-thumb { background: var(--ink); }

        /* Animations */
        .reveal { opacity: 0; transform: translateY(30px); transition: all 1s cubic-bezier(0.2, 1, 0.3, 1); }
        .reveal.active { opacity: 1; transform: translateY(0); }

        .line-grow { width: 0; height: 1px; background: var(--ink); transition: width 1.5s ease-out; opacity: 0.2; }
        .line-grow.active { width: 100%; }

        /* Navigation */
        nav.scrolled { background: rgba(253, 252, 251, 0.98); padding: 1.5rem 3rem !important; border-bottom: 1px solid rgba(0,0,0,0.05); }

        .page { display: none; }
        .page.active { display: block; animation: fadeIn 0.8s ease; }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

        /* Editorial Components */
        .btn-editorial {
            padding: 1rem 2.5rem;
            border: 1px solid var(--ink);
            text-transform: uppercase;
            font-size: 0.65rem;
            letter-spacing: 0.3em;
            transition: all 0.4s ease;
            cursor: pointer;
            background: transparent;
        }
        .btn-editorial:hover { background: var(--ink); color: white; transform: translateY(-3px); }

        .magazine-shadow { box-shadow: 0 30px 60px -15px rgba(0,0,0,0.08); }

        /* Search Overlay */
        #search-overlay {
            position: fixed;
            inset: 0;
            background: var(--paper);
            z-index: 10000;
            display: none;
            flex-direction: column;
            align-items: center;
            padding-top: 15vh;
        }

        /* Cart/Curation Sidebar */
        #curation-tray {
            position: fixed;
            right: -400px;
            top: 0;
            height: 100vh;
            width: 400px;
            background: white;
            z-index: 2000;
            box-shadow: -10px 0 50px rgba(0,0,0,0.1);
            transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
            padding: 3rem;
        }
        #curation-tray.open { right: 0; }

        /* Custom Hover for Images */
        .img-container { overflow: hidden; position: relative; }
        .img-container img { transition: transform 2.5s cubic-bezier(0.19, 1, 0.22, 1); }
        .img-container:hover img { transform: scale(1.1); }
        
        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .hero-text { font-size: 3.5rem !important; }
            #curation-tray { width: 100%; right: -100%; }
        }
    