@import url('https://fonts.googleapis.com/css2?family=Black+Han+Sans&family=Space+Mono:wght@400;700&family=Noto+Sans+KR:wght@300;400;700;900&display=swap');

:root {
  --black: #0A0A0A;
  --card-bg: #111111;
  --red: #FF2D55;
  --cyan: #00F5FF;
  --gold: #FFB800;
  --text: #E8E8E0;
  --text-dim: #888880;
  --border-red: rgba(255, 45, 85, 0.2);
  --border-cyan: rgba(0, 245, 255, 0.2);
  --nav-height: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* SCANLINES */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.03) 2px,
    rgba(0,0,0,0.03) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

/* CUSTOM CURSOR */
.cursor {
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s;
  mix-blend-mode: screen;
}

.cursor.cursor--hover {
  width: 32px;
  height: 32px;
  background: rgba(255, 45, 85, 0.3);
  border: 1px solid var(--red);
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--cyan); }

/* TYPOGRAPHY */
h1, h2, h3, .logo-text { font-family: 'Black Han Sans', sans-serif; }
.mono { font-family: 'Space Mono', monospace; }

/* GLITCH ANIMATION */
@keyframes glitch-1 {
  0%, 100% { text-shadow: 2px 0 var(--red), -2px 0 var(--cyan); clip-path: none; }
  20% { text-shadow: -2px 0 var(--red), 2px 0 var(--cyan); clip-path: polygon(0 20%, 100% 20%, 100% 30%, 0 30%); transform: translate(-2px, 0); }
  40% { text-shadow: 4px 0 var(--red), -4px 0 var(--cyan); clip-path: polygon(0 60%, 100% 60%, 100% 70%, 0 70%); transform: translate(2px, 0); }
  60% { text-shadow: 0 0 var(--red), 0 0 var(--cyan); clip-path: none; transform: translate(0, 0); }
  80% { text-shadow: -3px 0 var(--red), 3px 0 var(--cyan); clip-path: polygon(0 80%, 100% 80%, 100% 90%, 0 90%); transform: translate(1px, 0); }
}

@keyframes glitch-2 {
  0%, 100% { opacity: 1; transform: none; }
  10% { opacity: 0.8; transform: skewX(-5deg); }
  30% { opacity: 1; transform: skewX(0deg); }
  50% { opacity: 0.9; transform: skewX(3deg); }
  70% { opacity: 1; transform: skewX(0deg); }
}

@keyframes neon-pulse {
  0%, 100% { text-shadow: 0 0 7px var(--red), 0 0 10px var(--red), 0 0 21px var(--red); }
  50% { text-shadow: 0 0 4px var(--red), 0 0 7px var(--red), 0 0 14px var(--red); }
}

@keyframes neon-pulse-cyan {
  0%, 100% { text-shadow: 0 0 7px var(--cyan), 0 0 10px var(--cyan), 0 0 21px var(--cyan); }
  50% { text-shadow: 0 0 4px var(--cyan), 0 0 7px var(--cyan), 0 0 14px var(--cyan); }
}

@keyframes flicker {
  0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% { opacity: 1; }
  20%, 21.999%, 63%, 63.999%, 65%, 69.999% { opacity: 0.4; }
}

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

@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

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

@keyframes border-spin {
  to { transform: rotate(360deg); }
}

/* GLITCH CLASSES */
.glitch {
  position: relative;
  animation: glitch-2 8s infinite;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  color: var(--red);
  animation: glitch-1 8s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  transform: translate(-2px, -2px);
  opacity: 0.8;
}

.glitch::after {
  color: var(--cyan);
  animation: glitch-1 8s infinite reverse;
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
  transform: translate(2px, 2px);
  opacity: 0.8;
}

/* NEON UTILITIES */
.neon-red {
  color: var(--red);
  text-shadow: 0 0 7px var(--red), 0 0 10px var(--red), 0 0 21px var(--red);
  animation: neon-pulse 2s infinite;
}

