/* ═══════════════════════════════════════════════════════════════════
   היציע — Stadium-Electric Redesign (2026-05-25)
   Dark-only · Floodlight Green · Stadium Gold · Time-first hierarchy
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: clip; max-width: 100vw; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* ═══════════════════════ DESIGN TOKENS ═══════════════════════ */
:root {
  /* Surfaces — Pitch night */
  --bg-deep:        #050807;
  --bg-base:        #0A1410;
  --bg-elevated:    #0F2D1F;
  --bg-surface:     #132A22;
  --bg-overlay:     #1A3329;
  --bg-glass:       rgba(15, 45, 31, 0.72);

  /* Brand — Football green spectrum */
  --primary:        #00FF87;   /* Floodlight Green — neon turf under lights */
  --primary-dim:    #00C26B;
  --primary-deep:   #00723B;   /* Pitch Green — brand legacy */
  --primary-darker: #003319;

  /* Accent — Stadium Gold (trophy moments) */
  --gold:           #F5C518;
  --gold-bright:    #FFE27A;
  --gold-deep:      #C99A00;

  /* Semantic */
  --live:           #FF3D2E;   /* Flare red — LIVE only */
  --live-bright:    #FF6B5A;

  /* External brand colors (use sparingly, only for partner buttons) */
  --brand-waze:     #33CCFF;
  --brand-wa:       #25D366;
  --brand-fb:       #1877F2;
  --brand-ig:       #E1306C;

  /* Text */
  --text:           #F6FFF9;   /* Goal-net white */
  --text-muted:     #B8C5BD;
  --text-soft:      #7A8A82;
  --text-on-gold:   #1A0F00;

  /* Lines */
  --border:         rgba(246, 255, 249, 0.08);
  --border-strong:  rgba(246, 255, 249, 0.16);
  --border-glow:    rgba(0, 255, 135, 0.32);

  /* Typography */
  --font-display:   'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:      'JetBrains Mono', 'IBM Plex Mono', 'SF Mono', Menlo, monospace;

  /* Type scale */
  --text-xs:   12px;
  --text-sm:   14px;
  --text-base: 17px;
  --text-md:   19px;
  --text-lg:   22px;
  --text-xl:   28px;
  --text-2xl:  36px;
  --text-3xl:  48px;
  --text-4xl:  64px;
  --text-5xl:  84px;

  /* Spacing — 4pt grid */
  --space-1: 4px;  --space-2: 8px;  --space-3: 12px;  --space-4: 16px;
  --space-5: 20px; --space-6: 24px; --space-8: 32px;  --space-10: 40px;
  --space-12: 48px; --space-16: 64px; --space-20: 80px; --space-24: 96px;
  --space-32: 128px;

  /* Radius */
  --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-xl: 22px; --r-2xl: 28px;
  --r-card: 18px; --r-full: 9999px;

  /* Shadows (subtle dark) */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.5);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.6);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.7);

  /* Glows (Floodlight & Trophy) */
  --glow-green-sm: 0 0 12px rgba(0,255,135,0.25);
  --glow-green-md: 0 0 24px rgba(0,255,135,0.4);
  --glow-green-lg: 0 0 48px rgba(0,255,135,0.55);
  --glow-gold-sm:  0 0 14px rgba(245,197,24,0.3);
  --glow-gold-md:  0 0 28px rgba(245,197,24,0.45);
  --glow-live:     0 0 20px rgba(255,61,46,0.55);

  /* Motion */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
  --dur-fast: 150ms;
  --dur-base: 250ms;
  --dur-slow: 400ms;
  --dur-page: 650ms;

  /* z-index scale */
  --z-base: 1; --z-card: 10; --z-sticky: 50; --z-nav: 100;
  --z-overlay: 500; --z-modal: 1000; --z-toast: 2000;
}

/* ═══════════════════════ BASE ═══════════════════════ */
body {
  font-family: var(--font-display);
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--text);
  background: var(--bg-deep);
  min-height: 100vh;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: clip;
}

/* Ambient pitch background — subtle radial gradients + grain
   Note: excluded on .admin-body — admin uses its own light theme */
body:not(.admin-body)::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 50% at 20% 0%, rgba(0,255,135,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 70% 40% at 100% 80%, rgba(245,197,24,0.04) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-base) 100%);
}

/* Admin pages override the dark body background */
body.admin-body { background: var(--admin-bg, #f1f5f9); color: var(--admin-text, #0f172a); }

main, .container { position: relative; z-index: var(--z-base); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}
@media (min-width: 768px) { .container { padding: 0 var(--space-8); } }

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--gold-bright); }

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

/* Skip link */
.skip-link {
  position: absolute;
  top: -200px; right: 0;
  background: var(--primary);
  color: var(--bg-deep);
  padding: var(--space-3) var(--space-5);
  font-weight: 700;
  z-index: var(--z-toast);
  border-radius: 0 0 0 var(--r-md);
}
.skip-link:focus { top: 0; }

