.site-footer {
  position: relative;
  padding: 72px 0 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 45, 109, .12), transparent 30%),
    linear-gradient(180deg, rgba(11, 16, 32, .26), rgba(7, 11, 24, .86));
}

html[data-theme="light"] .site-footer {
  background:
    radial-gradient(circle at 14% 0%, rgba(233, 31, 95, .10), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, .58), rgba(247, 249, 252, .96));
}

.footer-shell {
  display: grid;
  gap: 28px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(0, 1.55fr);
  gap: 24px;
  align-items: stretch;
}

.footer-brand-panel,
.footer-nav {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, .035);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .18);
}

html[data-theme="light"] .footer-brand-panel,
html[data-theme="light"] .footer-nav {
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 22px 70px rgba(30, 41, 59, .08);
}

.footer-brand-panel {
  padding: 28px;
}

.site-footer .brand {
  display: inline-flex;
  margin-bottom: 22px;
}

.site-footer .footer-statement {
  max-width: 420px;
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 840;
  line-height: 1.12;
  letter-spacing: 0;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.footer-badges span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.site-footer .footer-address {
  margin: 0;
  color: var(--muted);
  font-style: normal;
  line-height: 1.62;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  background: rgba(248, 250, 252, .035);
}

html[data-theme="light"] .footer-nav {
  background: rgba(255, 255, 255, .72);
}

.footer-column {
  min-height: 220px;
  padding: 28px;
}

.footer-column + .footer-column {
  border-left: 1px solid var(--line);
}

.site-footer b {
  display: block;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-footer a:not(.brand) {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 12px 0;
  color: var(--muted);
  font-weight: 650;
  transition: color .2s ease, transform .2s ease;
}

.site-footer a:not(.brand)::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  opacity: 0;
  transform: translateX(-4px) rotate(45deg);
  transition: opacity .2s ease, transform .2s ease;
}

.site-footer a:not(.brand):hover {
  color: var(--ink);
  transform: translateX(2px);
}

.site-footer a:not(.brand):hover::after {
  opacity: 1;
  transform: translateX(0) rotate(45deg);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-bottom strong {
  color: var(--ink);
  font-weight: 760;
}

@media (max-width: 900px) {
  .footer-main,
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    background: rgba(248, 250, 252, .035);
  }

  html[data-theme="light"] .footer-nav {
    background: rgba(255, 255, 255, .72);
  }

  .footer-column {
    min-height: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .footer-column:first-child {
    border-top: 0;
  }
}

@media (max-width: 620px) {
  .site-footer {
    padding: 52px 0 24px;
  }

  .footer-brand-panel,
  .footer-column {
    padding: 22px;
  }

  .footer-bottom {
    display: grid;
  }
}
