:root{
  --footer-h: 90px;
}

.site-footer{
  width: 100%;
  height: var(--footer-h);
  background: #1a0d07;
  border-top: 2px solid #c28a4a;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.8), 0 0 18px rgba(255,200,120,0.4);

  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9997;
}

.footer-inner{
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  padding: 10px 24px 16px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  color:#f7e3c5;
}

.footer-left p{
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.9;
}

.footer-tagline{
  margin-top: 4px;
  font-size: 0.8rem;
  opacity: 0.7;
}

.footer-links a{
  color:#f7e3c5;
  text-decoration:none;
  margin-left: 16px;
  font-size: 0.9rem;
  opacity: 0.85;
  transition: opacity .15s ease, text-shadow .15s ease;
}

.footer-links a:hover{
  opacity: 1;
  text-shadow: 0 0 8px rgba(255,200,120,0.9);
}

.footer-stats{
  text-align:center;
  font-size: 0.9rem;
  opacity: 0.9;
}
.footer-stats p{ margin: 2px 0; }

@media (max-width: 900px){
  .footer-stats{ display:none; }
}
@media (max-width: 600px){
  .footer-links{ display:none; }
}