/* ============================================
   BAR FELICE - Neon Sports Bar
   Roppongi, Tokyo
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans+JP:wght@300;400;500;700&family=Oswald:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --bg-deep: #0a0a0f;
  --bg-dark: #0d0d18;
  --bg-surface: #111122;
  --bg-surface-alt: #161630;

  --neon-pink: #ff2d7b;
  --neon-pink-dim: #b81e56;
  --neon-cyan: #00e5ff;
  --neon-cyan-dim: #0098aa;
  --neon-yellow: #ffe600;
  --neon-yellow-dim: #b3a200;
  --neon-green: #39ff14;

  --text-primary: #e8e8f0;
  --text-secondary: #8888aa;
  --text-dim: #555570;

  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-neon-pink: rgba(255, 45, 123, 0.3);
  --border-neon-cyan: rgba(0, 229, 255, 0.3);

  --glow-pink: 0 0 7px rgba(255, 45, 123, 0.5), 0 0 20px rgba(255, 45, 123, 0.2), 0 0 40px rgba(255, 45, 123, 0.1);
  --glow-cyan: 0 0 7px rgba(0, 229, 255, 0.5), 0 0 20px rgba(0, 229, 255, 0.2), 0 0 40px rgba(0, 229, 255, 0.1);
  --glow-yellow: 0 0 7px rgba(255, 230, 0, 0.5), 0 0 20px rgba(255, 230, 0, 0.2), 0 0 40px rgba(255, 230, 0, 0.1);

  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Noto Sans JP', sans-serif;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* --- Noise Overlay --- */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* --- Scanline Effect --- */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  pointer-events: none;
  z-index: 9998;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s ease;
}

.site-header.scrolled {
  background: rgba(10, 10, 15, 0.95);
}

.header-logo a {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--neon-pink);
  text-shadow: var(--glow-pink);
  text-transform: uppercase;
  transition: text-shadow 0.3s ease;
}

.header-logo a:hover {
  text-shadow: 0 0 10px rgba(255, 45, 123, 0.8), 0 0 30px rgba(255, 45, 123, 0.4), 0 0 60px rgba(255, 45, 123, 0.2);
}

.header-logo .logo-sub {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--text-secondary);
  text-transform: uppercase;
  display: block;
  margin-top: -4px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-nav a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--neon-cyan);
  box-shadow: 0 0 6px var(--neon-cyan);
  transition: width 0.3s ease;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--neon-cyan);
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}

.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neon-pink);
  box-shadow: 0 0 4px rgba(255, 45, 123, 0.5);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION (index.html)
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-deep);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 45, 123, 0.04);
  filter: blur(100px);
}

/* Neon grid floor */
.neon-grid {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(500px) rotateX(55deg);
  transform-origin: bottom center;
  opacity: 0.6;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 160px);
  letter-spacing: 8px;
  line-height: 0.95;
  color: var(--neon-pink);
  text-shadow:
    0 0 10px rgba(255, 45, 123, 0.6),
    0 0 30px rgba(255, 45, 123, 0.3),
    0 0 60px rgba(255, 45, 123, 0.15),
    0 0 100px rgba(255, 45, 123, 0.08);
  animation: neonFlicker 4s ease-in-out infinite;
}

.hero-title .word-felice {
  color: var(--neon-cyan);
  text-shadow:
    0 0 10px rgba(0, 229, 255, 0.6),
    0 0 30px rgba(0, 229, 255, 0.3),
    0 0 60px rgba(0, 229, 255, 0.15),
    0 0 100px rgba(0, 229, 255, 0.08);
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 24px;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--neon-pink);
  box-shadow: var(--glow-pink);
  margin: 32px auto;
}

.hero-location {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 48px;
  background: var(--neon-cyan);
  box-shadow: 0 0 4px rgba(0, 229, 255, 0.5);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
  padding: 120px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--neon-cyan);
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.3);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 4px;
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: 40px;
}

.section-title .neon-pink {
  color: var(--neon-pink);
  text-shadow: var(--glow-pink);
}

.section-title .neon-cyan {
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
}

.section-divider {
  width: 40px;
  height: 1px;
  background: var(--neon-pink);
  box-shadow: 0 0 6px rgba(255, 45, 123, 0.4);
  margin-bottom: 40px;
}

/* ============================================
   CONCEPT SECTION
   ============================================ */
