.menu-toggle {
    display: none;
}

@media (max-width: 639px) {
    body.menu-open {
        overflow: hidden;
    }

    .site-nav {
        flex-direction: row !important;
        align-items: center !important;
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
        position: relative;
        z-index: 60;
    }

    .site-brand {
        position: relative;
        z-index: 70;
    }

    .site-brand span {
        display: none;
    }

    .site-brand img {
        height: 2.5rem;
        width: 2.5rem;
    }

    .menu-toggle {
        border: 0;
        background: transparent;
        color: #000;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 2.75rem;
        width: 2.75rem;
        padding: 0;
        position: relative;
        z-index: 70;
    }

    .menu-toggle span {
        background: currentColor;
        height: 1.5px;
        position: absolute;
        transition: transform 280ms cubic-bezier(0.2, 0, 0, 1);
        width: 1.5rem;
    }

    .menu-toggle span:first-child {
        transform: translateY(-5px);
    }

    .menu-toggle span:last-child {
        transform: translateY(5px);
    }

    body.menu-open .menu-toggle span:first-child {
        transform: rotate(45deg);
    }

    body.menu-open .menu-toggle span:last-child {
        transform: rotate(-45deg);
    }

    .site-menu {
        align-items: center;
        background: #fff;
        display: flex !important;
        flex-direction: column;
        font-size: 1.625rem !important;
        font-weight: 400;
        gap: 1.65rem !important;
        inset: 0;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        position: fixed;
        transform: translateY(-14px);
        transition: opacity 320ms ease, transform 320ms cubic-bezier(0.2, 0, 0, 1);
        z-index: 50;
    }

    body.menu-open .site-menu {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-menu a {
        color: #000;
        opacity: 0;
        transform: translateY(12px);
        transition: opacity 260ms ease, transform 260ms cubic-bezier(0.2, 0, 0, 1);
        white-space: nowrap;
    }

    body.menu-open .site-menu a {
        opacity: 1;
        transform: translateY(0);
    }

    body.menu-open .site-menu a:nth-child(1) {
        transition-delay: 60ms;
    }

    body.menu-open .site-menu a:nth-child(2) {
        transition-delay: 95ms;
    }

    body.menu-open .site-menu a:nth-child(3) {
        transition-delay: 130ms;
    }

    body.menu-open .site-menu a:nth-child(4) {
        transition-delay: 165ms;
    }

    body.menu-open .site-menu a:nth-child(5) {
        transition-delay: 200ms;
    }

    body.menu-open .site-menu a:nth-child(6) {
        transition-delay: 235ms;
    }
}
