.site-footer {
  width: 100%;
  background:
    radial-gradient(circle at 12% 0%, rgba(232,144,10,.16), transparent 34%),
    linear-gradient(135deg, #101724 0%, #0b111d 56%, #080d16 100%);
  border-top: 3px solid var(--color-accent);
  color: #fff;
}
.footer-shell {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  gap: 28px;
}
.footer-brand-col,
.footer-menu-col,
.footer-promo-col {
  min-width: 0;
}
.footer-brand-col {
  display: grid;
  gap: 18px;
  align-content: start;
}
.footer-logo {
  width: fit-content;
  color: #fff;
  text-decoration: none;
}
.footer-logo-card {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,253,248,.98), rgba(255,246,229,.93));
  box-shadow: 0 18px 44px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.65);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.footer-logo-card:hover {
  transform: translateY(-2px);
  border-color: rgba(232,144,10,.44);
  box-shadow: 0 24px 58px rgba(0,0,0,.34), 0 0 0 4px rgba(232,144,10,.10), inset 0 1px 0 rgba(255,255,255,.72);
}
.footer-logo-img {
  display: block;
  width: min(238px, 76vw);
  height: auto;
}
.footer-logo svg,
.footer-logo-text,
.footer-bar,
.footer-bottom,
.footer-promo {
  display: none !important;
}
.footer-desc {
  max-width: 560px;
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 15px;
  line-height: 1.8;
}
.footer-title {
  margin: 0 0 12px;
  color: rgba(255,255,255,.48);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer-legal-links,
.footer-menu-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
}
.footer-legal-links a,
.footer-btn,
.footer-menu-links a {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(255,255,255,.72);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.6;
  text-decoration: none;
  cursor: pointer;
  transition: color .18s ease, transform .18s ease;
}
.footer-legal-links a:hover,
.footer-btn:hover,
.footer-menu-links a:hover {
  color: var(--color-accent-2);
  transform: translateY(-1px);
  background: transparent;
}
.footer-menu-col {
  display: grid;
  align-content: center;
  gap: 10px;
}
.footer-menu-links {
  justify-content: flex-start;
}
.footer-menu-links a {
  font-size: 15px;
}
.footer-promo-col {
  align-self: center;
}
.footer-promo-image {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  background: #050a13;
  box-shadow: 0 28px 70px rgba(0,0,0,.36);
  text-decoration: none;
  isolation: isolate;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, filter .28s ease;
}
.footer-promo-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.13) 42%, transparent 58%);
  transform: translateX(-120%);
  transition: transform .65s ease;
  z-index: 2;
}
.footer-promo-image:hover,
.footer-promo-image:focus-visible {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(232,144,10,.55);
  box-shadow: 0 36px 90px rgba(0,0,0,.44), 0 0 0 4px rgba(232,144,10,.10);
  outline: none;
}
.footer-promo-image:hover::after,
.footer-promo-image:focus-visible::after {
  transform: translateX(120%);
}
.footer-promo-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 1;
  object-fit: contain;
  object-position: center;
  background: #050a13;
  transform: scale(1);
  transition: transform .28s ease, filter .28s ease;
}
.footer-promo-image:hover img,
.footer-promo-image:focus-visible img {
  transform: scale(1.015);
  filter: saturate(1.08) contrast(1.03);
}
@media (min-width: 920px) {
  .footer-shell {
    width: min(var(--container), calc(100% - 80px));
    grid-template-columns: minmax(280px, .95fr) minmax(130px, .34fr) minmax(430px, 1.18fr);
    align-items: center;
    gap: 42px;
    padding: 50px 0;
  }
  .footer-menu-col {
    justify-self: center;
  }
  .footer-menu-links {
    justify-content: center;
  }
}
@media (max-width: 720px) {
  .footer-shell {
    padding: 34px 0;
  }
  .footer-logo-card {
    padding: 8px 10px;
    border-radius: 18px;
  }
  .footer-logo-img {
    width: min(220px, 72vw);
  }
  .footer-promo-image {
    border-radius: 22px;
  }
  .footer-promo-image img {
    aspect-ratio: 3 / 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .footer-logo-card,
  .footer-promo-image,
  .footer-promo-image::after,
  .footer-promo-image img,
  .footer-legal-links a,
  .footer-btn,
  .footer-menu-links a {
    transition: none !important;
  }
  .footer-logo-card:hover,
  .footer-promo-image:hover,
  .footer-promo-image:focus-visible,
  .footer-promo-image:hover img,
  .footer-promo-image:focus-visible img,
  .footer-legal-links a:hover,
  .footer-btn:hover,
  .footer-menu-links a:hover {
    transform: none !important;
  }
}
