/* footer.css — Footer */
.footer { background: var(--blue-xl); padding: 40px 24px 22px; }
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 32px; }
.footer-brand-name { font-family: var(--ff-h); font-size: 15px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.footer-brand-tag  { font-size: 12px; color: rgba(255,255,255,.4); line-height: 1.65; margin-bottom: 16px; }
.footer-social { display: flex; gap: 8px; }
.fsoc { width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.14); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: rgba(255,255,255,.5); cursor: pointer; font-family: var(--ff-h); transition: .15s; }
.fsoc:hover { background: rgba(255,255,255,.08); color: var(--white); }
.footer-col h4 { font-family: var(--ff-h); font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,.65); letter-spacing: .3px; margin-bottom: 12px; }
.footer-col a { display: block; font-size: 12px; color: rgba(255,255,255,.38); text-decoration: none; margin-bottom: 7px; cursor: pointer; transition: .1s; }
.footer-col a:hover { color: rgba(255,255,255,.75); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 18px; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-creds { display: flex; gap: 14px; flex-wrap: wrap; }
.fcred { font-size: 10.5px; color: rgba(255,255,255,.25); }
.footer-copy { font-size: 11px; color: rgba(255,255,255,.25); }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
