/* ============================================================
   YORU MONTPARNASSE — TOKYO BY NIGHT
   Premium dark cinematic aesthetic
   ============================================================ */

:root {
  /* Palette — Or premium + Néon rose en accent */
  --bg:           #0a0807;
  --bg-elev:      #120e0a;
  --bg-card:      #18130d;
  --text:         #f3eee2;
  --text-soft:    #d8d0bf;
  --text-muted:   #8a8275;
  --text-dim:     #5e574d;
  --gold:         #d4b478;     /* or premium — titres, boutons, CTA */
  --gold-bright:  #ecd29a;     /* or clair — em, hover, highlights */
  --gold-deep:    #8a7244;     /* or profond */
  --red:          #8b1a1a;
  --warm:         #e89a5a;
  --neon:         #ff2db7;     /* rose néon — kanji, logo, stamps */
  --neon-bright:  #ff5ec4;     /* rose clair — accent glow */
  --line:         rgba(243, 238, 226, 0.08);
  --line-strong:  rgba(243, 238, 226, 0.22);
  --neon-glow:    0 0 18px rgba(255, 45, 183, 0.55), 0 0 42px rgba(255, 45, 183, 0.28);

  /* Type */
  --f-display:    "Cormorant Garamond", "Times New Roman", serif;
  --f-sans:       "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --f-jp:         "Shippori Mincho B1", "Cormorant Garamond", serif;

  /* Motion */
  --ease:         cubic-bezier(0.6, 0.05, 0.05, 0.95);
  --ease-soft:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-power:   cubic-bezier(0.85, 0, 0.15, 1);

  /* Sizes */
  --nav-h:        76px;
  --pad-x:        clamp(20px, 5vw, 80px);
  --section-y:    clamp(80px, 12vw, 180px);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; scroll-behavior: auto; }
html, body { background: var(--bg); color: var(--text); overflow-x: hidden; }
body {
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: 0.005em;
  min-height: 100vh;
}
body.no-scroll { overflow: hidden; height: 100vh; }
img, video, svg { display: block; max-width: 100%; height: auto; }
img { user-select: none; -webkit-user-drag: none; }
a { color: inherit; text-decoration: none; transition: color 0.4s var(--ease-soft); }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; background: none; border: 0; outline: none; }
em { font-style: italic; }
::selection { background: var(--gold); color: var(--bg); }

/* ============================================================
   GLOBAL EFFECTS — GRAIN + VIGNETTE
   ============================================================ */
.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9998;
  opacity: 0.08; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
  background-size: 220px;
  animation: grainShift 8s steps(6) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-3%, 2%); }
  40%  { transform: translate(2%, -1%); }
  60%  { transform: translate(-1%, 3%); }
  80%  { transform: translate(3%, 1%); }
  100% { transform: translate(0, 0); }
}
.vignette {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9997;
  background: radial-gradient(120% 80% at 50% 50%, transparent 40%, rgba(0,0,0,0.55) 100%);
}

