/* ============================================================
   ROOT & RESET
============================================================ */
:root {
  --bg:           #0D0D0D;
  --bg-card:      #161616;
  --bg-dark:      #111111;
  --red:          #C0392B;
  --red-light:    #E74C3C;
  --gold:         #F39C12;
  --gold-light:   #F5C642;
  --text:         #F0F0F0;
  --text-muted:   #888;
  --text-dim:     #555;
  --border:       rgba(255,255,255,0.07);
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:       0 4px 24px rgba(0,0,0,0.5);
  --glow-red:     0 0 40px rgba(192,57,43,0.25);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3, h4 {
  font-family: 'Noto Serif KR', serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--text);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 3rem;
}

.center { text-align: center; }
.center.section-sub { margin-left: auto; margin-right: auto; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; }

.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-light);
  border-color: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,57,43,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(192,57,43,0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(192,57,43,0); }
}
.btn-primary.btn-lg { animation: pulse-glow 2.5s ease infinite; }
.btn-primary.btn-lg:hover { animation: none; }

/* ============================================================
   STARS
============================================================ */
.stars { display: inline-flex; gap: 2px; }
.star { font-size: 1.2rem; color: var(--text-dim); }
.star.full { color: var(--gold); }
.star.half {
  position: relative;
  color: var(--text-dim);
}
.star.half::before {
  content: '★';
  position: absolute;
  left: 0;
  width: 55%;
  overflow: hidden;
  color: var(--gold);
}

/* ============================================================
   SECTIONS
============================================================ */
.section { padding: 6rem 0; }
.section-dark { background: var(--bg-dark); }

/* ============================================================
   NAVIGATION
============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
  padding: 1.25rem 0;
}

#navbar.scrolled {
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
  padding: 0.85rem 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  font-family: 'Noto Serif KR', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
}
.nav-logo span { color: var(--red); }

.nav-links {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.nav-cta { margin-left: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: hero-zoom 12s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,13,0.85) 0%,
    rgba(13,13,13,0.6) 50%,
    rgba(192,57,43,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 760px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fade-up 0.8s 0.2s forwards;
}

.hero-title {
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 1;
  color: var(--text);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fade-up 0.8s 0.4s forwards;
}
.hero-title span { color: var(--red); }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(240,240,240,0.75);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fade-up 0.8s 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fade-up 0.8s 0.8s forwards;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  opacity: 0;
  animation: fade-up 0.8s 1s forwards;
}
.rating-text { font-size: 0.9rem; color: var(--text-muted); }
.rating-text strong { color: var(--text); }

.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.4);
  animation: bounce 2s ease infinite;
}
.scroll-down svg { width: 28px; height: 28px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

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

/* ============================================================
   ABOUT
============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-body {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Noto Serif KR', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.stat-unit { font-size: 1.5rem; color: var(--gold); }
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
  display: block;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

.about-image {
  position: relative;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow), var(--glow-red);
}

.about-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  padding: 0.6rem 1.1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
}
.badge-icon { font-size: 1.1rem; }

/* ============================================================
   MENU
============================================================ */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.menu-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow), 0 0 30px rgba(192,57,43,0.15);
  border-color: rgba(192,57,43,0.3);
}
.menu-card.featured { border-color: rgba(243,156,18,0.2); }
.menu-card.featured:hover { border-color: rgba(243,156,18,0.5); box-shadow: var(--shadow), 0 0 30px rgba(243,156,18,0.15); }

.menu-card-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.menu-card-img img { transition: transform 0.6s ease; }
.menu-card:hover .menu-card-img img { transform: scale(1.08); }

.popular-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--gold);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.menu-card-body { padding: 1.25rem; }

.menu-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.menu-card-top h3 {
  font-size: 1.05rem;
  color: var(--text);
}
.menu-price {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
.menu-card-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  line-height: 1.5;
}

.menu-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.menu-tag.spicy {
  background: rgba(192,57,43,0.12);
  border-color: rgba(192,57,43,0.3);
  color: var(--red-light);
}

.menu-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================================
   GALLERY
============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 6px;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-large {
  grid-column: 1;
  grid-row: 1 / 3;
}