.concept-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.concept-text p {
  font-size: 15px;
  line-height: 2;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.concept-text p:last-child {
  margin-bottom: 0;
}

.concept-highlights {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.highlight-number {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  color: var(--neon-pink);
  text-shadow: var(--glow-pink);
  min-width: 56px;
}

.highlight-text h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.highlight-text p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ============================================
   PHOTO PLACEHOLDER
   ============================================ */
.photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border-neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-surface);
}

.photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0, 229, 255, 0.08);
  margin: 8px;
}

.photo-placeholder span {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.photo-placeholder--wide {
  aspect-ratio: 16 / 9;
}

.photo-placeholder--square {
  aspect-ratio: 1 / 1;
}

/* ============================================
   INFORMATION / HOURS SECTION
   ============================================ */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 60px;
  align-items: start;
}

.info-grid-divider {
  width: 1px;
  height: 100%;
  background: var(--border-subtle);
  position: relative;
}

.info-grid-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 40px;
  background: var(--neon-pink);
  box-shadow: 0 0 8px rgba(255, 45, 123, 0.5);
}

.info-block h3 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--neon-cyan);
  text-shadow: 0 0 6px rgba(0, 229, 255, 0.3);
  margin-bottom: 24px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.info-row:last-child {
  border-bottom: none;
}

.info-row dt {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 400;
}

.info-row dd {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 400;
  text-align: right;
}

/* ============================================
   MENU PAGE
   ============================================ */
.menu-hero {
  padding-top: 140px;
  padding-bottom: 60px;
  text-align: center;
}

.menu-category {
  margin-bottom: 80px;
}

.menu-category:last-child {
  margin-bottom: 0;
}

.menu-category-title {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: 4px;
  color: var(--neon-pink);
  text-shadow: var(--glow-pink);
  margin-bottom: 8px;
}

.menu-category-sub {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 48px;
}

.menu-list {
  list-style: none;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: border-color 0.3s ease;
}

.menu-item:hover {
  border-bottom-color: var(--border-neon-pink);
}

.menu-item:first-child {
  border-top: 1px solid var(--border-subtle);
}

.menu-item-info {
  flex: 1;
}

.menu-item-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.menu-item:hover .menu-item-name {
  color: var(--neon-pink);
  text-shadow: 0 0 6px rgba(255, 45, 123, 0.2);
}

.menu-item-desc {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 4px;
  line-height: 1.5;
}

.menu-item-price {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--neon-cyan);
  text-shadow: 0 0 6px rgba(0, 229, 255, 0.2);
  margin-left: 32px;
  white-space: nowrap;
}

.menu-note {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

/* Drink sub-sections */
.menu-sub-section {
  margin-bottom: 56px;
}

.menu-sub-section:last-child {
  margin-bottom: 0;
}

.menu-sub-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--neon-yellow);
  text-shadow: 0 0 6px rgba(255, 230, 0, 0.2);
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 2px solid var(--neon-yellow);
  box-shadow: -2px 0 8px rgba(255, 230, 0, 0.1);
}

/* ============================================
   ACCESS PAGE
   ============================================ */
.access-hero {
  padding-top: 140px;
  padding-bottom: 60px;
  text-align: center;
}

.access-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.map-container {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border-neon-cyan);
  overflow: hidden;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: contrast(1.05);
}

.access-details {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.access-block h3 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--neon-cyan);
  text-shadow: 0 0 6px rgba(0, 229, 255, 0.3);
  margin-bottom: 16px;
}

.access-block p,
.access-block address {
  font-style: normal;
  font-size: 14px;
  line-height: 2;
  color: var(--text-secondary);
}

.access-block a {
  color: var(--neon-pink);
  text-shadow: 0 0 4px rgba(255, 45, 123, 0.2);
  transition: text-shadow 0.3s ease;
}

.access-block a:hover {
  text-shadow: 0 0 8px rgba(255, 45, 123, 0.5);
}

.access-route {
  list-style: none;
}

.access-route li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.access-route li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--neon-pink);
  box-shadow: 0 0 6px rgba(255, 45, 123, 0.5);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 60px 48px 40px;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 48px;
  width: 40px;
  height: 1px;
  background: var(--neon-pink);
  box-shadow: 0 0 8px rgba(255, 45, 123, 0.5);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 4px;
  color: var(--neon-pink);
  text-shadow: var(--glow-pink);
}

