/* === FOOTER === */
.site-footer {
  background: var(--black);
  padding: 72px 56px 32px;
  border-top: 3px solid var(--blue);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
}
.footer-brand-logo {
  display: flex; align-items: center; margin-bottom: 18px;
}
.footer-logo-img {
  height: 100px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.footer-brand-desc {
  font-size: 13px; color: #fff; line-height: 1.7; margin-bottom: 24px;
}
.footer-email {
  color: #fff; font-size: 13px; text-decoration: none; transition: color .2s;
}
.footer-email:hover { color: var(--blue3); }

.footer-col-title {
  font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.footer-links {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.footer-links a {
  color: #fff; font-size: 13px; text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--blue3); }
/* Hide emoji images in menu links */
.footer-links a img { display: none; }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: #fff; letter-spacing: 1px;
}

/* Ensure all footer text is white */
.site-footer, .site-footer a, .site-footer p, .site-footer span,
.site-footer li, .site-footer .footer-links li a {
  color: #fff;
}
.site-footer a:hover { color: var(--blue3); }

/* Footer responsive */
@media (max-width: 900px) {
  .site-footer { padding: 48px 16px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .site-footer { padding: 32px 12px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
