/* ─────────────────────────────────────────────────────────
   FOOTER — animated gradient background, brand, nav, legal
   ───────────────────────────────────────────────────────── */

.site-footer {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
  border-top: 1px solid rgba(246, 136, 56, 0.18);
  background: linear-gradient(90deg,
    #000000 0%,
    #0a0402 25%,
    #5e2a10 55%,
    #b8612e 80%,
    #f0824b 100%);
}

/* Blurred accent line at the top — brand light orange */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 33%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg,
    rgba(246,136,56,0) 0%,
    rgba(246,136,56,0.85) 50%,
    rgba(246,136,56,0) 100%);
  filter: blur(3px);
  z-index: 2;
  pointer-events: none;
}

#footer-canvas {
  display: none;
}

.footer-content {
  position: relative;
  z-index: 1;
  padding: 80px var(--pad) 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand {
  max-width: 460px;
}

.footer-logo-image-link {
  display: inline-block;
}

.footer-logo-image {
  display: block;
  width: 260px;
  max-width: 100%;
  height: auto;
}

.footer-tagline {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 18px;
  max-width: 420px;
  line-height: 1.7;
  text-shadow: none;
}

.footer-tagline-small {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 14px;
  max-width: 520px;
  text-shadow: none;
}

.footer-nav {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin-bottom: 18px;
  text-shadow: none;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 11px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.58);
  transition: color 0.3s ease;
  text-shadow: none;
}

.footer-col a:hover {
  color: #f68838;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
  text-shadow: none;
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s ease;
  text-shadow: none;
}

.footer-legal a:hover {
  color: #f68838;
}

/* Blur + fade-in reveal (motion-style) */
.footer-reveal {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(-8px);
  transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.footer-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .footer-reveal {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}
