nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 10000;
    padding: 1rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(8, 8, 8, 1);
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
nav::after {
    content: '';
    position: absolute;
    bottom: 0; left: 4rem; right: 4rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, #8a6a1f, transparent);
    opacity: 0.4;
}
.nav-logo-img {
    width: 220px;
    height: auto;
    margin-left: 110px;
    display: block;
}
.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}
.nav-links a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #f5f0e8;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s, color 0.3s;
}
.nav-links a:hover, .nav-links a.active {
    opacity: 1;
    color: #c9a84c;
}
.nav-links a.active {
    pointer-events: none;
}
.nav-cta {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.0rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c9a84c;
    border: 1px solid #8a6a1f;
    padding: 0.6rem 1.6rem;
    margin-right: 9rem;
    text-decoration: none;
    transition: all 0.3s;
}
.nav-cta:hover, .nav-cta.active {
    background: #c9a84c;
    color: #080808;
}
.nav-cta.active {
    pointer-events: none;
}

@media (max-width: 900px) {
    nav { padding: 1.5rem 2rem; }
    nav::after { left: 2rem; right: 2rem; }
    .nav-links, .nav-cta { display: none; }
    .nav-logo-img { margin-left: 0; width: 180px; }
}
