/* ============================================
   FOGGY PRAGUE — Design System
   Dark OLED + Neon Blue + Edison Gold
   ============================================ */

:root {
  --bg:           #0B0B0F;
  --bg-elevated:  #111118;
  --bg-card:      rgba(255,255,255,0.04);
  --bg-glass:     rgba(255,255,255,0.06);

  --blue:         #1a6aff;
  --blue-glow:    rgba(26,106,255,0.35);
  --blue-dim:     rgba(26,106,255,0.15);
  --gold:         #6C5CE7;
  --gold-glow:    rgba(108,92,231,0.35);
  --gold-dim:     rgba(108,92,231,0.15);

  --text-primary:   #f0f0f8;
  --text-secondary: #8888aa;
  --text-muted:     #555570;
  --border:         rgba(255,255,255,0.08);
  --border-blue:    rgba(26,106,255,0.3);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  --nav-h: 72px;
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-logo: 'Haettenschweiler', 'Impact', 'Arial Narrow', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: clip; }
body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  cursor: none;
  width: 100%;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: none; border: none; background: none; }
input, select, textarea { font-family: inherit; }
sup { vertical-align: super; font-size: 0.5em; line-height: 0; }

/* ===== CUSTOM CURSOR ===== */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.2s;
  box-shadow: 0 0 12px var(--blue);
}
.cursor-follower {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 32px; height: 32px;
  border: 1px solid rgba(26,106,255,0.5);
  border-radius: 50%;
  will-change: transform;
  margin-left: -16px; margin-top: -16px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  /* border-color moved to @media (hover:hover) to avoid non-composited work on mobile */
  transition: width 0.3s, height 0.3s;
}

/* ===== NAV ===== */
@media (max-width: 960px) {
  .nav { padding: 0 24px; }
  .nav__links { gap: 16px; }
  .nav__link { font-size: 0.78rem; }
  .nav__link--cta { padding: 6px 14px; font-size: 0.75rem; }
}
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  transition: background 0.4s, backdrop-filter 0.4s; /* border-color removed — non-composited */
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11,11,15,0.85);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}
.nav__logo {
  display: flex; align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-img {
  display: block;
  width: auto; height: 42px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 0 8px rgba(26,106,255,0.4));
}
.nav__links {
  display: flex; align-items: center; gap: 32px;
}
.nav__link {
  font-size: 0.85rem; font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  transition: color 0.2s;
  position: relative;
}
.nav__link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__link:hover { color: var(--text-primary); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link--cta {
  padding: 8px 20px;
  border: 1px solid var(--border-blue);
  border-radius: 100px;
  color: var(--blue) !important;
  background: var(--blue-dim);
  transition: background 0.2s, box-shadow 0.2s; /* border-color in hover:hover block */
}
.nav__link--cta:hover {
  background: rgba(26,106,255,0.25);
  border-color: var(--blue);
  box-shadow: 0 0 20px var(--blue-glow);
}
.nav__link--cta::after { display: none; }
.nav__close { display: none; }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav__burger span { display: block; width: 24px; height: 1.5px; background: var(--text-primary); transition: 0.3s; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); /* 'all' replaced — composited only */
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__link--cta { white-space: nowrap; }
.btn--primary {
  background: var(--blue);
  color: #0B0B0F;
  font-weight: 700;
  box-shadow: 0 0 0 0 var(--blue-glow);
}
.btn--primary:hover {
  background: #2d7aff;
  box-shadow: 0 0 40px rgba(26,106,255,0.5), 0 8px 32px rgba(26,106,255,0.25);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: rgba(26,106,255,0.3);
  background: rgba(26,106,255,0.05);
  color: var(--blue);
  transform: translateY(-1px);
}
.btn--gold {
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 0 0 0 var(--gold-glow);
}
.btn--gold:hover {
  background: #8472e8;
  box-shadow: 0 0 40px rgba(108,92,231,0.5), 0 8px 32px rgba(108,92,231,0.25);
  transform: translateY(-2px);
}
.btn--sm {
  padding: 8px 18px;
  font-size: 0.8rem;
}
.btn--full { width: 100%; justify-content: center; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  perspective: 1200px;
}
.hero__scene {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  will-change: transform;
  display: flex; align-items: center; justify-content: center;
}
.hero__canvas {
  display: none;
  position: absolute; inset: 0;
  z-index: 0; pointer-events: none;
}

@keyframes particleDrift {
  from { transform: translate(0, 0) scale(1); opacity: var(--op, 0.4); }
  to   { transform: translate(var(--tx, 60px), var(--ty, 40px)) scale(1.3); opacity: calc(var(--op, 0.4) * 0.3); }
}
.hero__bg-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.18;
  transform: scale(1.05);
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 70%, rgba(26,106,255,0.18) 0%, transparent 55%),
    linear-gradient(to bottom, rgba(11,11,15,0.5) 0%, rgba(11,11,15,0.2) 40%, rgba(11,11,15,0.85) 100%);
}
.hero__orb { display: none; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.97); }
}
.hero__content {
  position: relative; z-index: 2;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  transform: translateZ(20px);
}
.hero__logo-wrap { }
.hero__logo {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-family: var(--font-head);
  animation: heroFadeUp 1.2s var(--ease) both;
}
.hero__logo-foggy {
  font-family: var(--font-logo);
  font-size: clamp(6rem, 16vw, 13rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.03em;
  color: #fff;
  text-shadow:
    0 0 20px rgba(26,106,255,1),
    0 0 50px rgba(26,106,255,0.6),
    0 0 100px rgba(26,106,255,0.3);
  display: block;
  background: none;
  text-transform: lowercase;
}
.hero__logo-prague {
  font-family: var(--font-logo);
  font-size: clamp(0.9rem, 2.2vw, 1.3rem);
  font-weight: 400;
  letter-spacing: 0.5em;
  color: var(--text-secondary);
  text-transform: uppercase;
}
.hero__tagline {
  display: flex; align-items: center; gap: 16px;
  font-size: clamp(0.75rem, 1.5vw, 0.95rem);
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  animation: heroFadeUp 1.2s var(--ease) 0.2s both;
}
.hero__tagline-dot { color: var(--blue); opacity: 0.6; }
.hero__stats {
  display: flex; align-items: center; gap: 24px;
  padding: 20px 32px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  animation: heroFadeUp 1.2s var(--ease) 0.3s both;
}
.hero__stat {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.hero__stat-num {
  font-family: var(--font-head);
  font-size: 1.1rem; font-weight: 700;
  color: var(--text-primary);
}
.hero__stat-label {
  font-size: 0.65rem; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.hero__stat-divider {
  width: 1px; height: 32px;
  background: var(--border);
}
.hero__actions {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  animation: heroFadeUp 1.2s var(--ease) 0.45s both;
}
.hero__actions .btn {
  min-width: 210px;
}
.hero__scroll-indicator {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  position: fixed; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: var(--text-muted);
  font-size: 0.7rem; letter-spacing: 0.2em;
  animation: scrollIndicatorFade 1.2s var(--ease) 0.6s both;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
@keyframes scrollIndicatorFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero__scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.8); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== VENUES SELECTOR ===== */
.venues {
  padding: 120px 40px 60px;
  max-width: 1400px; margin: 0 auto;
}
.venues__label {
  font-size: 0.8rem; letter-spacing: 0.2em;
  color: var(--blue);
  margin-bottom: 48px;
  text-transform: uppercase;
}
.venues__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.venue-card {
  position: relative; height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  border: 1px solid var(--border);
  transition: transform 0.5s var(--ease); /* border-color in hover:hover block */
}
.venue-card:hover { transform: translateY(-8px); }
.venue-card--f1:hover { border-color: var(--border-blue); }
.venue-card--f2:hover { border-color: rgba(108,92,231,0.3); }
.venue-card__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.8s var(--ease);
}
.venue-card:hover .venue-card__bg { transform: scale(1.06); }
.venue-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,11,15,0.95) 0%, rgba(11,11,15,0.4) 50%, rgba(11,11,15,0.1) 100%);
}
.venue-card--f1 .venue-card__overlay {
  background: linear-gradient(to top, rgba(11,11,20,0.97) 0%, rgba(11,11,15,0.4) 60%, rgba(11,11,15,0.05) 100%);
}
.venue-card__content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 40px;
}
.venue-card__badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
  margin-bottom: 16px;
  width: fit-content;
  color: var(--text-secondary);
}
.venue-card__address {
  font-size: 0.8rem; color: var(--text-muted);
  margin-bottom: 16px;
}
.venue-card__tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 24px;
}
.venue-card__tags span {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  background: var(--bg-card);
}
.venue-card__arrow {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-glass);
  color: var(--text-secondary);
  transition: transform 0.3s var(--ease), color 0.3s; /* 'all' replaced */
}
.venue-card:hover .venue-card__arrow {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-dim);
  transform: translateX(4px);
  box-shadow: 0 0 16px var(--blue-glow);
}
.venue-card--f2:hover .venue-card__arrow {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
  box-shadow: 0 0 16px var(--gold-glow);
}

