/* ==========================================================================
   Alcove International Tavern — Design System
   ========================================================================== */

:root {
  /* Color palette — deep tavern, antique brass, warm cream */
  --bg-deep: #0a0a0c;
  --bg-near: #14110d;
  --surface: #1c1813;
  --surface-2: #221c14;
  --surface-3: #2c241a;
  --gold: #d4a857;
  --gold-bright: #f0c987;
  --gold-deep: #a07b34;
  --cream: #f4ead6;
  --cream-muted: #c8b89a;
  --cream-dim: #948568;
  --rust: #b04a2f;
  --rust-bright: #d96a4a;
  --border: rgba(212, 168, 87, 0.18);
  --border-strong: rgba(212, 168, 87, 0.32);

  /* Type */
  --f-display: "Fraunces", "Playfair Display", Georgia, serif;
  --f-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Sizing */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --shadow-1: 0 1px 0 rgba(255,255,255,0.04), 0 8px 24px rgba(0,0,0,0.35);
  --shadow-2: 0 1px 0 rgba(255,255,255,0.06), 0 24px 56px rgba(0,0,0,0.5);

  /* Animation */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--f-body);
  font-feature-settings: "ss01", "cv11";
  background: var(--bg-deep);
  color: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, picture, svg { display: block; max-width: 100%; height: auto; }

a { color: var(--gold-bright); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--cream); }

::selection { background: var(--gold); color: var(--bg-deep); }

.skip-link {
  position: absolute; top: -100px; left: 12px;
  background: var(--gold); color: var(--bg-deep); padding: 8px 14px;
  border-radius: var(--r-sm); font-weight: 600;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

.container {
  width: min(100% - var(--gutter)*2, var(--container));
  margin-inline: auto;
}

/* =======================  HEADER  ======================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px 0;
  transition: padding .35s var(--ease), background .35s var(--ease), backdrop-filter .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(10, 10, 12, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border);
}

.hdr-inner {
  width: min(100% - var(--gutter)*2, var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 20px;
  align-items: center;
}

.brand { display: flex; align-items: center; gap: 12px; color: var(--cream); }
.brand:hover { color: var(--cream); }
.brand-mark { width: 44px; height: 44px; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); }
.brand-name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.01em;
  line-height: 1;
  display: flex;
  flex-direction: column;
}
.brand-sub {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.primary-nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: clamp(12px, 2vw, 28px);
  justify-content: center;
}
.primary-nav a {
  color: var(--cream-muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.primary-nav a:hover { color: var(--cream); }
.primary-nav a:hover::after { transform: scaleX(1); }

.hdr-cta { display: flex; align-items: center; gap: 12px; }

.open-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(20, 17, 13, 0.7);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream-muted);
}
.open-pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cream-dim);
  box-shadow: 0 0 0 0 currentColor;
}
.open-pill.is-open { color: #b6f1c5; border-color: rgba(120, 220, 150, 0.35); }
.open-pill.is-open .dot { background: #5ee68a; box-shadow: 0 0 12px rgba(94, 230, 138, 0.7); animation: pulse 2.4s var(--ease) infinite; }
.open-pill.is-closed { color: #f3b3a8; border-color: rgba(217, 106, 74, 0.35); }
.open-pill.is-closed .dot { background: var(--rust-bright); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(94, 230, 138, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(94, 230, 138, 0); }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--gold);
  color: var(--bg-deep);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-bright); color: var(--bg-deep); border-color: var(--gold-bright); box-shadow: 0 8px 28px rgba(212, 168, 87, 0.35); }
.btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: var(--border-strong);
}
.btn-secondary:hover { background: rgba(212, 168, 87, 0.1); border-color: var(--gold); color: var(--cream); }
.btn-ghost {
  background: transparent;
  color: var(--cream-muted);
  border: 1px solid var(--border);
  padding: 8px 14px;
  font-size: 12px;
}
.btn-ghost:hover { color: var(--cream); border-color: var(--gold); background: rgba(212, 168, 87, 0.06); }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* Hamburger */
.hamburger {
  display: none;
  appearance: none; background: transparent; border: 1px solid var(--border);
  width: 44px; height: 44px; border-radius: 10px;
  cursor: pointer; padding: 0;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.hamburger span { display: block; width: 18px; height: 1.5px; background: var(--cream); border-radius: 2px; transition: transform .25s var(--ease), opacity .25s var(--ease); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: rgba(10, 10, 12, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: 24px var(--gutter);
}
.mobile-nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  color: var(--cream);
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a.m-call { color: var(--gold); margin-top: 8px; }

/* =======================  HERO  ======================= */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  filter: saturate(0.55) contrast(1.08) brightness(0.55) hue-rotate(-8deg);
  animation: heroZoom 24s var(--ease) infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.12); }
}
.hero-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 70% at 50% 30%, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.92) 100%),
    linear-gradient(180deg, rgba(10,10,12,0.6) 0%, rgba(10,10,12,0.35) 30%, rgba(10,10,12,0.65) 70%, rgba(10,10,12,1) 100%);
  z-index: -1;
}

