/* ═══════════════════════════════════════════════════════════
   NOIR — Premium Asian Dining
   style.css
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ─── ROOT ──────────────────────────────────────────────── */
:root {
  --black:        #090909;
  --dark:         #111111;
  --surface:      #181818;
  --surface-2:    #202020;
  --surface-3:    #282828;
  --gold:         #C9A84C;
  --gold-light:   #D4B86A;
  --gold-dim:     rgba(201, 168, 76, 0.12);
  --gold-border:  rgba(201, 168, 76, 0.25);
  --white:        #F0EBE1;
  --white-dim:    rgba(240, 235, 225, 0.65);
  --white-muted:  rgba(240, 235, 225, 0.35);
  --white-faint:  rgba(240, 235, 225, 0.1);
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'DM Sans', system-ui, sans-serif;
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }

/* ─── GRAIN OVERLAY ─────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  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='1'/%3E%3C/svg%3E");
  opacity: 0.032;
}

/* ═══════════════════════════════════════════════════════════
   CUSTOM CURSOR
   ═══════════════════════════════════════════════════════════ */
#cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition:
    width  0.3s var(--ease),
    height 0.3s var(--ease),
    opacity 0.3s var(--ease),
    background 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
  will-change: left, top, width, height;
}
#cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(201, 168, 76, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition:
    width  0.4s var(--ease),
    height 0.4s var(--ease),
    opacity 0.4s var(--ease),
    border-color 0.3s var(--ease);
  will-change: left, top;
}

body.cursor-visible #cursor-dot,
body.cursor-visible #cursor-ring { opacity: 1; }

body.cursor-button #cursor-dot {
  width: 16px;
  height: 16px;
  box-shadow: 0 0 22px rgba(201, 168, 76, 0.45);
}
body.cursor-button #cursor-ring {
  width: 52px;
  height: 52px;
  border-color: var(--gold);
  opacity: 0.65;
}
body.cursor-image #cursor-dot  { width: 12px; height: 12px; }
body.cursor-image #cursor-ring { width: 46px;  height: 46px; }
body.cursor-link  #cursor-dot  { background: var(--gold-light); }
body.cursor-click #cursor-dot  { width: 5px; height: 5px; }

@media (pointer: coarse) {
  #cursor-dot, #cursor-ring { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 6%;
  transition:
    background   0.55s var(--ease),
    padding      0.4s  var(--ease),
    border-bottom 0.55s var(--ease),
    backdrop-filter 0.55s var(--ease);
}
.nav.scrolled {
  padding: 1.1rem 6%;
  background: rgba(9, 9, 9, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--white);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}
.nav-links a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover        { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-reserve {
  font-size: 0.66rem !important;
  font-weight: 500 !important;
  color: var(--gold) !important;
  border: 1px solid var(--gold-border);
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease) !important;
}
.nav-reserve:hover { background: var(--gold-dim); }
.nav-reserve::after { display: none !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: 0.35s var(--ease);
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(9,9,9,0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
}
.nav-mobile a {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--white-dim);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.nav-mobile a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
/* ─── HERO SLIDESHOW ────────────────────────────────────── */
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  transform: scale(1.04);
  animation: heroZoom 24s ease-in-out infinite alternate;
  will-change: opacity, transform;
}
.hero-slide.active { opacity: 1; }
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9, 9, 9, 0.38) 0%,
    rgba(9, 9, 9, 0.55) 45%,
    rgba(9, 9, 9, 0.80) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 1.5rem;
}
.hero-label {
  display: inline-block;
  font-size: 0.63rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.5s forwards;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7.5vw, 6.8rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-out) 0.8s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--white-dim);
  max-width: 460px;
  margin: 0 auto 3rem;
  line-height: 1.85;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-out) 1.1s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.4s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  opacity: 0;
  animation: fadeIn 1s 2.1s forwards;
}
.hero-scroll span {
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--white-muted);
}
.scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(1) translateY(0); }
  50%       { opacity: 1;    transform: scaleY(1.15) translateY(4px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 2.6rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 2px;
  transition:
    background 0.3s var(--ease),
    transform  0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(201, 168, 76, 0.28);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 2.6rem;
  border: 1px solid rgba(240, 235, 225, 0.3);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 2px;
  transition:
    border-color 0.3s var(--ease),
    background   0.3s var(--ease),
    transform    0.3s var(--ease);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════════════════
   SECTION COMMONS
   ═══════════════════════════════════════════════════════════ */
.section { padding: 7rem 6%; }

.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 26px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
}
.section-title em { font-style: italic; color: var(--gold); }

/* ─── REVEAL ANIMATIONS ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity   0.85s var(--ease-out),
    transform 0.85s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.rd1 { transition-delay: 0.08s; }
.rd2 { transition-delay: 0.16s; }
.rd3 { transition-delay: 0.24s; }
.rd4 { transition-delay: 0.32s; }
.rd5 { transition-delay: 0.40s; }
.rd6 { transition-delay: 0.48s; }
.rd7 { transition-delay: 0.56s; }
.rd8 { transition-delay: 0.64s; }

/* ═══════════════════════════════════════════════════════════
   FEATURED DISHES
   ═══════════════════════════════════════════════════════════ */
.dishes { background: var(--dark); }

.dishes-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.view-all {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  transition: gap 0.3s var(--ease);
}
.view-all:hover { gap: 1.1rem; }
.view-all::after { content: '→'; font-size: 1rem; }

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
/* Wide cards: 1, 2, 7, 8 */
.dish-card:nth-child(1) { grid-column: span 2; }
.dish-card:nth-child(2) { grid-column: span 2; }
.dish-card:nth-child(7) { grid-column: span 2; }
.dish-card:nth-child(8) { grid-column: span 2; }

.dish-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}
.dish-img-wrap {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
}
.dish-card:nth-child(1) .dish-img-wrap,
.dish-card:nth-child(2) .dish-img-wrap,
.dish-card:nth-child(7) .dish-img-wrap,
.dish-card:nth-child(8) .dish-img-wrap {
  aspect-ratio: 16/10;
}

