
body {
  min-width: 320px;
}

/* Scroll reveal */
.sr-init { opacity: 0; transform: translateY(20px); transition: opacity .7s ease-out, transform .7s ease-out; will-change: opacity, transform; }
.sr-init.is-visible { opacity: 1; transform: translateY(0); }

/* Header scrolled state */
header.is-scrolled {
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.opening-days {
  min-width: 60px;
  display: inline-block;
  text-align: right;
}

/* Mobile menu panel */
#mobile-menu {
  position: fixed;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 60;
  overflow-y: auto;
  width:100%;
  animation: mm-fade .25s ease-out;
  top:88px;
  left:0;
  height:calc(100dvh - 88px);
}

.group {
  hyphens: auto;
}

#mobile-menu[hidden] { display: none; }
#mobile-menu .mm-inner {
  padding: 1.5rem 1.75rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 640px;
  margin: 0 auto;
}
#mobile-menu .mm-section,
#mobile-menu .mm-cta {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
#mobile-menu .mm-section > div {
  display: flex;
  flex-direction: column;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
#mobile-menu .mm-section span {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  padding-bottom: .35rem;
  opacity: .7;
}
#mobile-menu a {
  display: block;
  padding: .55rem 0;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #bfbfbf;
  text-decoration: none;
  transition: color .2s;
}
#mobile-menu a:hover { color: #fff; }
#mobile-menu .mm-section .group span,
#mobile-menu .mm-section a > span { display: none; } /* hide desktop underline spans */
#mobile-menu .mm-cta {
  margin-top: .5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lb-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
}
.lb-stage { position: relative; max-width: 90vw; max-height: 85vh; display: flex; align-items: center; justify-content: center; }
.lb-stage img { max-width: 90vw; max-height: 85vh; object-fit: contain; display: block; }
.lb-counter { position: absolute; bottom: -2.5rem; left: 0; right: 0; text-align: center;
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: #aaa; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; font-size: 1.5rem; transition: all 0.3s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: #d8242c; border-color: #d8242c; }
.lb-close { top: 1.5rem; right: 1.5rem; }
.lb-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1rem; top: 50%; transform: translateY(-50%); }
@media (min-width: 768px) {
  .lb-prev { left: 2rem; } .lb-next { right: 2rem; }
  .lb-close, .lb-prev, .lb-next { width: 56px; height: 56px; }
}




@keyframes mm-fade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hide body scroll when menu open is handled via JS */

@media (min-width: 1024px) {
  #mobile-menu { display: none !important; }
}

@media (max-width: 600px) {
  #header-legal-nav {
    flex-direction: column !important;
    align-items: end;
    gap:0.3em;
  }

  #main-logo {
    height: calc(var(--spacing) * 10);
  }

    #header-legal-nav a {
    font-size: 10px !important;
  }
}