/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--c-ink);
  padding: var(--sp-3) var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

.footer-copy {
  font-size: var(--fs-sm);
  color: rgba(250, 250, 248, 0.3);
  font-weight: 300;
}

.footer-copy strong {
  font-weight: 600;
  color: rgba(250, 250, 248, 0.5);
}

.footer-badge {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(250, 250, 248, 0.2);
  font-weight: 600;
}

@media (max-width: 768px) {
  .site-footer {
    padding: var(--sp-3);
    flex-direction: column;
    align-items: flex-start;
  }
}