/* ============================================================
   LOADER
   ============================================================ */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
}
.loader-kanji {
  font-family: var(--f-jp);
  font-size: clamp(96px, 16vw, 220px);
  color: var(--neon);
  line-height: 1;
  letter-spacing: -0.02em;
  opacity: 0;
  text-shadow:
    0 0 22px rgba(255, 45, 183, 0.6),
    0 0 50px rgba(255, 45, 183, 0.35);
  animation: loaderKanji 1.6s var(--ease-soft) 0.1s forwards;
}
.loader-brand {
  font-family: var(--f-display);
  font-size: 14px;
  letter-spacing: 0.6em;
  color: var(--text-soft);
  text-indent: 0.6em;
  opacity: 0;
  animation: loaderFade 0.8s var(--ease-soft) 0.6s forwards;
}
.loader-counter {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--text-muted);
  margin-top: 24px;
  font-variant-numeric: tabular-nums;
}
.loader-line {
  position: absolute;
  bottom: 14%;
  width: min(360px, 60vw);
  height: 1px;
  background: var(--line);
  overflow: hidden;
}
.loader-line span {
  display: block; height: 100%;
  background: var(--gold);
  width: 0%;
  animation: loaderBar 1.4s var(--ease-power) 0.2s forwards;
}
@keyframes loaderKanji {
  0%   { opacity: 0; transform: translateY(20px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes loaderFade { to { opacity: 1; } }
@keyframes loaderBar { to { width: 100%; } }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor, .cursor-trail {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  border-radius: 50%;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
}
.cursor {
  width: 6px; height: 6px;
  background: var(--gold-bright);
  transition: transform 0.2s var(--ease-soft), width 0.3s var(--ease-soft), height 0.3s var(--ease-soft);
}
.cursor-trail {
  width: 34px; height: 34px;
  border: 1px solid rgba(255, 94, 196, 0.55);
  transition: transform 0.5s var(--ease-soft), width 0.4s, height 0.4s, opacity 0.3s;
}
.cursor.active { width: 48px; height: 48px; opacity: 0.4; }
.cursor-trail.active { width: 70px; height: 70px; opacity: 0.6; }
@media (hover: none), (max-width: 1024px) { .cursor, .cursor-trail { display: none; } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  padding: 0 var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  z-index: 1000;
  transition: background 0.5s var(--ease-soft), backdrop-filter 0.5s var(--ease-soft), border-color 0.5s var(--ease-soft);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 9, 7, 0.72);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav-logo img {
  width: 52px; height: 52px;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 8px rgba(255, 45, 183, 0.45));
  transition: transform 0.5s var(--ease-soft), filter 0.5s var(--ease-soft);
}
.nav-logo:hover img {
  transform: scale(1.08);
  filter: drop-shadow(0 0 14px rgba(255, 94, 196, 0.7));
}

.nav-links {
  display: flex; gap: 38px;
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  color: var(--text-soft);
  padding: 6px 0;
}
.nav-links a::after {
  content: ""; position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.5s var(--ease-soft);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 22px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text); background: transparent;
  transition: all 0.5s var(--ease-soft);
  position: relative; overflow: hidden;
}
.nav-cta::before {
  content: ""; position: absolute; inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-power);
  z-index: -1;
}
.nav-cta:hover { color: #fff; border-color: var(--gold); box-shadow: 0 0 24px rgba(255, 45, 183, 0.45); }
.nav-cta:hover::before { transform: translateY(0); }
.nav-cta svg { width: 14px; height: 14px; }

.nav-burger {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column; justify-content: center; gap: 5px;
  position: relative;
}
.nav-burger span {
  display: block; width: 22px; height: 1px;
  background: var(--text); margin: 0 auto;
  transition: transform 0.4s var(--ease-soft), opacity 0.4s var(--ease-soft);
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: var(--bg);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: calc(var(--nav-h) + 30px) var(--pad-x) 40px;
  transform: translateY(-100%);
  transition: transform 0.7s var(--ease-power);
  pointer-events: none;
}
.mobile-menu::before {
  content: "夜";
  position: absolute; right: -10px; bottom: 10%;
  font-family: var(--f-jp);
  font-size: 50vw;
  color: rgba(255, 45, 183, 0.04);
  line-height: 1;
  pointer-events: none;
}
.mobile-menu.open { transform: translateY(0); pointer-events: auto; }
.mobile-menu-inner {
  display: flex; flex-direction: column; gap: 18px;
}
.mobile-menu-inner a {
  font-family: var(--f-display);
  font-size: clamp(40px, 9vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  display: flex; align-items: baseline; gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-soft), transform 0.6s var(--ease-soft), color 0.4s;
}
.mobile-menu.open .mobile-menu-inner a {
  opacity: 1; transform: translateY(0);
}
.mobile-menu.open .mobile-menu-inner a:nth-child(1) { transition-delay: 0.20s; }
.mobile-menu.open .mobile-menu-inner a:nth-child(2) { transition-delay: 0.26s; }
.mobile-menu.open .mobile-menu-inner a:nth-child(3) { transition-delay: 0.32s; }
.mobile-menu.open .mobile-menu-inner a:nth-child(4) { transition-delay: 0.38s; }
.mobile-menu.open .mobile-menu-inner a:nth-child(5) { transition-delay: 0.44s; }
.mobile-menu.open .mobile-menu-inner a:nth-child(6) { transition-delay: 0.50s; }
.mobile-menu-inner a:hover { color: var(--gold); }
.mobile-menu-inner .num {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text-muted);
}
.mobile-menu-footer {
  display: flex; flex-wrap: wrap; gap: 18px 36px;
  padding-top: 30px; border-top: 1px solid var(--line);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted);
}
.mobile-menu-footer .lbl { color: var(--gold); font-size: 10px; margin-bottom: 4px; }
.mobile-menu-footer .val { color: var(--text-soft); font-family: var(--f-display); font-size: 14px; text-transform: none; letter-spacing: 0; }
.mobile-socials { display: flex; gap: 20px; }
.mobile-socials a { color: var(--text); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh; min-height: 600px;
  width: 100%;
  overflow: hidden;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 100% at 50% 100%, rgba(10, 9, 7, 0.9) 0%, transparent 60%),
    linear-gradient(180deg, rgba(10, 9, 7, 0.55) 0%, rgba(10, 9, 7, 0.2) 30%, rgba(10, 9, 7, 0.45) 70%, rgba(10, 9, 7, 0.95) 100%);
}
.hero-light {
  position: absolute; inset: 0;
  background:
    radial-gradient(40% 28% at 50% 82%, rgba(255, 45, 183, 0.16) 0%, transparent 70%),
    radial-gradient(35% 22% at 18% 50%, rgba(212, 180, 120, 0.10) 0%, transparent 70%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-meta {
  position: absolute; top: 50%;
  display: flex; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--text-soft);
  z-index: 5;
  transform: rotate(-90deg) translateY(-50%);
  transform-origin: left center;
}
.hero-meta-left  { left: 32px; }
.hero-meta-right { right: 32px; transform: rotate(90deg) translateY(-50%); transform-origin: right center; }
.hero-meta-right { right: 22px; }
.hero-meta .dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }

.hero-content {
  position: relative; z-index: 4;
  text-align: center;
  padding: 0 var(--pad-x);
  max-width: 1200px;
}
.hero-eyebrow {
  font-family: var(--f-jp);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 30px;
}
.hero-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(100px, 22vw, 300px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: 0;
  display: flex; justify-content: center;
}
.hero-title .title-row {
  display: inline-flex; gap: clamp(8px, 1.5vw, 22px);
}
.hero-title [data-reveal="char"] {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}
.hero-sub {
  font-family: var(--f-display);
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: var(--text-soft);
  margin-top: 28px;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
}
.hero-sub em { color: var(--gold-bright); font-style: italic; }
.hero-ctas {
  margin-top: 44px;
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
}

