/* ===============================================
   THE SPOTTED JAMES — v2 (exact replica)
   =============================================== */

:root {
  --ink: #000000;
  --ink-2: #06080F;
  --panel: #0A0E18;
  --neon: #2EA8FF;
  --neon-soft: #5BBEFF;
  --neon-deep: #0E5CFF;
  --bone: #FFFFFF;
  --smoke: rgba(255, 255, 255, 0.72);     /* WCAG AA: ~10.5:1 on black */
  --smoke-soft: rgba(255, 255, 255, 0.6); /* WCAG AA: ~7.6:1 on black, was 0.38 (FAIL) */
  --line: rgba(46, 168, 255, 0.4);
  --line-soft: rgba(255, 255, 255, 0.1);

  --display: 'Bebas Neue', sans-serif;
  --script: 'Caveat', cursive;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Inter', system-ui, sans-serif;
}

/* ============ A11Y: Skip link + visible focus ============ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 200;
  background: var(--neon);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  padding: 12px 18px;
  text-decoration: none;
  border-radius: 4px;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 12px;
  outline: 3px solid var(--bone);
  outline-offset: 2px;
}

*:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn:focus-visible,
.nav__cta:focus-visible {
  outline: 2px solid var(--bone);
  outline-offset: 3px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--neon);
  outline-offset: 1px;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 36px;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
  gap: 20px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}
.nav__brand-mark {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--neon);
  box-shadow: 0 0 12px rgba(46,168,255,0.4), 0 0 28px rgba(46,168,255,0.2);
  transition: box-shadow .25s;
}
.nav__brand:hover .nav__brand-mark {
  box-shadow: 0 0 18px rgba(46,168,255,0.6), 0 0 36px rgba(46,168,255,0.3);
}
.nav__brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 0.85;
}
.nav__brand-the {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.34em;
  color: var(--bone);
  text-transform: uppercase;
}
.nav__brand-name {
  font-family: var(--script);
  font-size: 30px;
  font-weight: 700;
  color: var(--bone);
  line-height: 0.85;
  text-shadow: 0 0 6px rgba(46,168,255,0.15);
}
@media (max-width: 720px) {
  .nav__brand-mark { width: 54px; height: 54px; }
  .nav__brand-name { font-size: 24px; }
  .nav__brand-the { font-size: 9px; letter-spacing: 0.28em; }
}

.nav__menu {
  display: flex;
  gap: 22px;
  list-style: none;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav__menu a {
  position: relative;
  padding: 6px 2px;
  color: var(--bone);
  transition: color .25s;
}
.nav__menu a:hover { color: var(--neon); }
.nav__menu a.active {
  color: var(--neon);
  text-shadow: 0 0 6px rgba(46,168,255,0.6);
}
.nav__menu a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1.5px;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
}

.nav__cta {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--bone);
  color: var(--bone);
  background: transparent;
  transition: all .25s;
}
.nav__cta:hover {
  border-color: var(--neon);
  color: var(--neon);
  box-shadow: 0 0 12px rgba(46,168,255,0.4);
}

@media (max-width: 880px) {
  .nav { padding: 14px 18px; gap: 12px; flex-wrap: wrap; }
  .nav__menu { display: none; }
}

/* ============ PAGE LAYOUT ============ */
.page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 50px 50px 70px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}
.page--narrow { gap: 40px; }
@media (max-width: 980px) {
  .page { grid-template-columns: 1fr; padding: 30px 22px 60px; gap: 30px; }
}

.page__title {
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 110px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--bone);
  margin-bottom: 6px;
}
.page__subtitle {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neon);
  text-shadow: 0 0 8px rgba(46,168,255,0.5);
  margin-bottom: 18px;
}
.page__lead {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--smoke);
  max-width: 38ch;
  line-height: 1.55;
  margin-bottom: 24px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  padding: 13px 26px;
  border: 1px solid var(--neon);
  color: var(--neon);
  background: transparent;
  text-transform: uppercase;
  transition: all .25s;
  text-shadow: 0 0 6px rgba(46,168,255,0.4);
}
.btn:hover {
  background: var(--neon);
  color: var(--ink);
  text-shadow: none;
  box-shadow: 0 0 18px rgba(46,168,255,0.6);
}
.btn--block { width: 100%; }
.btn--ghost {
  border-color: var(--bone);
  color: var(--bone);
  text-shadow: none;
}
.btn--ghost:hover {
  border-color: var(--neon);
  color: var(--neon);
  background: transparent;
  text-shadow: 0 0 6px rgba(46,168,255,0.4);
}