/* ═══════════════════════ HEADER ═══════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: rgba(10, 20, 16, 0.85);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--border);
  padding: var(--space-3) 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}
.logo-img {
  width: 38px; height: 38px;
  background: var(--primary-deep);
  border-radius: var(--r-md);
  padding: 4px;
  box-shadow: var(--glow-green-sm);
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease-spring), box-shadow var(--dur-base);
}
.logo:hover .logo-img { transform: scale(1.08) rotate(-3deg); box-shadow: var(--glow-green-md); }
.logo-text { display: inline-flex; flex-direction: column; gap: 2px; line-height: 1; }
.logo-name {
  font-size: var(--text-lg);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
}
.logo-tagline {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0;
}

/* Nav */
.site-header nav {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}
.site-header nav a {
  color: var(--text-muted);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--r-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.site-header nav a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.site-header nav a.active { color: var(--primary); }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease-spring), opacity var(--dur-base);
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-close { display: none; }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .site-header nav.primary-nav {
    display: none;
    position: fixed;
    top: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-deep);
    background:
      radial-gradient(ellipse 90% 50% at 20% 0%, rgba(0,255,135,0.08) 0%, transparent 60%),
      radial-gradient(ellipse 70% 40% at 80% 100%, rgba(245,197,24,0.04) 0%, transparent 55%),
      var(--bg-deep);
    padding: 88px var(--space-6) var(--space-8);
    flex-direction: column;
    gap: 0;
    z-index: 9999;
    overflow-y: auto;
    box-shadow: 0 0 0 100vmax var(--bg-deep);
  }
  .site-header nav.primary-nav.open { display: flex; }
  body.nav-locked { overflow: hidden; }

  .nav-close {
    display: block;
    position: absolute;
    top: 16px;
    inset-inline-end: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-strong);
    color: var(--text);
    font-size: var(--text-sm);
    font-weight: 700;
    min-width: 48px;
    min-height: 48px;
    padding: 0 var(--space-3);
    cursor: pointer;
    font-family: inherit;
    border-radius: var(--r-full);
    transition: background var(--dur-fast);
  }
  .nav-close:hover { background: rgba(255,255,255,0.1); }

  .site-header nav.primary-nav a {
    font-size: var(--text-xl);
    font-weight: 800;
    padding: var(--space-4) var(--space-3);
    color: var(--text);
    border-bottom: 1px solid var(--border);
    text-align: right;
    width: 100%;
    background: transparent;
    transition: color var(--dur-fast), padding-inline-start var(--dur-base);
  }
  .site-header nav.primary-nav a:hover {
    color: var(--primary);
    padding-inline-start: var(--space-2);
  }
  .site-header nav.primary-nav a.active {
    color: var(--primary);
  }
  .site-header nav.primary-nav a:last-child { border-bottom: none; }
}

/* ═══════════════════════ MAIN ═══════════════════════ */
main {
  padding-top: var(--space-4);
  padding-bottom: var(--space-16);
  min-height: 60vh;
}

/* ═══════════════════════ HERO ═══════════════════════ */
.hero {
  position: relative;
  padding: var(--space-12) var(--space-4) var(--space-16);
  text-align: center;
  overflow: hidden;
  border-radius: 0 0 var(--r-2xl) var(--r-2xl);
  margin: 0 calc(var(--space-4) * -1) var(--space-12);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,255,135,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(245,197,24,0.06) 0%, transparent 60%),
    linear-gradient(165deg, var(--bg-elevated) 0%, var(--bg-base) 55%, var(--bg-deep) 100%);
  isolation: isolate;
}
@media (min-width: 768px) {
  .hero { padding: var(--space-20) var(--space-8); margin: 0 0 var(--space-16); border-radius: var(--r-2xl); }
}

/* Floodlight sweeps */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.5;
  filter: blur(80px);
}
.hero::before {
  top: -200px; left: -150px;
  background: radial-gradient(circle, rgba(0,255,135,0.4), transparent 60%);
  animation: floodlight-pulse 6s ease-in-out infinite;
}
.hero::after {
  bottom: -200px; right: -150px;
  background: radial-gradient(circle, rgba(245,197,24,0.25), transparent 60%);
  animation: floodlight-pulse 6s ease-in-out infinite reverse;
}

@keyframes floodlight-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%      { opacity: 0.7; transform: scale(1.1); }
}

/* Pitch lines decorative */
.hero-pitch-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.06;
  background-image:
    repeating-linear-gradient(90deg, transparent 0, transparent 79px, var(--text) 79px, var(--text) 80px),
    repeating-linear-gradient(0deg, transparent 0, transparent 79px, var(--text) 79px, var(--text) 80px);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(0,255,135,0.08);
  border: 1px solid var(--border-glow);
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-6);
  animation: fade-up 0.7s var(--ease-out) both;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: var(--glow-green-sm);
  animation: live-pulse 1.6s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.35); opacity: 0.65; }
}

.hero-title {
  font-size: clamp(32px, 8vw, var(--text-5xl));
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: var(--space-5);
  color: var(--text);
  text-wrap: balance;
  animation: fade-up 0.7s var(--ease-out) 0.1s both;
}
.hero-title-accent {
  display: inline-block;
  color: var(--primary);
  text-shadow: var(--glow-green-md);
  position: relative;
}
.hero-title-accent::after {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  bottom: -4px;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  border-radius: 4px;
  animation: underline-sweep 2.2s var(--ease-out) 0.5s both;
}
@keyframes underline-sweep {
  from { transform: scaleX(0); transform-origin: right; }
  to   { transform: scaleX(1); transform-origin: right; }
}

