.site-footer-container {
    background-color: #FDEDE0;
    width: 100%;
}

.site-footer {
    padding: 3.13vw 8.28vw 1.82vw;
    width: 100%;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-bottom: 3.13vw;
}

.footer-logo img {
    width: 8.64vw;
    height: auto;
    display: block;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 3.13vw;
}

.footer-nav a {
    font-family: 'Spartan', sans-serif;
    font-size: 0.625vw;
    font-weight: 700;
    color: #920026;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.08em;
    white-space: nowrap;
    position: relative;
    padding-bottom: 2px;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #920026;
    transform-origin: center;
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.footer-nav a:hover::after {
    transform: scaleX(1);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1vw;
    justify-content: flex-end;
}

.footer-social a {
    display: block;
    width: 1.82vw;
    height: 1.82vw;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 0.6;
}

.footer-social img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-bottom {
    display: flex;
    justify-content: flex-end;
}

.footer-legal {
    display: flex;
    gap: 2.6vw;
}

.footer-legal a {
    font-family: 'Spartan', sans-serif;
    font-size: 0.625vw;
    font-weight: 700;
    color: #920026;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: opacity 0.3s ease;
}

.footer-legal a:hover {
    opacity: 0.6;
}

@media only screen and (max-width: 767px) {
    .site-footer {
        padding: 12vw 7% 8vw;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 8vw;
        margin-bottom: 8vw;
        text-align: left;
    }

    .footer-logo {
        display: flex;
        justify-content: flex-start;
    }

    .footer-logo img {
        width: 24vw;
    }

    .footer-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 4vw;
    }

    .footer-nav a {
        font-size: 2.8vw;
        width: auto;
        text-align: left;
    }

    .footer-social {
        justify-content: flex-start;
        gap: 5vw;
    }

    .footer-social a {
        width: 5vw;
        height: 5vw;
    }

    .footer-bottom {
        justify-content: flex-start;
    }

    .footer-legal {
        gap: 5vw;
    }

    .footer-legal a {
        font-size: 2.8vw;
    }
}