.hero-scroll {
  position: absolute; bottom: 36px;
  left: 50%; transform: translateX(-50%);
  z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--text-soft);
}
.hero-scroll .scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
}
.hero-scroll .scroll-line::after {
  content: ""; position: absolute; top: -100%; left: 0;
  width: 100%; height: 50%;
  background: var(--gold-bright);
  animation: scrollLine 2.4s var(--ease-soft) infinite;
}
@keyframes scrollLine {
  0%   { top: -50%; }
  100% { top: 100%; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.5s var(--ease-soft), border-color 0.5s var(--ease-soft);
}
.btn svg { width: 14px; height: 14px; }
.btn-primary {
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
  box-shadow: 0 0 0 rgba(255, 45, 183, 0);
  transition: color 0.5s var(--ease-soft), box-shadow 0.5s var(--ease-soft);
}
.btn-primary::before {
  content: ""; position: absolute; inset: 0;
  background: var(--gold-bright);
  transform: translateY(101%);
  transition: transform 0.55s var(--ease-power);
}
.btn-primary span,
.btn-primary svg { position: relative; z-index: 1; }
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary:hover { box-shadow: 0 0 30px rgba(255, 45, 183, 0.45); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }

.btn-large { padding: 20px 40px; font-size: 13px; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-elev);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 40px;
  animation: marquee 38s linear infinite;
}
.marquee-row {
  display: flex; align-items: center; gap: 40px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(28px, 4.5vw, 56px);
  letter-spacing: -0.01em;
  color: var(--text-soft);
  white-space: nowrap;
}
.marquee-row i {
  font-style: normal;
  color: var(--gold);
  font-size: 0.5em;
  transform: translateY(-0.1em);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section {
  position: relative;
  padding: var(--section-y) var(--pad-x);
}
.section-head {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: clamp(40px, 6vw, 80px);
  max-width: 1200px;
}
.section-num {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-title {
  font-family: var(--f-display);
  font-size: clamp(48px, 8.5vw, 124px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--text);
}
.section-title em,
.cocktails-text h3 em,
.reservation-title em { color: var(--gold-bright); font-style: italic; }

[data-reveal="lines"] > span {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
}
[data-reveal="lines"] [data-line] {
  display: inline-block;
  transform: translateY(102%);
  transition: transform 1.15s var(--ease-power);
  will-change: transform;
}
[data-reveal="lines"].in [data-line] { transform: translateY(0); }
[data-reveal="lines"].in > span:nth-child(1) [data-line] { transition-delay: 0.05s; }
[data-reveal="lines"].in > span:nth-child(2) [data-line] { transition-delay: 0.18s; }
[data-reveal="lines"].in > span:nth-child(3) [data-line] { transition-delay: 0.30s; }

/* ============================================================
   EXPERIENCE SECTION
   ============================================================ */
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.experience-text p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 22px;
  max-width: 540px;
}
.experience-text p em { color: var(--gold-bright); }
.experience-text p .jp { font-family: var(--f-jp); color: var(--gold); }
.experience-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-top: 50px; gap: 24px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.experience-stats > div { display: flex; flex-direction: column; gap: 6px; }
.stat-num {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 38px);
  color: var(--gold);
  line-height: 1;
}
.stat-lbl {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text-muted);
}

.experience-visual {
  position: relative;
  height: 640px;
}
.experience-img {
  position: absolute;
  overflow: hidden;
}
.experience-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.2s var(--ease-soft);
}
.experience-img:hover img { transform: scale(1); }
.experience-img-1 {
  width: 60%; height: 70%;
  top: 0; left: 0;
}
.experience-img-2 {
  width: 55%; height: 60%;
  bottom: 0; right: 0;
  border: 8px solid var(--bg);
}
.experience-jp {
  position: absolute;
  font-family: var(--f-jp);
  font-size: clamp(120px, 16vw, 220px);
  color: rgba(255, 45, 183, 0.06);
  line-height: 0.85;
  bottom: -8%; left: -8%;
  pointer-events: none;
  z-index: -1;
}

/* ============================================================
   STRIP — horizontal scroll showcase
   ============================================================ */
.strip {
  overflow: hidden;
  padding: 30px 0;
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.strip-track {
  display: flex; gap: 20px;
  width: max-content;
  animation: strip 50s linear infinite;
}
.strip-img {
  width: 380px; height: 250px;
  overflow: hidden;
  flex-shrink: 0;
}
.strip-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.05);
  transition: transform 1.2s var(--ease-soft), filter 0.6s;
}
.strip-img:hover img { transform: scale(1.05); filter: brightness(1) saturate(1.15); }
@keyframes strip {
  to { transform: translateX(-50%); }
}

/* ============================================================
   CUISINE SECTION
   ============================================================ */
