    /* Base & Utilities */
    html {
        scroll-behavior: smooth;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    body {
        overflow-x: hidden;
    }

    ::selection {
        background: #0d9488;
        color: white;
    }

    /* Navigation */
    .nav-link {
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: #0d9488;
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }

    nav.scrolled {
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(12px);
        box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
    }

    /* Hero Animations */
    .hero-eyebrow {
        opacity: 0;
        animation: fadeUp 0.8s ease forwards;
        animation-delay: 0.2s;
    }

    .hero-title {
        opacity: 0;
        animation: fadeUp 0.8s ease forwards;
        animation-delay: 0.4s;
    }

    .hero-subtitle {
        opacity: 0;
        animation: fadeUp 0.8s ease forwards;
        animation-delay: 0.6s;
    }

    .hero-cta {
        opacity: 0;
        animation: fadeUp 0.8s ease forwards;
        animation-delay: 0.8s;
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Scroll Reveal */
    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }

    .reveal:nth-child(2) { transition-delay: 0.1s; }
    .reveal:nth-child(3) { transition-delay: 0.2s; }
    .reveal:nth-child(4) { transition-delay: 0.3s; }

    /* Menu Card Hover */
    .menu-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .menu-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    /* Mobile Menu */
    #mobile-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    #mobile-menu.open {
        max-height: 400px;
    }

    /* Image hover zoom */
    .img-zoom {
        overflow: hidden;
    }

    .img-zoom img {
        transition: transform 0.5s ease;
    }

    .img-zoom:hover img {
        transform: scale(1.05);
    }

    /* Focus styles */
    input:focus,
    textarea:focus {
        outline: none;
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: #f1f5f9;
    }

    ::-webkit-scrollbar-thumb {
        background: #94a3b8;
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #0d9488;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.25rem;
        }

        section {
            padding-left: 1rem;
            padding-right: 1rem;
        }
    }

    /* Print styles */
    @media print {
        nav, #mobile-menu-btn, .reveal {
            display: none !important;
        }

        .hero-eyebrow,
        .hero-title,
        .hero-subtitle,
        .hero-cta {
            opacity: 1 !important;
            animation: none !important;
        }
    }
