.footer{
    margin-top: 100px;
}

.footer__content{
    display: flex;
    gap: 100px;
}

.footer__left{
    width: calc(1060 * 100 / 1600 * 1%);
}

.footer__img{
    aspect-ratio: 1060 / 705;
    width: 100%;
}

.footer__img img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer__right{
    width: calc(340 * 100 / 1600 * 1%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.footer__logo{
    max-width: 127px;
    width: 100%;
}

.footer__logo-link{
    display: block;
    width: 100%;
}

.footer__logo img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer__items{
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__link{
    display: block;
    font-family: "ten-mincho-antique", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #040315;
    line-height: 120%;
}

.footer__copy{
    font-family: "ten-mincho-antique", sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0.03em;
    position: absolute;
    left: 0;
    bottom: 20px;
}

@media (max-width: 1024px) {
    .footer__content{
        gap: 50px;
    }
}

@media (max-width: 991px) {
    .footer__content{
        flex-direction: column-reverse;
    }

    .footer__left{
        width: 100%;
    }

    .footer__right{
        width: 100%;
        padding: 0 20px;
    }

    .footer__copy{
        position: static;
        margin-top: 50px;
    }
}