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

.footer {
  border-top: 1px solid var(--border);
  margin-top: var(--space-xxl);
}

.footer__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 80px;
}

.footer__wordmark {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: 0;
}

.footer__wordmark span {
  display: block;
}

.footer__nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.footer__link {
  font-size: 14px;
  line-height: 2;
  transition: opacity 0.15s ease;
}

.footer__link:hover {
  opacity: 0.6;
}

@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-lg);
    padding: 64px 20px;
  }

  .footer__wordmark {
    font-size: 56px;
  }

  .footer__nav {
    align-items: center;
    text-align: center;
  }

  .footer__link {
    font-size: 14px;
    line-height: 2;
  }
}
