.site-footer {
  padding-bottom: 38px;
}

.footer-contact {
  margin-top: 32px;
  padding-top: 24px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  text-align: center;

  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-contact-text {
  margin: 0;

  font-size: 0.98rem;
  line-height: 1.6;

  color: rgba(255, 255, 255, 0.72);
}

.footer-contact-mail {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  padding: 10px 18px;

  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);

  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.06);

  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.footer-contact-mail:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
  margin-top: 34px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;

  text-align: center;
}

.footer-legal a {
  min-width: min(320px, 88vw);
  padding: 12px 18px;

  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);

  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.04);

  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;

  transition:
    transform 0.25s ease,
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.footer-legal a:hover {
  transform: translateY(-2px);

  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.32);
}

@media (max-width: 640px) {
  .footer-contact {
    margin-top: 26px;
  }

  .footer-contact-text {
    max-width: 280px;
  }

  .footer-contact-mail {
    max-width: 88vw;
    font-size: 0.92rem;
  }
}