/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold: #D4A843;
  --gold2: #F0C060;
  --dark: #0E0C0A;
  --dark2: #1A1612;
  --dark3: #241F18;
  --cream: #F5EDD8;
  --cream2: #EDE0C4;
  --text: #C8B99A;
  --white: #FFFFFF;
  --red: #C0392B;
  --green: #2E6B4F;
  --font-head: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
  --ease-liquid: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; object-fit: cover; }

/* ── CURSOR ── */
.cursor-blob {
  width: 32px; height: 32px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.12s var(--ease-liquid), width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}
.cursor-blob.expand { width: 64px; height: 64px; background: rgba(212,168,67,0.15); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  cursor: none; transition: all 0.35s var(--ease-liquid);
  border: 2px solid transparent; letter-spacing: 0.04em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--dark); border-color: var(--gold);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 40px rgba(212,168,67,0.4); }
.btn-ghost { border-color: rgba(212,168,67,0.5); color: var(--gold); }
.btn-ghost:hover { background: rgba(212,168,67,0.12); transform: translateY(-3px); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(14,12,10,0.85);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(212,168,67,0.1);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; gap: 40px;
}
.nav-logo {
  display: flex; flex-direction: column; line-height: 1;
  gap: 1px; margin-right: auto;
}
.logo-kr { font-family: var(--font-head); font-size: 0.7rem; color: var(--gold); letter-spacing: 0.2em; }
.logo-en { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--white); letter-spacing: 0.15em; }
.logo-sub { font-size: 0.55rem; color: var(--text); letter-spacing: 0.25em; }
.nav-links { display: flex; list-style: none; gap: 36px; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--text); letter-spacing: 0.06em;
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width 0.3s var(--ease-liquid);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 24px; border-radius: 50px;
  background: var(--gold); color: var(--dark);
  font-weight: 600; font-size: 0.85rem;
  transition: all 0.3s var(--ease-liquid);
}
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 8px 24px rgba(212,168,67,0.35); }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--white); transition: 0.3s; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  padding: 120px 80px 60px;
  max-width: 1400px; margin: 0 auto;
  position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.18;
  animation: blobDrift 12s ease-in-out infinite alternate;
}
.blob1 { width: 500px; height: 500px; background: var(--gold); top: -100px; right: -100px; animation-delay: 0s; }
.blob2 { width: 350px; height: 350px; background: #8B5A2B; bottom: 0; left: -80px; animation-delay: -4s; }
.blob3 { width: 250px; height: 250px; background: var(--gold2); top: 50%; left: 40%; animation-delay: -8s; }
@keyframes blobDrift {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(30px, 40px) scale(1.12); }
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-block; padding: 6px 18px; border-radius: 50px;
  border: 1px solid rgba(212,168,67,0.4); color: var(--gold);
  font-size: 0.78rem; letter-spacing: 0.12em; margin-bottom: 24px;
  background: rgba(212,168,67,0.07);
}
.hero-title { margin-bottom: 24px; line-height: 1; }
.title-kr {
  display: block; font-family: var(--font-head); font-size: 1rem;
  color: var(--gold); letter-spacing: 0.3em; margin-bottom: 8px; opacity: 0.7;
}
.title-main {
  display: block; font-family: var(--font-head);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 700; color: var(--white);
  line-height: 0.9;
}
.title-main em { color: var(--gold); font-style: italic; }
.hero-sub { font-size: 1.05rem; color: var(--text); line-height: 1.7; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-img-wrap {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
}
.hero-img-ring {
  position: absolute; inset: -20px; border-radius: 50%;
  border: 1px solid rgba(212,168,67,0.15);
  animation: spinRing 20s linear infinite;
}
@keyframes spinRing { to { transform: rotate(360deg); } }
.hero-img {
  width: 90%; aspect-ratio: 1; border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(212,168,67,0.3);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 60px rgba(212,168,67,0.15);
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
.hero-float-chip {
  position: absolute;
  padding: 8px 18px; border-radius: 50px;
  background: rgba(26,22,18,0.9);
  border: 1px solid rgba(212,168,67,0.3);
  color: var(--cream); font-size: 0.8rem; font-weight: 500;
  backdrop-filter: blur(10px);
  animation: chipFloat 4s ease-in-out infinite alternate;
}
.chip1 { top: 10%; left: -10%; animation-delay: 0s; }
.chip2 { bottom: 15%; left: -15%; animation-delay: -1.5s; }
.chip3 { top: 20%; right: -5%; animation-delay: -3s; }
@keyframes chipFloat { from { transform: translateY(0); } to { transform: translateY(-10px); } }
.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.72rem; letter-spacing: 0.2em; color: var(--text); opacity: 0.5;
}
.scroll-line {
  width: 1px; height: 50px; background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ── TICKER ── */
.ticker-wrap {
  overflow: hidden; background: var(--gold);
  padding: 14px 0; white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: ticker 30s linear infinite;
  font-family: var(--font-head); font-size: 0.85rem;
  color: var(--dark); font-weight: 700; letter-spacing: 0.08em;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION HELPERS ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.section-label {
  font-size: 0.72rem; letter-spacing: 0.25em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 12px;
}
.section-label.light { color: var(--gold2); }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: var(--white); line-height: 1.1; margin-bottom: 20px;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-desc { color: var(--text); font-size: 1.05rem; line-height: 1.7; max-width: 500px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-desc { margin: 0 auto; }

/* ── ABOUT ── */
.about { padding: 120px 0; background: var(--dark2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-stack { position: relative; }
.about-img-main {
  border-radius: 24px; aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  border: 1px solid rgba(212,168,67,0.15);
}
.about-stat-card {
  position: absolute; bottom: 40px; right: -30px;
  background: var(--gold); color: var(--dark);
  padding: 20px 28px; border-radius: 20px;
  display: flex; flex-direction: column;
  box-shadow: 0 20px 40px rgba(212,168,67,0.3);
}
.stat-num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; line-height: 1; }
.stat-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; }
.about-tag {
  position: absolute; top: 30px; right: -20px;
  background: var(--dark3); color: var(--gold);
  border: 1px solid rgba(212,168,67,0.3);
  padding: 8px 18px; border-radius: 50px;
  font-size: 0.78rem; letter-spacing: 0.12em;
}
.about-text-col p { color: var(--text); line-height: 1.8; margin-bottom: 20px; font-size: 1rem; }
.about-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.about-pills span {
  padding: 8px 18px; border-radius: 50px;
  background: rgba(212,168,67,0.08);
  border: 1px solid rgba(212,168,67,0.2);
  color: var(--cream); font-size: 0.85rem;
  transition: background 0.3s;
}
.about-pills span:hover { background: rgba(212,168,67,0.18); }

/* ── MENU ── */
.menu { padding: 120px 0; background: var(--dark); }
.menu-tabs {
  display: flex; gap: 8px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 52px;
}
.tab-btn {
  padding: 10px 24px; border-radius: 50px;
  background: transparent; border: 1px solid rgba(212,168,67,0.25);
  color: var(--text); font-family: var(--font-body); font-size: 0.88rem;
  cursor: none; transition: all 0.3s var(--ease-liquid);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--gold); color: var(--dark); border-color: var(--gold);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.menu-card {
  background: var(--dark2); border-radius: 20px;
  border: 1px solid rgba(212,168,67,0.1);
  overflow: hidden;
  transition: transform 0.4s var(--ease-liquid), box-shadow 0.4s;
}
.menu-card:hover { transform: translateY(-8px); box-shadow: 0 32px 64px rgba(0,0,0,0.4), 0 0 32px rgba(212,168,67,0.08); }
.menu-card-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.menu-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-liquid); }
.menu-card:hover .menu-card-img-wrap img { transform: scale(1.08); }
.menu-card-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 4px 14px; border-radius: 50px;
  background: var(--gold); color: var(--dark);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
}
.menu-card-badge.viral { background: var(--red); color: var(--white); }
.menu-card-badge.new { background: var(--green); color: var(--white); }
.menu-card-body { padding: 24px; }
.menu-card-body h3 { font-family: var(--font-head); font-size: 1.2rem; color: var(--white); margin-bottom: 10px; }
.menu-card-body p { font-size: 0.88rem; color: var(--text); line-height: 1.6; margin-bottom: 20px; }
.menu-card-footer { display: flex; align-items: center; justify-content: space-between; }
.price { font-family: var(--font-head); font-size: 1.4rem; color: var(--gold); font-weight: 700; }
.add-btn {
  padding: 8px 20px; border-radius: 50px;
  background: rgba(212,168,67,0.12); border: 1px solid rgba(212,168,67,0.3);
  color: var(--gold); font-family: var(--font-body); font-size: 0.82rem;
  cursor: none; transition: all 0.3s;
}
.add-btn:hover { background: var(--gold); color: var(--dark); }
.menu-card.hidden { display: none; }

/* ── SPECIALS ── */
.specials {
  background: linear-gradient(135deg, var(--dark3) 0%, #1F1208 100%);
  padding: 100px 40px;
  border-top: 1px solid rgba(212,168,67,0.1);
  border-bottom: 1px solid rgba(212,168,67,0.1);
}
.specials-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.specials-text h2 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  color: var(--white); line-height: 1.05; margin-bottom: 20px;
}
.specials-text h2 em { color: var(--gold2); font-style: italic; }
.specials-text p { color: var(--text); line-height: 1.8; margin-bottom: 32px; font-size: 1rem; }
.specials-img { position: relative; display: flex; justify-content: center; }
.specials-glow {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.3) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse { 0%, 100% { opacity: 0.5; transform: translate(-50%,-50%) scale(1); } 50% { opacity: 1; transform: translate(-50%,-50%) scale(1.1); } }
.specials-img img {
  width: 80%; border-radius: 24px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  position: relative; z-index: 1;
  animation: heroFloat 5s ease-in-out infinite;
}

/* ── GALLERY ── */
.gallery-section { padding: 120px 0; background: var(--dark2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.g-big { grid-row: span 2; }
.g-item { position: relative; overflow: hidden; border-radius: 18px; cursor: none; }
.g-item img { height: 100%; width: 100%; transition: transform 0.6s var(--ease-liquid); }
.g-big img { aspect-ratio: unset; height: 100%; }
.g-item:not(.g-big) img { aspect-ratio: 4/3; }
.g-item:hover img { transform: scale(1.07); }
.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 20px;
  opacity: 0; transition: opacity 0.4s;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay span { color: var(--white); font-family: var(--font-head); font-size: 1.1rem; }

/* ── VISIT ── */
.visit { padding: 120px 0; background: var(--dark); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.visit-details { display: flex; flex-direction: column; gap: 28px; margin: 36px 0; }
.visit-item { display: flex; gap: 20px; align-items: flex-start; }
.visit-icon { font-size: 1.6rem; flex-shrink: 0; }
.visit-item strong { display: block; color: var(--white); font-size: 0.95rem; margin-bottom: 4px; }
.visit-item p { color: var(--text); font-size: 0.9rem; line-height: 1.6; }
.visit-socials { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn {
  padding: 10px 22px; border-radius: 50px;
  border: 1px solid rgba(212,168,67,0.3);
  color: var(--gold); font-size: 0.85rem; font-weight: 500;
  transition: all 0.3s;
}
.social-btn:hover { background: var(--gold); color: var(--dark); }
.map-frame {
  border-radius: 24px; overflow: hidden;
  height: 420px; border: 1px solid rgba(212,168,67,0.15);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.map-frame iframe { width: 100%; height: 100%; border: none; filter: grayscale(40%) invert(90%) hue-rotate(180deg); }

/* ── FOOTER ── */
.footer {
  background: var(--dark2);
  border-top: 1px solid rgba(212,168,67,0.1);
  padding: 60px 40px 40px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; text-align: center; }
.footer-logo { display: inline-flex; flex-direction: column; align-items: center; gap: 2px; margin-bottom: 16px; }
.footer-tagline { color: var(--text); font-size: 0.9rem; font-style: italic; font-family: var(--font-head); margin-bottom: 28px; }
.footer-links { display: flex; gap: 32px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap; }
.footer-links a { color: var(--text); font-size: 0.85rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.78rem; color: rgba(200,185,154,0.4); }

/* ── REVEAL ANIMATIONS ── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity 0.8s var(--ease-liquid), transform 0.8s var(--ease-liquid);
}
.reveal { transform: translateY(40px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translate(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 120px 40px 60px; gap: 40px; }
  .hero-img-wrap { max-width: 400px; margin: 0 auto; }
  .about-grid, .specials-inner, .visit-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-stat-card { right: 10px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .g-big { grid-row: span 1; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero { padding: 100px 24px 48px; }
  .container { padding: 0 24px; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .title-main { font-size: 3.2rem; }
}