.neon-cyan {
  color: var(--cyan);
  text-shadow: 0 0 7px var(--cyan), 0 0 10px var(--cyan), 0 0 21px var(--cyan);
  animation: neon-pulse-cyan 2s infinite;
}

/* SECTION SEPARATOR */
.sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  margin: 0;
  border: none;
}

/* LABEL STYLE */
.label {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: none;
  transition: all 0.2s;
  min-height: 48px;
  position: relative;
  overflow: hidden;
}

.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 45, 85, 0.4);
}

.btn-red:hover {
  background: #ff0040;
  box-shadow: 0 0 30px rgba(255, 45, 85, 0.7), 0 0 60px rgba(255, 45, 85, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan);
  box-shadow: 0 0 10px rgba(0, 245, 255, 0.15);
}

.btn-outline:hover {
  background: rgba(0, 245, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
  transform: translateY(-2px);
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 45, 85, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 45, 85, 0.5);
  animation: neon-pulse 3s infinite;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.5rem;
  color: var(--text);
  letter-spacing: 0.1em;
}

.logo-text span {
  color: var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.2s;
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  flex-shrink: 0;
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--red);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--red);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 2rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--red); }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: calc(var(--nav-height) + 60px) 40px 60px;
  position: relative;
  overflow: hidden;
  gap: 40px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255, 45, 85, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(0, 245, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Grain overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.4;
  pointer-events: none;
}

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

.hero-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--cyan);
  display: inline-block;
  border: 1px solid rgba(0, 245, 255, 0.3);
  padding: 6px 14px;
  margin-bottom: 24px;
  animation: neon-pulse-cyan 3s infinite;
}

.hero-title {
  font-family: 'Black Han Sans', sans-serif;
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.9;
  color: var(--text);
  margin-bottom: 12px;
  position: relative;
}

.hero-subtitle-kr {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: clamp(1.5rem, 4vw, 3.5rem);
  color: var(--red);
  font-weight: 900;
  display: block;
  margin-bottom: 24px;
  text-shadow: 0 0 20px rgba(255, 45, 85, 0.5);
}

.hero-slogan {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 420px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image-wrap {
  position: relative;
  border: 1px solid rgba(255, 45, 85, 0.4);
  box-shadow: 0 0 30px rgba(255, 45, 85, 0.2), inset 0 0 30px rgba(255, 45, 85, 0.05);
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(255,45,85,0.5), transparent 40%, rgba(0,245,255,0.3) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-image-wrap img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.1);
}

.hero-image-label {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  z-index: 2;
}

/* DEPARTURES BAR */
.hero-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0, 0, 0, 0.8);
  border-top: 1px solid rgba(255, 184, 0, 0.3);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  z-index: 2;
  overflow-x: auto;
}

.hero-bar-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-bar-times {
  display: flex;
  gap: 32px;
  flex-wrap: nowrap;
}

.hero-bar-item {
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  color: var(--text-dim);
  white-space: nowrap;
  letter-spacing: 0.1em;
}

.hero-bar-item strong {
  color: var(--gold);
  animation: flicker 6s infinite;
}

/* ========== FEATURES ========== */
.features {
  padding: 80px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-red);
}

.feature-card {
  background: var(--card-bg);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,45,85,0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover::before { opacity: 1; }

.feature-card:hover {
  box-shadow: 0 0 30px rgba(255, 45, 85, 0.2);
  z-index: 1;
}

.feature-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}

.feature-title {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.feature-kr {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-dim);
  display: block;
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ========== SECTION HEADER ========== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .label {
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Black Han Sans', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: var(--text);
}

.section-title .kr {
  color: var(--red);
  font-size: 0.7em;
  display: block;
  margin-top: 4px;
}

/* ========== MENU PREVIEW ========== */
.menu-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--black) 0%, #0d0d0d 100%);
}

.menu-inner { padding: 0 40px; }

.menu-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  justify-content: center;
}

.menu-filter {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--border-red);
  color: var(--text-dim);
  cursor: none;
  transition: all 0.2s;
  min-height: 48px;
}