.cuisine-stack {
  display: flex; flex-direction: column;
  gap: clamp(80px, 12vw, 160px);
  max-width: 1400px;
  margin: 0 auto;
}
.cuisine-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.cuisine-row.reverse { grid-template-columns: 1fr 1.1fr; }
.cuisine-row.reverse .cuisine-img { order: 2; }
.cuisine-row.reverse .cuisine-body { order: 1; }
.cuisine-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.cuisine-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.4s var(--ease-soft);
}
.cuisine-img:hover img { transform: scale(1); }
.cuisine-tag {
  display: inline-block;
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative; padding-left: 36px;
}
.cuisine-tag::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 24px; height: 1px; background: var(--gold);
}
.cuisine-body h3 {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
  color: var(--text);
}
.cuisine-body p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-soft);
  max-width: 480px;
}
.cuisine-jp {
  display: block;
  font-family: var(--f-jp);
  font-size: 80px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.18;
  margin-top: 28px;
}

/* ============================================================
   MENU SECTION
   ============================================================ */
.menu-section { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 100%); }
.menu-filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 56px;
  /* Escape section padding so scroll runs edge-to-edge on mobile */
  margin-left: calc(var(--pad-x) * -1);
  margin-right: calc(var(--pad-x) * -1);
  padding: 4px var(--pad-x) 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-padding-left: var(--pad-x);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-content: flex-start;
}
.menu-filters::-webkit-scrollbar { display: none; }
/* Center pills when they ALL fit (no overflow). When overflowing, left-align so they're scrollable. */
@media (min-width: 768px) {
  .menu-filters { justify-content: center; }
}
.menu-filter {
  flex-shrink: 0;
  scroll-snap-align: center;
  padding: 10px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted);
  transition: all 0.4s var(--ease-soft);
  white-space: nowrap;
}
.menu-filter:hover { color: var(--text); border-color: var(--line-strong); }
.menu-filter.active {
  color: var(--bg);
  background: var(--gold);
  border-color: var(--gold);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
}
.menu-card {
  padding: 32px 36px;
  border-top: 1px solid var(--line);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), background 0.5s;
  cursor: default;
}
.menu-card:nth-child(odd) { border-right: 1px solid var(--line); }
.menu-card:hover { background: rgba(255, 45, 183, 0.03); }
.menu-card.hidden { display: none; }
.menu-card-head {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 10px;
}
.menu-card-head h3 {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.005em;
}
.menu-card-head .dots {
  flex: 1; height: 1px;
  border-bottom: 1px dotted var(--line-strong);
  align-self: center;
}
.menu-card-head .price {
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--gold-bright);
  font-variant-numeric: tabular-nums;
}
.menu-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 460px;
}
.menu-note {
  text-align: center;
  margin-top: 56px;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  letter-spacing: 0.02em;
}

/* ============================================================
   COCKTAILS / NIGHTLIFE
   ============================================================ */
.cocktails { padding: 0; }
.cocktails-wrap {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: var(--section-y) var(--pad-x);
}
.cocktails-bg { position: absolute; inset: 0; overflow: hidden; }
.cocktails-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(1.1);
  transform: scale(1.05);
}
.cocktails-bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 60% at 30% 50%, rgba(10, 9, 7, 0.6) 0%, rgba(10, 9, 7, 0.95) 100%),
    linear-gradient(90deg, var(--bg) 0%, transparent 50%, var(--bg) 100%);
}
.cocktails-content {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto;
  width: 100%;
}
.cocktails-text { max-width: 900px; }
.cocktails-text-section {
  text-align: center;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.cocktails-text-section .cocktails-text {
  margin: 0 auto;
  max-width: 880px;
}
.cocktails-text-section .cocktails-tags {
  justify-content: center;
}
.cocktails-text .kicker {
  font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.cocktails-text h3 {
  font-family: var(--f-display);
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 30px;
}
.cocktails-text h3 span { display: block; overflow: hidden; }
.cocktails-text h3 em { color: var(--gold-bright); font-style: italic; }
.cocktails-text p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-soft);
}
.cocktails-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 32px;
  list-style: none;
}
.cocktails-tags li {
  padding: 8px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: all 0.4s;
}
.cocktails-tags li:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }

/* ============================================================
   GALERIE — MASONRY
   ============================================================ */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 8px;
  max-width: 1500px;
  margin: 0 auto;
}
.g-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-soft), filter 0.5s;
  filter: brightness(0.92) saturate(1);
}
.g-item:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.1);
}
.g-item.g-tall { grid-row: span 2; }
.g-item.g-wide { grid-column: span 2; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 10001;
  background: rgba(10, 9, 7, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease-soft), visibility 0.4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90vw; max-height: 88vh;
  object-fit: contain;
  border: 1px solid var(--line);
  transform: scale(0.96);
  transition: transform 0.5s var(--ease-soft);
}
.lightbox.open img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 28px; right: 28px;
  width: 48px; height: 48px;
  font-size: 32px;
  color: var(--text-soft);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s var(--ease-soft);
}
.lightbox-close:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }

/* ============================================================
   SOCIAL GRID
   ============================================================ */
