/* ════════════════════════════
   NAV
════════════════════════════ */

#main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#hero #main-nav {
    position: relative;
    z-index: 3;
    padding: 24px 80px;
    background: transparent;
    border-bottom: none;
}

.nav-logo img { height: 44px; width: auto; display: block; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav-links a {
    font-family: 'Inter', sans-serif;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-soft);
    text-decoration: none;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
    color: #000 !important;
    background: var(--gold);
    padding: 10px 26px;
    letter-spacing: 0.14em;
    transition: background 0.2s !important;
}
.nav-cta:hover { background: #ffe566 !important; color: #000 !important; }

/* ── Hamburger ── */
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
    flex-direction: column;
    gap: 5px;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 1024px) {
    #hero #main-nav {
        padding: 24px 32px;
    }

    .nav-hamburger {
        display: flex;
    }

    #hero #main-nav {
        position: relative;
        z-index: 10;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 100;
        background: rgba(0, 0, 0, 0.97);
        flex-direction: column;
        padding: 24px 32px;
        gap: 0;
        border-bottom: 1px solid var(--border);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a:not(.nav-cta) {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        color: var(--text);
        font-size: 12px;
    }

    .nav-links a:not(.nav-cta):last-of-type {
        border-bottom: none;
    }

    .nav-cta {
        display: inline-flex;
        margin-top: 16px;
        text-align: center;
        justify-content: center;
    }
}