/* ===== SECTION COMMONS ===== */
.section-label {
  display: block;
  font-size: 0.75rem; letter-spacing: 0.2em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}
/* ===== VENUE SECTION ===== */
.venue-section {
  padding: 60px 40px 120px;
  max-width: 1400px; margin: 0 auto;
}
.venue-section__header {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 8px;
  margin-bottom: 80px;
}
.venue-section__info {
  display: flex; flex-direction: column; align-items: center;
}
.venue-section__number {
  font-family: var(--font-head);
  font-size: 5rem; font-weight: 700;
  line-height: 1; letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px var(--border);
  user-select: none;
  margin-bottom: 8px;
}
.venue-section__type {
  display: block;
  font-size: 0.75rem; letter-spacing: 0.2em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.venue-section--f2 .venue-section__type { color: var(--gold); }
.venue-section__desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 32px;
  text-align: center;
}
.venue-section__meta {
  display: flex; flex-direction: column; gap: 12px;
  text-align: left;
}
.meta-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.85rem; color: var(--text-secondary);
}
.meta-item svg { flex-shrink: 0; margin-top: 2px; color: var(--text-muted); }
.meta-item--highlight {
  color: var(--text-primary);
  font-weight: 500;
}
.meta-item--highlight svg { color: var(--blue); }
.meta-item--gold svg { color: var(--gold); }
.meta-item--gold { color: var(--gold); }

/* ===== GALLERY ===== */
.gallery {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-bottom: 80px;
  overflow: hidden;
  position: relative;
}
/* Fade edges */
.gallery::before,
.gallery::after {
  content: '';
  position: absolute; top: 0; bottom: 0; z-index: 2;
  width: 120px; pointer-events: none;
}
.gallery::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.gallery::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}
.gallery__track {
  display: flex; gap: 16px;
  padding: 8px 40px;
  width: max-content;
  will-change: transform;
}
.gallery__item {
  flex-shrink: 0;
  width: 320px; height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease); /* border-color in hover:hover block */
}
.gallery__item:hover {
  border-color: rgba(26,106,255,0.4);
  transform: scale(1.02);
}
.gallery__item--large {
  width: 480px; height: 320px;
}
.gallery__item img {
  transition: transform 0.6s var(--ease);
  width: 100%; height: 100%;
  object-fit: cover;
}
.gallery__item:hover img { transform: scale(1.06); }

/* ===== FEATURES ===== */
.features {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-bottom: 48px;
}
.feature-card {
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: transform 0.3s var(--ease); /* border-color + background in hover:hover block */
}
.feature-card:hover {
  border-color: var(--border-blue);
  background: rgba(26,106,255,0.05);
  transform: translateY(-4px);
}
.feature-card--gold:hover {
  border-color: rgba(108,92,231,0.3);
  background: rgba(108,92,231,0.05);
}
.feature-card__icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
  background: var(--blue-dim);
  border: 1px solid var(--border-blue);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
  padding: 8px;
}
.feature-card__icon img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.feature-card--gold .feature-card__icon {
  background: var(--gold-dim);
  border-color: rgba(108,92,231,0.3);
  color: var(--gold);
}
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem; font-weight: 600;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.9rem; color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== MENU CTA ===== */
.menu-cta {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 64px;
}

/* ===== MENU ===== */
.menu-section {
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.menu-section__title {
  font-family: var(--font-head);
  font-size: 1.5rem; font-weight: 600;
  margin-bottom: 24px;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.menu-tabs {
  display: flex; gap: 4px;
  margin-bottom: 32px;
  background: rgba(255,255,255,0.04);
  border-radius: 100px;
  padding: 4px;
  width: fit-content;
}
.menu-tab {
  padding: 8px 24px;
  border-radius: 100px;
  font-size: 0.85rem; font-weight: 500;
  color: var(--text-secondary);
  transition: background-color 0.2s, color 0.2s; /* 'all' replaced */
}
.menu-tab.active {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 0 16px var(--blue-glow);
}
.menu-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 48px;
}
.menu-grid.hidden { display: none; }
.menu-item {
  display: flex; align-items: baseline; gap: 8px;
  padding: 6px 0 0;
  font-size: 0.9rem;
}
.menu-item__name { font-weight: 400; color: var(--text-primary); }
.menu-item__dots {
  flex: 1;
  border-bottom: 1px dotted var(--border);
  margin: 0 8px 4px;
  min-width: 16px;
}
.menu-item__price {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
}
.menu-item__vol {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted, #888);
  border: 1px solid var(--border, #333);
  border-radius: 20px;
  padding: 1px 7px;
  white-space: nowrap;
  vertical-align: middle;
  line-height: 1.5;
}
.menu-item__vol-row { margin-top: 6px; }
/* Mobile duplicate price — hidden on desktop, shown on mobile next to vol */
.menu-item__price--meta { display: none; }
/* Dynamic menu items with images */
.menu-item--has-img {
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  gap: 0;
  border-bottom: none;
}
.menu-item__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  margin-bottom: 0;
  overflow: hidden;
}
.menu-item__img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 65%;
  background: linear-gradient(to top, var(--bg, #0b0b0f) 0%, rgba(11,11,15,0.55) 40%, transparent 100%);
  pointer-events: none;
}
.menu-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.menu-item__body { flex: 1; }
.menu-item__top {
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
}
.menu-item__tags { display: flex; gap: 4px; flex-shrink: 0; }
.menu-item__tag {
  padding: 2px 7px;
  border-radius: 100px;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.06em;
  background: var(--blue-dim);
  color: var(--blue);
  border: 1px solid var(--border-blue);
}
.menu-item__desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 12px;
  line-height: 1.45;
  /* preserve newlines entered in the admin (bot stores \n, HTML would collapse to space) */
  white-space: pre-line;
}
.menu-empty {
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 20px 0;
  text-align: center;
}

/* ===== CONTACT MAP & SOCIALS ===== */
.contact__map {
  width: 100%; height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 4px;
  flex-shrink: 0;
}
.contact__map iframe {
  width: 100%; height: 100%;
  display: block;
  filter: invert(90%) hue-rotate(180deg) saturate(0.8);
  border: none;
}
.contact__socials {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.contact__social-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s; /* 'all' replaced */
}
.contact__social-btn:hover {
  border-color: var(--border-blue);
  color: var(--blue);
  background: var(--blue-dim);
}
.contact__social-btn svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ===== SECTION DIVIDER ===== */
.section-divider {
  display: flex; align-items: center; gap: 16px;
  padding: 0 40px;
  margin: 0 auto; max-width: 1400px;
}
.section-divider__line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}
.section-divider__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue);
}

