.qn-site-footer {
  width: 100%;
  margin-top: auto;
  border-top: 1px solid var(--border-soft, #36291e);
  background: #000;
  color: var(--muted, var(--text-muted, #b0a8a2));
  font-family: var(--qn-font-body, Inter, Arial, sans-serif);
  font-size: 14px;
}

.qn-site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 24px;
  gap: 18px;
}

.qn-site-footer-brand {
  color: var(--text-warm, var(--text, #f5f2f0));
  font-family: var(--qn-font-heading, "Space Grotesk", Inter, sans-serif);
  font-weight: 800;
}

.qn-site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.qn-site-footer-link {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease;
}

.qn-site-footer-link:hover,
.qn-site-footer-link:focus-visible {
  color: var(--primary, var(--accent-strong, #ffb77d));
}

@media (max-width: 560px) {
  .qn-site-footer-inner {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .qn-site-footer-nav {
    justify-content: center;
  }
}
