.site-footer {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(159, 116, 226, 0.2);
  background: rgba(8, 4, 24, 0.96);
  color: #f5f4ff;
}

.site-footer .site-footer__inner {
  display: grid;
  width: min(calc(100% - 40px), 1220px);
  min-height: 230px;
  margin-inline: auto;
  grid-template-columns: 1.25fr 2fr 1.45fr;
  align-items: center;
  gap: 35px;
  padding-block: 38px;
}

.site-footer .site-footer__brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
}

.site-footer .site-footer__logo {
  display: block;
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  padding: 5px;
  border-radius: 50%;
  background: #fff;
  object-fit: contain;
  box-shadow: 0 7px 22px rgba(0, 0, 0, 0.25);
}

.site-footer .site-footer__brand-text {
  min-width: 0;
}

.site-footer .site-footer__name {
  display: block;
  font-family: var(--font-display, "Montserrat", sans-serif);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.site-footer .site-footer__tagline {
  margin: 3px 0 0;
  color: #f4d35e;
  font-size: 14px;
  line-height: 1.45;
}

.site-footer .site-footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 28px;
}

.site-footer .site-footer__column {
  display: grid;
  align-content: start;
  gap: 9px;
}

.site-footer .site-footer__links a {
  color: rgba(235, 230, 255, 0.72);
  font-size: 14px;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer .site-footer__links a:hover,
.site-footer .site-footer__links a:focus-visible {
  color: #f4d35e;
}

.site-footer .site-footer__contact {
  white-space: nowrap;
}

.site-footer .site-footer__legal {
  color: rgba(235, 230, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
  text-align: right;
}

.site-footer .site-footer__legal strong,
.site-footer .site-footer__legal span {
  display: block;
  color: #f5f4ff;
}

.site-footer .site-footer__legal p {
  margin: 7px 0 0;
}

@media (max-width: 900px) {
  .site-footer .site-footer__inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 25px;
    padding-block: 34px;
  }

  .site-footer .site-footer__legal {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .site-footer .site-footer__inner {
    width: min(calc(100% - 32px), 1220px);
    gap: 24px;
    padding-block: 30px;
  }

  .site-footer .site-footer__links {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .site-footer .site-footer__logo {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }
}
