html {
    scrollbar-gutter: stable;
}

html.menu-open,
body.menu-open {
    overflow: hidden;
    height: 100%;
}

body.menu-open {
    position: fixed;
    left: 0;
    width: 100%;
}

.menu-toggle-btn {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    cursor: pointer;
    outline: none;
    box-shadow: none;
    position: relative;
    z-index: 1202;
}

.menu-toggle-btn:focus,
.menu-toggle-btn:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.menu-toggle-icon {
    position: relative;
    display: block;
    width: 42px;
    height: 34px;
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

.menu-line {
    position: absolute;
    left: 50%;
    height: 2px;
    background: #ffffff;
    transform: translateX(-50%);
    transform-origin: center center;
    transition: top .35s cubic-bezier(.22, 1, .36, 1), transform .35s cubic-bezier(.22, 1, .36, 1), background-color .35s ease, opacity .2s ease;
    backface-visibility: hidden;
}

.menu-line-1 {
    top: 0;
    width: 100%;
}

.menu-line-2 {
    top: 15px;
    width: 72%;
}

.menu-line-3 {
    top: 30px;
    width: 38%;
}

body:not(.menu-open) .menu-toggle-btn:hover .menu-toggle-icon,
body:not(.menu-open) .menu-toggle-btn:focus-visible .menu-toggle-icon {
    transform: translateY(3px);
}

body:not(.menu-open) .menu-toggle-btn:hover .menu-line,
body:not(.menu-open) .menu-toggle-btn:focus-visible .menu-line {
    background: var(--brand-pink);
}

body.menu-open .menu-toggle-btn:hover .menu-toggle-icon,
body.menu-open .menu-toggle-btn:focus-visible .menu-toggle-icon {
    transform: scale(1.08);
}

body.menu-open .menu-line-1 {
    top: 15px;
    width: 100%;
    transform: translateX(-50%) rotate(45deg);
    background: var(--brand-pink);
}

body.menu-open .menu-line-2 {
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
}

body.menu-open .menu-line-3 {
    top: 15px;
    width: 100%;
    transform: translateX(-50%) rotate(-45deg);
    background: var(--brand-pink);
}

.fullscreen-menu {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
}

.menu-inner {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 50% 50%;
    transform: translate3d(0, -100%, 0);
    transition: transform 1s cubic-bezier(.22, 1, .36, 1), opacity .25s ease, visibility .25s ease;
    background: #000000;
    min-height: 100vh;
    min-height: 100dvh;
    will-change: transform;
}

body.menu-open .fullscreen-menu {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
}

body.menu-open .menu-inner {
    transform: translate3d(0, 0, 0);
}

.menu-left {
    position: relative;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    background: #111111;
}

.menu-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu-overlay-dark {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    pointer-events: none;
}

.menu-overlay-pink {
    position: absolute;
    inset: 0;
    background: var(--brand-pink);
    mix-blend-mode: color;
    opacity: .85;
    pointer-events: none;
}

.menu-right {
    height: 100vh;
    height: 100dvh;
    background: #000000;
    padding-top: 120px;
    padding-bottom: 50px;
    padding-left: 7vw;
    padding-right: calc(7vw + 18px);
    overflow: hidden;
}

.menu-right-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.menu-nav-wrap {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.menu-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: right;
}

.menu-nav li+li {
    margin-top: 16px;
}

.menu-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
    line-height: .95;
    letter-spacing: -0.03em;
    font-size: 100px;
    transition: color .25s ease, transform .25s ease;
}

.menu-link:hover {
    color: var(--brand-pink);
    transform: translateX(-6px);
}

.menu-form-btn {
    display: none;
}

.menu-socials {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 28px;
    padding-bottom: 0;
    margin-top: auto;
}

.menu-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease;
}

.menu-socials a:hover {
    transform: scale(1.08);
}

.menu-socials img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.menu-empty {
    color: #ffffff;
    text-align: right;
    font-size: 24px;
}

body.menu-open #header-gradient {
    opacity: 0 !important;
}

.header-form-btn {
    position: relative;
    z-index: 1202;
    pointer-events: auto;
}

@media (max-width: 1400px) {
    .menu-link {
        font-size: 82px;
    }
}

@media (max-width: 1200px) {
    .menu-link {
        font-size: 68px;
    }

    .menu-socials img {
        width: 46px;
        height: 46px;
    }

    .menu-nav li+li {
        margin-top: 14px;
    }
}

@media (max-width: 991px) {
    .menu-inner {
        grid-template-columns: 1fr;
        grid-template-rows: 34dvh 66dvh;
    }

    .menu-left {
        height: 34dvh;
    }

    .menu-right {
        height: 66dvh;
        padding-top: 36px;
        padding-bottom: 28px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .menu-right-inner {
        align-items: center;
    }

    .menu-nav-wrap {
        justify-content: center;
        align-items: center;
    }

    .menu-nav {
        text-align: center;
        max-width: 100%;
    }

    .menu-link {
        font-size: 58px;
    }

    .menu-nav li+li {
        margin-top: 18px;
    }

    .menu-socials {
        justify-content: center;
        align-items: center;
        gap: 22px;
        margin-top: 24px;
    }

    .menu-socials img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 767px) {
    html {
        scrollbar-gutter: auto;
    }

    .menu-toggle-btn {
        width: 56px;
        height: 56px;
    }

    .menu-toggle-icon {
        width: 34px;
        height: 28px;
    }

    .menu-line-1 {
        top: 0;
    }

    .menu-line-2 {
        top: 13px;
    }

    .menu-line-3 {
        top: 26px;
    }

    body.menu-open .menu-line-1 {
        top: 13px;
    }

    body.menu-open .menu-line-3 {
        top: 13px;
    }

    .menu-inner {
        grid-template-rows: 30dvh 70dvh;
    }

    .menu-left {
        height: 30dvh;
    }

    .menu-right {
        height: 70dvh;
        padding-top: 30px;
        padding-bottom: 24px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .menu-right-inner {
        align-items: center;
    }

    .menu-nav-wrap {
        justify-content: center;
        align-items: center;
    }

    .menu-nav {
        text-align: center;
    }

    .menu-link {
        font-size: 46px;
        line-height: 1;
    }

    .menu-nav li+li {
        margin-top: 18px;
    }

    .menu-socials {
        justify-content: center;
        align-items: center;
        gap: 18px;
        margin-top: 20px;
    }

    .menu-socials img {
        width: 34px;
        height: 34px;
    }
}

@media (max-width: 575px) {
    #site-header-inner {
        width: calc(100% - 28px);
        height: 78px;
    }

    .header-form-btn {
        display: none;
    }

    .menu-form-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 22px;
        margin-bottom: 18px;
    }

    .menu-inner {
        grid-template-rows: 28dvh 72dvh;
    }

    .menu-left {
        height: 28dvh;
    }

    .menu-right {
        height: 72dvh;
        padding-top: 24px;
        padding-bottom: 20px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .menu-link {
        font-size: 38px;
        line-height: 1;
    }

    .menu-nav li+li {
        margin-top: 16px;
    }

    .menu-socials {
        gap: 16px;
        margin-top: 0;
    }

    .menu-socials img {
        width: 32px;
        height: 32px;
    }

    .menu-empty {
        text-align: center;
        font-size: 20px;
    }
}

@media (max-width: 390px) {
    .menu-link {
        font-size: 32px;
    }

    .menu-nav li+li {
        margin-top: 14px;
    }

    .menu-form-btn {
        margin-top: 20px;
        margin-bottom: 16px;
    }

    .menu-socials img {
        width: 30px;
        height: 30px;
    }
}