/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */

footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 32px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 0.04em;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-sep {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.15);
}

/* ═══════════════════════════════════════
   FOOTER — RESPONSIVE
═══════════════════════════════════════ */

@media (max-width: 768px) {
  footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 28px 24px;
  }
}
