.site-footer { background: var(--navy); color: var(--warm-white); padding: 62px 0 24px; }
.footer-grid { width: min(1120px, calc(100% - 40px)); margin: 0 auto; display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; }
.footer-logo { display: inline-flex; margin-bottom: 12px; }
.footer-logo img { width: 178px; max-height: 68px; object-fit: contain; border-radius: 22px; transition: transform .25s ease, filter .25s ease; }
.footer-logo:hover img { transform: translateY(-2px) scale(1.03); filter: drop-shadow(0 10px 22px rgba(0,0,0,.26)); }
.site-footer h3 { font-family: var(--sans); font-size: 1rem; text-transform: uppercase; letter-spacing: .1em; }
.site-footer p, .site-footer a { display: block; color: rgba(250,248,244,.72); margin-bottom: 10px; }
.social-links { display: flex; gap: 10px; margin-top: 18px; }
.social-links a { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; margin: 0; transition: transform .25s ease, background .25s ease, border-color .25s ease; }
.social-links a svg { width: 20px; height: 20px; fill: currentColor; }
.social-links a:hover { transform: translateY(-3px); background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-bottom { width: min(1120px, calc(100% - 40px)); margin: 38px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(250,248,244,.58); font-size: .9rem; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }
