    /* Custom styles beyond Tailwind */
    :root {
        --font-sans: 'Inter', system-ui, sans-serif;
        --font-serif: 'Playfair Display', Georgia, serif;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-sans);
    }

    h1, h2, h3, h4 {
        font-family: var(--font-serif);
    }

    /* Navbar scroll state */
    #navbar {
        background: transparent;
    }

    #navbar.scrolled {
        background: rgba(250, 250, 248, 0.95);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
    }

    #navbar.scrolled .font-serif {
        color: #1c1917 !important;
    }

    /* Hero animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero-content > * {
        animation: fadeInUp 0.8s ease-out both;
    }

    .hero-content > *:nth-child(1) { animation-delay: 0.1s; }
    .hero-content > *:nth-child(2) { animation-delay: 0.25s; }
    .hero-content > *:nth-child(3) { animation-delay: 0.4s; }
    .hero-content > *:nth-child(4) { animation-delay: 0.55s; }

    /* Scroll reveal (progressive enhancement) */
    @media (prefers-reduced-motion: no-preference) {
        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .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; }
    }

    /* Service card hover lift */
    .group:hover {
        transform: translateY(-4px);
    }

    /* Custom selection color */
    ::selection {
        background: #9dc5a8;
        color: #1c1917;
    }

    /* Mobile menu transition */
    #mobile-menu {
        animation: slideDown 0.25s ease-out;
    }

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

    /* Focus visible for accessibility */
    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible {
        outline: 2px solid #4d8559;
        outline-offset: 2px;
    }

    /* Smooth image loading */
    img {
        image-rendering: -webkit-optimize-contrast;
    }
