/* ══════════════════════════════════════════════
   EXILIUM — FOOTER
   ══════════════════════════════════════════════ */

footer {
  border-top: 1px solid rgba(200,146,42,0.2) !important;
  padding: 40px 0 32px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
  background: linear-gradient(0deg, rgba(5,5,10,0.98) 0%, transparent 100%) !important;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.2;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
}

.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img {
  width: 36px; height: 36px; opacity: 0.6;
  filter: drop-shadow(0 0 6px rgba(200,40,40,0.3));
  transition: all 0.4s var(--ease-premium);
}
.footer-brand:hover img { opacity: 0.8; transform: scale(1.08); }
.footer-brand span {
  font-family: 'Cinzel Decorative', serif;
  font-size: 16px !important;
  color: var(--gold-dim) !important;
  letter-spacing: 5px !important;
}

.footer-motto {
  font-style: italic;
  color: rgba(154,144,128,0.7) !important;
  font-size: 13px !important;
  text-align: center;
  letter-spacing: 0.8px !important;
}

.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-family: 'Cinzel', serif;
  font-size: 10px; color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 2px; text-transform: uppercase;
  transition: all 0.35s var(--ease-premium);
  position: relative;
}
.footer-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease-premium);
}
.footer-links a:hover { color: var(--gold-pale); }
.footer-links a:hover::after { transform: scaleX(1); }

.footer-version { font-size: 10px; color: var(--text-ghost); letter-spacing: 1px; }
