/* ── FOOTER ──────────────────────────────────────────── */
/* Four elements. Nothing else.                           */

#main-footer {
  background: var(--ink);
  padding: 80px 40px;
}

.footer-inner {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.footer-logo-mark {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
}

.footer-wordmark {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.45);
  letter-spacing: 0.04em;
}

.footer-merchant {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-merchant:hover {
  color: var(--turmeric);
}

.footer-copy {
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(245, 240, 232, 0.18);
  letter-spacing: 0.04em;
  margin-top: 8px;
}