.menu-filter:hover,
.menu-filter.active {
  border-color: var(--red);
  color: var(--red);
  background: rgba(255, 45, 85, 0.08);
  box-shadow: 0 0 15px rgba(255, 45, 85, 0.15);
}

/* Horizontal scroll on mobile, grid on desktop */
.menu-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-red);
}

.menu-card {
  background: var(--card-bg);
  overflow: hidden;
  transition: all 0.3s;
  cursor: none;
}

.menu-card[data-cat] { display: block; }
.menu-card.hidden { display: none; }

.menu-card:hover {
  box-shadow: 0 0 30px rgba(255, 45, 85, 0.25), 0 0 60px rgba(255, 45, 85, 0.1);
  transform: translateY(-4px);
  z-index: 1;
  position: relative;
}

.menu-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(0.8) saturate(1.2);
  transition: filter 0.3s;
}

.menu-card:hover .menu-card-img {
  filter: brightness(0.9) saturate(1.4);
}

.menu-card-body {
  padding: 20px;
}

.menu-card-badge {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--red);
  padding: 3px 8px;
  display: inline-block;
  margin-bottom: 12px;
}

.menu-card-badge.cyan { background: var(--cyan); color: var(--black); }
.menu-card-badge.gold { background: var(--gold); color: var(--black); }

.menu-card-name {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 2px;
}

.menu-card-name-kr {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.menu-card-desc {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 12px;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-card-price {
  font-family: 'Space Mono', monospace;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
}

.menu-card-spice {
  font-size: 0.75rem;
}

.menu-cta {
  text-align: center;
  margin-top: 60px;
}

/* ========== EXPERIENCE ========== */
.experience-section {
  padding: 100px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-red);
}

.exp-card {
  background: var(--black);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.exp-card::after {
  content: attr(data-num);
  position: absolute;
  top: -20px;
  right: -10px;
  font-family: 'Black Han Sans', sans-serif;
  font-size: 8rem;
  color: rgba(255, 45, 85, 0.04);
  line-height: 1;
  pointer-events: none;
}

.exp-num {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--red);
  margin-bottom: 20px;
  display: block;
}

.exp-title {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.1;
}

.exp-title .kr {
  display: block;
  color: var(--red);
  font-size: 0.9rem;
  margin-top: 4px;
}

.exp-text {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ========== STATS ========== */
.stats-section {
  padding: 80px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 1px;
  background: var(--border-red);
}

.stat {
  background: var(--card-bg);
  padding: 48px 24px;
}

.stat-num {
  font-family: 'Black Han Sans', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--red);
  display: block;
  text-shadow: 0 0 20px rgba(255, 45, 85, 0.4);
}

.stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-top: 8px;
  display: block;
}

/* ========== REVIEWS ========== */
.reviews-section {
  padding: 100px 40px;
  background: #0d0d0d;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 1px;
  background: var(--border-red);
  margin-top: 60px;
}

.review-card {
  background: var(--card-bg);
  padding: 40px;
  position: relative;
}

.review-card.big { grid-row: span 1; }

