/* ─── NAV.CSS ─── */

nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 68px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-links {
    display: flex;
    spacing: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links > * {
    margin-right: 2rem;
}

.nav-links > *:last-child {
    margin-right: 0;
}

.nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--yellow); }

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--yellow);
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-display);
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .nav-links { display: none; }
}