/* Footer component styles – clean light theme */
.site-footer {
  background: #ffffff;
  color: var(--text);
  border-top: 1px solid var(--outline);
  box-shadow: none;
  /* Posisikan isi footer tepat di tengah secara vertikal */
  min-height: 52px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 16px; padding: 10px 0; align-items: start; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo { width: 36px; height: 36px; border-radius: 50%; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(0,0,0,.15)); }
.footer-brand strong { color: var(--text); }
.footer-brand .muted { color: var(--muted); }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--text); }
.footer-contact { display: flex; flex-direction: column; gap: 6px; color: var(--muted); }
.footer-copy {
  grid-column: 1 / -1;
  border-top: none; /* hindari garis ganda, cukup gunakan border pada .site-footer */
  padding-top: 0;
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .1px;
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
}