/* ============ HERO IMAGE COLUMN (right side) ============ */
.hero-img {
  width: 100%;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: #0a0a14;
  position: relative;
  overflow: hidden;
}
.hero-img--bartender {
  background: linear-gradient(180deg, #1a0820 0%, #0a0a14 60%, #000 100%);
}
.hero-img--bartender::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(255,140,80,0.5), transparent 35%),
    radial-gradient(ellipse at 30% 70%, rgba(80,40,80,0.4), transparent 50%),
    linear-gradient(180deg, rgba(40,20,30,0.8), rgba(0,0,0,0.95));
}
.hero-img { margin: 0; }
.hero-img picture, .hero-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.hero-img--cocktail { background: #0a0612; }
.hero-img--crowd { background: #050208; }
.hero-img--bar {
  background:
    radial-gradient(ellipse at 50% 60%, rgba(255,40,80,0.5), transparent 55%),
    radial-gradient(ellipse at 20% 30%, rgba(180,40,80,0.3), transparent 50%),
    radial-gradient(ellipse at 80% 40%, rgba(80,40,180,0.3), transparent 50%),
    linear-gradient(180deg, #15050e, #000);
}
.hero-img--neon {
  background: linear-gradient(180deg, #060a18, #000);
  display: grid;
  place-items: center;
  position: relative;
}
.hero-img--storefront {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(80,180,255,0.35), transparent 50%),
    linear-gradient(180deg, #0a1830 0%, #000 100%);
}
.hero-img--djs {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(120,40,80,0.4), transparent 45%),
    radial-gradient(ellipse at 70% 50%, rgba(80,40,180,0.4), transparent 45%),
    linear-gradient(180deg, #15101e, #000);
}

/* ============ EVENTS PAGE ============ */
.tabs {
  display: flex;
  gap: 28px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 24px;
}
.tabs button {
  background: none;
  border: none;
  color: var(--smoke);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  padding: 10px 2px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  text-transform: uppercase;
  transition: all .2s;
}
.tabs button.active {
  color: var(--neon);
  border-bottom-color: var(--neon);
  text-shadow: 0 0 6px rgba(46,168,255,0.5);
}
.tabs button:hover:not(.active) { color: var(--bone); }

.event-list { display: flex; flex-direction: column; gap: 12px; }
.event-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 180px;
  align-items: stretch;
  border: 1px solid var(--line-soft);
  background: var(--ink-2);
  overflow: hidden;
  min-height: 100px;
  transition: all .25s;
}
.event-card:hover {
  border-color: var(--line);
  box-shadow: 0 0 12px rgba(46,168,255,0.2);
}
.event-card__body { padding: 18px 22px; display: flex; flex-direction: column; justify-content: center; }
.event-card__day {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--neon);
  margin-bottom: 6px;
  text-transform: uppercase;
  text-shadow: 0 0 6px rgba(46,168,255,0.5);
}
.event-card__title {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--bone);
  line-height: 1;
  margin-bottom: 6px;
}
.event-card__time {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--smoke);
}
.event-card__note {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--smoke);
  margin-top: 6px;
  font-style: italic;
}
.event-card__photo {
  background-size: cover;
  background-position: center;
  border-left: 1px solid var(--line-soft);
}
@media (max-width: 600px) {
  .event-card { grid-template-columns: 1fr; }
  .event-card__photo { height: 80px; border-left: none; border-top: 1px solid var(--line-soft); }
}

.bottle-strip {
  margin-top: 18px;
  padding: 14px 18px;
  border: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}
