    <style>
        :root {
            --primary: #5C6F2B;
            --bg-soft: #EBF4DD;
            --sage: #90AB8B;
            --text-main: #2F3624;
            --white-glass: rgba(255, 255, 255, 0.4);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Raleway', sans-serif;
            background-color: var(--bg-soft);
            color: var(--text-main);
            overflow-x: hidden;
            letter-spacing: 0.08em;
            line-height: 1.8;
        }

        /* CUSTOM SCROLLBAR */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--bg-soft); }
        ::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 10px; }

.blob-card {
    padding: 30px;
    color: white;
    background: linear-gradient(135deg, #111, #1f1f1f);
    border-radius: 40% 60% 55% 45% / 55% 45% 55% 45%;
    transition: all 0.5s ease;
}

.blob-card:hover {
    border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
    transform: scale(1.03);
}

        @keyframes morph {
            0%, 100% { border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%; }
            50% { border-radius: 70% 30% 46% 54% / 30% 59% 41% 70%; }
        }

        .float-slow {
            animation: floating 6s ease-in-out infinite;
        }

        @keyframes floating {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        /* GRADIENT & BLUR BACKGROUNDS */
        .hero-bg {
            background: linear-gradient(-45deg, #EBF4DD, #90AB8B, #D0DBBD, #EBF4DD);
            background-size: 400% 400%;
            animation: gradientShift 20s ease infinite;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* NEW CARD STYLE: ORGANIC BUBBLES */
        .bubble-card {
            background: var(--white-glass);
            backdrop-filter: blur(12px);
            border-radius: 80px 20px 80px 20px;
            transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(255,255,255,0.3);
        }
        .bubble-card:hover {
            border-radius: 40px;
            transform: scale(1.03) translateY(-10px);
            box-shadow: 0 40px 80px rgba(92, 111, 43, 0.1);
        }

        /* BUTTONS */
        .btn-chill {
            background: var(--primary);
            color: white;
            padding: 1.2rem 3rem;
            border-radius: 100px;
            font-weight: 500;
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            transition: all 0.4s ease;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            border: 1px solid transparent;
        }
        .btn-chill:hover {
            background: transparent;
            color: var(--primary);
            border-color: var(--primary);
            padding: 1.2rem 3.5rem;
        }

        /* REVEAL ON SCROLL */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* VIDEO HIGHLIGHT BOX */
        .video-box {
            position: relative;
            overflow: hidden;
            border-radius: 50px;
            background: #000;
        }
        .video-box video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.7;
        }

        /* WAVE DIVIDER */
        .wave {
            width: 100%;
            height: 100px;
            background: var(--bg-soft);
            mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path d="M0,160L48,176C96,192,192,224,288,224C384,224,480,192,576,165.3C672,139,768,117,864,128C960,139,1056,181,1152,197.3C1248,213,1344,203,1392,197.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z" fill="black"/></svg>');
            mask-size: cover;
        }

        /* MOBILE MENU */
        #mobile-nav {
            transform: translateX(100%);
            transition: transform 0.6s cubic-bezier(0.7, 0, 0.3, 1);
        }
        #mobile-nav.open { transform: translateX(0); }
