.site-footer {
    background-color: #9d8e91;
    color: var(--white);
    padding: 3rem 1.5rem 1.5rem;
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-column h3 {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
}

.footer-column h4 {
    font-size: 0.7rem;
    margin-bottom: 0.8rem;
    letter-spacing: 0.1em;
}

.footer-column p,
.footer-column a {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-bottom {
    max-width: 800px;
    margin: 3rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.7rem;
    opacity: 0.4;
}

@media (max-width: 1024px) {
    .footer-container { grid-template-columns: 1fr; max-width: 480px; }
    .footer-bottom { max-width: 480px; }
}

@media (max-width: 480px) {
    .site-footer { padding: 2rem 1rem 1rem; }
    .footer-container { max-width: 100%; }
    .footer-bottom { max-width: 100%; }
}