.social-carousel {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
}
.social-hint {
  position: absolute;
  right: var(--pad-x);
  top: -42px;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex; align-items: center; gap: 12px;
  pointer-events: none;
}
.social-hint svg { opacity: 0.5; }
.social-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  padding: 4px var(--pad-x);
  scroll-padding-left: var(--pad-x);
}
.social-grid::-webkit-scrollbar { display: none; }
.social-grid.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}
.social-grid.dragging img { pointer-events: none; }
.social-progress {
  margin: 30px var(--pad-x) 0;
  height: 1px;
  background: var(--line);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.social-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.1s linear;
}
.s-card {
  position: relative;
  width: clamp(260px, 22vw, 340px);
  flex-shrink: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  display: block;
}
.s-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-soft), filter 0.5s;
  filter: brightness(0.85);
}
.s-card:hover img { transform: scale(1.06); filter: brightness(1); }
.s-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 9, 7, 0.8) 100%);
  opacity: 0; transition: opacity 0.4s;
}
.s-card:hover::after { opacity: 1; }
.s-badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 12px;
  background: rgba(10, 9, 7, 0.65);
  backdrop-filter: blur(6px);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--line-strong);
  z-index: 2;
}

/* ============================================================
   SEO SECTION
   ============================================================ */
.seo-section { background: var(--bg-elev); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(40px, 5vw, 80px);
  max-width: 1300px;
  margin: 0 auto;
}
.seo-grid article {
  padding: 20px 0;
}
.seo-grid h3 {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  color: var(--gold-bright);
  margin-bottom: 16px;
  letter-spacing: -0.005em;
}
.seo-grid p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-soft);
}

/* ============================================================
   RESERVATION
   ============================================================ */
.reservation {
  position: relative;
  text-align: center;
  padding: 0;
  overflow: hidden;
}
.reservation-bg { position: absolute; inset: 0; }
.reservation-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(1.1) blur(2px);
}
.reservation-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 50% 50%, rgba(10, 9, 7, 0.55) 0%, rgba(10, 9, 7, 0.95) 100%);
}
.reservation-inner {
  position: relative;
  z-index: 2;
  padding: clamp(100px, 14vw, 200px) var(--pad-x);
  max-width: 760px;
  margin: 0 auto;
}
.kanji-watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-jp);
  font-size: clamp(280px, 50vw, 600px);
  color: rgba(255, 45, 183, 0.04);
  line-height: 0.85;
  pointer-events: none;
  z-index: -1;
}
.reservation .kicker {
  font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.reservation-title {
  font-family: var(--f-display);
  font-size: clamp(52px, 8.5vw, 120px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.reservation-title span { display: block; overflow: hidden; }
.reservation-title em { color: var(--gold-bright); font-style: italic; }
.reservation-sub {
  font-family: var(--f-display);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 50px;
}
.reservation-cta {
  display: flex; flex-direction: column; gap: 14px;
  align-items: center;
  margin-top: 20px;
}
.reservation-cta .btn { min-width: 320px; justify-content: center; }
@media (max-width: 560px) {
  .reservation-cta .btn { min-width: 0; width: 100%; padding: 18px 22px; font-size: 12px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  padding: 80px var(--pad-x) 30px;
  background: var(--bg);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand img {
  width: 84px; height: 84px;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 12px rgba(255, 45, 183, 0.45));
}
.footer-brand p {
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--text-soft);
}
.footer-brand p strong { color: var(--gold-bright); font-weight: 500; letter-spacing: 0.05em; }
.footer-brand p span { color: var(--text-muted); font-size: 14px; font-style: italic; }

.footer-col h4 {
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col p {
  font-family: var(--f-display);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-soft);
}
.footer-col a { color: var(--text-soft); }
.footer-col a:hover { color: var(--gold-bright); }

.footer-giant {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(90px, 24vw, 360px);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.045em;
  color: transparent;
  -webkit-text-stroke: 2.5px rgba(212, 180, 120, 0.35);
  text-align: center;
  margin: 30px 0;
  user-select: none;
  pointer-events: none;
}

.footer-bottom {
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted);
}
.footer-links { display: flex; gap: 24px; }
.footer-links a:hover { color: var(--gold); }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 20px; right: 20px;
  transform: translateY(140%);
  z-index: 998;
  padding: 14px 26px;
  background: var(--gold);
  color: var(--bg);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  border-radius: 999px;
  align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 24px rgba(212, 180, 120, 0.25);
  transition: transform 0.6s var(--ease-power);
}
.sticky-cta svg { width: 14px; height: 14px; }
.sticky-cta.visible { transform: translateY(0); }

/* ============================================================
   REVEAL ANIMATION STATES
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1s var(--ease-soft),
    transform 1.1s var(--ease-soft);
  will-change: opacity, transform;
}
[data-reveal="zoom"] {
  transform: scale(1.04);
  filter: brightness(0.6);
  transition: opacity 1s var(--ease-soft), transform 1.4s var(--ease-soft), filter 1.2s;
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: brightness(1);
}
[data-reveal="row"] {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.2s var(--ease-soft), transform 1.2s var(--ease-soft);
}

/* (line-reveal rules consolidated above with [data-reveal="lines"]) */

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .gallery-masonry { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
}

@media (max-width: 900px) {
  :root {
    --nav-h: 64px;
  }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }

  .hero-meta { display: none; }
  .hero { min-height: 88vh; height: 100svh; }

  .experience-grid { grid-template-columns: 1fr; gap: 60px; }
  .experience-visual { height: 480px; }
  .experience-stats { grid-template-columns: 1fr 1fr 1fr; gap: 12px; }

  .cuisine-row,
  .cuisine-row.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cuisine-row.reverse .cuisine-img { order: 0; }
  .cuisine-row.reverse .cuisine-body { order: 1; }
  .cuisine-img { aspect-ratio: 1 / 1; max-height: 70vh; }

  .menu-grid { grid-template-columns: 1fr; }
  .menu-card:nth-child(odd) { border-right: 0; }
  .menu-card { padding: 26px 0; }

  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .hide-mobile { display: none; }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .sticky-cta { display: inline-flex; }

  .strip-img { width: 280px; height: 180px; }
}

