        :root {
            --deep-green: #003C43;
            --soft-wine: #49243E;
            --white: #FFFFFF;
        }

        body {
            background-color: var(--white);
            color: var(--deep-green);
            font-family: 'Unna', serif;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        h1, h2, h3, h4 { font-weight: 700; }
        p { font-weight: 400; line-height: 1.8; }
        .italic-text { font-style: italic; }

        /* Navigation Vine Animation */
        .nav-link {
            position: relative;
            padding-bottom: 2px;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--deep-green);
            transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
        }
        .nav-link:hover::after {
            width: 100%;
        }

        /* Hero Vine Animation */
        @keyframes subtleFloat {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(2deg); }
            100% { transform: translateY(0) rotate(0deg); }
        }
        .floating-vine {
            animation: subtleFloat 8s ease-in-out infinite;
        }

        /* Organic Floating Cards */
        .organic-card {
            transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
            cursor: pointer;
        }
        .organic-card:hover {
            transform: translateY(-20px) rotate(0deg) !important;
            background-color: var(--deep-green);
            color: white;
            z-index: 10;
        }

        /* Horizontal Scroll Hider */
        .no-scrollbar::-webkit-scrollbar { display: none; }
        .no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

        /* Quick View Modal */
        .modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(255,255,255,0.95);
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .modal.active {
            display: flex;
            opacity: 1;
        }

        /* Reveal Animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s ease-out;
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Custom Buttons */
        .btn-botanical {
            border: 1px solid var(--deep-green);
            padding: 12px 30px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 12px;
            transition: 0.4s;
            display: inline-block;
        }
        .btn-botanical:hover {
            background: var(--deep-green);
            color: white;
        }

        .btn-wine {
            background: var(--soft-wine);
            color: white;
            padding: 12px 30px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 12px;
            transition: 0.4s;
        }
        .btn-wine:hover {
            filter: brightness(1.2);
        }

        /* Mobile Nav */
        #mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100%;
            background: var(--white);
            z-index: 999;
            transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        }
        #mobile-menu.open { right: 0; }
