.site-footer {
    background: var(--bg-content); padding: 80px 0 30px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px; margin-bottom: 60px;
}
.footer-col h4 { font-size: 1.2rem; color: var(--gold-primary); margin-bottom: 20px; letter-spacing: 1.5px; }
.footer-col p { color: var(--text-muted); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: var(--text-muted); }
.social-links a { display: inline-block; margin-right: 20px; }
.social-links svg { stroke: var(--text-muted); transition: stroke 0.3s ease; }
.social-links a:hover svg { stroke: var(--gold-primary); }
.copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.copyright p { font-size: 0.9rem; color: var(--text-muted); }
.copyright .credits { margin-top: 10px; font-size: 0.8rem; opacity: 0.7; }
.credits a { color: var(--text-muted); text-decoration: underline; }
.credits a:hover { color: var(--gold-primary); }