.footer {
    width: 100%;

    background: #D6B65A;
    color: #0B1B33;

    padding:
        clamp(4rem, 8vw, 7rem)
        clamp(1.5rem, 7vw, 7rem)
        2rem;
}

.footer__main {
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer__logo {
    color: #0B1B33;
    text-decoration: none;

    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -0.07em;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.footer__logo:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}

.footer__brand-subtitle {
    margin-top: 0.5rem;

    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.35em;
}

.footer__brand p {
    max-width: 250px;

    margin-top: 2rem;

    font-size: 1rem;
    line-height: 1.6;

    opacity: 0.7;
}

.footer__nav,
.footer__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer__label {
    margin-bottom: 1.5rem;

    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.2em;

    opacity: 0.5;
}

.footer__nav a {
    position: relative;

    margin-bottom: 0.8rem;

    color: #0B1B33;
    text-decoration: none;

    font-size: 1rem;
    font-weight: 600;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.footer__nav a:hover {
    opacity: 0.6;
    transform: translateX(5px);
}

.footer__contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;

    color: #0B1B33;
    text-decoration: none;

    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;

    transition:
        opacity 0.3s ease,
        gap 0.3s ease;
}

.footer__contact-link span {
    transition:
        transform 0.3s ease;
}

.footer__contact-link:hover {
    opacity: 0.65;
    gap: 1rem;
}

.footer__contact-link:hover span {
    transform: translate(3px, -3px);
}

.footer__bottom {
    max-width: 1400px;

    margin: 5rem auto 0;
    padding-top: 1.5rem;

    border-top:
        1px solid rgba(11, 27, 51, 0.2);

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 0.75rem;
    font-weight: 600;

    opacity: 0.7;
}

.footer__top {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;

    padding: 0;

    border: none;
    background: transparent;

    color: #0B1B33;

    font: inherit;

    cursor: pointer;

    transition:
        opacity 0.3s ease;
}

.footer__top span {
    font-size: 1rem;

    transition:
        transform 0.3s ease;
}

.footer__top:hover {
    opacity: 0.6;
}

.footer__top:hover span {
    transform: translateY(-3px);
}

@media (max-width: 900px) {

    .footer__main {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
    }

    .footer__brand {
        grid-column: 1 / -1;
    }

}

@media (max-width: 600px) {

    .footer {
        padding:
            4rem 1.25rem 1.5rem;
    }

    .footer__main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer__brand {
        grid-column: auto;
    }

    .footer__logo {
        font-size: 3.8rem;
    }

    .footer__bottom {
        margin-top: 3.5rem;

        flex-direction: column;
        align-items: flex-start;

        gap: 1rem;
    }

}