.site-footer {
  position: relative;
  display: block;
  gap: 0;
  overflow: hidden;
  padding-block: 0;
  border-top: 1px solid rgba(255, 230, 16, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 230, 16, 0.1), transparent 34%),
    linear-gradient(315deg, rgba(240, 4, 127, 0.12), transparent 42%),
    #030303;
}

.site-footer::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}

.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(180px, 0.75fr) minmax(190px, 0.65fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  padding-block: clamp(34px, 5vw, 64px);
}

.footer-brand {
  display: grid;
  gap: 16px;
  max-width: 620px;
}

.footer-brand img {
  width: min(172px, 48vw);
  filter: drop-shadow(0 0 18px rgba(255, 230, 16, 0.18));
}

.footer-brand strong {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 520px;
  color: #dedbd2;
}

.footer-links,
.footer-actions {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-actions a {
  width: fit-content;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-actions a:hover {
  color: var(--yellow);
}

.footer-ticket {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 14px;
  border: 1px solid var(--yellow);
  background: var(--yellow);
  color: #050505 !important;
  box-shadow: 6px 6px 0 rgba(240, 4, 127, 0.84);
  transform: skewX(-8deg);
}

.footer-ticket:hover {
  background: #050505;
  color: var(--yellow) !important;
}

.footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-block: 16px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .footer-bottom {
    display: grid;
  }
}
