/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.45);
  padding: 3rem var(--section-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: -0.01em;
  color: var(--white);
}
.footer-logo span {
  color: var(--rose);
}
footer p {
  font-size: 12px;
  font-weight: 300;
  width: 40%;
}

footer p.right {
  text-align: right;
}

@media (max-width: 900px) {
  footer {
    padding: 2rem;
    flex-direction: column;
    align-items: flex-start;
  }
}