.footer-brand .footer-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-dim);
  margin-top: 4px;
  text-shadow: none;
}

.footer-nav {
  display: flex;
  gap: 32px;
}

.footer-nav a {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 6px rgba(0, 229, 255, 0.3);
}

.footer-copy {
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 1px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes neonFlicker {
  0%, 100% { opacity: 1; }
  92% { opacity: 1; }
  93% { opacity: 0.8; }
  94% { opacity: 1; }
  96% { opacity: 0.9; }
  97% { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(0.6);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes neonPulse {
  0%, 100% {
    text-shadow:
      0 0 10px rgba(255, 45, 123, 0.6),
      0 0 30px rgba(255, 45, 123, 0.3),
      0 0 60px rgba(255, 45, 123, 0.15);
  }
  50% {
    text-shadow:
      0 0 14px rgba(255, 45, 123, 0.8),
      0 0 40px rgba(255, 45, 123, 0.4),
      0 0 80px rgba(255, 45, 123, 0.2);
  }
}

/* Reveal animation classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   NEON BORDER ACCENTS
   ============================================ */
.neon-line-h {
  width: 100%;
  height: 1px;
  background: var(--neon-pink);
  box-shadow: var(--glow-pink);
  opacity: 0.4;
}

.neon-line-cyan {
  background: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
}

/* ============================================
   CTA / RESERVE BUTTON (if needed)
   ============================================ */
.neon-btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 40px;
  border: 1px solid var(--neon-pink);
  color: var(--neon-pink);
  text-shadow: 0 0 4px rgba(255, 45, 123, 0.3);
  box-shadow: 0 0 8px rgba(255, 45, 123, 0.15), inset 0 0 8px rgba(255, 45, 123, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  background: transparent;
}

.neon-btn:hover {
  background: rgba(255, 45, 123, 0.08);
  box-shadow: 0 0 16px rgba(255, 45, 123, 0.3), inset 0 0 16px rgba(255, 45, 123, 0.08);
  text-shadow: 0 0 8px rgba(255, 45, 123, 0.5);
}

.neon-btn--cyan {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  text-shadow: 0 0 4px rgba(0, 229, 255, 0.3);
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.15), inset 0 0 8px rgba(0, 229, 255, 0.05);
}

.neon-btn--cyan:hover {
  background: rgba(0, 229, 255, 0.08);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.3), inset 0 0 16px rgba(0, 229, 255, 0.08);
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
}

/* ============================================
   RESERVE PAGE
   ============================================ */
.reserve-hero {
  padding-top: 140px;
  padding-bottom: 60px;
  text-align: center;
}

.reserve-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}

/* Step indicator */
.reserve-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
  padding: 0 4px;
}

.reserve-step {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.35;
  transition: opacity 0.4s ease;
}

.reserve-step.active {
  opacity: 1;
}

.reserve-step.completed {
  opacity: 0.7;
}

.step-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--text-dim);
  transition: color 0.4s ease, text-shadow 0.4s ease;
}

.reserve-step.active .step-num {
  color: var(--neon-pink);
  text-shadow: var(--glow-pink);
}

.reserve-step.completed .step-num {
  color: var(--neon-cyan);
  text-shadow: 0 0 6px rgba(0, 229, 255, 0.3);
}

.step-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.4s ease;
}

.reserve-step.active .step-label {
  color: var(--text-primary);
}

.step-connector {
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
  margin: 0 16px;
  position: relative;
}

.step-connector::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--neon-pink);
  box-shadow: 0 0 6px rgba(255, 45, 123, 0.4);
  transition: width 0.6s ease;
}

.step-connector.filled::after {
  width: 100%;
}

/* Form steps */
.form-step {
  display: none;
}

.form-step--active {
  display: block;
  animation: fadeInStep 0.5s ease forwards;
}

@keyframes fadeInStep {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.form-section {
  margin-bottom: 32px;
}

.form-section-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--neon-cyan);
  text-shadow: 0 0 6px rgba(0, 229, 255, 0.3);
  margin-bottom: 32px;
  padding-left: 16px;
  border-left: 2px solid var(--neon-cyan);
  box-shadow: -2px 0 8px rgba(0, 229, 255, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 0;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.label-text {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.label-required {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--neon-pink);
  border: 1px solid rgba(255, 45, 123, 0.3);
  padding: 2px 6px;
  border-radius: 0;
}

.label-optional {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--border-subtle);
  padding: 2px 6px;
}

