footer#colophon {
    background: linear-gradient(180deg, #111111 0%, #3F3127 100%);
    padding: 4.17vw 15vw;
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}

footer#colophon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #A37F6680;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 3.125vw;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo img {
    width: 9.17vw;
    height: auto;
}

.footer-nav {
    display: flex;
    gap: 3.125vw;
}

.footer-nav a {
    font-family: 'CormorantGaramond', serif;
    font-size: 1.04vw;
    color: #F1E9E0;
    text-decoration: none;
    line-height: 1.15vw;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 0.7;
}

.footer-social {
    display: flex;
    gap: 2.08vw;
    margin-bottom: 4.17vw;
}

.footer-social a {
    font-family: 'CormorantGaramond', serif;
    font-size: 1.04vw;
    color: #F1E9E0;
    text-decoration: none;
    line-height: 1.15vw;
    transition: opacity 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-copyright {
    font-family: 'CormorantGaramond', serif;
    font-size: 1.04vw;
    color: #F1E9E0;
    line-height: 1.15vw;
}

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

.footer-legal a {
    font-family: 'CormorantGaramond', serif;
    font-size: 1.04vw;
    color: #F1E9E0;
    text-decoration: none;
    line-height: 1.15vw;
    transition: opacity 0.3s ease;
}

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

@media only screen and (max-width: 767px) {
    footer#colophon {
        padding: 15vw 7% 10vw;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        margin-bottom: 10vw;
    }

    .footer-logo {
        margin-bottom: 10vw;
    }

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

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

    .footer-nav a {
        font-size: 4vw;
        line-height: normal;
    }

    .footer-social {
        justify-content: center;
        margin-bottom: 10vw;
        gap: 8vw;
    }

    .footer-social a {
        font-size: 4vw;
        line-height: normal;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 6vw;
    }

    .footer-copyright {
        font-size: 3.5vw;
        line-height: normal;
    }

    .footer-legal {
        flex-direction: column;
        align-items: center;
        gap: 4vw;
    }

    .footer-legal a {
        font-size: 3.5vw;
        line-height: normal;
    }
}
