nav {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(250, 250, 247, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-nav);
    padding: 0 28px;
    display: flex;
    align-items: center;
    height: 54px;
    width: max-content;
    max-width: calc(100vw - 32px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

nav:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10), 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    letter-spacing: 0.13em;
    color: var(--gold);
    white-space: nowrap;
    padding-right: 24px;
    border-right: 1px solid var(--border);
    margin-right: 20px;
    cursor: pointer;
    transition: color 0.2s;
}

.nav-brand:hover {
    color: var(--black);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    padding: 7px 13px;
    border-radius: 30px;
    transition: all 0.22s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--gold);
    background: var(--gold-tint);
}

.nav-links a.active {
    color: var(--gold);
    background: var(--gold-tint);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(250, 250, 247, 0.97);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu.open {
    opacity: 1;
}

.mobile-menu a {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: var(--gold);
}

.mobile-menu-close {
    position: absolute;
    top: 28px;
    right: 28px;
    background: none;
    border: none;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--muted);
    cursor: pointer;
}