/* ==========================================================================
   Shared site footer — The Delacorte Group
   Used on every page via footer.js. Edit here (and in footer.js) to change
   the footer everywhere at once; do not re-implement the footer inline.
   ========================================================================== */

footer.site-footer {
    background: var(--midnight-navy);
    color: var(--alabaster);
    padding: 4rem 0 2rem;
}

footer.site-footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

footer.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

footer.site-footer .footer-brand h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--champagne-gold);
}

footer.site-footer .footer-brand p {
    color: rgba(244, 245, 247, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

footer.site-footer .footer-brand a {
    color: rgba(244, 245, 247, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer.site-footer .footer-brand a:hover {
    color: var(--champagne-gold);
}

footer.site-footer .footer-links h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--champagne-gold);
}

footer.site-footer .footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer.site-footer .footer-links a {
    color: rgba(244, 245, 247, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
    padding: 0.4rem 0;
    transition: color 0.3s ease;
}

footer.site-footer .footer-links a:hover {
    color: var(--champagne-gold);
}

footer.site-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(244, 245, 247, 0.5);
    font-size: 0.9rem;
}

footer.site-footer .footer-bottom p {
    margin: 0;
}

@media (max-width: 1024px) {
    footer.site-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 3rem;
    }
}

@media (max-width: 560px) {
    footer.site-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}