.hero-subtitle {
  font-size: var(--text-md);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto var(--space-8);
  animation: fade-up 0.7s var(--ease-out) 0.2s both;
}

.hero-trust {
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  color: var(--text-soft);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  animation: fade-up 0.7s var(--ease-out) 0.4s both;
}
.hero-trust-icon {
  width: 16px; height: 16px;
  display: inline-flex;
  color: var(--primary);
}

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

/* ═══════════════════════ BUTTONS ═══════════════════════ */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 60px;
  padding: 0 var(--space-8);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dim) 100%);
  color: var(--bg-deep);
  font-family: inherit;
  font-size: var(--text-md);
  font-weight: 800;
  letter-spacing: -0.01em;
  border: 0;
  border-radius: var(--r-full);
  box-shadow: var(--glow-green-md), 0 12px 32px rgba(0,255,135,0.18);
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-spring), box-shadow var(--dur-base);
  position: relative;
  overflow: hidden;
  animation: cta-heartbeat 2.4s ease-in-out infinite, fade-up 0.7s var(--ease-out) 0.3s both;
  text-decoration: none;
  touch-action: manipulation;
}
.btn-cta:hover, .btn-cta:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--glow-green-lg), 0 18px 48px rgba(0,255,135,0.28);
  color: var(--bg-deep);
  text-decoration: none;
  animation-play-state: paused;
}
.btn-cta:active { transform: translateY(0) scale(0.98); }

@keyframes cta-heartbeat {
  0%, 100% { box-shadow: var(--glow-green-md), 0 12px 32px rgba(0,255,135,0.18); }
  50%      { box-shadow: var(--glow-green-lg), 0 14px 40px rgba(0,255,135,0.32); }
}

/* Ripple */
.btn-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.25), transparent 50%);
  opacity: 0;
  transition: opacity var(--dur-base);
  pointer-events: none;
}
.btn-cta:hover::after { opacity: 1; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 48px;
  padding: 0 var(--space-5);
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-full);
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--dur-fast);
  text-decoration: none;
}
.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(0,255,135,0.06);
  text-decoration: none;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: transparent;
  border: 0;
  color: var(--text-muted);
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-2) var(--space-3);
  cursor: pointer;
  border-radius: var(--r-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.btn-ghost:hover { color: var(--text); background: rgba(255,255,255,0.04); }

/* ═══════════════════════ SECTIONS — Generic ═══════════════════════ */
.section {
  margin-bottom: var(--space-16);
}
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}
.section-eyebrow {
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-2);
}
.section-title {
  font-size: clamp(24px, 5vw, var(--text-2xl));
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
  margin: 0;
}
.section-link {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  text-decoration: none;
  transition: gap var(--dur-base) var(--ease-out), color var(--dur-fast);
}
.section-link:hover { gap: var(--space-2); color: var(--gold-bright); text-decoration: none; }

/* ═══════════════════════ TONIGHT'S BIG MATCH ═══════════════════════ */
.big-match {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(245,197,24,0.08), transparent 60%),
    linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-surface) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-2xl);
  padding: var(--space-6) var(--space-5);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 640px) { .big-match { padding: var(--space-8); } }

.big-match::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.big-match-label {
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.big-match-label::before {
  content: '★';
  font-size: var(--text-md);
  color: var(--gold);
  filter: drop-shadow(var(--glow-gold-sm));
}
.big-match-teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  text-align: center;
}
.big-match-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}
.big-match-flag {
  font-size: clamp(36px, 9vw, 56px);
  line-height: 1;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.5));
}
.big-match-team-name {
  font-size: clamp(var(--text-base), 3vw, var(--text-md));
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}
.big-match-vs {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--text-soft);
  padding: var(--space-2) var(--space-3);
  background: rgba(255,255,255,0.04);
  border-radius: var(--r-full);
  letter-spacing: 0.1em;
}

.big-match-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}
.big-match-info-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--text-muted);
  font-size: var(--text-sm);
  font-weight: 600;
}
.big-match-info-icon {
  width: 18px; height: 18px;
  color: var(--primary);
}

/* Countdown — LTR (days left, seconds right, like a digital clock) */
.big-match-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  direction: ltr;
}
.countdown-unit {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border-glow);
  border-radius: var(--r-md);
  padding: var(--space-3) var(--space-4);
  text-align: center;
  min-width: 64px;
  box-shadow: var(--glow-green-sm);
}
.countdown-num {
  font-family: var(--font-mono);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  display: block;
}
.countdown-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: var(--space-1);
  display: block;
}
.big-match-cta { display: flex; justify-content: center; }

/* ═══════════════════════ GAMES CAROUSEL (Stadium Tickets) ═══════════════════════ */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-4);
}
@media (max-width: 480px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
}

.game-card {
  position: relative;
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-surface) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: var(--space-5) var(--space-4);
  text-align: center;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-spring), border-color var(--dur-base), box-shadow var(--dur-base);
  font-family: inherit;
  font-size: inherit;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  isolation: isolate;
}
.game-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-deep), var(--primary), var(--primary-deep));
  opacity: 0.7;
  transition: opacity var(--dur-base);
}
.game-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0,255,135,0.1), transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-base);
  pointer-events: none;
  z-index: -1;
}
.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-lg), var(--glow-green-sm);
  text-decoration: none;
  color: var(--text);
}
.game-card:hover::before { opacity: 1; }
.game-card:hover::after  { opacity: 1; }
.game-card:active { transform: translateY(-2px) scale(0.99); }
.game-card.is-live::before { background: linear-gradient(90deg, var(--live), var(--live-bright), var(--live)); opacity: 1; }
.game-card.is-soon::before { background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-deep)); opacity: 1; }