.bottle-strip__txt {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--bone);
  text-transform: uppercase;
}
.bottle-strip__sub {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--smoke);
  margin-top: 4px;
}

/* ============ DRINKS PAGE ============ */
.drink-tabs {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.drink-tabs button {
  background: none;
  border: none;
  color: var(--smoke);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
  padding: 10px 2px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  text-transform: uppercase;
  transition: all .2s;
}
.drink-tabs button.active {
  color: var(--neon);
  border-bottom-color: var(--neon);
  text-shadow: 0 0 6px rgba(46,168,255,0.5);
}

.drink-list-title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--bone);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.drinks-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 22px;
  align-items: start;
}
@media (max-width: 720px) { .drinks-layout { grid-template-columns: 1fr; } }

.drink-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}
.drink-row:last-of-type { border-bottom: 0; }
.drink-row__name {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--bone);
  text-transform: uppercase;
}
.drink-row__desc {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--smoke);
  margin-top: 4px;
}
.drink-row__price {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--neon);
}

.happy-hour {
  padding: 22px 22px;
  border: 1.5px solid var(--neon);
  text-align: center;
  background: rgba(46,168,255,0.03);
  box-shadow: 0 0 14px rgba(46,168,255,0.18) inset;
}
.happy-hour__title {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 0.16em;
  color: var(--neon);
  text-shadow: 0 0 8px rgba(46,168,255,0.5);
  margin-bottom: 8px;
}
.happy-hour__when {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 14px;
}
.happy-hour__deals {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--bone);
  line-height: 1.7;
}
.happy-hour__deals span { display: block; }

/* ============ PRIVATE PARTIES ============ */
.party-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 22px;
}
@media (max-width: 720px) { .party-grid { grid-template-columns: repeat(2, 1fr); } }
.party-tile {
  border: 1px solid var(--line-soft);
  padding: 18px 10px 14px;
  text-align: center;
  background: var(--ink-2);
  transition: all .25s;
}
.party-tile:hover {
  border-color: var(--neon);
  box-shadow: 0 0 14px rgba(46,168,255,0.25);
}
.party-tile__icon {
  display: block;
  margin: 0 auto 8px;
  width: 32px;
  height: 32px;
}
.party-tile__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--neon);
  stroke-width: 1.5;
  filter: drop-shadow(0 0 4px var(--neon));
}
.party-tile__label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--bone);
  text-transform: uppercase;
}

/* Form */
.form-card {
  border: 1px solid var(--line-soft);
  padding: 24px;
  background: var(--ink-2);
}
.form-card__title {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--bone);
  text-align: center;
  margin-bottom: 4px;
}
.form-card__sub {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--smoke);
  text-align: center;
  margin-bottom: 20px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
}
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 5px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--smoke);
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  background: var(--ink);
  border: 1px solid var(--line-soft);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 13px;
  padding: 9px 11px;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--neon);
  outline-offset: 1px;
  border-color: var(--neon);
  box-shadow: 0 0 0 2px rgba(46,168,255,0.18);
}
.field textarea { min-height: 80px; resize: vertical; }
.field--checkbox {
  flex-direction: row;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 11px;
  color: var(--smoke);
}
.field--checkbox input { accent-color: var(--neon); width: 14px; height: 14px; }

/* Date input fix */
.field input[type="date"] { color-scheme: dark; }

/* ============ GALLERY ============ */
.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.gallery-filter {
  background: transparent;
  border: 1px solid var(--line-soft);
  color: var(--smoke);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
  padding: 8px 16px;
  text-transform: uppercase;
  transition: all .25s;
}
.gallery-filter.active {
  border-color: var(--neon);
  color: var(--neon);
  text-shadow: 0 0 6px rgba(46,168,255,0.5);
  background: rgba(46,168,255,0.05);
}
.gallery-filter:hover:not(.active) {
  border-color: var(--bone);
  color: var(--bone);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 22px;
}
@media (max-width: 720px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-tile {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: all .25s;
  margin: 0;
}
.gallery-tile picture, .gallery-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.gallery-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 14px rgba(46,168,255,0.3);
  border-color: var(--neon);
}

