    /* Base & Typography */
    html {
        scroll-behavior: smooth;
    }

    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    /* Selection */
    ::selection {
        background-color: rgba(79, 125, 78, 0.2);
        color: #1e301e;
    }

    /* Scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #fdfaf0;
    }
    ::-webkit-scrollbar-thumb {
        background: #9bbf97;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #739f70;
    }

    /* Navbar */
    .nav-link {
        position: relative;
    }
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #4f7d4e;
        transition: width 0.3s ease;
    }
    .nav-link:hover::after {
        width: 100%;
    }

    /* Floating Cards Animation */
    @keyframes float-1 {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-12px); }
    }
    @keyframes float-2 {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-8px); }
    }
    @keyframes float-3 {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
    }
    @keyframes float-4 {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-6px); }
    }

    .floating-card {
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
    }
    .card-1 { animation: float-1 6s ease-in-out infinite; }
    .card-2 { animation: float-2 5s ease-in-out infinite; animation-delay: 0.5s; }
    .card-3 { animation: float-3 7s ease-in-out infinite; animation-delay: 1s; }
    .card-4 { animation: float-4 5.5s ease-in-out infinite; animation-delay: 1.5s; }

    /* Menu Cards */
    .menu-card {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.5s ease;
    }

    /* Gallery */
    .gallery-item {
        cursor: pointer;
    }
    .gallery-item img {
        transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .gallery-item:hover img {
        transform: scale(1.05);
    }

    /* Mobile Menu */
    #mobile-menu.open {
        opacity: 1;
        pointer-events: all;
    }

    /* Scroll Reveal (progressive enhancement) */
    @media (prefers-reduced-motion: no-preference) {
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
        *, *::before, *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
        html {
            scroll-behavior: auto;
        }
    }

    /* Focus visible */
    :focus-visible {
        outline: 2px solid #4f7d4e;
        outline-offset: 2px;
    }

    /* Mobile menu active state */
    #mobile-menu.open .mobile-link {
        animation: fadeDown 0.4s ease forwards;
        opacity: 0;
    }
    #mobile-menu.open .mobile-link:nth-child(1) { animation-delay: 0.05s; }
    #mobile-menu.open .mobile-link:nth-child(2) { animation-delay: 0.1s; }
    #mobile-menu.open .mobile-link:nth-child(3) { animation-delay: 0.15s; }
    #mobile-menu.open .mobile-link:nth-child(4) { animation-delay: 0.2s; }
    #mobile-menu.open .mobile-link:nth-child(5) { animation-delay: 0.25s; }
    #mobile-menu.open .mobile-link:nth-child(6) { animation-delay: 0.3s; }

    @keyframes fadeDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
