.site-header{
    position:sticky;
    top:0;
    z-index:99999;
    background:rgba(247,243,235,.96);
    backdrop-filter:blur(18px);
    border-bottom:1px solid var(--line);
}

.header-inner{
    width:min(var(--max),calc(100% - 48px));
    height:88px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:34px;
}

.logo{
    font-size:34px;
    font-weight:900;
    color:var(--green);
    letter-spacing:-1.8px;
    white-space:nowrap;
}

.logo:after{
    content:'.dk';
    color:var(--gold);
    margin-left:8px;
}

.nav-list{
    display:flex;
    align-items:center;
    gap:10px;
    list-style:none;
}

.nav-list > li{
    position:relative;
    list-style:none;
}

.nav-link{
    height:54px;
    padding:0 22px;
    border:0;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:transparent;
    color:var(--green);
    font-family:inherit;
    font-size:15px;
    font-weight:850;
    cursor:pointer;
    white-space:nowrap;
}

.nav-link:hover,
.city-nav-item:hover > .city-nav-btn{
    background:#fff;
    box-shadow:0 10px 30px rgba(6,47,42,.08);
}

.city-nav-btn:after{
    content:'⌄';
    margin-left:8px;
}

.nav-contact{
    background:var(--green);
    color:#fff;
    padding-inline:30px;
}

.nav-contact:hover{
    background:var(--green2);
    color:#fff;
}

.city-nav-item:after{
    content:'';
    position:absolute;
    left:0;
    top:100%;
    width:100%;
    height:18px;
}

.city-dropdown{
    display:none;
    position:absolute;
    top:calc(100% + 14px);
    left:0;
    width:240px;
    background:var(--green2);
    border-radius:24px;
    box-shadow:var(--shadow);
    overflow:visible;
    z-index:999999;
}

.city-nav-item:hover .city-dropdown{
    display:block;
}

.city-area{
    position:relative;
    width:240px;
    background:var(--green2);
}

.city-area:first-child{
    border-radius:24px 24px 0 0;
}

.city-area:last-child{
    border-radius:0 0 24px 24px;
}

.city-area-link{
    height:64px;
    padding:0 24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    color:#fff;
    font-size:16px;
    font-weight:900;
    border-bottom:1px solid rgba(255,255,255,.10);
}

.city-area:last-child .city-area-link{
    border-bottom:0;
}

.city-area-link:after{
    content:'›';
    font-size:28px;
    opacity:.75;
}

.city-area:hover .city-area-link{
    background:rgba(255,255,255,.08);
}

.city-panel{
    display:none;
    position:absolute;
    top:0;
    left:240px;
    width:330px;
    min-height:100%;
    padding:24px 30px;
    background:#fff;
    border-radius:0 24px 24px 0;
    box-shadow:14px 28px 80px rgba(6,47,42,.14);
    z-index:999999;
}

.city-area:hover .city-panel{
    display:block;
}

.city-panel a{
    display:block;
    padding:10px 0;
    color:var(--green);
    font-size:16px;
    font-weight:850;
    border-bottom:1px solid rgba(6,47,42,.10);
}

.city-panel a:hover{
    color:var(--gold);
    padding-left:6px;
}

.city-see-all{
    color:var(--gold)!important;
    border-bottom:0!important;
    margin-top:14px;
}

.mobile-menu-btn{
    display:none;
    width:52px;
    height:52px;
    border:0;
    border-radius:999px;
    background:var(--green);
    cursor:pointer;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
}

.mobile-menu-btn span{
    width:22px;
    height:2px;
    background:#fff;
    display:block;
    border-radius:20px;
}

@media(max-width:1050px){

    .header-inner{
        width:calc(100% - 48px);
        height:76px;
    }

    .logo{
        font-size:28px;
    }

    .mobile-menu-btn{
        display:flex;
    }

    .main-nav{
        display:none;
        position:absolute;
        left:0;
        top:76px;
        width:100%;
        max-height:calc(100vh - 76px);
        overflow:auto;
        padding:18px 24px 28px;
        background:rgba(247,243,235,.98);
        border-bottom:1px solid var(--line);
        box-shadow:0 30px 70px rgba(6,47,42,.16);
    }

    body.mobile-menu-open .main-nav{
        display:block;
    }

    .nav-list{
        display:block;
        width:min(680px,100%);
        margin:0 auto;
    }

    .nav-list > li{
        width:100%;
        margin-bottom:10px;
    }

    .nav-link{
        width:100%;
        height:58px;
        justify-content:space-between;
        padding:0 20px;
        background:#fff;
        box-shadow:0 8px 24px rgba(6,47,42,.06);
    }

    .nav-contact{
        background:var(--green);
        color:#fff;
    }

    .city-nav-item:after{
        display:none;
    }

    .city-dropdown{
        display:none!important;
        position:static;
        width:100%;
        margin-top:10px;
        border-radius:22px;
        background:var(--green2);
        box-shadow:none;
        overflow:hidden;
    }

    .city-nav-item.is-open .city-dropdown{
        display:block!important;
    }

    .city-area{
        width:100%;
        border-radius:0!important;
    }

    .city-area-link{
        height:58px;
        padding:0 20px;
        font-size:16px;
    }

    .city-area-link:after{
        content:'';
    }

    .city-panel{
        display:block;
        position:static;
        width:100%;
        min-height:0;
        padding:12px 22px 20px;
        background:#fff;
        border-radius:0;
        box-shadow:none;
    }
}

@media(max-width:680px){

    .header-inner{
        width:calc(100% - 26px);
        height:72px;
    }

    .main-nav{
        top:72px;
    }

    .logo{
        font-size:24px;
    }

    .mobile-menu-btn{
        width:48px;
        height:48px;
    }
}