.footer-legal-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
  justify-items: center;
  max-width: 1050px;
  margin-inline: auto;
  padding: 34px 0;
  border-top: 1px solid rgba(255,255,255,.22);
  border-bottom: 1px solid rgba(255,255,255,.12);
  text-align: center;
}

.footer-owner { display: grid; gap: 8px; }
.footer-owner .eyebrow, .footer-official-email .eyebrow { margin: 0 0 5px; }
.footer-owner strong { color: #fff; font: 800 clamp(1.2rem,2vw,1.65rem)/1.1 var(--display); text-transform: uppercase; }
.footer-owner span { color: #fff; font-size: .84rem; line-height: 1.5; }
.footer-official-email a { color: #fff; font-weight: 700; overflow-wrap: anywhere; text-decoration: underline; text-underline-offset: 4px; }
.footer-legal-panel .legal-links { grid-column: 1 / -1; justify-content: center; gap: 13px 22px; }
.footer-legal-panel .legal-links a,
.footer-legal-panel .legal-links button { color: #fff; border-bottom-color: rgba(255,255,255,.55); }
.footer-bottom { justify-content: center; padding-top: 22px; border-top: 0; text-align: center; }
.footer-bottom .copyright { color: #fff; font-size: .78rem; letter-spacing: .03em; }

.site-footer {
  overflow: hidden;
  isolation: isolate;
  animation: footer-fire-background 12s ease-in-out infinite alternate;
}
.site-footer::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -18%;
  pointer-events: none;
  opacity: .78;
  background:
    radial-gradient(ellipse at 18% 92%,rgba(255,184,48,.62) 0,rgba(255,72,5,.35) 9%,transparent 24%),
    radial-gradient(ellipse at 47% 104%,rgba(255,205,76,.55) 0,rgba(232,48,0,.32) 11%,transparent 29%),
    radial-gradient(ellipse at 78% 91%,rgba(255,149,31,.58) 0,rgba(255,56,0,.3) 10%,transparent 25%),
    linear-gradient(112deg,transparent 31%,rgba(255,116,18,.18) 47%,transparent 63%);
  background-size: 46% 82%,52% 94%,48% 78%,140% 100%;
  background-repeat: no-repeat;
  filter: blur(9px) saturate(1.35);
  mix-blend-mode: screen;
  animation: footer-ember-glow 5.5s ease-in-out infinite alternate;
}

@keyframes footer-fire-background {
  0% { background-position: center bottom; background-size: cover; }
  50% { background-position: 48% 96%; background-size: 106% auto; }
  100% { background-position: 52% 100%; background-size: 112% auto; }
}

@keyframes footer-ember-glow {
  0% { transform: translate3d(-2%,8%,0) scale(1); opacity: .52; }
  35% { transform: translate3d(2%,-2%,0) scale(1.08,1.18); opacity: .84; }
  68% { transform: translate3d(-1%,-7%,0) scale(1.14,1.3); opacity: .64; }
  100% { transform: translate3d(2%,-13%,0) scale(1.2,1.42); opacity: .76; }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer, .site-footer::after { animation: none; }
}

@media (max-width: 760px) {
  .footer-legal-panel { grid-template-columns: 1fr; text-align: center; }
  .footer-legal-panel .legal-links { grid-column: auto; justify-content: center; }
}
