.container {
    margin: 0 auto;
    padding: 32px 80px;
}

.admin-bar .site-header {
    top: 32px;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: block;
}

.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0));
    z-index: -1;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 30px;
}

/* ---------------- NAV ---------------- */

.nav-menu {
    display: flex;
    gap: 60px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li {
    position: relative;
    transition: 0.2s ease;
}

.nav-menu a {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    padding: 5px 0;
    letter-spacing: 0.4px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1.5px;
    background: #f04e30;
    transition: width 0.25s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu .current-menu-item>a::after {
    width: 100%;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu .current-menu-item>a::after {
    width: 100%;
}

.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: #fff;
}

/* ---------------- DROPDOWN ---------------- */

.nav-menu .sub-menu {
    position: absolute;
    top: 130%;
    left: 0;

    background: rgba(0, 0, 0, 0.92);
    padding: 12px 0;
    min-width: 220px;

    border-radius: 4px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);

    transition: all 0.25s ease;
}

.nav-menu li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    padding: 10px 22px;
}

.sub-menu a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.sub-menu a:hover {
    color: #fff;
}

/* OVERLAY */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);

    opacity: 0;
    visibility: hidden;

    transition: 0.3s ease;
    z-index: 998;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* LOCK SCROLL */
body.no-scroll {
    overflow: hidden;
}

/* ---------------- STICKY ---------------- */

.site-header.scrolled {
    position: fixed;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

/* ---------------- MOBILE ---------------- */

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1000;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    transition: all 0.3s ease;
}

/* ACTIVE STATE (X icon) */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ---------------- MOBILE (CLEAN VERSION) ---------------- */

@media (max-width: 768px) {

    .site-header {
        background: rgba(0,0,0,0.9);
        z-index: 1000;
    }

    .header-inner {
        padding: 20px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;

        width: 280px;
        height: 100vh;

        background: rgba(10,10,10,0.95);
        backdrop-filter: blur(10px);

        padding: 120px 30px 40px;

        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);

        z-index: 999;
    }

    .nav.active {
        transform: translateX(0);
    }

    .admin-bar .nav {
        top: 46px;
    }

    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 1100;
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        width: 100%;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        font-size: 18px;
        padding: 12px 0;
    }

    .current-menu-item > a {
        color: #f04e30;
    }

    /* DROPDOWN (ACCORDION) */
    .nav-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;

        max-height: 0;
        overflow: hidden;

        transition: max-height 0.3s ease;
        background: none;
        padding: 0;
    }

    .nav-menu li.active > .sub-menu {
        max-height: 300px;
    }

    .nav-menu li > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}