.site-footer {
    font-family: sans-serif;
}

.footer-main {
    background-color: #111111;
    padding: 54px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 178px 1.05fr 1.55fr 108px;
    gap: 56px;
    align-items: start;
}

.footer-brand a {
    display: inline-block;
    line-height: 0;
}

.footer-brand img {
    width: 178px;
    height: auto;
    display: block;
}

.footer-heading {
    display: inline-block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ffffff;
    text-transform: capitalize;
}

.footer-about .footer-heading {
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.footer-text {
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    max-width: 280px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li + li {
    margin-top: 6px;
}

.footer-links a {
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 0.75;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 14px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1.5px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.social-link:hover {
    background-color: #ffffff;
    color: #111111;
}

.footer-copyright {
    background-color: #ffffff;
    padding: 20px 0;
    text-align: center;
    display: none;
}

.footer-copyright p {
    margin: 0;
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
}

@media (max-width: 1199px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 32px;
    }

    .footer-text {
        max-width: none;
    }
}

@media (max-width: 767px) {
    .footer-main {
        padding: 40px 0 36px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand img {
        width: 140px;
    }
}
