/* ============================================================
   FOOTER — light theme, mono/uppercase, matches cs-page
   ============================================================ */

/* ─── FOOTER WRAPPER ─────────────────────────────── */
.site-footer {
  background: #f5f3ee;
  border-top: 1px solid rgba(39, 41, 50, 0.1);
  padding: var(--space-12) var(--space-8);
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-8);
}

/* ─── LEFT: LOGO / NAME ──────────────────────────── */
.footer-brand {
  font-family: Handlee, cursive;
  font-size: var(--text-2xl);
  color: rgba(39, 41, 50, 0.55);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-brand-handlee {
  font-family: Handlee, cursive;
  font-size: var(--text-2xl);
}

.footer-brand:hover {
  color: rgb(39, 41, 50);
}

/* ─── CENTRE: NAV LINKS ──────────────────────────── */
.footer-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-family: "Geist Mono", monospace;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(39, 41, 50, 0.55);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-nav a:hover {
  color: rgb(39, 41, 50);
}

/* ─── RIGHT: COPYRIGHT ───────────────────────────── */
.footer-copy {
  display: none;
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-5);
  }
  .footer-nav {
    gap: var(--space-4);
  }
}
