.site-footer {
  padding: 54px 0 88px;
  color: #fff;
  background: #0b2231;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

.site-footer * { box-sizing: border-box; }
.site-footer > .container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.site-footer a { color: inherit; text-decoration: none; }
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .7fr 1fr;
  gap: 40px;
}
.site-footer .brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}
.site-footer .brand-logo-footer { width: min(310px, 100%); height: auto; }
.site-footer .footer-brand p { max-width: 360px; margin: 18px 0 0; color: rgba(255, 255, 255, .58); }
.site-footer .footer-col h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-footer .footer-col a,
.site-footer .footer-col span {
  display: flex;
  min-height: 38px;
  width: fit-content;
  align-items: center;
  margin: 0;
  padding: 6px 0;
  color: rgba(255, 255, 255, .62);
  font-size: .92rem;
}
.site-footer .footer-col a:hover,
.site-footer .footer-col a:focus { color: #fff; }
.site-footer .footer-col a:focus-visible { outline: 2px solid #c7a764; outline-offset: 3px; }
.site-footer .footer-bottom {
  margin-top: 45px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, .48);
  font-size: .82rem;
}
.site-footer .creator-credit {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .64);
  transition: color .18s ease;
}
.site-footer .creator-credit-logo {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 8px;
}
.site-footer .creator-credit-label {
  background: linear-gradient(90deg, #ff6b6b, #ffd166, #7bd389, #5bc0eb, #c77dff, #ff6b6b);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
}
.site-footer .creator-credit:hover .creator-credit-label,
.site-footer .creator-credit:focus-visible .creator-credit-label {
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: creator-rainbow 1.8s linear infinite;
}
.site-footer .creator-credit:focus-visible {
  outline: 2px solid #c7a764;
  outline-offset: 4px;
}
@keyframes creator-rainbow { to { background-position: 250% 0; } }
@media (prefers-reduced-motion: reduce) {
  .site-footer .creator-credit:hover .creator-credit-label,
  .site-footer .creator-credit:focus-visible .creator-credit-label {
    animation: none;
    background-position: center;
  }
}

@media (max-width: 1020px) {
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .site-footer > .container { width: min(100% - 26px, 1180px); }
  .site-footer .footer-grid { grid-template-columns: 1fr; }
  .site-footer .footer-bottom { flex-direction: column; flex-wrap: wrap; }
}
