        :root {
            --color-sun: #F1C93B;
            --color-glow: #FBD85D;
            --color-base: #FAE392;
            --color-ink: #4A4228;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scrollbar-width: none;
        }
        *::-webkit-scrollbar { display: none; }

        body {
            font-family: 'Comme', sans-serif;
            background-color: var(--color-base);
            color: var(--color-ink);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* SUNLIGHT BACKGROUND ANIMATION */
        .sun-bg {
            position: fixed;
            top: 0; left: 0; width: 100vw; height: 100vh;
            z-index: -1;
            background: radial-gradient(circle at 50% 50%, var(--color-glow) 0%, var(--color-base) 100%);
            overflow: hidden;
        }
        .sun-orb {
            position: absolute;
            background: var(--color-sun);
            filter: blur(100px);
            border-radius: 50%;
            opacity: 0.4;
            animation: moveOrbs 25s infinite alternate ease-in-out;
        }
        @keyframes moveOrbs {
            0% { transform: translate(-20%, -20%) scale(1); }
            100% { transform: translate(30%, 40%) scale(1.5); }
        }

        /* LAYOUT FLOW */
        .scene {
            min-height: 120vh;
            position: relative;
            padding: 10vh 8vw;
            display: flex;
            flex-direction: column;
            justify-content: center;
            opacity: 0;
            transform: translateY(50px);
            transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .scene.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* TEXT STYLING */
        .huge-word {
            font-size: clamp(5rem, 15vw, 18rem);
            font-weight: 900;
            line-height: 0.8;
            letter-spacing: -0.05em;
            color: rgba(74, 66, 40, 0.05);
            position: absolute;
            pointer-events: none;
        }

        .breathe-text {
            animation: breathe 6s ease-in-out infinite;
            display: inline-block;
        }
        @keyframes breathe {
            0%, 100% { transform: scale(1); letter-spacing: 0.02em; }
            50% { transform: scale(1.05); letter-spacing: 0.08em; }
        }

        /* CAROUSEL */
        .horizontal-scroller {
            display: flex;
            gap: 40px;
            padding: 50px 0;
            overflow-x: auto;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
        }
        .recipe-card {
            min-width: 400px;
            height: 600px;
            border-radius: 80px;
            overflow: hidden;
            position: relative;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            cursor: pointer;
        }
        .recipe-card:hover { transform: scale(0.96); }
        .recipe-card img { width: 100%; height: 100%; object-cover: cover; transition: transform 1.2s ease; }
        .recipe-card:hover img { transform: scale(1.1); }

        /* ORGANIC SHAPES */
        .organic-blob {
            clip-path: url(#blob-path);
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* OVERLAYS */
        .overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: var(--color-base);
            z-index: 5000;
            padding: 10vh 10vw;
            overflow-y: auto;
            display: none;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        .overlay.active { display: block; opacity: 1; }

        .close-btn {
            position: fixed;
            top: 40px; right: 40px;
            font-size: 2rem;
            cursor: pointer;
            z-index: 5001;
        }

        /* CUSTOM NAVIGATION */
        .nav-float {
            position: fixed;
            top: 30px; left: 50%;
            transform: translateX(-50%);
            z-index: 4000;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(15px);
            padding: 15px 40px;
            border-radius: 100px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            display: flex;
            gap: 30px;
            font-weight: 700;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .floating-item {
            position: absolute;
            animation: floatItems 10s infinite alternate ease-in-out;
            pointer-events: none;
            z-index: 10;
        }
        @keyframes floatItems {
            0% { transform: translateY(0) rotate(0deg); }
            100% { transform: translateY(-40px) rotate(10deg); }
        }

