/* ── SHARED NAV BAR ── */
.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 2.5rem;
    background-color: #2c2420;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-family: "Bungee", sans-serif;
    font-size: 1.1rem;
    color: #f5f0e8;
    text-decoration: none;
    letter-spacing: 0.06em;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.nav-brand:hover {
    opacity: 1;
}

.nav-links {
    display: flex;
    gap: 1.8rem;
    list-style: none;
}

.nav-links a {
    font-family: "Bungee", sans-serif;
    font-size: 0.75rem;
    color: #f5f0e8;
    text-decoration: none;
    letter-spacing: 0.1em;
    opacity: 0.65;
    transition: opacity 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
}

@media (max-width: 500px) {
    .site-nav {
        padding: 0.8rem 1.2rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.65rem;
    }
}