.hero-inner {
  width: min(100% - var(--gutter)*2, 1080px);
  margin-inline: auto;
  text-align: center;
  padding: 120px 0 80px;
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
}
.eyebrow.accent { color: var(--rust-bright); }
.eyebrow span + span::before { content: ""; }

.hero-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(56px, 12vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--cream);
  text-shadow: 0 2px 60px rgba(0,0,0,0.6);
}
.hero-title .line { display: block; }
.hero-title .line-1 {
  font-size: 1em;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.hero-title .line-2 {
  font-size: 0.34em;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
  font-family: var(--f-body);
}
.hero-title .line-2 em {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--cream);
  margin-right: 4px;
}

.hero-tag {
  max-width: 640px;
  margin: 28px auto 0;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  color: var(--cream-muted);
}

.hero-actions {
  margin-top: 40px;
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

.hero-meta {
  margin: 64px auto 0;
  display: flex; gap: clamp(28px, 6vw, 80px);
  justify-content: center; flex-wrap: wrap;
  padding: 22px clamp(24px, 5vw, 60px);
  border-radius: 999px;
  background: rgba(10, 10, 12, 0.55);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  border: 1px solid var(--border);
  width: fit-content;
}
.meta-item { text-align: center; }
.meta-num {
  display: block;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(34px, 4.2vw, 50px);
  color: var(--gold);
  line-height: 1;
  font-feature-settings: "tnum";
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}
.meta-lbl {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-top: 8px;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: 28px; height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  display: grid; place-items: start center;
  padding-top: 8px;
}
.scroll-cue span {
  width: 2px; height: 8px; background: var(--gold);
  border-radius: 1px; display: block;
  animation: cueFall 1.8s var(--ease) infinite;
}
@keyframes cueFall {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* =======================  SECTIONS — generic  ======================= */
.band { padding: clamp(80px, 10vw, 140px) 0; position: relative; }
.band-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.band-head .eyebrow { margin-bottom: 14px; }
.band-head .lede {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--cream-muted);
  margin-top: 18px;
}

.display {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  color: var(--cream);
}
.display em { font-style: italic; color: var(--gold); }

.lede { color: var(--cream-muted); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.story-figure, .beer-figure {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  aspect-ratio: 4/3;
}
.story-figure img, .beer-figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.story-figure:hover img, .beer-figure:hover img { transform: scale(1.04); }
.story-figure figcaption, .beer-figure figcaption {
  position: absolute; left: 16px; bottom: 14px;
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--cream); padding: 8px 12px;
  background: rgba(10,10,12,0.6); backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: var(--r-sm);
  display: inline-flex; align-items: center; gap: 10px;
}
.cap-num { color: var(--gold); font-family: var(--f-display); font-style: italic; letter-spacing: 0; font-size: 13px; }

/* Story */
.band-story { background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-near) 100%); }
.story-copy p { color: var(--cream-muted); }
.story-copy p + p { margin-top: 18px; }
.story-sign {
  font-family: var(--f-display); font-style: italic;
  color: var(--gold); margin-top: 28px;
}