.game-card-flags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: clamp(26px, 6vw, 34px);
  line-height: 1;
}
.game-card-vs {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-soft);
  background: rgba(255,255,255,0.06);
  padding: 2px 6px;
  border-radius: var(--r-full);
}
.game-card-teams {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}
.game-card-time {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
}
.game-card-time-value {
  font-size: clamp(20px, 5vw, 26px);
  font-weight: 800;
  color: var(--gold);
  text-shadow: var(--glow-gold-sm);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.game-card-time-day {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.game-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--r-full);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-live {
  background: var(--live);
  color: var(--text);
  box-shadow: var(--glow-live);
  animation: live-pulse 1.6s ease-in-out infinite;
}
.badge-soon {
  background: var(--gold);
  color: var(--text-on-gold);
  box-shadow: var(--glow-gold-sm);
}

/* ═══════════════════════ STATS — Big Numbers ═══════════════════════ */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
  padding: var(--space-8) var(--space-4);
  background:
    linear-gradient(180deg, rgba(0,255,135,0.04) 0%, transparent 100%),
    var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) { .stats { padding: var(--space-12) var(--space-8); gap: var(--space-6); } }
.stats::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.5;
}
.stat {
  text-align: center;
  padding: var(--space-2);
}
.stat-num {
  font-family: var(--font-mono);
  font-size: clamp(36px, 9vw, 72px);
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
  text-shadow: var(--glow-green-sm);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
}
.stat-label {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (min-width: 640px) { .stat-label { font-size: var(--text-sm); } }

/* ═══════════════════════ STEPS (How it works) ═══════════════════════ */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); gap: var(--space-5); } }

.step {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  transition: transform var(--dur-base) var(--ease-spring), border-color var(--dur-base);
}
.step:hover { transform: translateY(-4px); border-color: var(--border-glow); }
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dim) 100%);
  color: var(--bg-deep);
  font-family: var(--font-mono);
  font-size: var(--text-lg);
  font-weight: 800;
  border-radius: var(--r-md);
  margin-bottom: var(--space-4);
  box-shadow: var(--glow-green-sm);
}
.step-title {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--text);
  margin-bottom: var(--space-2);
}
.step-text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════ OWNERS CTA (Founders Section) ═══════════════════════ */
.owners-cta {
  background:
    radial-gradient(circle at top left, rgba(245,197,24,0.12), transparent 50%),
    linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-2xl);
  padding: var(--space-10) var(--space-5);
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .owners-cta { padding: var(--space-16) var(--space-12); } }
.owners-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.owners-cta-eyebrow {
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
}
.owners-cta-title {
  font-size: clamp(24px, 5vw, var(--text-2xl));
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: var(--space-4);
}
.owners-cta-text {
  font-size: var(--text-base);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto var(--space-6);
  line-height: 1.6;
}
.btn-owners {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--gold);
  color: var(--text-on-gold);
  font-weight: 800;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--r-full);
  font-size: var(--text-md);
  box-shadow: var(--glow-gold-md);
  transition: transform var(--dur-fast) var(--ease-spring), box-shadow var(--dur-base);
  text-decoration: none;
}
.btn-owners:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--glow-gold-md), 0 18px 48px rgba(245,197,24,0.32);
  color: var(--text-on-gold);
  text-decoration: none;
}

/* ═══════════════════════ FOOTER ═══════════════════════ */
.site-footer {
  background: var(--bg-base);
  border-top: 1px solid var(--border);
  padding: var(--space-10) var(--space-4);
  text-align: center;
  color: var(--text-soft);
  font-size: var(--text-sm);
}
.site-footer p { margin: var(--space-1) 0; }

/* ═══════════════════════ WIZARD STEPS (kept for /games picker flow) ═══════════════════════ */
.wizard-step.hidden { display: none; }
.step-animate { animation: fade-up 0.5s var(--ease-out); }

.step-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.step-header .step-title {
  font-size: var(--text-xl);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0;
}
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  min-height: 44px;
  padding: 0 var(--space-3);
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-full);
  color: var(--text-muted);
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.btn-back:hover { color: var(--primary); border-color: var(--primary); }
[dir="rtl"] .btn-back svg { transform: scaleX(-1); }

.step-loading {
  padding: var(--space-12);
  text-align: center;
  color: var(--text-muted);
}
.spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  margin: 0 auto var(--space-4);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.step-empty {
  padding: var(--space-12) var(--space-4);
  text-align: center;
  color: var(--text-muted);
  background: var(--bg-elevated);
  border: 1px dashed var(--border);
  border-radius: var(--r-lg);
}

#selected-game-summary {
  display: block;
  font-size: var(--text-base);
  color: var(--text-muted);
  margin-bottom: var(--space-4);
  text-align: center;
}