/* Photo-style placeholder gradients for gallery tiles */
.gtile-1 { background: radial-gradient(ellipse at 50% 40%, rgba(255,160,100,0.4), transparent 40%), linear-gradient(180deg, #15050e, #000); }
.gtile-2 { background: radial-gradient(ellipse at 30% 50%, rgba(120,60,80,0.5), transparent 50%), radial-gradient(ellipse at 70% 30%, rgba(255,80,40,0.3), transparent 45%), linear-gradient(180deg, #1a0e1e, #050208); }
.gtile-3 { background: radial-gradient(ellipse at 50% 50%, rgba(80,160,255,0.3), transparent 55%), linear-gradient(180deg, #08101e, #000); }
.gtile-4 { background: radial-gradient(ellipse at 60% 40%, rgba(180,60,100,0.4), transparent 50%), linear-gradient(180deg, #1a0a18, #050208); }
.gtile-5 { background: radial-gradient(ellipse at 40% 60%, rgba(120,80,180,0.4), transparent 50%), radial-gradient(ellipse at 70% 40%, rgba(255,180,80,0.2), transparent 45%), linear-gradient(180deg, #1a0e1a, #000); }
.gtile-6 { background: radial-gradient(ellipse at 50% 30%, rgba(255,80,40,0.45), transparent 45%), linear-gradient(180deg, #150a14, #000); }
.gtile-7 { background: radial-gradient(ellipse at 30% 30%, rgba(255,140,100,0.35), transparent 50%), radial-gradient(ellipse at 70% 70%, rgba(120,40,80,0.4), transparent 45%), linear-gradient(180deg, #1a0e16, #000); }
.gtile-8 { background: radial-gradient(ellipse at 50% 50%, rgba(80,40,160,0.45), transparent 55%), linear-gradient(180deg, #100818, #000); }
.gtile-9 { background: radial-gradient(ellipse at 70% 40%, rgba(255,120,80,0.4), transparent 50%), radial-gradient(ellipse at 30% 60%, rgba(80,40,120,0.3), transparent 50%), linear-gradient(180deg, #1a0e18, #000); }

.gallery-load {
  text-align: center;
}

/* ============ ABOUT ============ */
.about-stack { display: grid; gap: 14px; max-width: 36ch; }
.about-headline {
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--bone);
}
.about-text {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--smoke);
  line-height: 1.7;
  max-width: 42ch;
}
.about-tagline {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 0.14em;
  color: var(--bone);
  text-transform: uppercase;
  margin-top: 18px;
  line-height: 1.45;
}

/* About hero image: real photo of the bar */
.about-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  background: url('assets/photos/bar-back.jpg') center / cover no-repeat, #050a18;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.35) 100%);
}
.about-hero__horseshoe {
  display: none; /* hide overlay; photo already has the brand sign */
}

/* ============ CONTACT ============ */
.contact-rows { display: flex; flex-direction: column; gap: 10px; }
.contact-row {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line-soft);
  background: var(--ink-2);
  transition: all .25s;
}
.contact-row:hover { border-color: var(--line); }
.contact-row__icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.contact-row__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--neon);
  stroke-width: 1.5;
  filter: drop-shadow(0 0 3px var(--neon));
}
.contact-row__label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--smoke);
  text-transform: uppercase;
  margin-bottom: 3px;
}
.contact-row__value {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--bone);
}
.contact-row__sub {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--smoke);
  margin-top: 2px;
}

.follow-strip {
  margin-top: 22px;
  padding: 22px;
  border: 1.5px solid var(--neon);
  text-align: center;
  background: rgba(46,168,255,0.03);
  position: relative;
}
.follow-strip__txt {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--neon);
  text-shadow: 0 0 6px rgba(46,168,255,0.4);
  text-transform: uppercase;
  line-height: 1.6;
  margin-bottom: 16px;
}
.follow-strip__icons { display: flex; gap: 22px; justify-content: center; align-items: center; }
.follow-strip__icons a {
  color: var(--bone);
  transition: all .25s;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
}
.follow-strip__icons a svg {
  width: 22px;
  height: 22px;
  fill: var(--bone);
  transition: all .25s;
}
.follow-strip__icons a:hover svg {
  fill: var(--neon);
  filter: drop-shadow(0 0 6px var(--neon));
}
.follow-strip__horseshoe {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 0 6px var(--neon));
  opacity: 0.7;
}

/* ============ DIRECTIONS ============ */
.directions-addr {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 18px;
  color: var(--bone);
  margin: 16px 0 4px;
  letter-spacing: 0.02em;
}
.directions-city {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--smoke);
  margin-bottom: 20px;
}
.directions-status {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--neon);
  text-shadow: 0 0 6px rgba(46,168,255,0.5);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.directions-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 260px;
  margin-bottom: 24px;
}

.map-tile {
  width: 100%;
  aspect-ratio: 1.05/1;
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}
.map-tile svg { width: 100%; height: 100%; display: block; }

.signage-tile {
  margin-top: 16px;
  height: 220px;
  background: url('assets/photos/storefront.jpg') center / cover no-repeat, #050204;
  border: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}
.signage-tile__sign { display: none; /* photo already shows the real signage */ }

/* ============ HOME PAGE ============ */
.home-wrap { max-width: 1280px; margin: 0 auto; padding: 22px 40px 50px; }
@media (max-width: 980px) { .home-wrap { padding: 16px 22px 40px; } }

/* ---- Hero band ---- */
.home-hero {
  display: grid;
  grid-template-columns: 0.85fr 1.7fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--line-soft);
  background: var(--ink-2);
  overflow: hidden;
  min-height: 380px;
}
@media (max-width: 880px) {
  .home-hero { grid-template-columns: 1fr; min-height: auto; }
}

.home-hero__text {
  padding: 38px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line-soft);
}
.home-hero__headline {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--bone);
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.home-hero__headline span { color: var(--bone); display: block; font-weight: 400; }
.home-hero__headline strong { color: var(--neon); text-shadow: 0 0 8px rgba(46,168,255,0.55), 0 0 22px rgba(46,168,255,0.3); font-weight: 400; display: block; margin-bottom: 4px; }
.home-hero__sub {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--smoke);
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 32ch;
}
.home-hero__buttons { display: flex; flex-direction: column; gap: 10px; max-width: 240px; }
.home-hero__buttons .btn { width: 100%; }

.home-hero__photo {
  position: relative;
  background: #050208;
  overflow: hidden;
  margin: 0;
}
.home-hero__photo picture, .home-hero__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.home-hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}