/* =======================  COCKTAILS  ======================= */
.band-cocktails {
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(212,168,87,0.06) 0%, transparent 70%),
    var(--bg-near);
}
.cocktail-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.cocktail {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px 24px 22px;
  position: relative;
  overflow: hidden;
  transition: border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.cocktail::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 0% 0%, rgba(212,168,87,0.12) 0%, transparent 50%);
  opacity: 0; transition: opacity .35s var(--ease);
  pointer-events: none;
}
.cocktail:hover { border-color: var(--border-strong); transform: translateY(-3px); box-shadow: var(--shadow-1); }
.cocktail:hover::before { opacity: 1; }
.ck-top { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; margin-bottom: 8px; }
.ck-top h3 {
  font-family: var(--f-display);
  font-weight: 500; font-size: 24px;
  margin: 0; color: var(--cream); letter-spacing: -0.01em;
}
.ck-price {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--gold);
  font-size: 22px; font-weight: 400;
  font-feature-settings: "tnum";
}
.ck-desc { color: var(--cream-muted); font-size: 14.5px; line-height: 1.55; margin: 0 0 14px; }
.ck-tag {
  display: inline-block;
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border: 1px solid var(--border);
  padding: 4px 10px; border-radius: 999px;
}

/* Seasonal */
.seasonal {
  margin-top: 80px;
  border-top: 1px solid var(--border);
  padding-top: 60px;
}
.seasonal > header { text-align: center; margin-bottom: 36px; }
.seasonal-list {
  list-style: none; padding: 0; margin: 0;
  max-width: 760px; margin-inline: auto;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--border);
}
.seasonal-list li {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) 2.5fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 20px 8px;
  border-bottom: 1px solid var(--border);
  transition: background .25s var(--ease);
}
.seasonal-list li:hover { background: rgba(212,168,87,0.04); }
.s-name {
  font-family: var(--f-display);
  font-size: 22px; font-weight: 500;
  color: var(--cream);
}
.s-desc { color: var(--cream-muted); font-size: 14.5px; }
.s-price {
  font-family: var(--f-display); font-style: italic;
  color: var(--gold); font-size: 20px;
  font-feature-settings: "tnum";
}

/* Happy Hour */
.happy-hour {
  margin: 80px auto 0;
  max-width: 720px;
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 48px);
  text-align: center;
  background: linear-gradient(135deg, rgba(212,168,87,0.10) 0%, rgba(176,74,47,0.08) 100%);
  border: 1px solid var(--border-strong);
  position: relative;
  overflow: hidden;
}
.happy-hour::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 100% 0%, rgba(212,168,87,0.18), transparent 60%);
  pointer-events: none;
}
.hh-mark {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--gold);
  font-weight: 500;
  position: relative;
}
.hh-times {
  font-size: 12px; letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin: 4px 0 22px;
  position: relative;
}
.hh-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: clamp(20px, 4vw, 56px);
  justify-content: center; flex-wrap: wrap;
  position: relative;
}
.hh-list li { font-size: 16px; color: var(--cream-muted); }
.hh-list strong {
  font-family: var(--f-display);
  font-style: italic; font-weight: 400;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--cream);
  display: block;
  margin-bottom: 4px;
}

/* =======================  BEER  ======================= */
.band-beer { background: var(--bg-near); }
.beer-copy p { color: var(--cream-muted); margin: 0 0 16px; }
.beer-copy strong { color: var(--cream); font-weight: 600; }
.beer-stats {
  list-style: none; padding: 0; margin: 32px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.beer-stats li { text-align: left; }
.stat-num {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(30px, 3.5vw, 44px);
  color: var(--gold);
  line-height: 1;
  font-feature-settings: "tnum";
}
.stat-lbl {
  display: block;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim); margin-top: 8px;
}
.beer-cta { margin-top: 28px; }
.link-arrow {
  font-family: var(--f-display); font-style: italic;
  font-size: 20px; color: var(--gold);
  display: inline-flex; gap: 10px; align-items: baseline;
}
.link-arrow span { transition: transform .25s var(--ease); }
.link-arrow:hover span { transform: translateX(6px); }