/* ═══════════════════════ GAME PICKER (wizard step 1) ═══════════════════════ */
.games-scroll-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-4);
}
@media (max-width: 480px) { .games-scroll-wrap { grid-template-columns: 1fr; } }

.game-pick-card {
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  border-radius: var(--r-card);
  padding: var(--space-5);
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-spring);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  overflow: hidden;
  min-height: 140px;
}
.game-pick-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md), var(--glow-green-sm);
}
.game-pick-card.selected {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(0,255,135,0.08), var(--bg-elevated));
  box-shadow: var(--glow-green-md);
}
.game-pick-card.selected::after {
  content: '✓';
  position: absolute;
  top: var(--space-3);
  inset-inline-end: var(--space-3);
  width: 28px; height: 28px;
  background: var(--primary);
  color: var(--bg-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: var(--text-sm);
}
.game-pick-live-badge, .game-pick-soon-badge {
  position: absolute;
  top: var(--space-3);
  inset-inline-start: var(--space-3);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--r-full);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.game-pick-live-badge { background: var(--live); color: var(--text); box-shadow: var(--glow-live); animation: live-pulse 1.6s infinite; }
.game-pick-soon-badge { background: var(--gold); color: var(--text-on-gold); }

.game-pick-teams {
  font-size: var(--text-md);
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}
.game-pick-vs {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-soft);
  background: rgba(255,255,255,0.06);
  padding: 2px 6px;
  border-radius: var(--r-full);
}
.game-pick-flag { font-size: 24px; }

/* Time row — bigger hour, clear date/day */
.game-pick-time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-top: var(--space-3);
  margin-top: auto;
  border-top: 1px solid var(--border);
}
.game-pick-time-meta {
  display: inline-flex;
  align-items: baseline;
  gap: var(--space-2);
  line-height: 1;
  font-weight: 800;
  color: var(--text-muted);
}
.game-pick-time-day {
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}
.game-pick-time-date {
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.game-pick-time-meta::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 3px;
  background: var(--text-soft);
  border-radius: 50%;
  margin-inline-end: 2px;
  align-self: center;
}
.game-pick-time-hour {
  font-family: var(--font-mono);
  font-size: clamp(24px, 6vw, 32px);
  font-weight: 800;
  color: var(--gold);
  text-shadow: var(--glow-gold-sm);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  white-space: nowrap;
}
.game-pick-day {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 600;
}
.game-pick-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: var(--text-muted);
  flex-wrap: wrap;
}

/* ═══════════════════════ LOCATION PICKER ═══════════════════════ */
.location-picker {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 500px;
  margin: var(--space-6) auto var(--space-8);
}
.location-btn {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  color: var(--text);
  font-family: inherit;
  font-size: var(--text-base);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--dur-base);
  text-align: right;
  min-height: 72px;
}
.location-btn:hover, .location-btn:focus-within {
  border-color: var(--primary);
  box-shadow: var(--glow-green-sm);
}
.location-btn-icon {
  font-size: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: rgba(0,255,135,0.08);
  flex-shrink: 0;
}
.location-btn-main { font-size: var(--text-base); font-weight: 800; color: var(--text); display: block; margin-bottom: 2px; }
.location-btn-sub  { font-size: var(--text-sm); color: var(--text-muted); display: block; }
.location-divider {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--text-soft);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.location-divider::before, .location-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.location-btn-address { background: var(--bg-elevated); align-items: flex-start; padding-top: var(--space-4); padding-bottom: var(--space-4); }
.address-input-row {
  display: flex;
  gap: var(--space-2);
  align-items: stretch;
}
.address-input {
  flex: 1;
  background: rgba(0,0,0,0.3);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-md);
  color: var(--text);
  font-family: inherit;
  font-size: var(--text-base);
  font-weight: 600;
  outline: none;
  padding: var(--space-3) var(--space-4);
  min-height: 48px;
  transition: border-color var(--dur-fast);
  min-width: 0;
}
.address-input:focus { border-color: var(--primary); box-shadow: var(--glow-green-sm); }
.address-input::placeholder { color: var(--text-soft); }
.btn-address-search {
  background: var(--primary);
  color: var(--bg-deep);
  border: 0;
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: 800;
  padding: 0 var(--space-5);
  min-height: 48px;
  cursor: pointer;
  box-shadow: var(--glow-green-sm);
  transition: transform var(--dur-fast) var(--ease-spring), box-shadow var(--dur-base);
  white-space: nowrap;
}
.btn-address-search:hover { transform: translateY(-1px); box-shadow: var(--glow-green-md); }
.btn-address-search:active { transform: translateY(0) scale(0.97); }
/* Address suggestions — full-width dropdown opening BELOW the input */
.address-suggestions {
  background: var(--bg-overlay);
  border: 1.5px solid var(--border-glow);
  border-radius: var(--r-lg);
  max-height: 360px;
  overflow-y: auto;
  margin-top: var(--space-3);
  box-shadow: var(--shadow-lg), var(--glow-green-sm);
  padding: var(--space-2);
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: dropdown-in 250ms var(--ease-spring);
}
@keyframes dropdown-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.address-suggestion-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: transparent;
  border: 0;
  border-radius: var(--r-md);
  cursor: pointer;
  font-family: inherit;
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--text);
  text-align: right;
  width: 100%;
  transition: background var(--dur-fast), transform var(--dur-fast);
  min-height: 56px;
}
.address-suggestion-item:hover,
.address-suggestion-item:focus-visible,
.address-suggestion-item.is-highlighted {
  background: rgba(0,255,135,0.1);
  transform: translateX(-3px);
}
.address-suggestion-item:active {
  background: rgba(0,255,135,0.16);
}
.address-suggestion-item strong {
  font-size: var(--text-lg);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.01em;
}
.address-status { font-size: var(--text-xs); color: var(--text-soft); text-align: center; }

