.site-footer {
    position: relative;
    margin-top: 0;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background-color: #232323;
    color: rgba(255, 255, 255, 0.86);
}

.footer-inner {
    flex: 1;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 60px 0;
}

.footer-layout {
    grid-template-columns: 1.1fr 1fr 1.2fr;
    gap: 36px;
    align-items: start;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.site-footer h2,
.site-footer a,
.site-footer .eyebrow,
.site-footer p,
.site-footer li {
    color: rgba(255, 255, 255, 0.9);
}

.site-footer a {
    transition: color 180ms ease;
}

.site-footer a:hover {
    color: #f6c44f;
}

.footer-list {
    display: grid;
    gap: 14px;
}

.footer-list a,
.footer-list li,
.footer-copyright {
    font-size: clamp(1.25rem, 16px, 1.6rem);
    line-height: 1.45;
    font-weight: 400;
}

.footer-logo-wrap {
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(246, 196, 79, 0.38);
}

.footer-logo-wrap .custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.footer-logo-wrap .custom-logo {
    max-height: 56px;
    width: auto;
}

.footer-text-logo {
    display: inline-flex;
    align-items: center;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-contact-label {
    font-weight: 600;
    width: 65px;
    font-size: 16px;
    display: inline-block;
}

.footer-contact-value {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1100px) {
    .site-footer {
        min-height: 460px;
    }

    .footer-inner {
        padding: 50px 0;
    }

    .footer-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-col-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 860px) {
    .site-footer {
        min-height: 0;
    }

    .footer-inner {
        padding: 40px 0;
    }

    .footer-layout {
        grid-template-columns: 1fr;
    }
}
