.site-footer{
  margin-top:34px;
  padding:26px 0 112px;
  border-top:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 10% 0%,rgba(255,63,87,.12),transparent 28%),
    rgba(255,255,255,.018);
}

.footer-inner{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:18px 24px;
  align-items:center;
}

.footer-brand-lockup{
  display:inline-flex;
  align-items:center;
  gap:14px;
}

.footer-logo{
  width:88px;
  height:auto;
}

.footer-brand strong{
  display:block;
  font-size:22px;
  font-weight:900;
  letter-spacing:-.03em;
}

.footer-brand small{
  display:block;
  margin-top:2px;
  color:var(--muted);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.footer-links{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.footer-links a{
  min-height:42px;
  padding:0 14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  color:var(--muted);
  background:rgba(255,255,255,.045);
  border:1px solid var(--line);
  font-size:14px;
  font-weight:800;
}

.footer-links a:hover{
  color:#fff;
  background:linear-gradient(135deg,var(--primary),var(--secondary));
}

@media(max-width:768px){
  .site-footer{
    margin-top:26px;
    padding-bottom:104px;
  }

  .footer-inner{
    grid-template-columns:1fr;
    gap:16px;
  }

  .footer-links{
    justify-content:flex-start;
  }
}