/* ═══════════════════════ BAR LIST ═══════════════════════ */
.bars-result-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
@media (min-width: 640px) { .bars-result-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bars-result-grid { grid-template-columns: repeat(3, 1fr); } }

.bar-result-card {
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  border-radius: var(--r-card);
  padding: var(--space-5);
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-spring);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  position: relative;
  overflow: hidden;
}
.bar-result-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md), var(--glow-green-sm);
}
.bar-rc-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
}
.bar-rc-name {
  font-size: var(--text-md);
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
}
.bar-rc-distance {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}
.bar-rc-address {
  font-size: var(--text-sm);
  color: var(--text-muted);
}
.bar-rc-tags { display: flex; gap: var(--space-2); flex-wrap: wrap; }
.tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.tag-kosher { background: rgba(0,255,135,0.1); color: var(--primary); }
.tag-food   { background: rgba(245,197,24,0.1); color: var(--gold); }

.badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--r-full);
  letter-spacing: 0.04em;
}
.badge-confirmed { background: var(--primary); color: var(--bg-deep); }
.badge-pending { background: rgba(245,197,24,0.15); color: var(--gold); border: 1px solid rgba(245,197,24,0.3); }
.badge-no-response { background: rgba(255,255,255,0.06); color: var(--text-muted); border: 1px solid var(--border-strong); }
.badge-lg { gap: var(--space-2); font-size: var(--text-sm); padding: 6px 12px; }

/* Bar search */
.bars-search-wrap { margin-bottom: var(--space-3); }
.bars-search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--bg-elevated);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-full);
  padding: 0 var(--space-3);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.bars-search-input-wrap:focus-within {
  border-color: var(--primary);
  box-shadow: var(--glow-green-sm);
}
.bars-search-icon {
  width: 18px; height: 18px;
  color: var(--text-soft);
  flex-shrink: 0;
}
.bars-search-input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  font-family: inherit;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text);
  padding: var(--space-3) var(--space-2);
  min-height: 48px;
  min-width: 0;
}
.bars-search-input::placeholder { color: var(--text-soft); font-weight: 500; }
.bars-search-clear {
  background: rgba(255,255,255,0.06);
  border: 0;
  color: var(--text-muted);
  cursor: pointer;
  font-size: var(--text-sm);
  width: 30px; height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur-fast), color var(--dur-fast);
}
.bars-search-clear:hover { background: rgba(255,255,255,0.12); color: var(--text); }

.bars-filters {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-4);
  align-items: center;
}
.bar-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  min-height: 44px;
  padding: 0 var(--space-4);
  background: transparent;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-full);
  color: var(--text-muted);
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--dur-fast);
}
.bar-filter-chip:hover { border-color: var(--primary); color: var(--text); }
.bar-filter-chip[aria-pressed="true"] {
  background: var(--primary);
  color: var(--bg-deep);
  border-color: var(--primary);
  box-shadow: var(--glow-green-sm);
}
#bars-count { font-size: var(--text-sm); color: var(--text-soft); margin-inline-start: auto; }

/* ═══════════════════════ BOTTOM SHEET ═══════════════════════ */
.bar-sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: var(--z-overlay);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base);
}
.bar-sheet-overlay.visible { opacity: 1; pointer-events: auto; }
.bar-sheet-overlay.hidden { display: none; }