/* Gradient fallbacks per dish */
.dish-img-wrap[data-dish="truffle"]   { background: linear-gradient(135deg, #0e0a1a 0%, #18103a 45%, #0a050e 100%); }
.dish-img-wrap[data-dish="wagyu"]     { background: linear-gradient(135deg, #1a0808 0%, #2e1010 45%, #0f0505 100%); }
.dish-img-wrap[data-dish="salmon"]    { background: linear-gradient(135deg, #1a1008 0%, #2e1e0c 45%, #1a0a05 100%); }
.dish-img-wrap[data-dish="dragon"]    { background: linear-gradient(135deg, #081a10 0%, #103010 45%, #050f08 100%); }
.dish-img-wrap[data-dish="tempura"]   { background: linear-gradient(135deg, #1a1505 0%, #2e2408 45%, #1a1008 100%); }
.dish-img-wrap[data-dish="tuna"]      { background: linear-gradient(135deg, #1a0512 0%, #2e0e22 45%, #1a0808 100%); }
.dish-img-wrap[data-dish="matcha"]    { background: linear-gradient(135deg, #081a08 0%, #103010 45%, #051208 100%); }
.dish-img-wrap[data-dish="yuzu"]      { background: linear-gradient(135deg, #1a1805 0%, #2e2a08 45%, #1a1505 100%); }

.dish-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 35% 35%, rgba(201,168,76,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.dish-img-wrap img {
  position: absolute;
  inset: 0;
  transition: transform 0.75s var(--ease);
}
.dish-card:hover .dish-img-wrap img { transform: scale(1.08); }

.dish-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(9,9,9,0.92) 0%,
    rgba(9,9,9,0.35) 45%,
    transparent 70%
  );
  transition: background 0.45s var(--ease);
}
.dish-card:hover .dish-overlay {
  background: linear-gradient(
    to top,
    rgba(9,9,9,0.97) 0%,
    rgba(9,9,9,0.55) 55%,
    rgba(9,9,9,0.12) 85%
  );
}
.dish-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 1.8rem 1.8rem;
}
.dish-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.dish-card:nth-child(1) .dish-name,
.dish-card:nth-child(2) .dish-name,
.dish-card:nth-child(7) .dish-name,
.dish-card:nth-child(8) .dish-name { font-size: 1.65rem; }

.dish-desc {
  font-size: 0.74rem;
  color: var(--white-muted);
  line-height: 1.65;
  max-width: 270px;
  transform: translateY(10px);
  opacity: 0;
  transition:
    transform 0.4s var(--ease),
    opacity   0.4s var(--ease);
  margin-bottom: 0.8rem;
}
.dish-card:hover .dish-desc { transform: translateY(0); opacity: 1; }

.dish-price {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════ */
.about {
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}
.about-text {
  padding: 7rem 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-body {
  font-size: 1.05rem;
  color: var(--white-dim);
  line-height: 1.95;
  margin-top: 2rem;
  max-width: 420px;
}
.about-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 2.5rem 0;
  opacity: 0.5;
}
.about-stats {
  display: flex;
  gap: 3rem;
}
.about-stat-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.about-stat-stars {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-top: 0.4rem;
  margin-bottom: 0.2rem;
  line-height: 1;
}
.about-stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-top: 0.45rem;
}
.about-img {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0f1c 0%, #1a1028 50%, #080810 100%);
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease);
}
.about-img:hover img { transform: scale(1.04); }
.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--black) 0%, transparent 35%);
  pointer-events: none;
}
.about-img::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 60% 40%, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   RESERVATION
   ═══════════════════════════════════════════════════════════ */
.reservation {
  background: var(--surface);
  text-align: center;
}
.reservation .section-label {
  justify-content: center;
}
.reservation .section-label::before { display: none; }
.reservation .section-label::after {
  content: '';
  display: block;
  width: 26px;
  height: 1px;
  background: var(--gold);
}
.reservation .section-title { margin-bottom: 0.8rem; }
.reservation-sub {
  font-size: 0.88rem;
  color: var(--white-muted);
  margin-bottom: 3.5rem;
}
.res-form {
  max-width: 680px;
  margin: 0 auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 2px;
}
.form-field {
  display: flex;
  flex-direction: column;
  background: var(--surface-2);
  padding: 1.4rem 1.6rem;
  transition: background 0.3s var(--ease);
  text-align: left;
}
.form-field:focus-within { background: var(--surface-3); }
.form-field label {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.form-field input,
.form-field select {
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--white);
  width: 100%;
  cursor: none;
}
.form-field input::placeholder { color: var(--white-muted); }
.form-field select { appearance: none; -webkit-appearance: none; }
.form-field select option { background: var(--surface-2); color: var(--white); }
.form-field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.6); }

.form-submit {
  margin-top: 1.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 1.15rem 3.2rem;
  border-radius: 2px;
  border: none;
  transition:
    background  0.3s var(--ease),
    transform   0.3s var(--ease),
    box-shadow  0.3s var(--ease);
}
.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 18px 52px rgba(201, 168, 76, 0.28);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  padding: 5rem 6% 2.5rem;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--white-muted);
  line-height: 1.75;
  max-width: 220px;
  margin-bottom: 2rem;
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.footer-social {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-dim);
  transition:
    border-color 0.3s,
    color        0.3s,
    background   0.3s;
}
.footer-social:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}
.footer-social svg { width: 14px; height: 14px; fill: currentColor; }

.footer-col-title {
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.3rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a {
  font-size: 0.84rem;
  color: var(--white-muted);
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--white); }

.footer-address {
  font-size: 0.82rem;
  color: var(--white-muted);
  line-height: 1.85;
  font-style: normal;
}
.footer-bottom {
  border-top: 1px solid var(--white-faint);
  padding-top: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.7rem;
  color: var(--white-muted);
}
.footer-policy {
  display: flex;
  gap: 2rem;
}
.footer-policy a {
  font-size: 0.7rem;
  color: var(--white-muted);
  transition: color 0.25s;
}
.footer-policy a:hover { color: var(--white); }

/* ═══════════════════════════════════════════════════════════
   MENU PAGE
   ═══════════════════════════════════════════════════════════ */
.menu-hero {
  position: relative;
  height: 58vh;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: #0d0e18;
}
.menu-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?w=1920&q=90&fit=crop&auto=format');
  background-size: cover;
  background-position: center;
  animation: heroZoom 28s ease-in-out infinite alternate;
}
.menu-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(9,9,9,0.92) 0%,
    rgba(9,9,9,0.52) 55%,
    rgba(9,9,9,0.28) 100%
  );
}
.menu-hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 6%;
  width: 100%;
}
.menu-hero-label {
  font-size: 0.6rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.4s forwards;
}
.menu-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.01em;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-out) 0.7s forwards;
}
.menu-hero-title em { font-style: italic; color: var(--gold); }

