/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 36px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ─── Top row ─────────────────────────────────────────────────── */
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.footer-brand {}

.footer-logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  display: inline-block;
}

.footer-logo span {
  color: var(--red-hot);
}

.footer-tagline {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  align-items: flex-start;
}

.footer-nav a {
  font-size: 13px;
  font-weight: 400;
  color: var(--faint);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact a {
  font-size: 13px;
  color: var(--faint);
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--white);
}

/* ─── Bottom row ─────────────────────────────────────────────── */
.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: var(--muted);
}

.footer-member-link {
  font-size: 12px;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-member-link:hover {
  color: var(--faint);
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 680px) {
  .footer-top {
    flex-direction: column;
    gap: 28px;
  }
}
