.site-footer {
  margin: 0;
  background: #f7f1f8;
  border-top: 1px solid #eadff0;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}

.footer-identity {
  display: flex;
  align-items: center;
  gap: 42px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  min-width: 210px;
}

.footer-brand strong {
  font-family: Georgia, serif;
  font-size: 24px;
  line-height: 1.1;
  color: #673296;
}

.footer-brand span {
  margin-top: 4px;
  font-size: 14px;
  color: #555;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact a {
  color: #673296;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #8d45a8;
  text-decoration: underline;
}

.footer-compliance {
  text-align: right;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 700;
  color: #555;
}

.footer-legal {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #e4d9e8;
  text-align: center;
  font-size: 11px;
  line-height: 1.55;
  color: #777;
}

@media (max-width: 800px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }

  .footer-identity {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .footer-brand {
    min-width: 0;
    align-items: center;
  }

  .footer-contact {
    align-items: center;
  }

  .footer-compliance {
    text-align: center;
  }

  .footer-legal {
    margin-top: 16px;
  }
}