/* ================================================
   NAVBAR
================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-nav);
    padding: 22px 0;
    transition: all var(--dur-base) ease;
}

.navbar.stuck {
    padding: 12px 0;
    background: rgba(6, 12, 24, .88);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid var(--border);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.nav-logo img {
    max-width: 150px;
    height: auto;
}

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

.nav-links a {
    font-family: var(--f-head);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-sec);
    text-decoration: none;
    transition: color .2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--blue);
    transition: width .3s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--text);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    width: 100%;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

body.has-fine-pointer .hamburger {
    cursor: none;
}

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

.mob-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(6, 12, 24, .97);
    backdrop-filter: blur(12px);
    z-index: var(--z-mobile-menu);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.mob-menu.open {
    display: flex;
}

.mob-menu a {
    font-family: var(--f-display);
    font-size: 18px;
    letter-spacing: 3px;
    color: var(--text);
    text-decoration: none;
}

.mob-close {
    position: absolute;
    top: 24px;
    right: 28px;
    background: none;
    border: none;
    color: var(--chrome);
    font-size: 26px;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
}

body.has-fine-pointer .mob-close {
    cursor: none;
}
