:root {
    --primary: #f5a623;
}
/* HEADER */
.site-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 24px 0;
    background: rgba(10, 12, 18, .18);
    transition: all .28s ease;
}

.site-header.scrolled {
    background: rgba(10, 12, 18, .96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .22);
    backdrop-filter: blur(8px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.logo,
.logo:hover,
.logo:visited,
.logo:focus,
.logo:active {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: .3px;
    line-height: 1.1;
    text-decoration: none !important;
}

.logo-main {
    display: block;
}

.logo-sub {
    display: block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-top: 3px;
}

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

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.menu-list,
.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav .menu-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.site-header .main-nav a,
.site-header .main-nav a:visited,
.site-header .main-nav a:focus,
.site-header .main-nav a:active {
    color: #fff !important;
    opacity: .92;
    text-decoration: none !important;
    transition: .2s;
}

.site-header .main-nav a:hover,
.site-header .main-nav a[aria-current="page"],
.site-header .main-nav .current-menu-item > a,
.site-header .main-nav .current_page_item > a,
.site-header .main-nav .current_page_ancestor > a {
    color: var(--primary) !important;
    opacity: 1;
    text-decoration: none !important;
}

.btn-header,
.btn-header:visited,
.btn-header:focus,
.btn-header:active {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    background: var(--primary);
    color: #111 !important;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none !important;
    box-shadow: 0 8px 25px rgba(245, 166, 35, .28);
}

.btn-header:hover {
    color: #111 !important;
    text-decoration: none !important;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 36px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 6px auto;
    background: #fff;
    border-radius: 3px;
    transition: .2s ease;
}

.menu-toggle.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 920px) {
    .site-header {
        padding: 18px 0;
        background: rgba(10, 12, 18, .70);
    }

    .logo img {
        max-height: 42px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 22px;
        background: rgba(10, 12, 18, .98);
        border-radius: 16px;
        box-shadow: 0 20px 40px rgba(0,0,0,.25);
    }

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

    .main-nav .menu-list {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .btn-header {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .header-inner {
        gap: 18px;
    }
}