.site-footer{
  border-top:1px solid rgba(198,166,107,0.4);
  background:linear-gradient(180deg,rgba(246,239,229,0.95),rgba(249,242,233,0.98));
  padding:32px 0 24px;
  font-family:"Inter",system-ui,sans-serif;
  font-size:0.9rem;
  color:#6f625a;
}
.footer-grid{
  display:grid;
  grid-template-columns:minmax(0,2fr) minmax(0,1.5fr) minmax(0,1.3fr);
  gap:24px;
}
.footer-heading{
  font-family:"Inter",system-ui,sans-serif;
  font-size:0.8rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#2a211c;
  margin-bottom:12px;
}
.footer-text{
  margin-bottom:12px;
}
.footer-contact p,
.footer-hours ul li{
  margin-bottom:6px;
}
.footer-list{
  display:flex;
  flex-direction:column;
  gap:6px;
  list-style:none;
  padding:0;
}
.footer-link{
  color:#6f625a;
  text-decoration:none;
}
.footer-link:hover{
  color:#8f1d35;
}
.footer-note{
  margin-top:12px;
  font-size:0.8rem;
}
.footer-meta{
  margin-top:24px;
  padding-top:12px;
  border-top:1px solid rgba(198,166,107,0.35);
  display:flex;
  flex-wrap:wrap;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  font-size:0.8rem;
}
.footer-18{
  display:flex;
  align-items:flex-start;
  gap:8px;
  max-width:540px;
}
.footer-18-badge{
  width:26px;
  height:26px;
  border-radius:999px;
  border:1px solid rgba(143,29,53,0.5);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:0.75rem;
  color:#8f1d35;
  background:rgba(143,29,53,0.04);
}
.footer-copy{
  margin-left:auto;
}
.cookie-banner{
  position:fixed;
  inset:auto 0 0 0;
  z-index:45;
  background:rgba(255,250,242,0.97);
  border-top:1px solid rgba(198,166,107,0.6);
  box-shadow:0 -10px 30px rgba(42,33,28,0.16);
}
.cookie-inner{
  max-width:1120px;
  margin:0 auto;
  padding:14px 16px 16px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
}
.cookie-text{
  flex:1 1 auto;
}
.cookie-title{
  font-family:"Inter",system-ui,sans-serif;
  font-size:0.9rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:6px;
  color:#2a211c;
}
.cookie-desc{
  font-size:0.85rem;
  margin-bottom:4px;
}
.cookie-link{
  font-size:0.8rem;
  text-decoration:underline;
  color:#8f1d35;
}
.cookie-link:hover{
  color:#761529;
}
.cookie-actions{
  display:flex;
  flex-direction:row;
  flex-shrink:0;
  gap:8px;
}
.cookie-btn{
  white-space:nowrap;
}
.cookie-btn-reject{
  background:transparent;
  color:#2a211c;
  border-color:rgba(198,166,107,0.8);
  box-shadow:none;
}
.cookie-btn-reject:hover{
  background:rgba(246,239,229,0.95);
}
.cookie-btn-accept{
  background:#8f1d35;
}
.cookie-banner.hide{
  animation:cookie-slide-out .3s ease-out forwards;
}
.cookie-banner.show{
  animation:cookie-slide-in .3s ease-out forwards;
}
@keyframes cookie-slide-in{
  from{transform:translateY(100%);opacity:0;}
  to{transform:translateY(0);opacity:1;}
}
@keyframes cookie-slide-out{
  from{transform:translateY(0);opacity:1;}
  to{transform:translateY(100%);opacity:0;}
}
.age-modal-backdrop{
  position:fixed;
  inset:0;
  background:rgba(20,12,8,0.55);
  backdrop-filter:blur(18px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px;
  z-index:60;
}
.age-modal{
  width:100%;
  max-width:460px;
  background:radial-gradient(circle at top left,rgba(243,226,223,0.9),rgba(255,250,242,0.98));
  border-radius:20px;
  border:1px solid rgba(198,166,107,0.9);
  box-shadow:0 22px 60px rgba(42,33,28,0.6);
  padding:24px 24px 20px;
  font-family:"Inter",system-ui,sans-serif;
}
.age-modal-eyebrow{
  font-size:0.75rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:#6f625a;
  margin-bottom:4px;
}
.age-modal-title{
  font-family:"Playfair Display",serif;
  font-size:1.6rem;
  line-height:1.25;
  color:#2a211c;
}
.age-modal-body{
  margin-top:10px;
  margin-bottom:16px;
  font-size:0.95rem;
  color:#6f625a;
}
.age-modal-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.age-modal-disclaimer{
  margin-top:10px;
  font-size:0.8rem;
  color:#6f625a;
}
#age-yes,
#age-no{
  min-width:0;
}
#age-no{
  background:transparent;
  color:#8f1d35;
  border-color:rgba(143,29,53,0.35);
}
#age-no:hover{
  background:rgba(243,226,223,0.8);
}
.age-modal-backdrop[hidden]{
  display:none;
}
.cookie-banner[hidden]{
  display:none;
}
@media (max-width:767.98px){
  .footer-grid{
    grid-template-columns:1fr;
  }
  .footer-meta{
    flex-direction:column;
  }
  .footer-copy{
    margin-left:0;
  }
  .cookie-inner{
    flex-direction:column;
  }
  .cookie-actions{
    width:100%;
    justify-content:flex-end;
  }
}
@media (prefers-reduced-motion:reduce){
  .cookie-banner{
    animation:none !important;
  }
}