/* Header */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  height: var(--header-h);
  transition: background 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(10, 6, 8, 0.88);
  backdrop-filter: blur(14px);
  border-color: var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  flex-shrink: 0;
}

.site-header__logo {
  height: clamp(64px, 10vw, 78px);
  width: auto;
  filter: drop-shadow(0 0 12px var(--neon-glow));
}

.site-header__tagline {
  display: none;
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  max-width: 9rem;
  line-height: 1.35;
}

@media (min-width: 1100px) { .site-header__tagline { display: block; } }

.site-nav { display: none; align-items: center; gap: 0.15rem; margin-left: auto; }

.site-nav__link {
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--gold);
  background: rgba(255, 180, 0, 0.08);
}

.site-header__cta {
  display: none;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black) !important;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-gold);
}

.site-header__cta:hover { filter: brightness(1.06); color: var(--black) !important; }

.nav-toggle {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 22px; height: 2px;
  margin-inline: auto;
  background: var(--text);
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 960px) {
  .site-nav { display: flex; }
  .site-header__cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

.nav-drawer {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(5, 5, 5, 0.97);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.5rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.nav-drawer.is-open { opacity: 1; visibility: visible; }

.nav-drawer__close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: transparent; border: none;
  color: var(--text); font-size: 1.5rem; cursor: pointer;
}

.nav-drawer__logo { width: min(180px, 50vw); filter: drop-shadow(0 0 20px var(--neon-glow)); }

.nav-drawer__link {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  color: var(--text);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-drawer__link:hover { color: var(--gold); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, filter 0.2s;
}

.btn:hover { transform: translateY(-2px); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--black) !important;
  box-shadow: var(--shadow-gold);
}

.btn--neon {
  background: linear-gradient(135deg, var(--neon), var(--crimson));
  color: #fff !important;
  box-shadow: var(--shadow-neon);
}

.btn--outline {
  background: transparent;
  border-color: var(--border-strong, rgba(255,180,0,0.45));
  color: var(--gold) !important;
}

.btn--ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text) !important;
  border-color: rgba(255,255,255,0.12);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 2rem) 1rem 5.5rem;
  overflow: hidden;
  text-align: center;
}

.hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 6, 8, 0.55) 0%, rgba(10, 6, 8, 0.82) 55%, var(--bg) 100%),
    url("/assets/images/hero-neon.jpg") center / cover no-repeat;
}

.hero__vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, transparent, rgba(0,0,0,0.65));
  pointer-events: none;
}

.hero__content { position: relative; z-index: 2; max-width: 820px; }

.hero__logo {
  width: min(340px, 88vw);
  margin: 0 auto 1rem;
  filter: drop-shadow(0 0 28px var(--neon-glow));
  animation: neon-flicker 8s infinite;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(255, 45, 85, 0.15);
  border: 1px solid var(--border-neon);
  margin-bottom: 1rem;
}

.hero__title {
  font-size: clamp(2.8rem, 8vw, 4.8rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 0.5rem;
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--neon));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: shimmer-gold 6s linear infinite;
}

.hero__lead {
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 44ch;
  margin: 0 auto 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.stat-pill {
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  min-width: 100px;
}

.stat-pill__num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.stat-pill__label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Marquee */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 0.85rem 0;
}

.marquee__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 40s linear infinite;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.marquee__track span { white-space: nowrap; }

/* Cards */
.flare-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}

.flare-card::before {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center 82%;
  background-size: cover;
  opacity: 0.52;
  filter: sepia(0.22) saturate(1.05) contrast(1.02) brightness(0.96);
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out), transform 0.5s var(--ease-out);
}

.flare-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    url("/assets/images/textures/paper-fold.svg") center / cover no-repeat,
    linear-gradient(168deg, rgba(28, 16, 20, 0.88) 0%, rgba(28, 16, 20, 0.62) 38%, rgba(28, 16, 20, 0.22) 100%),
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(255, 180, 0, 0.06), transparent 55%);
  mix-blend-mode: normal;
}

.flare-card--food::before {
  background-image: url("/assets/images/comics/flare-food.svg");
  background-position: 55% 75%;
}

.flare-card--beer::before {
  background-image: url("/assets/images/comics/flare-beer.svg");
  background-position: 50% 80%;
}

.flare-card--nights::before {
  background-image: url("/assets/images/comics/flare-nights.svg");
  background-position: 52% 72%;
}

.flare-card:hover::before {
  opacity: 0.58;
  transform: scale(1.03);
}

.flare-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-neon);
  box-shadow: var(--shadow-neon);
}

.flare-card__icon,
.flare-card__title,
.flare-card__body {
  position: relative;
  z-index: 2;
}

.flare-card__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(255, 45, 85, 0.12);
  color: var(--neon);
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}

.flare-card__title {
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.flare-card__body { color: var(--text-muted); margin: 0; font-size: 0.95rem; }

.band {
  text-align: center;
  padding: 2.5rem 0;
  background:
    linear-gradient(90deg, rgba(255,45,85,0.08), rgba(255,180,0,0.1), rgba(255,45,85,0.08));
  border-block: 1px solid var(--border);
}

.band__quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  max-width: 28ch;
  margin: 0 auto 0.75rem;
}

