.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 32px 0;
  margin-top: auto;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 28px;
  height: 28px;
  background: var(--orange);
  color: white;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.05em;
}

.footer-brand-text {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-copyright {
  font-size: 13px;
  color: var(--muted);
  margin-left: 8px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-link-item {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 13px;
  transition: color 0.15s ease;
}

.footer-link-item:hover {
  color: var(--text);
}

@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 16px;
  }
  .footer-left {
    flex-direction: column;
    gap: 6px;
  }
  .footer-copyright {
    margin-left: 0;
  }
  .footer-links {
    gap: 16px;
  }
}