@media (max-width: 560px) {
  :root {
    --pad-x: 20px;
    --section-y: 80px;
  }
  .hero-eyebrow { font-size: 11px; }
  .hero-sub { font-size: 15px; margin-top: 22px; }
  .hero-ctas { gap: 10px; margin-top: 32px; }
  .btn { padding: 14px 22px; font-size: 11px; }

  .marquee-row { font-size: 36px; gap: 26px; }
  .marquee-track { gap: 26px; }

  .experience-img-1, .experience-img-2 { width: 78%; height: 60%; }
  .experience-img-2 { border-width: 6px; }

  .gallery-masonry { grid-auto-rows: 140px; }
  .g-item.g-wide { grid-column: span 2; }
  .g-item.g-tall { grid-row: span 1; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-giant { font-size: 130px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print  */
@media print {
  .nav, .loader, .cursor, .cursor-trail, .grain, .vignette,
  .marquee, .strip, .sticky-cta { display: none; }
  body { color: #000; background: #fff; }
}

/* ============================================================
   Image-specific cropping
   ============================================================ */
img[src*="yoru-roll-chopsticks"] {
  object-position: center 85%;
  transform-origin: center bottom;
}

/* ============================================================
   MOMENTS — Triptyque inline (3 images asymétriques)
   ============================================================ */
.moments {
  padding: clamp(60px, 9vw, 130px) var(--pad-x);
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-elev) 0%, var(--bg) 100%);
  border-top: 1px solid var(--line);
}
.moments-track {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: clamp(18px, 3vw, 48px);
  max-width: 1400px; margin: 0 auto;
  align-items: center;
}
.moments-track:has(.m-card-solo) {
  grid-template-columns: 1fr;
  max-width: 720px;
}
.m-card-solo {
  aspect-ratio: 4 / 5;
  width: 100%;
}
.m-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  margin: 0;
  cursor: pointer;
}
.m-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-soft), filter 0.6s;
  filter: brightness(0.92) saturate(1.05);
}
.m-card:hover img {
  transform: scale(1.06);
  filter: brightness(1.05) saturate(1.15);
}
.m-card figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px 22px 18px;
  font-family: var(--f-display);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--text);
  background: linear-gradient(180deg, transparent 0%, rgba(10, 8, 7, 0.85) 100%);
  z-index: 2;
}
.m-card figcaption em {
  font-family: var(--f-jp);
  font-style: normal;
  color: var(--gold-bright);
  margin-right: 6px;
}
.m-card-2 {
  aspect-ratio: 4 / 5.2;
  transform: translateY(-30px);
}
.m-card-3 { transform: translateY(20px); }
@media (max-width: 800px) {
  .moments-track { grid-template-columns: 1fr 1fr; gap: 14px; }
  .m-card-3 { grid-column: span 2; aspect-ratio: 5 / 4; transform: none; }
  .m-card-2 { transform: none; aspect-ratio: 3 / 4; }
}
@media (max-width: 560px) {
  .moments-track { grid-template-columns: 1fr; }
  .m-card-3 { grid-column: span 1; aspect-ratio: 4 / 3; }
}

/* ============================================================
   AMBIANCE — Full-bleed venue immersion
   ============================================================ */
.ambiance {
  position: relative;
  min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: clamp(80px, 12vw, 160px) var(--pad-x);
  text-align: center;
}
.ambiance-bg { position: absolute; inset: 0; }
.ambiance-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(1.05);
  transform: scale(1.04);
}
.ambiance-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(45% 55% at 50% 50%, rgba(10, 8, 7, 0.45) 0%, rgba(10, 8, 7, 0.92) 100%),
    linear-gradient(180deg, var(--bg) 0%, transparent 18%, transparent 82%, var(--bg) 100%);
}
.ambiance-content {
  position: relative; z-index: 2;
  max-width: 1100px;
}
.ambiance-eyebrow {
  font-family: var(--f-jp);
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 38px;
}
.ambiance-title {
  font-family: var(--f-display);
  font-weight: 400;
  margin-bottom: 38px;
  line-height: 0.94;
}
.ambiance-title .big-italic,
.ambiance-title .big-outline {
  display: inline-block;
  font-size: clamp(56px, 11vw, 180px);
}
.ambiance-title .big-outline em {
  -webkit-text-stroke: 0;
  color: var(--gold-bright);
}
.ambiance-sub {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 22px);
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 40px;
}
.ambiance .btn-ghost {
  background: rgba(10, 8, 7, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@media (max-width: 560px) {
  .ambiance { min-height: 75vh; }
  .ambiance-title .big-italic,
  .ambiance-title .big-outline { font-size: clamp(40px, 13vw, 80px); }
}

/* ============================================================
   ░░░░░░░░░░  MISS KŌ-INSPIRED ADDITIONS  ░░░░░░░░░░
   Stamps · big italic statements · pill toggle ·
   horizontal sticky scroll · cursor label · hover layers
   ============================================================ */

/* ----- Cursor with text label ----- */
.cursor-label {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-sans);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bg);
  opacity: 0;
  transition: opacity 0.3s var(--ease-soft);
  white-space: nowrap;
  mix-blend-mode: normal;
}
.cursor-trail.has-label {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  mix-blend-mode: normal;
}
.cursor-trail.has-label .cursor-label { opacity: 1; }
.cursor-trail.has-label { width: 84px; height: 84px; opacity: 1; }
.cursor.has-label { opacity: 0; }

