/* Footer Styles */
.site-footer {
    background: #2B2A27;
    color: #E3E2DD;
    padding: 2rem 0 1rem 0;
    /* Reduced from default */
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
    /* Reduced from 2rem */
}

.footer-brand img {
    height: 40px;
    margin-bottom: 0.75rem;
}

.footer-text {
    color: #9B9A97;
    font-size: 0.875rem;
    line-height: 1.5;
    max-width: 300px;
}

.footer-heading {
    color: #EEEDE9;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9B9A97;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #EEEDE9;
}

.footer-bottom {
    border-top: 1px solid #3A3937;
    padding-top: 1rem;
    /* Reduced from 1.5rem */
    text-align: center;
}

.footer-copyright {
    color: #9B9A97;
    font-size: 0.813rem;
    margin: 0;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 1.5rem 0 1rem 0;
        /* Even more compact on mobile */
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1rem;
    }
}