.bar-sheet {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  max-height: 92vh;
  max-height: 92dvh;
  background: var(--bg-overlay);
  border-top-left-radius: var(--r-2xl);
  border-top-right-radius: var(--r-2xl);
  border-top: 1px solid var(--border-strong);
  box-shadow: 0 -16px 64px rgba(0,0,0,0.5);
  z-index: var(--z-modal);
  transform: translateY(100%);
  transition: transform var(--dur-page) var(--ease-spring);
  overflow-y: auto;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.bar-sheet.open { transform: translateY(0); }
.bar-sheet[aria-hidden="true"] { pointer-events: none; }
.bar-sheet[aria-hidden="false"] { pointer-events: auto; }

.bar-sheet-handle {
  width: 48px; height: 5px;
  background: var(--text-soft);
  border-radius: var(--r-full);
  margin: var(--space-3) auto;
  opacity: 0.5;
}

.bsd-header {
  padding: var(--space-2) var(--space-5) var(--space-4);
  border-bottom: 1px solid var(--border);
}
.bsd-name { font-size: var(--text-xl); font-weight: 900; color: var(--text); margin-bottom: var(--space-2); letter-spacing: -0.02em; }
.bsd-meta { display: flex; gap: var(--space-3); flex-wrap: wrap; font-size: var(--text-sm); color: var(--text-muted); }

/* Bar sheet — Premium expanded header */
.bsd-header-strip {
  position: relative;
  padding: var(--space-6) var(--space-5) var(--space-5);
  background:
    radial-gradient(circle at top right, rgba(0,255,135,0.12) 0%, transparent 60%),
    linear-gradient(165deg, var(--bg-elevated) 0%, var(--bg-surface) 100%);
  border-bottom: 1px solid var(--border);
}
.bsd-header-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.bsd-header-actions {
  position: absolute;
  top: var(--space-3);
  inset-inline-end: var(--space-4);
  display: flex;
  gap: var(--space-2);
}
.bsd-status-row {
  margin-bottom: var(--space-3);
}
.bsd-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 11px;
  border-radius: var(--r-full);
  letter-spacing: 0.04em;
}
.bsd-name-white {
  font-size: clamp(22px, 5.5vw, 28px);
  font-weight: 900;
  color: var(--text);
  margin: 0 0 var(--space-2);
  letter-spacing: -0.02em;
  line-height: 1.15;
  padding-inline-end: 100px; /* leave room for top-right action icons */
}
.bsd-address-white {
  font-size: var(--text-base);
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.bsd-meta-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-5) var(--space-5) var(--space-3);
}
.bsd-meta-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
}
.bsd-meta-icon {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}
.bsd-tags {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  padding: 0 var(--space-5) var(--space-4);
}
.bsd-divider {
  height: 1px;
  background: var(--border);
  margin: var(--space-2) var(--space-5);
}
.bsd-actions {
  padding: var(--space-4) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.bsd-body { padding: var(--space-5); }
.bsd-row { display: flex; align-items: flex-start; gap: var(--space-3); margin-bottom: var(--space-4); font-size: var(--text-sm); color: var(--text); }
.bsd-row-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-md);
  background: rgba(0,255,135,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.bsd-action-row {
  display: flex;
  gap: var(--space-2);
  flex-direction: column;
  padding: var(--space-4) var(--space-5);
  border-top: 1px solid var(--border);
  position: sticky;
  bottom: 0;
  background: var(--bg-overlay);
}
@media (min-width: 480px) { .bsd-action-row { flex-direction: row; flex-wrap: wrap; } }
.bsd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 52px;
  padding: 0 var(--space-5);
  border-radius: var(--r-full);
  font-family: inherit;
  font-size: var(--text-base);
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: 0;
  transition: transform var(--dur-fast) var(--ease-spring), box-shadow var(--dur-base);
  flex: 1;
  min-width: 130px;
}
.bsd-btn-details { background: var(--primary); color: var(--bg-deep); box-shadow: var(--glow-green-sm); }
.bsd-btn-details:hover { transform: translateY(-2px); box-shadow: var(--glow-green-md); }
.bsd-btn-tel { background: var(--gold); color: var(--text-on-gold); }
/* Waze — official blue brand color */
.bsd-btn-waze {
  background: #33CCFF;
  color: #fff;
  border: 0;
  box-shadow: 0 8px 24px rgba(51,204,255,0.25), 0 0 16px rgba(51,204,255,0.35);
  font-weight: 800;
}
.bsd-btn-waze:hover {
  background: #1FB8E6;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(51,204,255,0.35), 0 0 22px rgba(51,204,255,0.45);
}
.bsd-btn-secondary { background: rgba(255,255,255,0.05); color: var(--text); }
.bsd-btn-secondary:hover { background: rgba(255,255,255,0.1); }
.bsd-icon-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 0;
  color: var(--text);
  cursor: pointer;
  font-size: 18px;
  transition: background var(--dur-fast);
}
.bsd-icon-btn:hover { background: rgba(255,255,255,0.1); }

/* Inquiry form */
.inquiry-form {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.inquiry-title { font-size: var(--text-xl); font-weight: 900; color: var(--text); }
.inquiry-sub { font-size: var(--text-sm); color: var(--text-muted); }
.inquiry-form label {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text);
}
.inquiry-form input {
  background: var(--bg-deep);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-md);
  padding: var(--space-3) var(--space-4);
  font-family: inherit;
  font-size: var(--text-base);
  color: var(--text);
  min-height: 48px;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color var(--dur-fast);
}
.inquiry-form input:focus { outline: none; border-color: var(--primary); box-shadow: var(--glow-green-sm); }
.inquiry-form input[aria-invalid="true"] { border-color: var(--live); box-shadow: 0 0 0 3px rgba(255,61,46,0.2); }
.form-hint { font-size: var(--text-xs); color: var(--text-soft); font-weight: 500; }
.inquiry-alert {
  background: rgba(255,61,46,0.1);
  border: 1px solid rgba(255,61,46,0.3);
  color: var(--live-bright);
  padding: var(--space-3);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  font-weight: 600;
}
.inquiry-alert.hidden { display: none; }
.inquiry-success {
  text-align: center;
  padding: var(--space-8) var(--space-5);
}
.inquiry-success-icon { font-size: 56px; display: block; margin-bottom: var(--space-4); }
.inquiry-success-title { font-size: var(--text-xl); font-weight: 900; color: var(--primary); margin-bottom: var(--space-2); }