/* ----- Stamp / rotating badge ----- */
.stamp {
  position: absolute;
  width: 142px; height: 142px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--neon);
  pointer-events: auto;
  text-decoration: none;
}
.stamp svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  animation: stampSpin 18s linear infinite;
}
.stamp-core {
  position: relative;
  font-family: var(--f-jp);
  font-size: 32px;
  line-height: 0.95;
  text-align: center;
  color: var(--neon-bright);
  text-shadow: 0 0 18px rgba(255, 94, 196, 0.6), 0 0 40px rgba(255, 45, 183, 0.4);
  transition: transform 0.5s var(--ease-soft);
}
.stamp:hover .stamp-core { transform: scale(1.15); }
.stamp-hero {
  right: clamp(20px, 5vw, 60px);
  bottom: clamp(40px, 8vw, 110px);
  z-index: 6;
}
.stamp-statement {
  right: 6vw;
  top: 50%;
  transform: translateY(-50%);
  width: 180px; height: 180px;
  color: var(--neon);
  opacity: 0.95;
}
.stamp-statement .stamp-core {
  font-size: 48px;
  color: var(--neon-bright);
  text-shadow: 0 0 28px rgba(255, 45, 183, 0.7), 0 0 70px rgba(255, 45, 183, 0.35);
}
@keyframes stampSpin { to { transform: rotate(360deg); } }

/* ----- Service Bar (pill toggle Soir/Midi) ----- */
.service-bar {
  display: flex; justify-content: center;
  padding: 50px var(--pad-x) 30px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.pill-toggle {
  position: relative;
  display: inline-flex;
  background: var(--bg-elev);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}
.pill {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  padding: 12px 28px;
  border-radius: 999px;
  color: var(--text-muted);
  transition: color 0.4s var(--ease-soft);
  min-width: 160px;
}
.pill:hover { color: var(--text-soft); }
.pill.active { color: var(--bg); }
.pill-num {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.pill-name {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: inline-flex; align-items: baseline; gap: 8px;
}
.pill-name em {
  font-family: var(--f-jp);
  font-style: normal;
  font-size: 0.85em;
  color: inherit;
  opacity: 0.7;
}
.pill-indicator {
  position: absolute;
  top: 6px; bottom: 6px;
  width: calc(50% - 6px);
  border-radius: 999px;
  background: var(--gold);
  transition: transform 0.55s var(--ease-power);
  z-index: 1;
  left: 6px;
}
.pill-toggle.is-midi .pill-indicator { transform: translateX(100%); }

/* ----- STATEMENT — big italic ----- */
.statement {
  position: relative;
  padding: clamp(90px, 14vw, 200px) var(--pad-x);
  background:
    radial-gradient(60% 80% at 20% 30%, rgba(255, 94, 196, 0.08), transparent 70%),
    var(--bg);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.statement-track {
  display: flex; flex-direction: column;
  gap: clamp(8px, 1.4vw, 18px);
  max-width: 1500px; margin: 0 auto;
  position: relative; z-index: 2;
}
.statement-line {
  display: flex; align-items: baseline;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 50px);
  font-weight: 400; margin: 0;
  line-height: 0.92;
}
.big-italic {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(72px, 16vw, 280px);
  letter-spacing: -0.045em;
  color: var(--text);
  line-height: 0.92;
}
.big-outline {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(72px, 16vw, 280px);
  letter-spacing: -0.045em;
  color: transparent;
  -webkit-text-stroke: 3px var(--gold);
  line-height: 0.92;
}
.big-outline em {
  -webkit-text-stroke: 0;
  color: var(--gold-bright);
  font-style: italic;
}
.big-kanji {
  font-family: var(--f-jp);
  font-size: clamp(100px, 19vw, 300px);
  color: var(--neon);
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-shadow:
    0 0 34px rgba(255, 45, 183, 0.6),
    0 0 90px rgba(255, 45, 183, 0.3);
}

/* ----- CUISINE — Horizontal Swipe Scroll ----- */
.cuisine-pin {
  position: relative;
  padding: var(--section-y) 0 calc(var(--section-y) * 0.7);
  overflow: hidden;
  background: var(--bg);
}
.cuisine-pin-stage {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 70px);
}
.cuisine-pin-head {
  padding: 0 var(--pad-x);
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
}
.cuisine-pin-head .section-num {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}
.cuisine-pin-title {
  font-family: var(--f-display);
  font-size: clamp(38px, 6vw, 90px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  max-width: 900px;
}
.cuisine-pin-title .big-italic,
.cuisine-pin-title .big-outline {
  font-size: clamp(42px, 7vw, 96px);
  display: inline;
}
.cuisine-pin-title .big-outline { -webkit-text-stroke-width: 2.5px; }
.cuisine-pin-hint {
  position: absolute;
  right: var(--pad-x);
  top: 8px;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex; align-items: center; gap: 12px;
}
.cuisine-pin-hint svg { opacity: 0.5; }

.cuisine-pin-track {
  display: flex;
  align-items: stretch;
  padding: 0 var(--pad-x);
  gap: clamp(20px, 3vw, 44px);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  scroll-padding-left: var(--pad-x);
}
.cuisine-pin-track::-webkit-scrollbar { display: none; }
.cuisine-pin-track.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}
.cuisine-pin-track.dragging img { pointer-events: none; }

.cuisine-card {
  display: flex;
  flex-direction: column;
  width: clamp(340px, 40vw, 560px);
  position: relative;
  flex-shrink: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.cuisine-card figure {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0;
}
.cuisine-card figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1.2s var(--ease-soft), filter 0.6s;
  filter: brightness(0.9) saturate(1.05);
}
.cuisine-card:hover figure img {
  transform: scale(1.12);
  filter: brightness(1) saturate(1.15);
}
.cuisine-card-num {
  position: absolute;
  top: 14px; left: 18px;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 96px;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--text);
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
  line-height: 0.9;
  z-index: 2;
}
.cuisine-card-body {
  padding-top: 26px;
  position: relative;
}
.cuisine-card-body .cuisine-tag {
  display: inline-block;
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  padding-left: 36px;
  position: relative;
}
.cuisine-card-body .cuisine-tag::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 24px; height: 1px; background: var(--gold);
}
.cuisine-card-body h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}
.cuisine-card-body h3 em {
  font-style: italic;
  color: var(--gold-bright);
}
.cuisine-card-body p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 460px;
}
.cuisine-card-body .cuisine-jp {
  display: block;
  font-family: var(--f-jp);
  font-size: 56px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.16;
  margin-top: 12px;
}

