    /* ── Base & Reset ── */
    *, *::before, *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    body {
        overflow-x: hidden;
    }

    ::selection {
        background: rgba(212, 168, 83, 0.3);
        color: #fff;
    }

    /* ── Hero Background ── */
    .hero-bg {
        background-image: url('https://images.pexels.com/photos/16392286/pexels-photo-16392286.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        animation: heroZoom 20s ease-in-out infinite alternate;
    }

    @keyframes heroZoom {
        from { transform: scale(1); }
        to { transform: scale(1.08); }
    }

    /* ── Navigation ── */
    #site-header {
        transition: background-color 0.4s ease, padding 0.4s ease;
    }

    #site-header.scrolled {
        background-color: rgba(8, 14, 26, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .nav-link {
        position: relative;
    }

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

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

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

    .mobile-link {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    #mobile-menu.open .mobile-link {
        opacity: 1;
        transform: translateY(0);
    }

    #mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.1s; }
    #mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.15s; }
    #mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.2s; }
    #mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.25s; }
    #mobile-menu.open .mobile-link:nth-child(5) { transition-delay: 0.3s; }

    /* ── Reveal Animations ── */
    .reveal-text {
        opacity: 0;
        transform: translateY(30px);
        animation: revealUp 0.8s ease forwards;
    }

    .reveal-text:nth-child(1) { animation-delay: 0.2s; }
    .reveal-text:nth-child(2) { animation-delay: 0.4s; }
    .reveal-text:nth-child(3) { animation-delay: 0.6s; }
    .reveal-text:nth-child(4) { animation-delay: 0.8s; }

    @keyframes revealUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .reveal-up {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .reveal-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* ── Gallery Hover ── */
    .overflow-hidden img {
        display: block;
    }

    /* ── Scrollbar ── */
    ::-webkit-scrollbar {
        width: 6px;
    }

    ::-webkit-scrollbar-track {
        background: #080e1a;
    }

    ::-webkit-scrollbar-thumb {
        background: rgba(212, 168, 83, 0.3);
        border-radius: 3px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: rgba(212, 168, 83, 0.5);
    }

    /* ── Focus Styles ── */
    a:focus-visible, button:focus-visible {
        outline: 1px solid #d4a853;
        outline-offset: 4px;
    }

    /* ── Responsive ── */
    @media (max-width: 767px) {
        .hero-bg {
            background-position: 60% center;
        }
    }