/* Static pages */
.page-title {
  font-size: clamp(28px, 6vw, var(--text-3xl));
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: var(--space-6);
}
.prose {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-muted);
}
.prose h2 { font-size: var(--text-xl); font-weight: 800; color: var(--text); margin: var(--space-8) 0 var(--space-3); }
.prose p { margin-bottom: var(--space-4); }
.prose a { color: var(--primary); }
.prose ul, .prose ol { padding-inline-start: var(--space-6); margin-bottom: var(--space-4); }
.prose li { margin-bottom: var(--space-2); }

/* Contact cards */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin: var(--space-6) 0;
}
@media (min-width: 640px) { .contact-cards { grid-template-columns: repeat(3, 1fr); } }
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-6);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  color: var(--text);
  text-decoration: none;
  transition: all var(--dur-base);
}
.contact-card:hover { transform: translateY(-3px); border-color: var(--primary); box-shadow: var(--glow-green-sm); }
.contact-card-icon { font-size: 28px; }
.contact-card-title { font-size: var(--text-base); font-weight: 800; color: var(--text); }
.contact-card-sub { font-size: var(--text-sm); color: var(--text-muted); }

/* Social row */
.social-row {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--r-full);
  background: var(--bg-elevated);
  border: 1.5px solid var(--border-strong);
  color: var(--text);
  font-weight: 800;
  font-size: var(--text-base);
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease-spring), border-color var(--dur-fast), box-shadow var(--dur-base);
  min-height: 52px;
}
.social-link:hover { transform: translateY(-2px); text-decoration: none; }
.social-fb { color: #1877F2; }
.social-fb:hover { border-color: #1877F2; box-shadow: 0 0 16px rgba(24,119,242,0.3); color: #1877F2; }
.social-ig { color: #E1306C; }
.social-ig:hover { border-color: #E1306C; box-shadow: 0 0 16px rgba(225,48,108,0.3); color: #E1306C; }

/* Inline form (contact + owners) */
.inline-form-wrap {
  max-width: 620px;
  margin: 0 auto;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-2xl);
  padding: var(--space-6) var(--space-5);
  box-shadow: var(--shadow-md);
}
@media (min-width: 640px) { .inline-form-wrap { padding: var(--space-8); } }
.inline-form-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 560px) { .inline-form-body { grid-template-columns: 1fr 1fr; } }
.inline-form label {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.form-label {
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--text);
}
.inline-form input, .inline-form textarea {
  background: var(--bg-deep);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-md);
  padding: var(--space-3) var(--space-4);
  font-family: inherit;
  font-size: var(--text-base);
  color: var(--text);
  min-height: 48px;
  transition: border-color var(--dur-fast);
  width: 100%;
}
.inline-form input::placeholder, .inline-form textarea::placeholder { color: var(--text-soft); }
.inline-form input:focus, .inline-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: var(--glow-green-sm);
}
.inline-form textarea { resize: vertical; min-height: 120px; }
.form-full { grid-column: 1 / -1; }
.inline-alert {
  background: rgba(255,61,46,0.1);
  border: 1px solid rgba(255,61,46,0.3);
  color: var(--live-bright);
  padding: var(--space-3);
  border-radius: var(--r-md);
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
  font-weight: 600;
}
.inline-success {
  text-align: center;
  padding: var(--space-6);
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: var(--space-4) 0;
}
.faq-q { font-size: var(--text-md); font-weight: 800; color: var(--text); margin-bottom: var(--space-2); }
.faq-a { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.6; }

/* Join form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  max-width: 560px;
  margin: var(--space-6) auto;
}
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-grid label { display: flex; flex-direction: column; gap: var(--space-2); font-size: var(--text-sm); font-weight: 700; color: var(--text); }
.form-grid input, .form-grid textarea, .form-grid select {
  background: var(--bg-deep);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-md);
  padding: var(--space-3) var(--space-4);
  font-family: inherit;
  font-size: var(--text-base);
  color: var(--text);
  min-height: 48px;
}
.form-grid textarea { min-height: 120px; resize: vertical; }
.form-grid input:focus, .form-grid textarea:focus, .form-grid select:focus { outline: none; border-color: var(--primary); }

.alert {
  padding: var(--space-4);
  border-radius: var(--r-md);
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
  font-weight: 600;
}
.alert-error { background: rgba(255,61,46,0.1); border: 1px solid rgba(255,61,46,0.3); color: var(--live-bright); }
.alert-success { background: rgba(0,255,135,0.08); border: 1px solid var(--border-glow); color: var(--primary); }

/* Generic table for admin */
table.t {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}
table.t th, table.t td { padding: var(--space-3); text-align: right; border-bottom: 1px solid var(--border); }
table.t th { font-weight: 800; color: var(--text-muted); text-transform: uppercase; font-size: var(--text-xs); letter-spacing: 0.06em; }

/* Accessibility */
.hidden { display: none !important; }
.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;
}

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero::before, .hero::after { animation: none; opacity: 0.4; }
  .btn-cta { animation: none; }
}

/* Icon helpers (Lucide-style inline SVG) */
.icon {
  display: inline-flex;
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
  vertical-align: middle;
}
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 20px; height: 20px; }
.icon-lg { width: 24px; height: 24px; }

/* Mobile-specific tweaks */
@media (max-width: 480px) {
  main { padding-top: var(--space-3); }
  .hero { padding-top: var(--space-10); padding-bottom: var(--space-12); }
  .section { margin-bottom: var(--space-12); }
}
