/* ================= FOOTER ================= */

.site-footer {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.88);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(18, 18, 30, 0.04);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 24px;
  padding: 28px 0 20px;
}

.footer-brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  max-width: 240px;
}

.footer-links h4,
.footer-contact h4 {
  margin: 0 0 10px;
  font-size: 15px;
}

.footer-links a {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
  transition: color 0.16s ease;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-contact p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 14px 0 18px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}