.home-hero__horseshoe-col {
  position: relative;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #0a0e18, #000);
  border-left: 1px solid var(--line-soft);
}
.home-hero__horseshoe-col svg {
  width: 90px;
  height: 110px;
  filter: drop-shadow(0 0 10px var(--neon)) drop-shadow(0 0 28px rgba(46,168,255,0.7));
}

/* ---- "You've been spotted" band ---- */
.home-spotted {
  display: grid;
  grid-template-columns: 0.65fr 1.7fr 0.8fr;
  gap: 14px;
  margin-top: 18px;
}
@media (max-width: 980px) { .home-spotted { grid-template-columns: 1fr; } }

.home-spotted__intro {
  padding: 26px 24px;
  border: 1px solid var(--line-soft);
  background: var(--ink-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-spotted__eyebrow {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.16em;
  color: var(--neon);
  text-shadow: 0 0 6px rgba(46,168,255,0.55);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.home-spotted__title {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 78px);
  letter-spacing: 0.02em;
  color: var(--neon);
  text-shadow: 0 0 10px rgba(46,168,255,0.7), 0 0 28px rgba(46,168,255,0.4);
  line-height: 0.9;
  margin-bottom: 14px;
}
.home-spotted__copy {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--smoke);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Collage area */
.home-spotted__collage {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  min-height: 280px;
}
.home-spotted__collage > div {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
.home-spotted__collage > div:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
.home-spotted__collage > div:nth-child(2) { grid-column: 3; grid-row: 1; }
.home-spotted__collage > div:nth-child(3) { grid-column: 1; grid-row: 2; }
.home-spotted__collage > div:nth-child(4) { grid-column: 2 / 4; grid-row: 2; }
@media (max-width: 600px) {
  .home-spotted__collage { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .home-spotted__collage > div:nth-child(n) { grid-column: auto; grid-row: auto; min-height: 120px; }
}

/* Spotted of the week */
.home-spotted__feature {
  position: relative;
  border: 1px solid var(--neon);
  background: var(--ink-2);
  padding: 14px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 14px rgba(46,168,255,0.18) inset;
}
.home-spotted__feature-label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--neon);
  text-shadow: 0 0 6px rgba(46,168,255,0.5);
  margin-bottom: 10px;
}
.home-spotted__feature-photo {
  flex: 1;
  min-height: 180px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  margin-bottom: 10px;
}
.home-spotted__feature-cap {
  font-family: var(--sans);
  font-size: 10px;
  color: var(--smoke);
  line-height: 1.5;
}

/* ---- Tonight band ---- */
.home-tonight {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 22px;
}
@media (max-width: 980px) { .home-tonight { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .home-tonight { grid-template-columns: 1fr; } }

.home-tonight__intro {
  padding: 26px 22px;
  border: 1px solid var(--line-soft);
  background: var(--ink-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-tonight__label {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.16em;
  color: var(--neon);
  text-shadow: 0 0 6px rgba(46,168,255,0.55);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.home-tonight__name {
  font-family: var(--display);
  font-size: clamp(56px, 7vw, 96px);
  letter-spacing: 0.04em;
  color: var(--neon);
  text-shadow: 0 0 10px rgba(46,168,255,0.6), 0 0 28px rgba(46,168,255,0.35);
  margin-bottom: 16px;
  line-height: 0.85;
}

.home-tonight__card {
  padding: 22px 20px;
  border: 1px solid var(--line-soft);
  background: var(--ink-2);
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  overflow: hidden;
}
.home-tonight__card-day {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--neon);
  text-shadow: 0 0 6px rgba(46,168,255,0.5);
  margin-bottom: 4px;
}
.home-tonight__card-title {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--bone);
  line-height: 1;
  margin-bottom: 8px;
}
.home-tonight__card-time {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--smoke);
}

/* ---- Bottom feature strip ---- */
.home-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}
@media (max-width: 720px) { .home-features { grid-template-columns: 1fr; } }
.home-feature {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  padding: 4px 0;
}
.home-feature__icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding-top: 2px;
}
.home-feature__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--neon);
  stroke-width: 1.5;
  filter: drop-shadow(0 0 4px var(--neon));
}
.home-feature__title {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--bone);
  text-transform: uppercase;
  margin-bottom: 4px;
  line-height: 1;
}
.home-feature__copy {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--smoke);
  line-height: 1.55;
  max-width: 26ch;
}

