/* ─── NAVIGATION ─── */
.n {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: #fff;
    padding: 1.39vw 2.5vw 0.8vw;
}

.n-e a {
    display: block;
    padding: 0.46vw 0.7vw;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
    transition: transform 0.25s ease-out;
    position: relative;
}

.n-e a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 1px;
    background: #000;
    transition: transform 0.25s ease-out;
}

.n-e a:hover {
    transform: translateY(-3px);
}

.n-e a.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* ─── DROPDOWN ─── */
.n-dropdown {
    position: relative;
    transition: transform 0.4s ease;
}

.n-dropdown:hover {
    transform: translateX(-12vw);
}

.n-dropdown-menu {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.n-dropdown:hover .n-dropdown-menu {
    pointer-events: auto;
    opacity: 1;
}

.n-dropdown-menu a {
    display: block;
    padding: 0.46vw 0.7vw;
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
    position: relative;
}

.n-dropdown-menu a:hover {
    transform: translateY(0) scale(1.15);
}

/* ─── MOBILE NAV ─── */
@media (max-width: 600px) {

    .n {
        top: 4.65vw;
    }

    .n-e a {
        padding: 1.2vw 2vw;
        font-size: 9px;
    }
}
