.site-footer{
  background:var(--color-surface-card);
  border-top:var(--border);
  padding:var(--space-6) 0;
}
.footer-inner{
  display:grid;
  gap:var(--space-5);
}
.footer-nav ul{
  display:grid;
  gap:var(--space-2);
}
.footer-bottom{
  margin-top:var(--space-4);
}
.consent-banner{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  background:var(--color-surface-card);
  border-top:var(--border);
  padding:var(--space-3);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:var(--space-3);
}
.age-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.6);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:1000;
}
.consent-banner[hidden],
.age-modal[hidden]{
  display:none;
}
.age-modal-content{
  max-width:400px;
  text-align:center;
}