/* ---- Scene tile gradients (for collage / feature photo) ---- */
.scene-crowd {
  background:
    radial-gradient(ellipse 25% 18% at 25% 35%, rgba(255,180,140,0.5), transparent 70%),
    radial-gradient(ellipse 22% 16% at 50% 32%, rgba(255,160,120,0.4), transparent 70%),
    radial-gradient(ellipse 20% 15% at 72% 38%, rgba(255,180,160,0.45), transparent 70%),
    radial-gradient(circle at 15% 80%, rgba(120,40,80,0.4), transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(80,40,120,0.4), transparent 50%),
    linear-gradient(180deg, #1a0e1a 0%, #050208 100%);
  position: relative;
}
.scene-crowd::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 22%, rgba(255,220,180,0.6) 0, transparent 3px),
    radial-gradient(circle at 40% 18%, rgba(255,200,160,0.5) 0, transparent 4px),
    radial-gradient(circle at 65% 22%, rgba(255,180,200,0.5) 0, transparent 3px),
    radial-gradient(circle at 88% 26%, rgba(255,200,140,0.5) 0, transparent 4px);
}
.scene-dj {
  background:
    radial-gradient(ellipse 35% 25% at 50% 60%, rgba(255,80,40,0.45), transparent 70%),
    radial-gradient(ellipse 20% 15% at 50% 35%, rgba(80,40,180,0.4), transparent 70%),
    radial-gradient(circle at 30% 80%, rgba(180,40,80,0.3), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(80,40,180,0.3), transparent 50%),
    linear-gradient(180deg, #15050a 0%, #000 100%);
}
.scene-dance {
  background:
    radial-gradient(ellipse 30% 25% at 50% 40%, rgba(180,60,140,0.5), transparent 70%),
    radial-gradient(ellipse 20% 18% at 25% 60%, rgba(80,40,160,0.45), transparent 70%),
    radial-gradient(ellipse 22% 18% at 75% 65%, rgba(46,168,255,0.35), transparent 70%),
    radial-gradient(circle at 50% 90%, rgba(255,40,80,0.3), transparent 50%),
    linear-gradient(180deg, #15101e 0%, #050208 100%);
  position: relative;
}
.scene-dance::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 22% 30%, rgba(255,180,200,0.4) 0, transparent 3px),
    radial-gradient(circle at 78% 28%, rgba(180,200,255,0.4) 0, transparent 3px),
    radial-gradient(circle at 50% 45%, rgba(255,200,160,0.5) 0, transparent 4px);
}
.scene-group {
  background:
    radial-gradient(ellipse 28% 22% at 35% 40%, rgba(255,160,120,0.5), transparent 70%),
    radial-gradient(ellipse 26% 20% at 70% 45%, rgba(255,140,100,0.45), transparent 70%),
    radial-gradient(circle at 20% 80%, rgba(120,60,100,0.3), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(140,60,80,0.3), transparent 50%),
    linear-gradient(180deg, #1a0e16 0%, #050208 100%);
  position: relative;
}
.scene-group::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 28%, rgba(255,200,180,0.55) 0, transparent 4px),
    radial-gradient(circle at 50% 30%, rgba(255,180,160,0.5) 0, transparent 4px),
    radial-gradient(circle at 75% 32%, rgba(255,200,180,0.5) 0, transparent 4px);
}
.scene-spotted {
  background:
    radial-gradient(ellipse 35% 30% at 50% 45%, rgba(46,168,255,0.35), transparent 70%),
    radial-gradient(circle at 30% 30%, rgba(180,60,140,0.3), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(80,40,180,0.4), transparent 55%),
    linear-gradient(180deg, #08101e 0%, #000 100%);
  position: relative;
}
.scene-spotted::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 35%, rgba(255,220,200,0.6) 0, transparent 5px),
    radial-gradient(circle at 60% 40%, rgba(200,220,255,0.5) 0, transparent 5px),
    radial-gradient(circle at 45% 60%, rgba(255,200,220,0.5) 0, transparent 4px);
}

/* Silhouette overlay for scene tiles */
.scene-silhouette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Real photo tiles (figure with picture/img child) */
.photo-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.photo-tile picture, .photo-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.photo-tile::after {
  /* subtle dark gradient to keep photos cohesive with the dark theme */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
}
.home-spotted__feature-photo picture, .home-spotted__feature-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ============ CONFIRMATION ============ */
.confirmation {
  text-align: center;
  display: grid;
  place-items: center;
  min-height: calc(100vh - 80px);
  padding: 60px 24px;
}
.confirmation__inner { max-width: 540px; }
.confirmation__title {
  font-family: var(--display);
  font-size: clamp(34px, 5.5vw, 56px);
  letter-spacing: 0.04em;
  color: var(--bone);
  margin: 28px 0 14px;
}
.confirmation__msg {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--smoke);
  margin-bottom: 28px;
  line-height: 1.6;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

.follow-strip__horseshoe img,
.about-hero__horseshoe img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 8px var(--neon)) drop-shadow(0 0 18px rgba(46,168,255,0.5));
}

.confirmation picture { display: inline-block; margin: 0 auto 16px; }
.confirmation picture img { width: 100%; height: auto; max-width: 230px; }