.band__pill {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon);
}

/* Tap list */
.tap-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) { .tap-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .tap-grid { grid-template-columns: repeat(5, 1fr); } }

.tap-pill {
  --tap-a: #1c1014;
  --tap-b: #0a0608;
  --tap-mark: none;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 0.45rem;
  min-height: 4.75rem;
  text-align: center;
  border-radius: var(--radius-sm);
  border: 1px solid color-mix(in srgb, var(--tap-b) 50%, rgba(255, 180, 0, 0.15));
  overflow: hidden;
  background:
    linear-gradient(148deg,
      color-mix(in srgb, var(--tap-a) 44%, #140810) 0%,
      color-mix(in srgb, var(--tap-b) 32%, #0a0608) 100%);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.25s;
}

.tap-pill::before {
  content: "";
  position: absolute;
  inset: -15% -20% -15% 15%;
  background: var(--tap-mark) 92% center / auto 88% no-repeat;
  opacity: 0.16;
  pointer-events: none;
}

.tap-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 6, 8, 0.12) 0%, rgba(10, 6, 8, 0.5) 100%);
  pointer-events: none;
}

.tap-pill:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--tap-b) 65%, rgba(255, 248, 232, 0.35));
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
}

.tap-pill:hover::before { opacity: 0.22; }

.tap-pill__mark {
  position: relative;
  z-index: 1;
  width: 1.9rem;
  height: 1.9rem;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.65));
}

.tap-pill__name {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: clamp(0.7rem, 1.7vw, 0.84rem);
  line-height: 1.2;
  color: #fff8ee;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.95),
    0 2px 12px rgba(0, 0, 0, 0.7),
    0 0 1px #000;
}

/* Gallery */
.gallery-strip {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) { .gallery-strip { grid-template-columns: repeat(4, 1fr); } }

.gallery-strip__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1;
}

.gallery-strip__item img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.gallery-strip__trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  position: relative;
  z-index: 0;
}

.gallery-strip__trigger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease-out), visibility 0.3s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox:not(.is-open) {
  pointer-events: none;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(8px);
}

.lightbox__panel {
  position: relative;
  z-index: 1;
  max-width: min(1100px, 96vw);
  max-height: 90vh;
  animation: lightbox-in 0.35s var(--ease-out);
}

.lightbox__img {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-deep);
}

.lightbox__caption {
  margin: 0 0 0.75rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
}

.lightbox--menu .lightbox__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox--menu .lightbox__img {
  max-height: min(78vh, 820px);
}

.lightbox__close {
  position: absolute;
  top: -2.75rem;
  right: 0;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lightbox__close:hover {
  background: var(--neon);
  color: #fff;
}

@keyframes lightbox-in {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 640px) {
  .lightbox__close {
    top: auto;
    bottom: -3.25rem;
    right: 50%;
    transform: translateX(50%);
  }
}

/* Menu */
.menu-section { margin-bottom: 2.5rem; }
.menu-section__title {
  font-size: 1.35rem;
  color: var(--gold);
  text-transform: uppercase;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.menu-item__name { font-weight: 600; }
.menu-item__price { color: var(--gold); font-weight: 700; white-space: nowrap; }
.menu-item__desc { grid-column: 1 / -1; color: var(--text-muted); font-size: 0.88rem; margin: 0; }

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Footer */
.site-footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) { .site-footer__grid { grid-template-columns: repeat(3, 1fr); } }

.site-footer h3 {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.site-footer__text { color: var(--text-muted); font-size: 0.92rem; }
.site-footer__links li { margin-bottom: 0.45rem; }
.site-footer__links a { color: var(--text-muted); }
.site-footer__links a:hover { color: var(--gold); }

.site-footer__bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.quote-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.quote-card__text { font-style: italic; color: var(--text-muted); margin-bottom: 0.75rem; }
.quote-card__author { color: var(--gold); font-size: 0.88rem; font-style: normal; }

.special-day {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  margin-bottom: 1rem;
}

.special-day h2 {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.special-day p { color: var(--text-muted); margin: 0; }

.glow-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

/* Sunday live-music callout */
.sunday-callout {
  background:
    linear-gradient(135deg, rgba(196, 31, 61, 0.95) 0%, rgba(255, 180, 0, 0.92) 100%);
  border-bottom: 2px solid rgba(255, 248, 232, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.sunday-callout__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1.15rem 0;
}

.sunday-callout__eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 248, 232, 0.92);
  margin-bottom: 0.35rem;
}

.sunday-callout__title {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff8ee;
  margin-bottom: 0.35rem;
}

.sunday-callout__copy p {
  margin: 0;
  color: rgba(255, 248, 232, 0.9);
  max-width: 36rem;
}

.sunday-callout__btn { flex-shrink: 0; }

body.has-sunday-callout .hero { padding-top: 0.5rem; }

/* Bar update posts */
.bar-updates {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-neon);
  background: var(--bg-card);
}

.bar-updates__title {
  margin: 0 0 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.bar-updates__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.bar-updates__item p {
  margin: 0.25rem 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}
