        :root {
            --primary: #E9762B;
            --bg-cream: #F6F0D7;
            --bg-sand: #EBD5AB;
            --bg-leaf: #EBF4DD;
            --text-dark: #3D2B1F;
        }

        * { 
            scroll-behavior: smooth; 
            -webkit-tap-highlight-color: transparent;
        }

        body {
            background-color: var(--bg-cream);
            color: var(--text-dark);
            font-family: 'Quicksand', sans-serif;
            overflow-x: hidden;
            margin: 0;
        }

        h1, h2, h3, .artistic-font {
            font-family: 'Dancing Script', cursive;
        }

        /* ARTISTIC BLOBS & SHAPES */
        .blob {
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            transition: all 1s ease-in-out;
        }

        .blob-alt {
            border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        }

        /* ANIMATED BACKGROUND */
        .hero-bg-anim {
            background: linear-gradient(45deg, #F6F0D7, #EBD5AB, #EBF4DD, #F6F0D7);
            background-size: 400% 400%;
            animation: gradientBG 15s ease infinite;
            position: absolute;
            inset: 0;
            z-index: -2;
        }

        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .glass-texture {
            position: absolute;
            inset: 0;
            background-image: url("https://i.pinimg.com/736x/89/68/a7/8968a79f275f3f8277332d6304cc82d2.jpg");
            opacity: 0.15;
            z-index: -1;
            pointer-events: none;
        }

        /* HEADER STYLING */
        .nav-floating {
            background: rgba(246, 240, 215, 0.7);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(233, 118, 43, 0.1);
            border-radius: 50px;
            transition: all 0.5s ease;
        }

        .nav-link {
            position: relative;
            padding-bottom: 4px;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after {
            width: 80%;
        }

        /* REVEAL ON SCROLL */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* CUSTOM BUTTON */
        .btn-organic {
            background: var(--primary);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 45% 55% 50% 50% / 40% 40% 60% 60%;
            font-weight: 600;
            box-shadow: 0 8px 25px rgba(233, 118, 43, 0.3);
            transition: all 0.4s ease;
            display: inline-flex;
            align-items: center;
            gap: 12px;
        }

        .btn-organic:hover {
            transform: scale(1.05) rotate(-2deg);
            border-radius: 50%;
        }

        /* CARD EFFECTS */
        .card-tilt {
            transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .card-tilt:hover {
            transform: scale(1.03) rotate(1deg);
        }

        /* MOBILE MENU */
        #mobile-menu {
            transform: translateY(-100%);
            transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        }
        #mobile-menu.open {
            transform: translateY(0);
        }

        /* QUICKVIEW MODAL */
        #modal-overlay {
            background: rgba(61, 43, 31, 0.85);
            backdrop-filter: blur(8px);
        }
