/* ── SITE FOOTER (shared across all pages) ── */
.site-footer {
  position: relative;
  z-index: 2;
  background-color: #141414;
  color: rgba(244, 246, 244, 0.6);
  padding: 1.75rem 4rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.site-footer a {
  text-decoration: none;
}

.site-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.75rem;
}

.site-footer .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: #f4f6f4;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}

.site-footer .footer-logo-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
}

.site-footer .footer-logo-img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: -4px;
}

.site-footer .footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
}

.site-footer .footer-links a {
  color: rgba(244, 246, 244, 0.55);
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.site-footer .footer-links a:hover {
  color: #22c55e;
}

.site-footer .footer-copy {
  font-size: 0.8rem;
  color: rgba(244, 246, 244, 0.35);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .site-footer {
    padding: 1.5rem 1.5rem;
  }
  .site-footer .footer-inner {
    justify-content: flex-start;
  }
}
