    *, *::before, *::after {
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        scroll-padding-top: 80px;
    }

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

    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #1a0d20;
    }
    ::-webkit-scrollbar-thumb {
        background: #3d1f4a;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #7a3d72;
    }

    /* Selection color */
    ::selection {
        background: rgba(212, 168, 67, 0.3);
        color: #f5eff7;
    }

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

    /* Mobile menu animation */
    #mobile-menu {
        animation: slideDown 0.3s ease;
    }
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .mobile-link {
        position: relative;
        padding-left: 0;
    }

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

    /* Fallback: always visible if JS is disabled or reduced motion */
    @media (prefers-reduced-motion: reduce) {
        .reveal {
            opacity: 1;
            transform: none;
        }
    }

    /* Prevent flash if JS fails */
    .reveal {
        opacity: 1;
        transform: none;
    }

    /* Gold shimmer on hover for cards */
    .group:hover .absolute.top-0.right-0 {
        animation: shimmer 2s ease-in-out infinite;
    }
    @keyframes shimmer {
        0%, 100% { opacity: 0.5; }
        50% { opacity: 1; }
    }

    /* Focus styles */
    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible {
        outline: 2px solid #d4a843;
        outline-offset: 2px;
        border-radius: 4px;
    }

    /* Ensure map iframe is readable */
    iframe[title*="Map"] {
        border-radius: 16px;
    }