/* ===== EVENTS ===== */
.events {
  padding: 120px 40px;
  max-width: 1400px; margin: 0 auto;
}
.events__header {
  margin-bottom: 64px;
}
/* ── Events carousel ── */
.events__carousel {
  position: relative;
  display: flex; align-items: center; gap: 0;
}
.events__track-wrap {
  flex: 1; overflow: hidden;
}
.events__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.events__arrow {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-primary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, opacity 0.25s;
  z-index: 2;
}
.events__arrow:hover { border-color: var(--blue); background: rgba(26,106,255,0.1); }
.events__arrow:disabled { opacity: 0.25; cursor: default; }
.events__arrow--prev { margin-right: 16px; }
.events__arrow--next { margin-left: 16px; }
.events__dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 32px;
}
.events__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: transform 0.25s; /* background in hover:hover block */
  border: none;
}
.events__dot--active { background: var(--blue); transform: scale(1.3); }
.events__empty { text-align: center; padding: 60px 0; color: var(--text-secondary); }

/* ── Event card ── */
.event-card {
  flex: 0 0 calc(50% - 12px);
  min-width: 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  transition: transform 0.4s var(--ease); /* border-color in hover:hover block */
}
.event-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-4px);
}
.event-card__img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.event-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.event-card__img--placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.event-card:hover .event-card__img img { transform: scale(1.06); }
.event-card__badge {
  position: absolute; top: 14px; left: 14px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.62rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--blue); color: #fff;
  font-weight: 600;
}
.event-card__badge--weekly  { background: var(--gold); color: #fff; }
.event-card__badge--monthly { background: #8b5cf6; color: #fff; }
.event-card__badge--annual  { background: #10b981; color: #fff; }
.event-card__venue-badge {
  position: absolute; top: 14px; right: 14px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.62rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.55); color: #fff;
  font-weight: 500; backdrop-filter: blur(4px);
}
.event-card__body { padding: 22px 24px 24px; }
.event-card__title {
  font-family: var(--font-head);
  font-size: 1.2rem; font-weight: 600;
  margin-bottom: 8px;
}
.event-card__desc {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.event-card__footer {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.events__empty.hidden { display: none; }

.event-card__time {
  font-size: 0.78rem;
  color: var(--text-muted);
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.event-card__smart-label {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ===== RESERVATION ===== */
.reservation {
  position: relative;
  padding: 120px 40px;
  overflow: hidden;
}
.reservation__bg {
  position: absolute; inset: 0;
}
.reservation__bg img {
  object-position: center 30%;
}
.reservation__bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    #0b0b0f 0%,
    rgba(11,11,15,0.93) 16%,
    rgba(11,11,15,0.91) 50%,
    rgba(11,11,15,0.93) 84%,
    #0b0b0f 100%);
}
.reservation__content {
  position: relative; z-index: 1;
  max-width: 700px; margin: 0 auto;
}
.reservation .section-title { margin-bottom: 12px; }
.reservation .section-desc { margin-bottom: 48px; }

.reservation__form {
  display: flex; flex-direction: column; gap: 20px;
}
.form-venue-select {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 12px;
}
.form-venue-option { cursor: none; }
.form-venue-option input { display: none; }
.form-venue-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  padding: 16px 12px;
  overflow: hidden; min-width: 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s; /* 'all' replaced */
  text-align: center;
}
.form-venue-btn strong { font-family: var(--font-head); font-size: 0.95rem; }
.form-venue-btn small { font-size: 0.75rem; color: var(--text-muted); }
.reservation__venue-label {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 8px;
}
.form-venue-book-label {
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 2px;
}
.form-venue-option input:checked + .form-venue-btn {
  border-color: var(--blue);
  background: var(--blue-dim);
  box-shadow: 0 0 20px var(--blue-glow);
}
.form-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px;
}
.form-group {
  display: flex; flex-direction: column; gap: 8px;
}
.form-group label {
  font-size: 0.8rem; font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,106,255,0.15);
}
.form-group select option { background: var(--bg-elevated); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-note {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  line-height: 1.5;
}
.form-note svg { flex-shrink: 0; margin-top: 1px; color: var(--blue); }
.form-note a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; white-space: nowrap; }
.form-note a:hover { opacity: 0.8; }
.form-note--warn { border-color: rgba(234,179,8,0.35); background: rgba(234,179,8,0.06); margin-top: 4px; }
.form-note--warn svg { color: #eab308; }
/* Validation errors */
.input--error,
.input--error:focus { border-color: #ef4444 !important; box-shadow: 0 0 0 3px rgba(239,68,68,0.18) !important; }
.field-error { display: block; margin-top: 5px; font-size: 0.75rem; color: #ef4444; line-height: 1.4; }
/* ── Reservation notifications ── */
.form-notify {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 24px 28px;
  border-radius: var(--radius-md);
  margin-top: 24px;
  animation: notifyIn 0.35s var(--ease) both;
}
@keyframes notifyIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.form-notify.hidden { display: none; }
.form-notify__icon { flex-shrink: 0; line-height: 0; }
.form-notify__body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.form-notify__body p  { font-size: 0.875rem; line-height: 1.6; margin-bottom: 0; color: inherit; opacity: 0.85; }
.form-notify__body p + p { margin-top: 8px; }
.form-notify__body a  { color: inherit; text-decoration: underline; font-weight: 600; }
.form-notify__body a:hover { opacity: 0.8; }

.form-notify--success {
  border: 1px solid rgba(34,197,94,0.35);
  background: rgba(34,197,94,0.07);
  color: #4ade80;
}
.form-notify--warn {
  border: 1px solid rgba(234,179,8,0.35);
  background: rgba(234,179,8,0.07);
  color: #facc15;
}

/* ===== CONTACT ===== */
.contact {
  padding: 120px 40px;
  max-width: 1400px; margin: 0 auto;
}
.contact .section-title { margin-bottom: 64px; }
.contact__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
.contact__venue {
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex; flex-direction: column; gap: 24px;
  /* hover border-color moved to @media (hover:hover) block */
}
.contact__venue-label {
  font-size: 0.7rem; letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.contact__details {
  display: flex; flex-direction: column; gap: 16px;
  flex: 1;
}
.contact__item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.85rem;
}
.contact__item svg { flex-shrink: 0; margin-top: 2px; color: var(--blue); }
.contact__venue--f2 .contact__item svg { color: var(--gold); }
.contact__item div {
  display: flex; flex-direction: column; gap: 2px;
}
.contact__item strong { font-weight: 600; color: var(--text-primary); }
.contact__item span, .contact__item a { color: var(--text-secondary); font-size: 0.85rem; }
.contact__item a:hover { color: var(--blue); }

/* ===== FOOTER ===== */
.footer {
  padding: 96px 40px 60px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; gap: 0;
  text-align: center;
}
.footer__logo {
  display: flex; flex-direction: column; align-items: center; gap: 0;
  text-decoration: none;
  white-space: nowrap;
}
/* ── Logo image utilities (black PNG → white on dark bg) ──────────────── */
.logo-img {
  display: block;
  object-fit: contain;
  object-position: center;
  filter: invert(1);
  mix-blend-mode: screen;
}
.logo-img--glow-blue  { filter: invert(1) drop-shadow(0 0 14px rgba(26,106,255,0.6)); }
.logo-img--glow-gold  { filter: invert(1) drop-shadow(0 0 14px rgba(212,175,55,0.6)); }
.logo-img--glow-soft  { filter: invert(1) drop-shadow(0 0 10px rgba(255,255,255,0.2)); }
.hero__logo-img       { width: 100%; max-width: 580px; height: 260px; margin: 0 auto; animation: heroFadeUp 1.2s var(--ease) both; }
.venue-section__logo  { width: 340px; height: 110px; margin-bottom: 20px; object-position: center center; }
.venue-card__logo-img { width: 280px; height: 90px; object-position: left center; }
.contact__venue-logo  { width: 280px; height: 90px; margin-bottom: 12px; object-position: left center; }
.form-venue-logo      { width: 240px; height: 80px; margin: 0 auto 8px auto; }
/* ─────────────────────────────────────────────────────────────────────── */

.footer__logo-img {
  display: block;
  width: 140px; height: auto; margin: 0 auto;
  object-fit: contain;
  object-position: center;
  filter: invert(1) drop-shadow(0 0 12px rgba(26,106,255,0.45));
  mix-blend-mode: screen;
}
.footer__tagline {
  margin: 8px 0 40px 0;
  font-size: 0.75rem; letter-spacing: 0.25em;
  color: var(--text-muted);
}
.footer__links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 24px;
  margin-bottom: 32px;
}
.footer__links a {
  font-size: 0.85rem; color: var(--text-muted);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--blue); }
.footer__social {
  display: flex; flex-direction: row; gap: 32px;
  margin-bottom: 32px;
}
.footer__social-row {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.footer__social-row > div {
  display: flex; gap: 8px;
}
.footer__social-label {
  font-size: 0.7rem; letter-spacing: 0.08em;
  color: var(--text-muted); text-transform: uppercase;
}
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s; /* 'all' replaced */
}
.footer__social a:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-dim);
}
.footer__bottom {
  display: flex; gap: 24px; flex-wrap: wrap; justify-content: center;
  font-size: 0.75rem; color: var(--text-muted);
  padding-top: 24px;
  border-top: 1px solid var(--border);
  width: 100%;
}

/* ===== REVIEWS ===== */
.reviews {
  padding: 100px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.reviews__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 56px;
}
.reviews__col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.reviews__col-name {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.04em;
}
.reviews__rating {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.reviews__rating-score {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-primary);
}
.reviews__rating-stars { color: #f5a623; font-size: 0.85rem; }
.reviews__rating-total { font-size: 0.7rem; color: var(--text-muted); }
.review-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin-bottom: 10px;
  transition: border-color 0.2s;
}
.review-card:hover { border-color: rgba(255,255,255,0.12); }
.review-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.review-card__avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--blue-dim, rgba(26,106,255,0.12));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
  text-transform: uppercase;
}
.review-card__meta { flex: 1; min-width: 0; }
.review-card__name {
  font-size: 0.8rem; font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.review-card__time { font-size: 0.68rem; color: var(--text-muted); }
.review-card__stars { color: #f5a623; font-size: 0.78rem; margin-bottom: 7px; }
.review-card__text {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.reviews__google-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  font-size: 0.75rem; color: var(--blue);
  text-decoration: none;
  transition: opacity 0.2s;
}
.reviews__google-link:hover { opacity: 0.75; }
.reviews__google-link svg { width: 11px; height: 11px; }
.reviews__placeholder {
  padding: 32px 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .reviews { padding: 80px 20px; }
  .reviews__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* TripAdvisor block */
.reviews__ta {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.reviews__ta-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  justify-content: center;
}
.reviews__ta-also {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.reviews__ta-brand {
  display: flex;
  align-items: center;
  gap: 7px;
}
.reviews__ta-owl {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.reviews__ta-brandname {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #34E0A1;
  letter-spacing: -0.01em;
}
.reviews__ta-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 740px;
  margin: 0 auto;
}
.reviews__ta-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s;
}
.reviews__ta-card:hover { border-color: rgba(52,224,161,0.2); }
.reviews__ta-venue-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}
.reviews__ta-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.reviews__ta-bubbles {
  display: flex;
  gap: 4px;
  align-items: center;
}
.ta-b {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(52,224,161,0.18);
  flex-shrink: 0;
}
.ta-b--full { background: #34E0A1; }
.ta-b--half { background: linear-gradient(to right, #34E0A1 50%, rgba(52,224,161,0.18) 50%); }
.reviews__ta-score {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: #34E0A1;
}
.reviews__ta-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.reviews__ta-tc {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #34E0A1;
  background: rgba(52,224,161,0.08);
  border: 1px solid rgba(52,224,161,0.2);
  border-radius: 100px;
  padding: 3px 10px;
  width: fit-content;
}
.reviews__ta-link {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: 4px;
  transition: color 0.2s;
}
.reviews__ta-link:hover { color: #34E0A1; }
@media (max-width: 768px) {
  .reviews__ta-cards { grid-template-columns: 1fr; }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE ===== */
@media (max-width: 1024px) {
  .venues__grid { grid-template-columns: 1fr; }
  .venue-card { height: 440px; }
  .venue-section__header { grid-template-columns: 1fr; gap: 24px; }
  .venue-section__number { font-size: 5rem; }
  .features { grid-template-columns: 1fr 1fr; }
  .event-card { flex: 0 0 calc(100% - 0px); }
  .events__arrow { width: 38px; height: 38px; }
  .events__arrow--prev { margin-right: 10px; }
  .events__arrow--next { margin-left: 10px; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav { padding: 0 20px; }
  .nav__links { display: none; flex-direction: column; gap: 0; position: fixed; inset: 0; background: var(--bg); padding: calc(var(--nav-h) + 24px) 24px 40px; z-index: 9500; overflow-y: auto; }
  .nav__links.open { display: flex; }
  body.nav-open .nav { z-index: 9600; }
  /* Burger open: solid bg so button stays visible; remove backdrop-filter (traps fixed children) */
  body.nav-open .nav { background: rgba(11,11,15,0.98); backdrop-filter: none; -webkit-backdrop-filter: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav__close {
    display: flex; align-items: center; justify-content: center;
    position: absolute; top: 16px; right: 20px;
    width: 40px; height: 40px;
    font-size: 1.6rem; line-height: 1;
    color: var(--text-secondary);
    background: none; border: 1px solid var(--border); border-radius: 50%;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
  }
  .nav__close:hover { color: var(--text-primary); border-color: var(--border-blue); }
  .nav__link { padding: 16px 0; border-bottom: 1px solid var(--border); font-size: 1.1rem; }
  .nav__link--cta { border: 1px solid var(--border-blue); border-radius: 100px; text-align: center; margin-top: 16px; padding: 14px 24px; white-space: nowrap; }
  .nav__burger { display: flex; margin-left: 8px; }
  .nav__lang { margin-left: 0; }
  .venues { padding: 16px 20px 40px; }
  .venues__label { margin-bottom: 20px; }
  .venue-section { padding: 40px 20px 80px; }
  .events, .reservation, .contact { padding: 80px 20px; }

  /* Venue cards: fit both in one screen */
  .venue-card { height: 270px; }
  .venue-card__content { padding: 24px; }
  .venue-card__foggy { font-size: 2rem; }
  .venue-card__badge { font-size: 0.62rem; }
  .venue-card__address { margin: 6px 0 8px; }
  .venue-card__tags { margin-bottom: 14px; gap: 6px; }
  .venue-card__tags span { padding: 3px 8px; font-size: 0.65rem; }
  .venue-card__arrow { width: 38px; height: 38px; }
  .venues__grid { gap: 14px; }

  /* Feature cards: horizontal layout to reduce height */
  .features { grid-template-columns: 1fr; gap: 12px; }
  .feature-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 0 14px;
    align-items: start;
    padding: 20px;
  }
  .feature-card__icon { grid-column: 1; grid-row: 1 / 3; width: 48px; height: 48px; margin-bottom: 0; }
  .feature-card h3 { grid-column: 2; grid-row: 1; font-size: 0.95rem; margin-bottom: 5px; }
  .feature-card p { grid-column: 2; grid-row: 2; font-size: 0.8rem; }

  /* Contact cards: center content on mobile */
  .contact__venue { align-items: center; text-align: center; }
  .contact__venue-logo { object-position: center; }
  .contact__item { justify-content: center; }
  .menu-section { padding: 24px; }
  /* Single-column menu on mobile */
  .menu-grid { grid-template-columns: 1fr; gap: 0; align-items: start; }
  .menu-item { border-bottom: 1px solid rgba(255,255,255,0.06); padding: 14px 0; }
  .menu-item--has-img { border-bottom: none; padding: 0; margin-bottom: 16px; }
  .menu-item__body { font-size: 0.85rem; }
  /* Name on its own line, no dots */
  .menu-item__top { flex-wrap: wrap; gap: 0; }
  .menu-item__name { flex: 0 0 100%; white-space: normal; margin-bottom: 4px; }
  .menu-item__dots { display: none; }
  /* Hide desktop price (in .top), show mobile price (in vol-row) */
  .menu-item__top > .menu-item__price { display: none; }
  .menu-item__vol-row { display: flex; align-items: center; gap: 8px; margin-top: 0; }
  .menu-item__price--meta { display: inline; font-size: 0.88rem; }
  .menu-item__price { font-size: 0.88rem; }
  .contact__venue { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .form-venue-select { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  .form-venue-logo { width: 100%; max-width: 110px; height: 38px; }
  .form-venue-btn { padding: 10px 6px; }
  .hero__tagline { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .hero__tagline-dot { display: none; }
  .section-divider { padding: 0 20px; }
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
  /* Hero: logo and scroll line fixes for mobile */
  .hero__logo-img { max-width: 240px; height: auto; }
  .hero__scroll-line { height: 24px; }
}

/* ===== SCROLL REVEAL (replaces GSAP ScrollTrigger) ===== */
.reveal-on-scroll {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.venue-section__number.reveal-on-scroll { transform: translateX(-60px); }
.section-title.reveal-on-scroll         { transform: translateY(40px); }
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .gallery__track { animation: none; }
}

/* ===================================================================
   HOVER: non-composited effects ONLY for pointer devices (desktop)
   On touch/mobile these rules never fire → zero non-composited work
   =================================================================== */
@media (hover: hover) {
  /* Cursor follower border expands on hover */
  .cursor-follower { transition: width 0.3s, height 0.3s, border-color 0.3s; }
  body:has(a:hover) .cursor-follower,
  body:has(button:hover) .cursor-follower {
    width: 48px; height: 48px;
    border-color: var(--blue);
  }

  /* Nav CTA border */
  .nav__link--cta { transition: background 0.2s, border-color 0.2s, box-shadow 0.2s; }
  .nav__link--cta:hover { border-color: var(--blue); }

  /* Buttons — restore full hover glows */
  .btn { transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s; }
  .btn--primary:hover { background: #2d7aff; box-shadow: 0 0 30px var(--blue-glow), 0 8px 32px rgba(26,106,255,0.3); transform: translateY(-1px); }
  .btn--ghost:hover   { border-color: rgba(255,255,255,0.2); background: var(--bg-glass); transform: translateY(-1px); }
  .btn--gold:hover    { background: #8472e8; box-shadow: 0 0 30px var(--gold-glow), 0 8px 32px rgba(108,92,231,0.3); transform: translateY(-1px); }

  /* Venue cards */
  .venue-card { transition: transform 0.5s var(--ease), border-color 0.3s; }
  .venue-card--f1:hover { border-color: var(--border-blue); }
  .venue-card--f2:hover { border-color: rgba(108,92,231,0.3); }
  .venue-card__arrow { transition: transform 0.3s var(--ease), color 0.3s, border-color 0.3s, background 0.3s, box-shadow 0.3s; }
  .venue-card:hover .venue-card__arrow {
    border-color: var(--blue); color: var(--blue);
    background: var(--blue-dim); transform: translateX(4px);
    box-shadow: 0 0 16px var(--blue-glow);
  }
  .venue-card--f2:hover .venue-card__arrow {
    border-color: var(--gold); color: var(--gold);
    background: var(--gold-dim); box-shadow: 0 0 16px var(--gold-glow);
  }

  /* Gallery */
  .gallery__item { transition: transform 0.4s var(--ease), border-color 0.3s; }
  .gallery__item:hover { border-color: rgba(26,106,255,0.4); }

  /* Feature cards */
  .feature-card { transition: transform 0.3s var(--ease), border-color 0.3s, background-color 0.3s; }
  .feature-card:hover         { border-color: var(--border-blue); background: rgba(26,106,255,0.05); }
  .feature-card--gold:hover   { border-color: rgba(108,92,231,0.3); background: rgba(108,92,231,0.05); }

  /* Events */
  .event-card { transition: transform 0.4s var(--ease), border-color 0.3s; }
  .event-card:hover { border-color: var(--border-blue); }
  .events__dot { transition: background-color 0.25s, transform 0.25s; }
  .events__dot--active { background: var(--blue); }

  /* Contact */
  .contact__venue { transition: border-color 0.3s; }
  .contact__venue:hover       { border-color: var(--border-blue); }
  .contact__venue--f2:hover   { border-color: rgba(108,92,231,0.3); }

  /* Social + footer links */
  .contact__social-btn { transition: color 0.2s, border-color 0.2s, background-color 0.2s; }
  .contact__social-btn:hover { border-color: var(--border-blue); color: var(--blue); background: var(--blue-dim); }
  .footer__social a { transition: color 0.2s, border-color 0.2s, background-color 0.2s; }
  .footer__social a:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-dim); }
}

/* ===================================================================
   MOBILE: fully disable non-composited border/shadow transitions
   (touch events don't use :hover but JS tilt can still trigger them)
   =================================================================== */
@media (max-width: 768px) {
  .venue-card,
  .feature-card,
  .gallery__item,
  .event-card { transition: transform 0.3s var(--ease); }

  .btn--primary,
  .btn--ghost,
  .btn--gold { transition: transform 0.2s; }

  /* Focus states on inputs don't need animated borders on mobile */
  .form-group input,
  .form-group select,
  .form-group textarea { transition: none; }
}

/* ===== SR-ONLY (SEO / accessibility) ===== */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ===== STICKY BOOK NOW BUTTON ===== */
.sticky-book {
  position: fixed; bottom: 28px; right: 28px; z-index: 8000;
  display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
  pointer-events: none;
}
.sticky-book__urgency {
  display: block;
  background: rgba(26,106,255,0.12);
  border: 1px solid rgba(26,106,255,0.25);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue);
  pointer-events: none;
  animation: stickyPulse 2.5s ease-in-out infinite;
}
@keyframes stickyPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.97); }
}
.sticky-book__btn {
  pointer-events: all;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px;
  border-radius: 100px;
  font-family: var(--font-head); font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.05em;
  color: #0B0B0F;
  background: var(--blue);
  border: none; cursor: pointer;
  box-shadow: 0 0 32px rgba(26,106,255,0.45), 0 8px 24px rgba(0,0,0,0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.sticky-book__btn:hover {
  background: #2d7aff;
  box-shadow: 0 0 56px rgba(26,106,255,0.6), 0 12px 32px rgba(0,0,0,0.5);
  transform: translateY(-3px) scale(1.03);
}
.sticky-book__btn svg { width: 16px; height: 16px; flex-shrink: 0; }
/* hide on mobile in hero zone (scroll reveals it) */
.sticky-book { opacity: 0; transition: opacity 0.4s ease; }
.sticky-book.visible { opacity: 1; }

/* ===== VENUE CARDS — Apple-style redesign ===== */
.venue-card {
  position: relative; height: 620px;
  border-radius: 28px;
  overflow: hidden;
  display: block;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.venue-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}
.venue-card--f1:hover { border-color: rgba(26,106,255,0.25); box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 80px rgba(26,106,255,0.08); }
.venue-card--f2:hover { border-color: rgba(108,92,231,0.25); box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 80px rgba(108,92,231,0.08); }
.venue-card__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1s var(--ease);
}
.venue-card:hover .venue-card__bg { transform: scale(1.08); }
.venue-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(11,11,15,0.98) 0%,
    rgba(11,11,15,0.5) 40%,
    rgba(11,11,15,0.1) 100%
  );
}
/* Content sits at bottom, all text stacks cleanly */
.venue-card__content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 44px 40px;
  gap: 0;
}
.venue-card__badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  margin-bottom: 20px;
  width: fit-content;
  color: rgba(255,255,255,0.7);
}
.venue-card__address { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin: 14px 0 16px; }
.venue-card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.venue-card__tags span {
  padding: 5px 12px; border-radius: 100px; font-size: 0.68rem;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
}
.venue-card__arrow {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,0.7);
  transition: transform 0.4s var(--ease), background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.venue-card:hover .venue-card__arrow {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(26,106,255,0.12);
  transform: translateX(6px);
  box-shadow: 0 0 20px rgba(26,106,255,0.3);
}
.venue-card--f2:hover .venue-card__arrow {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(108,92,231,0.12);
  box-shadow: 0 0 20px rgba(108,92,231,0.3);
}

/* ===== VENUE CARDS — mobile overrides (after the redesign block) ===== */
@media (max-width: 768px) {
  .venues__grid { gap: 14px; }
  .venue-card { height: 310px; }
  .venue-card__content { padding: 24px 20px; }
  .venue-card__foggy { font-size: 2rem; }
  .venue-card__top-bar { top: 14px; left: 14px; right: 14px; }
  .venue-card__badge { font-size: 0.6rem; }
  .venue-card__fomo { font-size: 0.6rem; padding: 4px 9px; }
  .venue-card__address { margin: 6px 0 8px; }
  .venue-card__tags { margin-bottom: 14px; gap: 6px; }
  .venue-card__tags span { padding: 3px 8px; font-size: 0.65rem; }
  .venue-card__arrow { width: 38px; height: 38px; }
}

/* ===== GLASSMORPHISM CARDS (feature-card upgrade) ===== */
.feature-card {
  padding: 32px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
@media (hover: hover) {
  .feature-card:hover {
    border-color: rgba(26,106,255,0.2);
    background: rgba(26,106,255,0.04);
    box-shadow: 0 8px 40px rgba(26,106,255,0.08);
    transform: translateY(-6px);
  }
  .feature-card--gold:hover {
    border-color: rgba(108,92,231,0.2);
    background: rgba(108,92,231,0.04);
    box-shadow: 0 8px 40px rgba(108,92,231,0.08);
  }
}
.feature-card__icon {
  width: 64px; height: 64px;
  border-radius: 14px;
  background: rgba(26,106,255,0.1);
  border: 1px solid rgba(26,106,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
  padding: 10px;
}
.feature-card--gold .feature-card__icon {
  background: rgba(108,92,231,0.1);
  border-color: rgba(108,92,231,0.2);
  color: var(--gold);
}

/* Feature cards — mobile horizontal layout (after glassmorphism block) */
@media (max-width: 768px) {
  .feature-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 0 14px;
    align-items: start;
    padding: 18px;
  }
  .feature-card__icon { grid-column: 1; grid-row: 1 / 3; width: 48px; height: 48px; margin-bottom: 0; }
  .feature-card h3 { grid-column: 2; grid-row: 1; font-size: 0.95rem; margin-bottom: 5px; }
  .feature-card p { grid-column: 2; grid-row: 2; font-size: 0.8rem; }
}

/* ===== HERO scroll-line colour ===== */
.hero__scroll-line {
  background: linear-gradient(to bottom, var(--blue), transparent);
}

/* ===== SECTION DIVIDER dot ===== */
.section-divider__dot { background: var(--blue); box-shadow: 0 0 12px var(--blue); }

/* ===== NAV link hover colour ===== */
.nav__link::after { background: var(--blue); }
.nav__link--cta { color: var(--blue) !important; border-color: rgba(26,106,255,0.3); background: rgba(26,106,255,0.07); }
.nav__link--cta:hover { background: rgba(26,106,255,0.15); border-color: var(--blue); box-shadow: 0 0 24px rgba(26,106,255,0.3); }

/* ===== REVIEWS move to hero-adjacent — compact spacing ===== */
.reviews--hero-adjacent {
  padding: 80px 40px 60px;
  border-bottom: 1px solid var(--border);
}

/* ===== LOGO glows with new accent ===== */
.logo-img--glow-blue { filter: invert(1) drop-shadow(0 0 14px rgba(26,106,255,0.5)); }
.logo-img--glow-gold { filter: invert(1) drop-shadow(0 0 14px rgba(108,92,231,0.5)); }

/* ===== VENUE label (section-label) colour ===== */
.section-label { color: var(--blue); }
.venue-section--f2 .section-label { color: var(--gold); }

/* ===== HIDE PARTICLES ON MOBILE (point #11) ===== */
@media (max-width: 768px) {
  #heroCanvas { display: none !important; }
  /* CSS particles container also hidden */
  .hero__scene > div[style*="position:absolute;inset:0;overflow:hidden;pointer-events:none;z-index:1"] {
    display: none !important;
  }
}

/* ===== HOVER fix for updated colours ===== */
@media (hover: hover) {
  .btn--primary:hover { background: #2d7aff; box-shadow: 0 0 40px rgba(26,106,255,0.5), 0 8px 32px rgba(26,106,255,0.25); transform: translateY(-2px); }
  .btn--gold:hover    { background: #8472e8; box-shadow: 0 0 40px rgba(108,92,231,0.5), 0 8px 32px rgba(108,92,231,0.25); transform: translateY(-2px); }
  .venue-card--f1:hover { border-color: rgba(26,106,255,0.25); }
  .venue-card--f2:hover { border-color: rgba(108,92,231,0.25); }
  .gallery__item:hover { border-color: rgba(26,106,255,0.35); }
  .contact__venue:hover       { border-color: rgba(26,106,255,0.2); }
  .contact__venue--f2:hover   { border-color: rgba(108,92,231,0.2); }
  .footer__links a:hover { color: var(--blue); }
  .footer__social a:hover { border-color: var(--blue); color: var(--blue); background: rgba(26,106,255,0.08); }
  .contact__social-btn:hover { border-color: rgba(26,106,255,0.3); color: var(--blue); background: rgba(26,106,255,0.07); }
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  position: fixed;
  top: var(--nav-h, 72px);
  left: 0; right: 0;
  z-index: 8000;
  padding: 6px 40px;
  background: rgba(11,11,15,0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.75rem;
}
.breadcrumb ol {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; gap: 6px;
}
.breadcrumb li { color: rgba(255,255,255,0.4); }
.breadcrumb li + li::before { content: '/'; margin-right: 6px; }
.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb li[aria-current="page"] { color: rgba(255,255,255,0.75); }
/* Push menu-hero down when breadcrumb is present */
body:has(.breadcrumb) .menu-hero { padding-top: calc(var(--nav-h, 72px) + 32px); }
/* Push sticky tab bar flush below breadcrumb on menu pages */
body:has(.breadcrumb) .menu-tabs { top: calc(var(--nav-h, 72px) + 32px) !important; }

/* ===== NAV DROPDOWN ===== */
.nav__dropdown { position: relative; display: flex; align-items: center; }
.nav__dropdown-trigger { display: flex; align-items: center; gap: 5px; cursor: pointer; }
.nav__dropdown-trigger::after { content: none !important; } /* remove underline pseudo */
.nav__dropdown-trigger svg { transition: transform 0.18s; flex-shrink: 0; }
.nav__dropdown-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-secondary);
  font-size: 0.82rem; font-weight: 500;
  transition: color 0.15s, background 0.15s;
}
.nav__dropdown-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.nav__dropdown-dot--blue { background: var(--blue); box-shadow: 0 0 6px rgba(26,106,255,0.6); }
.nav__dropdown-dot--gold { background: var(--gold); box-shadow: 0 0 6px rgba(200,148,26,0.6); }

/* ── DESKTOP only: positioned flyout ── */
@media (min-width: 901px) {
  .nav__dropdown-menu {
    position: absolute;
    top: calc(100% + 8px); left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: rgba(11,11,15,0.96);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 6px;
    min-width: 190px;
    opacity: 0; visibility: hidden;
    transition: opacity 0.18s 0.28s, transform 0.18s 0.28s, visibility 0s 0.46s;
    z-index: 9100;
  }
  /* Invisible bridge so mouse can cross the gap from trigger to menu */
  .nav__dropdown-menu::before {
    content: '';
    position: absolute;
    bottom: 100%; left: 0; right: 0;
    height: 12px;
  }
  .nav__dropdown:hover .nav__dropdown-menu,
  .nav__dropdown:focus-within .nav__dropdown-menu {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
    transition: opacity 0.15s, transform 0.15s, visibility 0s;
  }
  .nav__dropdown:hover .nav__dropdown-trigger svg { transform: rotate(180deg); }
  .nav__dropdown-item {
    padding: 10px 14px;
    border-radius: 8px;
    white-space: nowrap;
  }
  .nav__dropdown-item:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.06);
  }
}

/* ── MOBILE only: accordion ── */
@media (max-width: 900px) {
  .nav__links { display: none; flex-direction: column; gap: 0; position: fixed; inset: 0; background: var(--bg); padding: calc(var(--nav-h) + 24px) 24px 40px; z-index: 9500; overflow-y: auto; }
  .nav__links.open { display: flex; }
  body.nav-open .nav { z-index: 9600; background: rgba(11,11,15,0.98); backdrop-filter: none; -webkit-backdrop-filter: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav__close { display: flex; align-items: center; justify-content: center; position: absolute; top: 16px; right: 20px; width: 40px; height: 40px; font-size: 1.6rem; line-height: 1; color: var(--text-secondary); background: none; border: 1px solid var(--border); border-radius: 50%; cursor: pointer; transition: color 0.2s, border-color 0.2s; }
  .nav__close:hover { color: var(--text-primary); border-color: var(--border-blue); }
  .nav__link { padding: 16px 0; border-bottom: 1px solid var(--border); font-size: 1.1rem; }
  .nav__link--cta { border: 1px solid var(--border-blue); border-radius: 100px; text-align: center; margin-top: 16px; padding: 14px 24px; white-space: nowrap; }
  .nav__burger { display: flex; margin-left: 8px; }

  /* Let .nav__dropdown be content-sized so align-items:center on the parent
     centers it just like Events / Reviews links */
  .nav__dropdown { flex-direction: column; align-items: center; }
  /* Trigger looks exactly like any other nav__link */
  .nav__dropdown-trigger { gap: 6px; }
  .nav__dropdown-trigger svg { display: block; transition: transform 0.25s ease; }
  .nav__dropdown.open .nav__dropdown-trigger svg { transform: rotate(180deg); }
  /* Collapsed panel — centered below trigger */
  .nav__dropdown-menu {
    max-height: 0; overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease;
    text-align: center;
  }
  .nav__dropdown.open .nav__dropdown-menu {
    max-height: 160px;
    opacity: 1;
  }
  .nav__dropdown-item {
    padding: 10px 16px;
    font-size: 1rem;
    justify-content: center;
  }
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter {
  padding: 64px 40px;
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(26,106,255,0.04) 50%, transparent 100%);
  border-top: 1px solid var(--border);
}
.newsletter__inner { max-width: 480px; margin: 0 auto; }
.newsletter__title {
  font-family: var(--font-head);
  font-size: 1.6rem; font-weight: 700;
  margin: 0 0 8px;
}
.newsletter__desc { color: var(--text-secondary); margin: 0 0 28px; font-size: 0.9rem; }
.newsletter__form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.newsletter__input {
  flex: 1; min-width: 220px;
  padding: 13px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-primary);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter__input:focus { border-color: var(--blue); }
.newsletter__btn {
  padding: 13px 28px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 0.88rem; font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(26,106,255,0.3);
}
.newsletter__btn:hover { opacity: 0.88; box-shadow: 0 0 30px rgba(26,106,255,0.5); }
.newsletter__note { margin-top: 12px; font-size: 0.75rem; color: var(--text-muted); }
.newsletter__msg { margin-top: 16px; font-size: 0.88rem; min-height: 20px; }
.newsletter__msg--ok  { color: #4caf7d; }
.newsletter__msg--err { color: #e05c5c; }
@media (max-width: 600px) {
  .newsletter { padding: 48px 24px; }
  .newsletter__form { flex-direction: column; align-items: stretch; }
  .newsletter__input, .newsletter__btn { min-width: 0; width: 100%; }
}

/* ===== WHY FOGGY STRIP ===== */
.why-strip {
  padding: 0 40px 64px;
  max-width: 1400px;
  margin: 0 auto;
}
.why-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: var(--bg-glass);
  backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 14px 32px;
  margin-bottom: 32px;
}
.why-strip__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding: 0 20px;
  white-space: nowrap;
}
.why-strip__item svg {
  color: var(--blue);
  flex-shrink: 0;
}
.why-strip__sep {
  width: 1px;
  height: 20px;
  background: var(--border);
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .why-strip { padding: 0 20px 48px; }
  .why-strip__inner { border-radius: 20px; padding: 16px 20px; gap: 4px; }
  .why-strip__item { padding: 6px 12px; font-size: 0.78rem; }
  .why-strip__sep { display: none; }
}

/* ===== VENUE CARD — BEST FOR & FOMO ===== */
.venue-card__best-for {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  line-height: 1.4;
}
.venue-card__best-for-label {
  color: var(--blue);
  font-weight: 600;
}
.venue-card__best-for-label--gold {
  color: var(--gold);
}
.venue-card__top-bar {
  position: absolute;
  top: 20px; left: 20px; right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  z-index: 3;
  flex-wrap: nowrap;
}
.venue-card__top-bar .venue-card__badge {
  margin-bottom: 0;
  flex-shrink: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.venue-card__fomo {
  background: rgba(230, 105, 15, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  flex-shrink: 0;
  white-space: nowrap;
  animation: fomo-pulse 2.2s ease-in-out infinite;
}
.venue-card__fomo--gold {
  background: rgba(180, 110, 10, 0.88);
}
@keyframes fomo-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230,105,15,0.45); }
  50% { box-shadow: 0 0 0 7px rgba(230,105,15,0); }
}

/* ===== RESERVATION FOMO STRIP ===== */
.reservation__fomo {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(220, 140, 30, 0.12);
  border: 1px solid rgba(220, 140, 30, 0.3);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: rgba(255,200,100,0.9);
}
.reservation__fomo svg { flex-shrink: 0; color: rgba(255,180,60,0.85); }
.reservation__fomo strong { color: #ffc46e; }

/* ===== MENU CTA — above gallery ===== */
.menu-cta {
  margin-top: 8px;
}

/* ===== ITEM 4C: FEATURE CARD GLASSMORPHISM ===== */
.feature-card {
  backdrop-filter: blur(12px);
}
.feature-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px var(--border-blue);
}
.feature-card--gold:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(108,92,231,0.35);
}

/* ===== ITEM 4D: SCROLL FADE-IN ===== */
.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-up.delay-1 { transition-delay: 0.1s; }
.fade-in-up.delay-2 { transition-delay: 0.2s; }
.fade-in-up.delay-3 { transition-delay: 0.3s; }

/* ===== ITEM 4E: GALLERY DEPTH ===== */
.gallery__item:not(.gallery__item--large) {
  filter: brightness(0.82);
  transition: filter 0.4s ease, transform 0.5s var(--ease);
}
.gallery__item:not(.gallery__item--large):hover {
  filter: brightness(1);
}

/* ===== ITEM 5B: 2-STEP FORM PROGRESS ===== */
.form-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
}
.form-progress__step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.form-progress__num {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700;
  border: 2px solid var(--border);
  color: var(--text-muted);
  background: var(--bg-card);
  flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}
.form-progress__label {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color 0.3s;
  white-space: nowrap;
}
.form-progress__line {
  flex: 1;
  height: 1px;
  background: var(--border);
  margin: 0 12px;
  transition: background 0.3s;
}
.form-progress__step--active .form-progress__num {
  border-color: var(--blue);
  background: var(--blue-dim);
  color: var(--blue);
}
.form-progress__step--active .form-progress__label { color: var(--text-primary); }
.form-progress__step--done .form-progress__num {
  border-color: #4caf7d;
  background: rgba(76,175,125,0.15);
  color: #4caf7d;
}
.form-progress__step--done .form-progress__label { color: var(--text-secondary); }
.form-progress__line--done { background: rgba(76,175,125,0.4); }

.form-step { display: none; }
.form-step.active { display: flex; flex-direction: column; gap: 16px; }

.form-step-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.form-step-back {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
  display: flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}
.form-step-back:hover { color: var(--text-primary); }

@media (max-width: 600px) {
  .form-progress__label { display: none; }
  .form-progress { justify-content: center; }
  .form-progress__step { flex: 0 0 auto; }
  .form-progress__line { flex: 0 0 72px; margin: 0 8px; }
}

/* ===== MOBILE: reviews padding-bottom + contact icon alignment ===== */
@media (max-width: 768px) {
  .reviews--hero-adjacent { padding-bottom: 32px; }
  /* icon aligns with first line (strong label), not middle of multiline text */
  .contact__item { align-items: flex-start; justify-content: center; }
  .contact__item svg { margin-top: 1px; }
}