.gallery-item img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  transition: background var(--transition);
}
.gallery-overlay span {
  font-family: 'Noto Serif KR', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0);
  transition: color var(--transition);
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}
.gallery-item:hover .gallery-overlay {
  background: linear-gradient(to top, rgba(13,13,13,0.7) 0%, transparent 60%);
}
.gallery-item:hover .gallery-overlay span { color: var(--text); }

/* ============================================================
   SERVICES
============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.service-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.service-item:hover {
  border-color: rgba(243,156,18,0.3);
  transform: translateY(-4px);
}

.service-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.service-item h4 {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.service-item p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }

/* ============================================================
   HOURS & LOCATION
============================================================ */
.hours-location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  margin-top: 3rem;
  align-items: start;
}

.hours-card, .map-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hours-card { padding: 2rem; }

.hours-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.hours-header h3 { font-size: 1.2rem; }

.open-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.open-badge.open {
  background: rgba(39,174,96,0.15);
  color: #2ECC71;
  border: 1px solid rgba(39,174,96,0.3);
}
.open-badge.closed {
  background: rgba(192,57,43,0.12);
  color: var(--red-light);
  border: 1px solid rgba(192,57,43,0.3);
}

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--border); transition: background var(--transition); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table tr.today { background: rgba(243,156,18,0.07); }
.hours-table tr.today td:first-child { color: var(--gold); font-weight: 600; }
.hours-table td { padding: 0.7rem 0; font-size: 0.9rem; }
.hours-table td:last-child { text-align: right; color: var(--text-muted); }

.hours-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 1rem;
}

.contact-info {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  border-top: 1px solid var(--border);
  padding-top: 1.75rem;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.contact-link:hover { color: var(--gold); }
.contact-link svg { width: 16px; height: 16px; flex-shrink: 0; }

.map-card iframe {
  width: 100%;
  height: 340px;
  border: none;
  display: block;
  filter: grayscale(30%) invert(90%) hue-rotate(180deg);
}
.map-cta {
  padding: 1.25rem;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

/* ============================================================
   REVIEWS
============================================================ */
.overall-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.big-rating {
  font-family: 'Noto Serif KR', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.overall-stars { font-size: 1.5rem; }
.overall-count { font-size: 0.9rem; color: var(--text-muted); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color var(--transition), transform var(--transition);
}
.review-card:hover {
  border-color: rgba(243,156,18,0.25);
  transform: translateY(-4px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.reviewer-info strong { display: block; font-size: 0.95rem; }
.review-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 1px; }

.review-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.review-tags span {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.reviews-cta { text-align: center; margin-top: 3rem; }

/* ============================================================
   FOOTER
============================================================ */
#footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo {
  font-family: 'Noto Serif KR', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.footer-logo span { color: var(--red); }

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 260px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.footer-info h4, .footer-hours h4, .footer-order h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-info p, .footer-hours p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.footer-info a, .footer-hours a { transition: color var(--transition); }
.footer-info a:hover { color: var(--gold); }
.footer-time {
  font-family: 'Noto Serif KR', serif;
  font-size: 1.05rem !important;
  color: var(--text) !important;
  font-weight: 600;
}
.footer-note {
  font-size: 0.75rem !important;
  color: var(--text-dim) !important;
}

.footer-order { display: flex; flex-direction: column; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }

  /* Nav */
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(13,13,13,0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.4rem; padding: 0.75rem 1.5rem; }
  .nav-cta { display: none; }
  .hamburger { display: flex; z-index: 1001; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image { height: 320px; }
  .about-stats { gap: 1.25rem; padding: 1.25rem; }
  .stat-num { font-size: 1.75rem; }

  /* Menu */
  .menu-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .gallery-large { grid-column: 1 / 3; grid-row: 1; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Hours */
  .hours-location-grid { grid-template-columns: 1fr; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.75rem, 14vw, 4rem); }
  .hero-actions { flex-direction: column; align-items: center; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { flex-direction: column; align-items: stretch; gap: 1rem; }
  .stat-divider { width: 100%; height: 1px; }
  .map-cta { flex-direction: column; }
}