/* ─── MENU CATEGORY NAV ─────────────────────────────────── */
.menu-cat-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 11, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}
.menu-cat-inner {
  display: flex;
  padding: 0 6%;
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-cat-inner::-webkit-scrollbar { display: none; }
.menu-cat-tab {
  padding: 1.15rem 1.8rem;
  font-size: 0.63rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.3s, border-color 0.3s;
  cursor: none;
}
.menu-cat-tab:hover,
.menu-cat-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ─── MENU SECTIONS ─────────────────────────────────────── */
.menu-section {
  padding: 6rem 6%;
  border-bottom: 1px solid rgba(240, 235, 225, 0.04);
}
.menu-section:nth-child(even) { background: var(--dark); }

.menu-section-header { margin-bottom: 3.5rem; }
.menu-section-num {
  font-family: var(--font-serif);
  font-size: 5.5rem;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.07);
  line-height: 1;
  margin-bottom: -1.2rem;
  user-select: none;
}
.menu-section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.01em;
}
.menu-section-sub {
  font-size: 0.8rem;
  color: var(--white-muted);
  margin-top: 0.5rem;
  max-width: 420px;
}

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

.menu-item { display: flex; flex-direction: column; }
.menu-item-img {
  position: relative;
  overflow: hidden;
  border-radius: 1px;
  margin-bottom: 1.3rem;
  aspect-ratio: 4/3;
}
.menu-grid-2 .menu-item-img { aspect-ratio: 3/2; }
.menu-grid-4 .menu-item-img { aspect-ratio: 1/1; }

