/* ========== FOOTER ========== */
.footer {
  background: var(--bg-page);
  padding: 40px 32px 32px;
  text-align: center;
}

.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 32px;
}

.footer__mail-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--c-text-light);
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.footer__mail-addr {
  font-size: 17px;
  font-weight: 500;
  color: var(--c-text);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color var(--t-fast);
}

.footer__mail-addr:hover {
  color: var(--c-purple);
}

.footer__divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin: 0 0 24px;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer__link {
  font-size: 12px;
  font-weight: 400;
  color: var(--c-text-light);
  cursor: pointer;
  transition: color var(--t-fast);
}

.footer__link:hover {
  color: var(--c-text);
}

.footer__copy {
  font-size: 12px;
  font-weight: 400;
  color: var(--c-text-muted);
  margin-top: 4px;
}
