.site-footer {
    background: #000;
    border-top: 1px solid #222;
    color: #fff;
    padding: 70px 40px 30px;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.footer-title {
    font-family: "TeX Gyre Bonum", serif;
    font-size: 1.6rem;
    color: #c9a35d;
    margin-bottom: 10px;
}
.footer-motto {
    font-style: italic;
    margin-bottom: 14px;
}
.footer-company {
    font-size: 0.9rem;
    color: #ccc;
}
.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #c9a35d;
}
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-list li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}
.footer-list a {
    color: #fff;
    text-decoration: none;
}
.footer-list a:hover {
    color: #c9a35d;
}
.footer-socials {
    display: flex;
    gap: 18px;
    margin-top: 16px;
}
.footer-socials svg {
    width: 22px;
    height: 22px;
    stroke: #c9a35d;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.footer-socials a:hover svg {
    transform: translateY(-3px);
    opacity: 0.8;
}
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.85rem;
    color: #aaa;
}
.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    max-width: 180px;
    width: 100%;
    height: auto;
}
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .footer-logo {
        justify-content: center;
        margin-bottom: 1rem;
    }
}