footer {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 26px;

  padding: 48px 20px 40px;

  text-align: center;

  background: #000;
}

.footer-logo {
  width: min(220px, 46vw);
  height: auto;
  display: block;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  gap: 18px 34px;

  font-size: 0.98rem;
}

.footer-links a {
  color: #f7f3ee;
  opacity: 0.88;

  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 1;

  text-decoration: underline;
  text-underline-offset: 3px;
}

.copyright {
  line-height: 1.6;
  font-size: 1rem;
  color: #faf7f2;
}