/* =======================  GAMEROOM  ======================= */
.band-gameroom {
  position: relative;
  isolation: isolate;
  padding: clamp(120px, 14vw, 180px) 0;
}
.gr-bg { position: absolute; inset: 0; z-index: -2; }
.gr-bg img { width: 100%; height: 100%; object-fit: cover; }
.band-gameroom::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(10,10,12,0.95) 0%, rgba(10,10,12,0.6) 50%, rgba(10,10,12,0.4) 100%),
    radial-gradient(80% 60% at 20% 50%, rgba(176,74,47,0.18) 0%, transparent 60%);
}
.gr-card {
  max-width: 600px;
  background: rgba(20,17,13,0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(32px, 4vw, 56px);
}
.gr-card p { color: var(--cream-muted); margin: 16px 0 0; }
.gr-card strong { color: var(--gold); font-weight: 600; }
.gr-features {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px;
}
.gr-features li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--cream);
}
.gr-features li span { color: var(--rust-bright); font-size: 10px; }

/* =======================  BIZ COVE  ======================= */
.band-bizcove {
  background:
    radial-gradient(50% 40% at 50% 0%, rgba(212,168,87,0.05) 0%, transparent 60%),
    var(--bg-deep);
}
.biz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
.biz-perks {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.biz-perks li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.biz-perks li:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.biz-perks h3 {
  font-family: var(--f-display);
  font-size: 22px; font-weight: 500;
  margin: 0 0 8px; color: var(--cream);
}
.biz-perks p { color: var(--cream-muted); font-size: 14.5px; margin: 0; line-height: 1.5; }

/* Form */
.biz-form {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 44px);
}
.biz-form h3 { font-size: clamp(28px, 3vw, 36px); margin: 0 0 6px; }
.form-lede { color: var(--cream-muted); margin: 0 0 24px; font-size: 15px; }
.biz-form label {
  display: block;
  margin-bottom: 16px;
}
.biz-form label > span {
  display: block;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 6px;
}
.biz-form input, .biz-form select, .biz-form textarea {
  width: 100%;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  color: var(--cream);
  font-family: inherit;
  font-size: 15px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.biz-form textarea { resize: vertical; }
.biz-form input:focus, .biz-form select:focus, .biz-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(20,17,13,0.85);
}
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-fineprint {
  font-size: 12px; color: var(--cream-dim);
  text-align: center; margin: 14px 0 0;
}

/* =======================  GALLERY  ======================= */
.band-gallery { background: var(--bg-near); }
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.g-tile {
  appearance: none; padding: 0; margin: 0; border: 0; cursor: pointer;
  background: var(--surface);
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
}
.g-tile picture, .g-tile img { width: 100%; height: 100%; }
.g-tile img { object-fit: cover; transition: transform .8s var(--ease), filter .4s var(--ease); }
.g-tile:hover img { transform: scale(1.06); filter: brightness(1.08); }
.g-tile:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.g-tile:nth-child(1) { grid-column: span 3; grid-row: span 2; }
.g-tile:nth-child(2) { grid-column: span 3; grid-row: span 1; }
.g-tile:nth-child(3) { grid-column: span 2; grid-row: span 1; }
.g-tile:nth-child(4) { grid-column: span 2; grid-row: span 1; }
.g-tile:nth-child(5) { grid-column: span 2; grid-row: span 1; }

/* Lightbox */
.lightbox {
  border: 0; padding: 0; margin: 0;
  background: rgba(10,10,12,0.95);
  backdrop-filter: blur(8px);
  width: 100vw; max-width: 100vw; height: 100vh; max-height: 100vh;
  display: none;
  place-items: center;
  z-index: 100;
}
.lightbox[open] { display: grid; }
.lightbox::backdrop { background: rgba(0,0,0,0.9); }
#lb-img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: 8px; }
.lb-close {
  position: absolute; top: 16px; right: 20px;
  background: transparent; border: 0; color: var(--cream);
  font-size: 40px; line-height: 1;
  cursor: pointer; padding: 4px 12px;
}

/* =======================  VISIT  ======================= */
.band-visit {
  background: linear-gradient(180deg, var(--bg-near) 0%, var(--bg-deep) 100%);
}
.visit-info .display { margin-top: 8px; }
.visit-sub { color: var(--cream-muted); margin: 18px 0 32px; max-width: 480px; }
.hours-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px 28px;
}
.hours-card h3 {
  font-family: var(--f-display);
  font-weight: 500; font-size: 22px;
  margin: 0 0 14px; color: var(--cream);
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 400;
  text-align: left;
  font-size: 15px;
}
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: 0; }
.hours-table th { color: var(--cream-muted); font-weight: 500; }
.hours-table td { color: var(--cream); text-align: right; font-feature-settings: "tnum"; }
.hours-table .closed { color: var(--cream-dim); font-style: italic; }
.hours-status {
  margin: 14px 0 0;
  font-size: 13px; color: var(--gold);
  font-style: italic;
  font-family: var(--f-display);
}

