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

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

    ::selection {
        background: rgba(201, 168, 76, 0.3);
        color: #0f1a2e;
    }

    /* Scroll Reveal — progressive enhancement, hidden if JS fails */
    @media (prefers-reduced-motion: no-preference) {
        .reveal {
            opacity: 0;
            transform: translateY(32px);
            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; }
    }

    /* Reduced motion — ensure content is always visible */
    @media (prefers-reduced-motion: reduce) {
        .reveal {
            opacity: 1;
            transform: none;
        }
        html { scroll-behavior: auto; }
    }

    /* Navbar transition */
    #navbar.scrolled {
        background: rgba(8, 15, 28, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 1px 0 rgba(201, 168, 76, 0.1);
    }

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

    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #0f1a2e;
    }
    ::-webkit-scrollbar-thumb {
        background: #C9A84C;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #e5b030;
    }

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

    /* Image hover container */
    .overflow-hidden {
        position: relative;
    }

    /* Gold accent line */
    .gold-line {
        position: relative;
    }
    .gold-line::after {
        content: '';
        display: block;
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, #C9A84C, transparent);
        margin-top: 16px;
    }

    /* Menu item hover */
    #menu .border-b:hover {
        border-color: rgba(201, 168, 76, 0.4);
    }
    #menu .border-b:hover .font-serif {
        color: #0f1a2e;
    }

    /* Smooth image loading */
    img {
        image-rendering: auto;
        loading: lazy;
    }

    /* Print styles */
    @media print {
        #navbar, #mobile-menu-btn, #mobile-menu { display: none; }
        body { color: #000; background: #fff; }
        section { padding: 20px 0; }
    }
