/*
 * ============================================================
 * css/footer.css — Site Footer
 * ============================================================
 * Responsible for:
 *   - footer element border-top, padding
 *   - .footer-inner max-width container, flex row layout
 *   - .footer-copy muted small text
 *   - .footer-logo display font treatment
 * ============================================================
 */

/* ═══════════════════════════════════════════════════════
   14. FOOTER
═══════════════════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: 0.06em;
}
