        :root {
            --sage-green: #A8BBA3;
            --soft-vision: #E7FBB4;
            --graphite: #4A4947;
            --pure-white: #FFFFFF;
        }

        body {
            background-color: #4A4947;
            color: #FFFFFF;
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        h1, h2, h3, h4, .philosopher {
            font-family: 'Philosopher', sans-serif;
            color: #000000;
        }

        /* TEXT SYSTEM */
        .editorial-heading {
            letter-spacing: -0.02em;
            line-height: 1.1;
        }

        .paragraph-minimal {
            font-weight: 300;
            line-height: 1.8;
            color: rgba(255, 186, 47, 0.8);
            letter-spacing: 0.01em;
        }

        /* ANIMATIONS */
        .reveal {
            opacity: 0;
            filter: blur(8px);
            transform: translateY(20px);
            transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
        }
        .reveal.visible {
            opacity: 1;
            filter: blur(0);
            transform: translateY(0);
        }

        .floating-lens {
            animation: lensFloat 10s ease-in-out infinite;
        }
        @keyframes lensFloat {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(20px, -30px) rotate(5deg); }
            66% { transform: translate(-10px, 20px) rotate(-3deg); }
        }

        .shimmer {
            position: relative;
            overflow: hidden;
        }
        .shimmer::after {
            content: '';
            position: absolute;
            top: -150%; left: -150%; width: 300%; height: 300%;
            background: linear-gradient(45deg, transparent 45%, rgba(231, 251, 180, 0.4) 50%, transparent 55%);
            animation: shimmerEffect 6s infinite;
        }
        @keyframes shimmerEffect {
            0% { transform: translate(-30%, -30%); }
            100% { transform: translate(30%, 30%); }
        }

        /* CUSTOM UI */
        .nav-link {
            position: relative;
            font-size: 13px;
            text-transform: capitalize;
            transition: all 0.3s ease;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px; left: 0; width: 0; height: 1px;
            background: var(--sage-green);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after { width: 100%; }
        .nav-link:hover { color: var(--sage-green); text-shadow: 0 0 8px var(--soft-vision); }

        .glass-panel {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(168, 187, 163, 0.1);
        }

        .product-panel {
            position: relative;
            padding: 2rem;
            transition: all 0.5s ease;
            background: #fafafa;
        }
        .product-panel:hover {
            background: var(--pure-white);
            box-shadow: 0 20px 40px rgba(168, 187, 163, 0.15);
            transform: translateY(-5px);
        }

        /* VIEW TRANSITIONS */
        .view { display: none; }
        .view.active { display: block; }

        .overlay {
            position: fixed;
            inset: 0;
            background: rgba(255, 255, 255, 0.98);
            z-index: 1000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.5s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .overlay.open { opacity: 1; pointer-events: auto; }

        .handwritten {
            font-family: 'Philosopher', sans-serif;
            font-style: italic;
            opacity: 0.6;
        }

        /* HAMBURGER */
        .menu-toggle span {
            display: block;
            width: 20px;
            height: 1px;
            background: var(--graphite);
            margin: 5px 0;
            transition: 0.3s;
        }