/* Input fields */
.form-input {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-input::placeholder {
  color: var(--text-dim);
}

.form-input:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.15), 0 0 16px rgba(0, 229, 255, 0.08);
  background: rgba(17, 17, 34, 0.8);
}

.form-input.has-error {
  border-color: var(--neon-pink);
  box-shadow: 0 0 0 1px rgba(255, 45, 123, 0.15), 0 0 12px rgba(255, 45, 123, 0.08);
}

.form-input.has-value {
  border-color: rgba(0, 229, 255, 0.2);
}

.form-error {
  display: block;
  font-size: 11px;
  color: var(--neon-pink);
  text-shadow: 0 0 4px rgba(255, 45, 123, 0.3);
  margin-top: 6px;
  min-height: 16px;
  letter-spacing: 0.5px;
}

/* Select styling */
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238888aa' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-select:focus {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2300e5ff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-select option {
  background: var(--bg-dark);
  color: var(--text-primary);
}

/* Date input fix */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.6);
  cursor: pointer;
}

/* Textarea */
.form-textarea {
  resize: vertical;
  min-height: 100px;
  max-height: 200px;
  line-height: 1.7;
}

/* Seat type selector */
.seat-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.seat-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.seat-option-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.seat-option-box::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.seat-option-icon {
  color: var(--text-dim);
  transition: color 0.3s ease, filter 0.3s ease;
}

.seat-option-label {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.3s ease;
}

.seat-option-box:hover {
  border-color: rgba(0, 229, 255, 0.3);
}

.seat-option-box:hover .seat-option-icon {
  color: var(--text-secondary);
}

.seat-option input:checked + .seat-option-box {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.12), inset 0 0 12px rgba(0, 229, 255, 0.04);
  background: rgba(0, 229, 255, 0.03);
}

.seat-option input:checked + .seat-option-box .seat-option-icon {
  color: var(--neon-cyan);
  filter: drop-shadow(0 0 4px rgba(0, 229, 255, 0.4));
}

.seat-option input:checked + .seat-option-box .seat-option-label {
  color: var(--neon-cyan);
}

/* Form navigation */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}

/* Confirm summary */
.confirm-summary {
  margin-top: 32px;
  border: 1px solid var(--border-neon-cyan);
  background: rgba(0, 229, 255, 0.02);
  padding: 32px;
  position: relative;
}

.confirm-summary::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 40px;
  height: 1px;
  background: var(--neon-cyan);
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
}

.confirm-summary-title {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--neon-yellow);
  text-shadow: 0 0 6px rgba(255, 230, 0, 0.2);
  margin-bottom: 24px;
}

.confirm-grid {
  display: flex;
  flex-direction: column;
}

.confirm-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.confirm-row:last-child {
  border-bottom: none;
}

.confirm-label {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.confirm-value {
  font-size: 14px;
  color: var(--text-primary);
  text-align: right;
}

/* Sidebar */
.reserve-sidebar {
  position: sticky;
  top: 96px;
}

.sidebar-card {
  border: 1px solid var(--border-neon-pink);
  background: var(--bg-surface);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.sidebar-card-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 45, 123, 0.04);
  filter: blur(40px);
  pointer-events: none;
}

.sidebar-title {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 3px;
  color: var(--neon-pink);
  text-shadow: var(--glow-pink);
  margin-bottom: 28px;
}