.review-quote {
  font-size: 3rem;
  color: var(--red);
  line-height: 0.5;
  font-family: 'Black Han Sans', sans-serif;
  margin-bottom: 16px;
  opacity: 0.5;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

/* ========== LOCATION ========== */
.location-section {
  padding: 100px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.location-address {
  font-family: 'Black Han Sans', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 32px;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.location-item .icon {
  color: var(--red);
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 24px;
}

.location-item a {
  color: var(--cyan);
  text-decoration: none;
}

.location-item a:hover { text-decoration: underline; }

.location-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.map-placeholder {
  background: var(--card-bg);
  border: 1px solid var(--border-red);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: var(--text-dim);
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  position: relative;
  overflow: hidden;
}

.map-placeholder .map-icon { font-size: 3rem; opacity: 0.3; }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}

.hours-table tr {
  border-bottom: 1px solid var(--border-red);
}

.hours-table td {
  padding: 10px 0;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
}

.hours-table td:last-child {
  color: var(--gold);
  text-align: right;
}

.hours-table tr.closed td { color: var(--text-dim); opacity: 0.5; }

/* ========== FOOTER ========== */
.footer {
  background: #050505;
  padding: 80px 40px 40px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-red);
}

.footer-watermark {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Black Han Sans', sans-serif;
  font-size: 20vw;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.footer-brand .logo-text {
  font-size: 1.2rem;
  margin-bottom: 16px;
  display: block;
}

.footer-mission {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-kr {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 1.1rem;
  color: rgba(255, 45, 85, 0.4);
  font-weight: 900;
}

.footer-heading {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-item {
  font-size: 0.85rem;
  color: var(--text-dim);
  display: flex;
  gap: 10px;
}

.footer-contact-item a {
  color: var(--cyan);
  text-decoration: none;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--border-red);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-dim);
  position: relative;
  z-index: 1;
}

.footer-bottom a { color: var(--text-dim); text-decoration: none; }
.footer-bottom a:hover { color: var(--red); }

/* ========== PAGE HEADER (subpages) ========== */
.page-header {
  padding: calc(var(--nav-height) + 80px) 40px 80px;
  position: relative;
  text-align: center;
  border-bottom: 1px solid var(--border-red);
}

.page-title {
  font-family: 'Black Han Sans', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--text);
  line-height: 0.9;
}

.page-title .kr {
  display: block;
  color: var(--red);
  font-size: 0.5em;
  margin-bottom: 8px;
  font-size: 0.6em;
}

.page-desc {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 600px;
  margin: 20px auto 0;
}

/* ========== MENU PAGE FULL ========== */
.menu-page { padding: 60px 40px; }

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

.category-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-red);
}

.category-kr {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--red);
  text-shadow: 0 0 15px rgba(255, 45, 85, 0.3);
}

.category-pl {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.menu-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-red);
}

/* BANCHAN section */
.banchan-section {
  background: var(--card-bg);
  padding: 60px 40px;
  border: 1px solid var(--border-red);
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.banchan-section::before {
  content: '반찬';
  position: absolute;
  right: -20px;
  top: -20px;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 10rem;
  font-weight: 900;
  color: rgba(255, 45, 85, 0.04);
  pointer-events: none;
  line-height: 1;
}

/* ========== TEAM CARDS ========== */
.team-section { padding: 100px 40px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-red);
  max-width: 900px;
  margin: 0 auto;
}

.team-card {
  background: var(--card-bg);
  overflow: hidden;
  transition: all 0.3s;
}

.team-card:hover {
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.15);
}

.team-card-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(30%) brightness(0.85);
  transition: all 0.3s;
}

.team-card:hover .team-card-img {
  filter: grayscale(0%) brightness(0.9);
}

.team-card-body { padding: 28px; }

.team-card-role {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.team-card-name {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 12px;
}

.team-card-bio {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ========== PHILOSOPHY / TIMELINE ========== */
.philosophy-section { padding: 100px 40px; background: #0d0d0d; }

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 60px auto 0;
  padding-left: 40px;
  border-left: 2px solid var(--red);
  position: relative;
}

.steps-list::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--red), var(--cyan), var(--red));
  box-shadow: 0 0 10px rgba(255, 45, 85, 0.5);
}

.step {
  padding: 32px 0;
  position: relative;
  border-bottom: 1px solid var(--border-red);
}

.step:last-child { border-bottom: none; }

.step::before {
  content: '';
  position: absolute;
  left: -49px;
  top: 36px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px rgba(255, 45, 85, 0.7);
}

.step-num {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--red);
  margin-bottom: 8px;
}

.step-title {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 10px;
}

.step-text {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ========== CONTACT FORM ========== */
.contact-section { padding: 60px 40px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }

.form-group { margin-bottom: 24px; }

.form-label {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--border-red);
  color: var(--text);
  padding: 14px 16px;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 48px;
}