/* Gradient fallbacks */
.menu-item-img[data-item="dragon-roll"]   { background: linear-gradient(135deg, #081a10 0%, #0f2d18 100%); }
.menu-item-img[data-item="tuna-tartare"]  { background: linear-gradient(135deg, #1a0512 0%, #2d0f22 100%); }
.menu-item-img[data-item="truffle-sushi"] { background: linear-gradient(135deg, #0f0a1c 0%, #1e1238 100%); }
.menu-item-img[data-item="rainbow-roll"]  { background: linear-gradient(135deg, #1a0a14 0%, #2d1525 100%); }
.menu-item-img[data-item="salmon-nigiri"] { background: linear-gradient(135deg, #1a1008 0%, #2d2010 100%); }
.menu-item-img[data-item="wagyu"]         { background: linear-gradient(135deg, #1a0808 0%, #2e1010 100%); }
.menu-item-img[data-item="salmon"]        { background: linear-gradient(135deg, #1a1008 0%, #2e2010 100%); }
.menu-item-img[data-item="cod"]           { background: linear-gradient(135deg, #081015 0%, #102028 100%); }
.menu-item-img[data-item="ramen"]         { background: linear-gradient(135deg, #151008 0%, #281e10 100%); }
.menu-item-img[data-item="ribeye"]        { background: linear-gradient(135deg, #1a0505 0%, #2e0a0a 100%); }
.menu-item-img[data-item="lamb"]          { background: linear-gradient(135deg, #150d08 0%, #281a10 100%); }
.menu-item-img[data-item="lobster"]       { background: linear-gradient(135deg, #1a0a05 0%, #2e1508 100%); }
.menu-item-img[data-item="yakitori"]      { background: linear-gradient(135deg, #150f05 0%, #28200a 100%); }
.menu-item-img[data-item="matcha"]        { background: linear-gradient(135deg, #081a08 0%, #103018 100%); }
.menu-item-img[data-item="yuzu"]          { background: linear-gradient(135deg, #1a1805 0%, #2e2c08 100%); }
.menu-item-img[data-item="sesame"]        { background: linear-gradient(135deg, #101010 0%, #1e1e1e 100%); }
.menu-item-img[data-item="mochi"]         { background: linear-gradient(135deg, #150812 0%, #280f22 100%); }
.menu-item-img[data-item="sake"]          { background: linear-gradient(135deg, #0f1018 0%, #181a28 100%); }
.menu-item-img[data-item="whisky"]        { background: linear-gradient(135deg, #1a1008 0%, #2e200a 100%); }
.menu-item-img[data-item="yuzu-martini"]  { background: linear-gradient(135deg, #141a05 0%, #222e0a 100%); }
.menu-item-img[data-item="umeshu"]        { background: linear-gradient(135deg, #1a0810 0%, #281015 100%); }
.menu-item-img[data-item="matcha-drink"]  { background: linear-gradient(135deg, #081508 0%, #102010 100%); }

.menu-item-img::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 30% 30%, rgba(201,168,76,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.menu-item:hover .menu-item-img img { transform: scale(1.06); }

.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.45rem;
}
.menu-grid-2 .menu-item-name { font-size: 1.55rem; }

.menu-item-desc {
  font-size: 0.76rem;
  color: var(--white-muted);
  line-height: 1.72;
  flex: 1;
  margin-bottom: 1rem;
}
.menu-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-item-price {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.03em;
}
.menu-item-tag {
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-muted);
  border: 1px solid rgba(240, 235, 225, 0.1);
  padding: 0.22rem 0.65rem;
  border-radius: 1px;
}

/* ─── DRINKS LIST ───────────────────────────────────────── */
.drinks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.drink-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(240, 235, 225, 0.05);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  transition: background 0.3s;
}
.drink-item:hover { background: rgba(201, 168, 76, 0.03); }
.drink-item:nth-child(odd) { padding-right: 4rem; border-right: 1px solid rgba(240, 235, 225, 0.05); }
.drink-item:nth-child(even) { padding-left: 4rem; }
.drink-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.drink-desc {
  font-size: 0.74rem;
  color: var(--white-muted);
  line-height: 1.65;
}
.drink-price {
  font-size: 0.88rem;
  color: var(--gold);
  white-space: nowrap;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   TICKER / MARQUEE STRIP
   ═══════════════════════════════════════════════════════════ */
.ticker-strip {
  background: var(--gold);
  overflow: hidden;
  padding: 0.9rem 0;
  position: relative;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: tickerScroll 28s linear infinite;
  will-change: transform;
  white-space: nowrap;
}
.ticker-strip:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1.8rem;
  padding: 0 2rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--black);
  flex-shrink: 0;
}
.ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--black);
  opacity: 0.4;
  flex-shrink: 0;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   DISH POPUP (SIDE PANEL)
   ═══════════════════════════════════════════════════════════ */
.popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  pointer-events: none;
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
}
.popup-backdrop.open {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  pointer-events: all;
}
.popup-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2001;
  width: min(480px, 100vw);
  background: var(--surface);
  border-left: 1px solid rgba(201, 168, 76, 0.12);
  transform: translateX(100%);
  transition: transform 0.6s var(--ease-out);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.popup-panel.open { transform: translateX(0); }

.popup-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--surface-2);
  flex-shrink: 0;
}
.popup-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.popup-panel.open .popup-img img { transform: scale(1.04); }
.popup-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--surface) 100%);
}
.popup-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(9, 9, 9, 0.7);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-dim);
  font-size: 1.1rem;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  cursor: none;
  z-index: 1;
  backdrop-filter: blur(8px);
}
.popup-close:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

.popup-body {
  padding: 2rem 2.2rem 2.5rem;
  overflow-y: auto;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-border) transparent;
}
.popup-category {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.popup-category::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
}
.popup-name {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.popup-desc {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.85;
  margin-bottom: 1.8rem;
}
.popup-detail-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--white-faint);
}
.popup-price-label {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 0.2rem;
}
.popup-price-val {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
}
.popup-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-left: auto;
}
.popup-tag {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
  border: 1px solid rgba(240, 235, 225, 0.1);
  padding: 0.25rem 0.7rem;
  border-radius: 1px;
}
.popup-reserve-btn {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  text-decoration: none;
}
.popup-reserve-btn:hover { background: var(--gold-light); transform: translateY(-2px); }

/* Dish cards are clickable */
.dish-card { cursor: none; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .dishes-grid { grid-template-columns: repeat(2, 1fr); }
  .dish-card:nth-child(1),
  .dish-card:nth-child(2),
  .dish-card:nth-child(7),
  .dish-card:nth-child(8) { grid-column: span 2; }
  .dish-card:nth-child(1) .dish-img-wrap,
  .dish-card:nth-child(2) .dish-img-wrap,
  .dish-card:nth-child(7) .dish-img-wrap,
  .dish-card:nth-child(8) .dish-img-wrap { aspect-ratio: 21/9; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .menu-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .menu-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile { display: flex; }
  .about { grid-template-columns: 1fr; }
  .about-img { height: 400px; order: -1; }
  .about-img::after { background: linear-gradient(to bottom, transparent 55%, var(--black) 100%); }
}
@media (max-width: 640px) {
  .section { padding: 5rem 5%; }
  .dishes-grid { grid-template-columns: 1fr; }
  .dish-card:nth-child(n) { grid-column: span 1; }
  .dish-card:nth-child(1) .dish-img-wrap,
  .dish-card:nth-child(2) .dish-img-wrap,
  .dish-card:nth-child(7) .dish-img-wrap,
  .dish-card:nth-child(8) .dish-img-wrap { aspect-ratio: 4/3; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { text-align: center; justify-content: center; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .about-stats { gap: 2rem; }
  .menu-grid-2,
  .menu-grid-3,
  .menu-grid-4 { grid-template-columns: 1fr; }
  .drinks-grid { grid-template-columns: 1fr; }
  .drink-item:nth-child(odd) { padding-right: 0; border-right: none; }
  .drink-item:nth-child(even) { padding-left: 0; }
  .menu-section { padding: 4rem 5%; }
}