.contact-row {
  margin-top: 24px;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.contact-pill {
  display: inline-flex; flex-direction: column;
  padding: 12px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--cream);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.contact-pill:hover { border-color: var(--gold); color: var(--cream); background: rgba(212,168,87,0.05); }
.cp-lbl { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cream-dim); }
.cp-val { font-family: var(--f-display); font-size: 17px; margin-top: 2px; }

.visit-map {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  filter: grayscale(35%) contrast(0.95);
  transition: filter .35s var(--ease);
}
.visit-map:hover { filter: none; }
.visit-map iframe { width: 100%; height: 100%; }

/* =======================  FOOTER  ======================= */
.site-footer {
  background: #07070a;
  border-top: 1px solid var(--border);
  padding: 80px 0 24px;
}
.ft-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
}
.ft-brand img { width: 56px; height: 56px; }
.ft-tag { color: var(--cream-muted); font-size: 14px; margin: 14px 0 0; max-width: 280px; }
.ft-col h4 {
  font-family: var(--f-display);
  font-weight: 500; font-size: 18px;
  margin: 0 0 14px; color: var(--cream);
}
.ft-col p { color: var(--cream-muted); font-size: 14px; line-height: 1.7; margin: 0 0 8px; }
.ft-col a { color: var(--cream-muted); }
.ft-col a:hover { color: var(--gold); }
.social { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.social a { display: inline-flex; align-items: center; gap: 10px; color: var(--cream-muted); font-size: 14px; }
.social svg { color: var(--gold); }

.ft-base {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  width: min(100% - var(--gutter)*2, var(--container));
  margin-inline: auto;
}
.ft-base p { font-size: 12px; color: var(--cream-dim); margin: 0; letter-spacing: 0.04em; }
.ft-credit a { color: var(--gold); }

/* =======================  REVEAL ANIMATIONS  ======================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* =======================  RESPONSIVE  ======================= */
@media (max-width: 1024px) {
  .primary-nav { display: none; }
  .hamburger { display: inline-flex; }
  .hdr-cta .btn { display: none; }
  .hdr-cta .open-pill { padding: 6px 10px; font-size: 11px; }
  .hdr-inner { grid-template-columns: auto 1fr auto; }
  .biz-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; }
  .g-tile:nth-child(1) { grid-column: span 4; grid-row: span 2; }
  .g-tile:nth-child(2) { grid-column: span 2; }
  .g-tile:nth-child(3) { grid-column: span 2; }
  .g-tile:nth-child(4) { grid-column: span 2; }
  .g-tile:nth-child(5) { grid-column: span 2; }
}

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse { direction: ltr; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .biz-perks { grid-template-columns: 1fr; }
  .gr-features { grid-template-columns: 1fr; }
  .seasonal-list li {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "name price"
      "desc desc";
  }
  .s-name { grid-area: name; }
  .s-price { grid-area: price; }
  .s-desc { grid-area: desc; margin-top: 4px; }
  .hero-meta { gap: 30px; margin-top: 50px; }
  .meta-num { font-size: 36px; }
  .row-2 { grid-template-columns: 1fr; }
  .brand-name { font-size: 18px; }
  .brand-sub { font-size: 9px; }
  .open-pill .open-text { display: none; }
  .open-pill { padding: 6px; }
  .open-pill .dot { margin: 0; }
  .scroll-cue { display: none; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .g-tile:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .g-tile:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .ft-base { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { padding: 11px 18px; font-size: 13px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .ft-grid { grid-template-columns: 1fr; }
  .happy-hour { padding: 28px 20px; }
  .hh-list { gap: 22px; }
  .contact-pill { flex: 1 1 calc(50% - 5px); min-width: 0; }
  .cp-val { font-size: 15px; }
}