.cuisine-pin-progress {
  margin: clamp(30px, 4vw, 50px) var(--pad-x) 0;
  height: 1px;
  background: var(--line);
  position: relative;
}
.cuisine-pin-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.1s linear;
}

/* ----- Hover layer effect (image color-shift) ----- */
.g-item::before,
.s-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 100% at 50% 50%, rgba(255, 94, 196, 0) 0%, rgba(255, 45, 183, 0.5) 100%);
  opacity: 0;
  mix-blend-mode: soft-light;
  z-index: 1;
  transition: opacity 0.5s var(--ease-soft);
  pointer-events: none;
}
.g-item:hover::before,
.s-card:hover::before { opacity: 1; }

/* ----- Big section dividers (marquee accent) ----- */
.marquee + .section,
.strip + .section { position: relative; }

/* ----- Reduce stamp size on mobile ----- */
@media (max-width: 900px) {
  .stamp { width: 100px; height: 100px; }
  .stamp-core { font-size: 22px; }
  .stamp-statement { width: 110px; height: 110px; right: 5vw; }
  .stamp-statement .stamp-core { font-size: 30px; }
  .stamp svg text { font-size: 11px !important; }

  .pill { min-width: 130px; padding: 10px 18px; }
  .pill-name { font-size: 18px; }

  .statement { padding: 70px var(--pad-x); }
  .big-italic, .big-outline { font-size: clamp(56px, 15vw, 110px); }
  .big-outline { -webkit-text-stroke-width: 2px; }
  .big-kanji { font-size: clamp(72px, 19vw, 130px); }

  .cuisine-pin { padding: 60px 0 80px; }
  .cuisine-pin-hint { display: none; }
  .cuisine-card { width: 80vw; }
  .cuisine-card figure { aspect-ratio: 1 / 1; }
}
@media (max-width: 560px) {
  .cuisine-card { width: 86vw; }
  .pill { min-width: 0; flex: 1; padding: 10px 14px; }
  .pill-name { font-size: 16px; }
  .pill-num { font-size: 8px; letter-spacing: 0.24em; }
  .service-bar { padding: 32px 16px 24px; }
  .pill-toggle { width: 100%; max-width: 380px; }
  .stamp-hero { width: 86px; height: 86px; right: 16px; bottom: 80px; }
  .stamp-hero .stamp-core { font-size: 18px; }
  .stamp-statement { width: 96px; height: 96px; right: 4vw; top: auto; bottom: 6vw; transform: none; }
  .stamp-statement .stamp-core { font-size: 26px; }
  .statement-track { gap: 6px; }
  .statement-line { gap: 10px; }
  .big-italic, .big-outline { font-size: clamp(46px, 14vw, 80px); }
  .big-outline { -webkit-text-stroke-width: 2px; }
  .big-kanji { font-size: clamp(60px, 17vw, 100px); }
  .cuisine-pin-title { font-size: clamp(30px, 8vw, 48px); }
  .reservation-cta .btn svg { flex-shrink: 0; }
}

@media (max-width: 380px) {
  .hero-title .title-row { gap: 4px; }
  .marquee-row { font-size: 30px; gap: 18px; }
  .marquee-track { gap: 18px; }
  .footer-giant { font-size: 90px; }
}