.form-control:focus {
  border-color: var(--red);
  box-shadow: 0 0 15px rgba(255, 45, 85, 0.15);
}

textarea.form-control { min-height: 140px; resize: vertical; }

/* ========== LEGAL PAGES ========== */
.legal-section {
  padding: 60px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.legal-section h2 {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 1.5rem;
  color: var(--text);
  margin: 40px 0 16px;
}

.legal-section h2:first-child { margin-top: 0; }

.legal-section p, .legal-section li {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-section ul, .legal-section ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

/* ========== 404 PAGE ========== */
.page-404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.error-code {
  font-family: 'Black Han Sans', sans-serif;
  font-size: clamp(6rem, 20vw, 16rem);
  line-height: 0.9;
  color: var(--red);
  text-shadow: 0 0 40px rgba(255, 45, 85, 0.4);
  display: block;
  animation: glitch-2 4s infinite;
}

.error-kr {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  margin: 16px 0 8px;
}

/* ========== RESERVATION PAGE ========== */
.reservation-section { padding: 80px 40px; }

.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.big-action {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.btn-xl {
  padding: 20px 40px;
  font-size: 1rem;
  letter-spacing: 0.2em;
}

.info-box {
  background: var(--card-bg);
  border: 1px solid var(--border-red);
  padding: 28px;
  margin-bottom: 24px;
}

.info-box-title {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.info-box p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
  padding: calc(var(--nav-height) + 20px) 40px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-dim);
}

.breadcrumb a { color: var(--text-dim); text-decoration: none; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--red); }

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* ========== PREFERS REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding-top: calc(var(--nav-height) + 40px); }
  .hero-image { display: none; }
  .hero-title { font-size: clamp(4rem, 15vw, 8rem); }
  .hero-bar { position: relative; }

  .features { grid-template-columns: repeat(2, 1fr); }
  .menu-cards { grid-template-columns: repeat(2, 1fr); }
  .experience-section { grid-template-columns: 1fr; }
  .stats-section { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .location-section { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .menu-full-grid { grid-template-columns: repeat(2, 1fr); }
  .reservation-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 0 20px 100px; padding-top: calc(var(--nav-height) + 40px); }
  .hero-bar { padding: 12px 20px; flex-direction: column; align-items: flex-start; gap: 8px; }

  .features { grid-template-columns: 1fr 1fr; gap: 1px; }
  .menu-inner { padding: 0 20px; }

  .menu-cards {
    display: flex;
    overflow-x: auto;
    background: none;
    gap: 12px;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .menu-card {
    flex-shrink: 0;
    width: 260px;
    background: var(--card-bg);
    border: 1px solid var(--border-red);
  }

  .menu-filters { gap: 6px; }
  .menu-filter { padding: 8px 14px; font-size: 0.7rem; }

  .stats-section { grid-template-columns: repeat(2, 1fr); }
  .experience-section { padding: 60px 20px; }
  .exp-card { padding: 40px 24px; }

  .location-section { padding: 60px 20px; grid-template-columns: 1fr; }
  .team-section { padding: 60px 20px; }
  .team-grid { grid-template-columns: 1fr; }

  .footer { padding: 60px 20px 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }

  .page-header { padding: calc(var(--nav-height) + 40px) 20px 40px; }
  .menu-page { padding: 40px 20px; }
  .menu-full-grid { grid-template-columns: 1fr; }

  .section-header { padding: 0 20px; }
  .reviews-section { padding: 60px 20px; }
  .contact-section { padding: 40px 20px; }
  .reservation-section { padding: 40px 20px; }
  .legal-section { padding: 40px 20px; }
  .team-section { padding: 60px 20px; }
  .philosophy-section { padding: 60px 20px; }
  .breadcrumb { padding: calc(var(--nav-height) + 10px) 20px 0; }
}

@media (max-width: 480px) {
  .features { grid-template-columns: 1fr; }
  .stats-section { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .big-action .btn { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