.sidebar-detail {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.sidebar-detail:last-of-type {
  border-bottom: none;
}

.sidebar-detail-label {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.sidebar-detail-value {
  font-size: 14px;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.sidebar-detail-value.filled {
  color: var(--neon-cyan);
  text-shadow: 0 0 6px rgba(0, 229, 255, 0.2);
}

.sidebar-divider {
  width: 100%;
  height: 1px;
  background: var(--neon-pink);
  box-shadow: 0 0 4px rgba(255, 45, 123, 0.3);
  margin: 16px 0;
  opacity: 0.3;
}

.sidebar-info {
  margin-top: 24px;
  padding-top: 16px;
}

.sidebar-info p {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 2;
  letter-spacing: 0.5px;
}

/* Submit loading dots */
.submit-loading {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.loading-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-cyan);
  animation: loadingPulse 1s ease-in-out infinite;
}

.loading-dot:nth-child(2) {
  animation-delay: 0.15s;
}

.loading-dot:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes loadingPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* ============================================
   SUCCESS MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(5, 5, 10, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  max-width: 480px;
  width: 90%;
  border: 1px solid var(--border-neon-cyan);
  background: var(--bg-dark);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 200px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.06);
  filter: blur(60px);
  pointer-events: none;
}

.modal-icon {
  margin-bottom: 24px;
  animation: modalIconPop 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

@keyframes modalIconPop {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 3px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.modal-title .neon-cyan {
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
}

.modal-sub {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.modal-details {
  text-align: left;
  margin-bottom: 32px;
  border: 1px solid var(--border-subtle);
  padding: 20px 24px;
}

.modal-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 13px;
}

.modal-detail-row:last-child {
  border-bottom: none;
}

.modal-detail-row span:first-child {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.modal-detail-row span:last-child {
  color: var(--text-primary);
}

.modal-note {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 32px;
}

.modal-close-btn {
  min-width: 160px;
}

/* ============================================
   404 PAGE
   ============================================ */
.error-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.error-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.error-grid {
  opacity: 0.3;
  animation: gridDistort 8s ease-in-out infinite;
}

@keyframes gridDistort {
  0%, 100% { transform: perspective(500px) rotateX(55deg) skewX(0deg); }
  25% { transform: perspective(500px) rotateX(55deg) skewX(-1deg); }
  50% { transform: perspective(500px) rotateX(58deg) skewX(1deg); }
  75% { transform: perspective(500px) rotateX(53deg) skewX(-0.5deg); }
}

.error-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.error-glow--pink {
  width: 400px;
  height: 400px;
  top: 20%;
  left: 30%;
  background: rgba(255, 45, 123, 0.06);
  animation: glowDrift 6s ease-in-out infinite alternate;
}

.error-glow--cyan {
  width: 350px;
  height: 350px;
  top: 30%;
  right: 25%;
  background: rgba(0, 229, 255, 0.04);
  animation: glowDrift 8s ease-in-out infinite alternate-reverse;
}

@keyframes glowDrift {
  from { transform: translate(0, 0); }
  to { transform: translate(20px, -15px); }
}

.error-content {
  position: relative;
  z-index: 2;
}

/* --- Glitch 404 number --- */
.error-code {
  font-family: var(--font-display);
  font-size: clamp(120px, 22vw, 280px);
  letter-spacing: 12px;
  line-height: 0.85;
  color: var(--neon-pink);
  text-shadow:
    0 0 10px rgba(255, 45, 123, 0.6),
    0 0 40px rgba(255, 45, 123, 0.25),
    0 0 80px rgba(255, 45, 123, 0.1);
  position: relative;
  animation: neonDie 5s ease-in-out infinite;
  user-select: none;
}

.error-code-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code-layer--back {
  color: var(--neon-cyan);
  text-shadow:
    0 0 10px rgba(0, 229, 255, 0.5),
    0 0 30px rgba(0, 229, 255, 0.2);
  clip-path: inset(0 0 0 0);
  animation: glitchBack 4s ease-in-out infinite;
}

.error-code-layer--front {
  color: var(--neon-pink);
  text-shadow:
    0 0 10px rgba(255, 45, 123, 0.6),
    0 0 30px rgba(255, 45, 123, 0.3);
  clip-path: inset(0 0 0 0);
  animation: glitchFront 4s ease-in-out infinite;
}

@keyframes glitchFront {
  0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
  5% { clip-path: inset(20% 0 60% 0); transform: translate(-4px, 0); }
  5.5% { clip-path: inset(0 0 0 0); transform: translate(0); }
  40% { clip-path: inset(0 0 0 0); transform: translate(0); }
  41% { clip-path: inset(65% 0 0 0); transform: translate(3px, 0); }
  41.5% { clip-path: inset(0 0 0 0); transform: translate(0); }
  42% { clip-path: inset(0 0 70% 0); transform: translate(-2px, 0); }
  42.3% { clip-path: inset(0 0 0 0); transform: translate(0); }
  80% { clip-path: inset(0 0 0 0); transform: translate(0); }
  80.5% { clip-path: inset(40% 0 30% 0); transform: translate(5px, 0); }
  81% { clip-path: inset(0 0 0 0); transform: translate(0); }
}

@keyframes glitchBack {
  0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
  5% { clip-path: inset(60% 0 10% 0); transform: translate(4px, 0); }
  5.5% { clip-path: inset(0 0 0 0); transform: translate(0); }
  40% { clip-path: inset(0 0 0 0); transform: translate(0); }
  41% { clip-path: inset(0 0 60% 0); transform: translate(-3px, 0); }
  41.5% { clip-path: inset(0 0 0 0); transform: translate(0); }
  42% { clip-path: inset(70% 0 0 0); transform: translate(2px, 0); }
  42.3% { clip-path: inset(0 0 0 0); transform: translate(0); }
  80% { clip-path: inset(0 0 0 0); transform: translate(0); }
  80.5% { clip-path: inset(30% 0 40% 0); transform: translate(-5px, 0); }
  81% { clip-path: inset(0 0 0 0); transform: translate(0); }
}

@keyframes neonDie {
  0%, 100% { opacity: 1; }
  30% { opacity: 1; }
  31% { opacity: 0.4; }
  32% { opacity: 1; }
  33% { opacity: 0.7; }
  34% { opacity: 1; }
  70% { opacity: 1; }
  71% { opacity: 0.85; }
  72% { opacity: 1; }
}

.error-divider {
  width: 60px;
  height: 1px;
  background: var(--neon-pink);
  box-shadow: var(--glow-pink);
  margin: 32px auto;
  animation: dividerFlicker 3s ease-in-out infinite;
}

@keyframes dividerFlicker {
  0%, 100% { opacity: 1; width: 60px; }
  50% { opacity: 0.6; }
  85% { opacity: 1; width: 60px; }
  86% { opacity: 0.3; width: 40px; }
  88% { opacity: 1; width: 60px; }
}

.error-label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--neon-cyan);
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.3);
  margin-bottom: 20px;
}

.error-message {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 2;
  max-width: 400px;
  margin: 0 auto 48px;
  letter-spacing: 0.5px;
}

.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Broken decorative line */
.error-broken-line {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.error-broken-line span {
  display: block;
  height: 1px;
  background: var(--neon-pink);
  box-shadow: 0 0 4px rgba(255, 45, 123, 0.4);
  opacity: 0.25;
}

.error-broken-line span:nth-child(1) {
  width: 30px;
  animation: brokenPulse 3s ease-in-out infinite;
}

.error-broken-line span:nth-child(2) {
  width: 8px;
  animation: brokenPulse 3s ease-in-out 0.5s infinite;
}

.error-broken-line span:nth-child(3) {
  width: 16px;
  animation: brokenPulse 3s ease-in-out 1s infinite;
}

@keyframes brokenPulse {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.6; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .site-header {
    padding: 0 24px;
  }

  .hamburger {
    display: flex;
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-dark);
    border-left: 1px solid var(--border-subtle);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 48px;
    gap: 32px;
    transition: right 0.4s ease;
  }

  .header-nav.open {
    right: 0;
  }

  .header-nav a {
    font-size: 16px;
    letter-spacing: 3px;
  }

  .section {
    padding: 80px 24px;
  }

  .concept-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .info-grid-divider {
    display: none;
  }

  .access-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-title {
    letter-spacing: 4px;
  }

  .menu-hero,
  .access-hero,
  .reserve-hero {
    padding-top: 120px;
    padding-bottom: 40px;
  }

  .reserve-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .reserve-sidebar {
    position: static;
    order: -1;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .seat-options {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .reserve-steps {
    gap: 0;
  }

  .step-label {
    display: none;
  }

  .step-connector {
    margin: 0 12px;
  }

  .confirm-summary {
    padding: 24px;
  }

  .modal-content {
    padding: 40px 28px;
  }

  .site-footer {
    padding: 40px 24px 32px;
  }

  .site-footer::before {
    left: 24px;
  }
}

@media (max-width: 480px) {
  .hero-tagline {
    letter-spacing: 4px;
    font-size: 12px;
  }

  .hero-location {
    letter-spacing: 3px;
    font-size: 10px;
  }

  .menu-item {
    flex-direction: column;
    gap: 6px;
  }

  .menu-item-price {
    margin-left: 0;
  }
}
