/* =====================================================
   AYKOO SUSHI · stylesheet — Dark luxury edition
   Palette : 墨 · 和紙 · 金 · 朱 · 浅葱
   ===================================================== */

:root {
  /* dark surfaces */
  --sumi:    #0a0a0a;      /* page background — near black */
  --sumi-2:  #121110;      /* card background */
  --sumi-3:  #1b1916;      /* elevated card / hover */
  --sumi-4:  #232019;      /* borders / soft separation */

  /* warm light text */
  --washi:        #ede5d2; /* primary text — warm cream */
  --washi-mute:   #b5ad9c; /* secondary text */
  --nezumi:       #6e6a60; /* tertiary / muted */
  --nezumi-2:     #4d4a44; /* subtle */

  /* accents */
  --gold:      #c9a55c;    /* champagne gold — accents, headings */
  --gold-2:    #d9b870;    /* lighter gold */
  --gold-soft: #8a7440;    /* deep gold for borders */
  --shu:       #b04a3e;    /* earthy red — used very sparingly */
  --asagi:     #6c9192;    /* deep teal — secondary accent */

  --line:      rgba(201, 165, 92, 0.12);
  --line-2:    rgba(237, 229, 210, 0.06);

  --serif: "Cormorant Garamond", "Shippori Mincho", serif;
  --sans:  "Inter", system-ui, -apple-system, sans-serif;
  --jp:    "Shippori Mincho", "Cormorant Garamond", serif;

  --container: 1320px;
  --pad: clamp(20px, 4vw, 56px);

  --ease:     cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--sumi);
  color: var(--washi);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ============ TYPOGRAPHY ============ */
.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 5.4vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.012em;
  color: var(--washi);
}
.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.kicker {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.section-lead {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-style: italic;
  color: var(--washi-mute);
  max-width: 56ch;
  line-height: 1.55;
  margin-top: 1rem;
  font-weight: 300;
}

.muted { color: var(--washi-mute); }
.small { font-size: 0.82rem; }

/* ============ PRELOADER ============ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--sumi);
  z-index: 9999;
  display: grid;
  place-items: center;
  transition: opacity 0.9s var(--ease), visibility 0.9s var(--ease);
}
.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader .ink {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.preloader-text {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1.4s 0.5s var(--ease-out) forwards;
}
.preloader-text .kanji {
  font-family: var(--jp);
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 0 40px rgba(201, 165, 92, 0.35);
}
.preloader-text .brand {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.6em;
  color: var(--washi-mute);
  text-transform: uppercase;
  padding-left: 0.6em;
}
.preloader #inkCircle { fill: var(--gold); opacity: 0.18; }

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

/* ============ CURSOR ============ */
.cursor, .cursor-trail {
  position: fixed;
  pointer-events: none;
  z-index: 9000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transition: width 0.25s, height 0.25s, background 0.25s;
  box-shadow: 0 0 12px rgba(201, 165, 92, 0.6);
}
.cursor-trail {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 165, 92, 0.35);
  transition: transform 0.18s var(--ease-out), width 0.3s, height 0.3s;
}
.cursor.hover { width: 12px; height: 12px; }
.cursor-trail.hover { width: 64px; height: 64px; border-color: rgba(201, 165, 92, 0.7); }

@media (hover: none), (max-width: 900px) {
  .cursor, .cursor-trail { display: none; }
  body { cursor: auto; }
}
@media (hover: hover) and (min-width: 901px) {
  body, a, button { cursor: none; }
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad);
  z-index: 100;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
  padding: 12px var(--pad);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.logo-kanji {
  font-family: var(--jp);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 18px rgba(201, 165, 92, 0.25);
}
.logo-kanji.big { font-size: 3rem; }
.logo-text {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.42em;
  font-weight: 400;
  color: var(--washi);
}
.nav-links {
  display: flex;
  gap: 2.4rem;
}
.nav-links a {
  position: relative;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--washi);
  padding: 6px 0;
  transition: color 0.25s var(--ease);
  font-weight: 500;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  padding: 11px 20px;
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  border-radius: 999px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--sumi);
  border-color: var(--gold);
}
.nav-burger { display: none; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { padding: 8px 14px; font-size: 0.78rem; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 140px var(--pad) 80px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 80% 20%, rgba(201, 165, 92, 0.06), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(108, 145, 146, 0.04), transparent 60%),
    var(--sumi);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.hero-bg::before, .hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}
.hero-bg::before {
  top: 8%; right: 6%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(201, 165, 92, 0.22), transparent 70%);
}
.hero-bg::after {
  bottom: 6%; left: -8%;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(108, 145, 146, 0.18), transparent 70%);
}

/* gold particles / bokeh */
.particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.particles span {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 184, 112, 0.9), rgba(217, 184, 112, 0) 70%);
  opacity: 0;
  animation: floatUp 14s ease-in infinite;
}
@keyframes floatUp {
  0%   { transform: translateY(0) scale(0.6); opacity: 0; }
  10%  { opacity: 1; }
  100% { transform: translateY(-120vh) scale(1); opacity: 0; }
}

.hero-kanji-wrap {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: -1;
}
.hero-kanji {
  font-family: var(--jp);
  font-size: clamp(28rem, 56vw, 50rem);
  color: var(--gold);
  opacity: 0.045;
  font-weight: 800;
  line-height: 1;
  user-select: none;
}

.hero-content {
  position: relative;
  max-width: 760px;
}
.overline {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
}
.overline::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(5rem, 14vw, 12rem);
  line-height: 0.92;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--washi);
  margin-bottom: 1.4rem;
  overflow: hidden;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 1.2s 0.9s var(--ease-out) forwards;
}
.hero-title .line span:nth-child(2) {
  animation-delay: 1.1s;
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

@keyframes rise { to { transform: translateY(0); } }

.hero-sub {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  color: var(--washi-mute);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s 1.6s var(--ease-out) forwards;
  font-weight: 300;
}
.hero-sub em { font-style: italic; color: var(--gold); }

.hero-meta {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  margin-bottom: 3.5rem;
  opacity: 0;
  animation: fadeUp 1s 1.9s var(--ease-out) forwards;
}
.hero-meta > div:not(.div) {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta span {
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--nezumi);
  font-weight: 500;
}
.hero-meta strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--washi);
}
.hero-meta .div {
  width: 1px;
  height: 30px;
  background: var(--line);
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: fadeUp 1s 2.2s var(--ease-out) forwards;
  font-weight: 500;
}
.hero-scroll svg { width: 16px; height: 28px; }
.hero-scroll svg path { stroke: var(--gold); animation: bounce 2.4s var(--ease-out) infinite; }

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

.hero-seal {
  position: absolute;
  right: var(--pad);
  bottom: var(--pad);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--shu);
  display: grid;
  place-items: center;
  color: var(--washi);
  font-family: var(--jp);
  font-weight: 800;
  font-size: 2.2rem;
  box-shadow: 0 8px 30px rgba(176, 74, 62, 0.35), inset 0 0 0 1px rgba(255,255,255,0.06);
  opacity: 0;
  animation: fadeUp 1.2s 2.4s var(--ease-out) forwards, sealRotate 24s linear infinite;
}
@keyframes sealRotate { to { transform: rotate(360deg); } }
.seal-kanji {
  display: inline-block;
  animation: sealCounter 24s linear infinite;
}
@keyframes sealCounter { to { transform: rotate(-360deg); } }

/* ============ STORY ============ */
.story {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 50%, rgba(201, 165, 92, 0.04), transparent 55%),
    var(--sumi);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
}
.story-side { position: sticky; top: 120px; }
.story-side .display { margin-top: 0.4rem; }
.kanji-watermark {
  display: block;
  font-family: var(--jp);
  font-size: clamp(8rem, 14vw, 14rem);
  color: var(--gold);
  opacity: 0.06;
  margin-top: -2rem;
  line-height: 0.8;
  font-weight: 800;
  user-select: none;
}
.story-body p { margin-bottom: 1.4rem; color: var(--washi-mute); font-size: 1.02rem; font-weight: 300; }
.story-body p.lead {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.8vw, 1.7rem);
  color: var(--washi);
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  margin-bottom: 2rem;
}
.story-body p em { color: var(--gold); font-style: italic; }
.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.story-stats div { display: flex; flex-direction: column; gap: 6px; }
.story-stats strong {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.story-stats span {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--nezumi);
  font-weight: 500;
}

@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-side { position: static; }
  .story-stats { grid-template-columns: 1fr; gap: 16px; }
}

/* ============ MENU ============ */
.menu {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 165, 92, 0.05), transparent 50%),
    var(--sumi);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 80px);
  position: relative;
}
.section-header .kicker { margin-bottom: 0.6rem; }
.section-header .section-lead {
  margin: 1.6rem auto 0;
  text-align: center;
}
.kanji-deco {
  display: block;
  font-family: var(--jp);
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--gold);
  opacity: 0.22;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: 0.1em;
}

/* ====== Menu toolbar : search + tabs ====== */
.menu-toolbar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 2.4rem;
  padding-bottom: 0;
  border-bottom: 1px solid var(--line);
}

.menu-search {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
  background: var(--sumi-2);
  border: 1px solid rgba(201, 165, 92, 0.18);
  border-radius: 999px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.menu-search:focus-within {
  border-color: rgba(201, 165, 92, 0.55);
  background: var(--sumi-3);
}
.menu-search__icon {
  width: 18px;
  height: 18px;
  margin-left: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.menu-search input {
  flex: 1;
  padding: 14px 14px 14px 12px;
  background: transparent;
  border: none;
  outline: none;
  color: var(--washi);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 400;
  -webkit-appearance: none;
  appearance: none;
  min-width: 0;
}
.menu-search input::placeholder {
  color: var(--nezumi);
  font-style: italic;
  font-family: var(--serif);
  font-size: 1rem;
}
.menu-search input::-webkit-search-cancel-button { -webkit-appearance: none; appearance: none; }
.menu-search__clear {
  width: 32px; height: 32px;
  margin-right: 6px;
  display: grid; place-items: center;
  color: var(--washi-mute);
  border-radius: 50%;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.menu-search__clear svg { width: 14px; height: 14px; }
.menu-search__clear:hover { background: rgba(237, 229, 210, 0.08); color: var(--washi); }

.menu-tabs-wrap {
  position: relative;
}
.menu-tabs-wrap::before,
.menu-tabs-wrap::after {
  content: "";
  position: absolute;
  top: 0; bottom: 12px;
  width: 36px;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.menu-tabs-wrap::before { left: 0;  background: linear-gradient(90deg, var(--sumi), transparent); }
.menu-tabs-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--sumi), transparent); }

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  padding: 0 0 12px;
  scroll-behavior: smooth;
  transition: opacity 0.4s var(--ease);
}
.menu-tabs.dimmed { opacity: 0.4; }
.menu-tabs button {
  position: relative;
  padding: 10px 18px;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--washi-mute);
  font-family: var(--sans);
  font-weight: 500;
  transition: color 0.3s var(--ease);
  flex-shrink: 0;
  white-space: nowrap;
}
.menu-tabs button .jp {
  display: block;
  font-family: var(--jp);
  font-size: 1rem;
  letter-spacing: 0;
  margin-bottom: 3px;
  color: var(--nezumi);
  font-weight: 500;
  transition: color 0.3s var(--ease);
}
.menu-tabs button .lbl { display: block; }
.menu-tabs button.active { color: var(--washi); }
.menu-tabs button.active .jp { color: var(--gold); }
.menu-tabs button::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s var(--ease);
}
.menu-tabs button.active::after { transform: scaleX(1); }
.menu-tabs button:hover { color: var(--washi); }

/* ====== Search results bar ====== */
.menu-results {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: -1rem 0 2rem;
  padding: 14px 18px;
  background: var(--sumi-2);
  border: 1px solid rgba(201, 165, 92, 0.18);
  border-radius: 4px;
}
.menu-results__count {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--washi-mute);
  font-weight: 300;
}
.menu-results__count strong { color: var(--gold); font-style: normal; font-weight: 500; font-family: var(--serif); }
.menu-results__count em { color: var(--washi); font-style: italic; }
.menu-results__reset {
  padding: 8px 18px;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  font-weight: 500;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.menu-results__reset:hover { background: var(--gold); color: var(--sumi); }

/* ====== Category chip on dish card (in search mode) ====== */
.dish-cat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  padding: 4px 10px 4px 8px;
  margin-bottom: 4px;
  background: rgba(201, 165, 92, 0.08);
  border: 1px solid rgba(201, 165, 92, 0.22);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.dish-cat__kanji {
  font-family: var(--jp);
  font-size: 0.85rem;
  letter-spacing: 0;
  color: var(--gold);
  line-height: 1;
}
.dish-cat:hover {
  background: var(--gold);
  color: var(--sumi);
}
.dish-cat:hover .dish-cat__kanji { color: var(--sumi); }

/* ====== Empty search ====== */
.menu-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--washi-mute);
}
.menu-empty .kanji {
  display: block;
  font-family: var(--jp);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 20px;
  font-weight: 800;
}
.menu-empty h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--washi);
  margin-bottom: 12px;
}
.menu-empty p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.6;
}
.menu-empty em { color: var(--gold); font-style: italic; }
.menu-empty strong { color: var(--washi); font-weight: 500; }

/* ====== Mobile : compact section header + horizontal scroll tabs ====== */
@media (max-width: 768px) {
  .section-header { margin-bottom: 28px; }
  .section-header .kanji-deco { font-size: 2rem; opacity: 0.18; }
  .section-header .display { font-size: 1.9rem; line-height: 1.1; }
  .section-header .section-lead { font-size: 0.95rem; margin-top: 0.6rem; }

  .menu-toolbar { gap: 12px; margin-bottom: 1.6rem; }
  .menu-search input { font-size: 0.88rem; padding: 12px 12px 12px 8px; }
  .menu-search input::placeholder { font-size: 0.92rem; }

  .menu-tabs-wrap { margin: 0 calc(var(--pad) * -1); }
  .menu-tabs-wrap::before, .menu-tabs-wrap::after { opacity: 1; width: 28px; bottom: 8px; }
  .menu-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    padding: 0 var(--pad) 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .menu-tabs button {
    scroll-snap-align: center;
    padding: 8px 14px;
    font-size: 0.66rem;
    letter-spacing: 0.16em;
  }
  .menu-tabs button .jp { font-size: 0.95rem; margin-bottom: 2px; }

  .menu-results { padding: 12px 14px; margin: -0.4rem 0 1.4rem; }
  .menu-results__count { font-size: 0.92rem; }
  .menu-results__reset { padding: 7px 14px; font-size: 0.66rem; }

  .menu-grid { grid-template-columns: 1fr; gap: 16px; }
  .menu-intro { grid-template-columns: 1fr; gap: 8px; padding: 12px 4px; }
  .menu-intro .big-jp { font-size: 3.5rem; }
}

.menu-stage { position: relative; min-height: 320px; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}

/* ====== DISH CARD (dark luxury edition) ====== */
.dish {
  position: relative;
  background: var(--sumi-2);
  border: 1px solid rgba(201, 165, 92, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
  overflow: hidden;
}
.dish::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.6s var(--ease);
  z-index: 4;
}
.dish:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 165, 92, 0.25);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.dish:hover::before { transform: scaleX(1); }

.dish-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #050505;
}
.dish-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.6s var(--ease);
}
.dish:hover .dish-img img {
  transform: scale(1.07);
  filter: brightness(1.05) contrast(1.05);
}
.dish-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
  z-index: 2;
}

/* ref badge — stamped on image top-left */
.dish-ref-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px 7px 12px;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  border-radius: 2px;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  transition: transform 0.5s var(--ease), background 0.5s var(--ease);
}
.dish-ref-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(201, 165, 92, 0.8);
}
.dish:hover .dish-ref-badge {
  transform: translateY(-1px);
  background: rgba(176, 74, 62, 0.92);
  border-color: rgba(237, 229, 210, 0.5);
  color: var(--washi);
}
.dish:hover .dish-ref-badge::before {
  background: var(--washi);
  box-shadow: 0 0 8px rgba(237, 229, 210, 0.7);
}

.dish-img--placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(201, 165, 92, 0.10), transparent 70%),
    linear-gradient(135deg, var(--sumi-3), var(--sumi-2));
}
.dish-img--placeholder::after { display: none; }
.dish-kanji {
  font-family: var(--jp);
  font-size: 4.5rem;
  color: rgba(201, 165, 92, 0.35);
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 0 30px rgba(201, 165, 92, 0.15);
}

.dish-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.dish .ref {
  font-family: var(--serif);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  color: var(--gold-soft);
  text-transform: uppercase;
  font-weight: 500;
}
.dish .jp {
  font-family: var(--jp);
  font-size: 1rem;
  color: var(--asagi);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  font-weight: 500;
}
.dish h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--washi);
  line-height: 1.2;
}
.dish .desc {
  font-size: 0.92rem;
  color: var(--washi-mute);
  line-height: 1.55;
  margin-top: 4px;
  flex: 1;
  font-weight: 300;
}
/* Inclusions (servi avec : salade · soupe · riz) */
.dish-inc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.dish-inc__lbl {
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-right: 4px;
  font-weight: 500;
}
.dish-inc__chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px 3px 8px;
  font-family: var(--serif);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--washi);
  background: rgba(201, 165, 92, 0.08);
  border: 1px solid rgba(201, 165, 92, 0.22);
  border-radius: 999px;
  letter-spacing: 0.01em;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.dish-inc__chip::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.dish:hover .dish-inc__chip {
  background: rgba(201, 165, 92, 0.14);
  border-color: rgba(201, 165, 92, 0.40);
}

.dish .row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.dish .price {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
}
.dish .meta {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--nezumi);
  font-weight: 500;
}

/* category intro card */
.menu-intro {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 24px 8px;
  margin-bottom: 8px;
}
.menu-intro .big-jp {
  font-family: var(--jp);
  font-size: clamp(4rem, 8vw, 6.5rem);
  font-weight: 800;
  color: var(--gold);
  opacity: 0.18;
  line-height: 1;
}
.menu-intro h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--washi);
}
.menu-intro p {
  color: var(--washi-mute);
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.05rem;
  margin-top: 4px;
  font-weight: 300;
}

/* ============ SIGNATURES ============ */
.signatures {
  padding: clamp(80px, 12vw, 160px) 0 60px;
  background:
    radial-gradient(circle at 20% 30%, rgba(176, 74, 62, 0.05), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(201, 165, 92, 0.05), transparent 55%),
    var(--sumi);
  color: var(--washi);
  position: relative;
  overflow: hidden;
}
.signatures .display { color: var(--washi); }
.signatures .display em { color: var(--gold); }
.signatures .kicker { color: var(--gold-soft); }
.signatures .kanji-deco { color: var(--shu); opacity: 0.4; }

.sig-track-wrap {
  margin-top: 60px;
  overflow: hidden;
  padding-bottom: 30px;
}
.sig-track {
  display: flex;
  gap: 28px;
  padding: 0 var(--pad);
  transition: transform 0.7s var(--ease);
  will-change: transform;
}
.sig-card {
  flex: 0 0 380px;
  background: var(--sumi-2);
  border: 1px solid rgba(201, 165, 92, 0.10);
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
  overflow: hidden;
}
.sig-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 165, 92, 0.4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}
.sig-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #050505;
}
.sig-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.sig-card:hover .sig-img img { transform: scale(1.07); }
.sig-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}
.sig-kanji {
  font-family: var(--jp);
  font-size: 7rem;
  color: rgba(255, 255, 255, 0.18);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
  position: absolute;
  top: 14px; right: 18px;
  z-index: 2;
  text-shadow: 0 4px 24px rgba(0,0,0,0.7);
  pointer-events: none;
  transition: transform 0.7s var(--ease), color 0.4s var(--ease);
}
.sig-card:hover .sig-kanji { transform: rotate(-4deg) scale(1.04); color: rgba(201, 165, 92, 0.35); }

.sig-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sig-tag {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 500;
}
.sig-body h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--washi);
  letter-spacing: -0.005em;
  line-height: 1.15;
}
.sig-body p {
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--washi-mute);
  font-weight: 300;
}
.sig-price {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: 8px;
  font-weight: 400;
}

.sig-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 40px;
}
.sig-controls button {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(201, 165, 92, 0.35);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.2rem;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
  display: grid;
  place-items: center;
}
.sig-controls button:hover {
  background: var(--gold);
  color: var(--sumi);
  border-color: var(--gold);
}

/* ============ VISITE ============ */
.visite {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
  background: var(--sumi);
}
.visite-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
}
.visite-info { max-width: 580px; }
.visite-info .display { margin-top: 0.4rem; }

.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.info-block h4 {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 10px;
  font-weight: 500;
}
.info-block p {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--washi);
  line-height: 1.5;
  font-weight: 300;
}
.info-block a { transition: color 0.25s var(--ease); }
.info-block a:hover { color: var(--gold); }

.hours {
  margin-top: 2.6rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hours h4 {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 14px;
  font-weight: 500;
}
.hours ul { display: flex; flex-direction: column; gap: 10px; }
.hours li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--serif);
  font-size: 1.05rem;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--line);
  font-weight: 300;
}
.hours li span:first-child { color: var(--washi); }
.hours li span:nth-child(2) { color: var(--washi-mute); }
.hours li.closed span { color: var(--shu); font-style: italic; }
.hours li .hours-note {
  flex-basis: 100%;
  text-align: right;
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 500;
  margin-top: 4px;
}

.visite-cta {
  display: flex;
  gap: 14px;
  margin-top: 2.6rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  font-weight: 500;
}
.btn-primary {
  background: var(--gold);
  color: var(--sumi);
}
.btn-primary:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
}
.btn-ghost {
  border: 1px solid var(--gold-soft);
  color: var(--gold);
}
.btn-ghost:hover {
  background: var(--gold);
  color: var(--sumi);
  border-color: var(--gold);
}

.visite-noren {
  display: grid;
  place-items: center;
  position: relative;
}
.noren {
  width: 100%;
  max-width: 380px;
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.6));
}
.noren-cloth rect {
  transform-origin: top center;
  animation: norenSway 6s ease-in-out infinite;
}
.noren-cloth rect:nth-child(2) { animation-delay: 0.4s; }
.noren-cloth rect:nth-child(3) { animation-delay: 0.8s; }

@keyframes norenSway {
  0%, 100% { transform: skewX(0deg); }
  50%      { transform: skewX(-1.5deg); }
}

@media (max-width: 900px) {
  .visite-grid { grid-template-columns: 1fr; }
  .info-row { grid-template-columns: 1fr; }
  .visite-noren { max-width: 280px; margin: 0 auto; }
}

/* ====== VISITE OFFERS (livraison & cadeaux) ====== */
.visite-offers {
  margin-top: clamp(40px, 6vw, 70px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.visite-offers__pill {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  background: linear-gradient(135deg, rgba(201, 165, 92, 0.06), rgba(176, 74, 62, 0.04));
  border: 1px solid rgba(201, 165, 92, 0.18);
  border-radius: 4px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.visite-offers__pill::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0.3);
  transition: transform 0.5s var(--ease);
  transform-origin: top;
}
.visite-offers__pill:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 165, 92, 0.45);
  background: linear-gradient(135deg, rgba(201, 165, 92, 0.10), rgba(176, 74, 62, 0.06));
}
.visite-offers__pill:hover::before { transform: scaleY(1); }
.visite-offers__amt {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.visite-offers__lbl {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--washi-mute);
  line-height: 1.4;
  font-weight: 400;
}
.visite-offers__lbl em {
  display: block;
  font-style: normal;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 400;
  font-style: italic;
  color: var(--washi);
  margin-bottom: 2px;
  letter-spacing: 0;
}

@media (max-width: 900px) {
  .visite-offers { grid-template-columns: 1fr; }
}

/* ====== VISITE MAP ====== */
.visite-map {
  margin-top: clamp(40px, 6vw, 70px);
  position: relative;
}
.visite-map__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.visite-map__head .kicker { margin: 0 0 0.4rem 0; }
.visite-map__title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 300;
  color: var(--washi);
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.visite-map__title em { font-style: italic; color: var(--gold); }
.visite-map__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 11px 20px;
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  font-weight: 500;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.visite-map__link:hover {
  background: var(--gold);
  color: var(--sumi);
  border-color: var(--gold);
}
.visite-map__frame {
  position: relative;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  border: 1px solid rgba(201, 165, 92, 0.22);
  background: var(--sumi-2);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}
.visite-map__frame::before,
.visite-map__frame::after {
  content: "";
  position: absolute;
  width: 22px; height: 22px;
  border: 1px solid var(--gold);
  z-index: 2;
  pointer-events: none;
}
.visite-map__frame::before { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.visite-map__frame::after  { bottom: 10px; right: 10px; border-left: none;  border-top: none; }
.visite-map__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.55) brightness(0.85) contrast(1.1);
  transition: filter 0.6s var(--ease);
}
.visite-map__frame:hover iframe {
  filter: grayscale(0.15) brightness(1) contrast(1);
}

@media (max-width: 700px) {
  .visite-map__frame { aspect-ratio: 4/3; }
}

/* ============ FOOTER ============ */
.footer {
  background: #050505;
  color: var(--washi);
  padding: 80px 0 30px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-2);
}
.footer-brand {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: 8px;
  letter-spacing: 0.04em;
  color: var(--washi);
}
.footer h5 {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-list { display: flex; flex-direction: column; gap: 12px; }
.footer-list li, .footer-list a {
  font-size: 0.95rem;
  color: var(--washi-mute);
  font-family: var(--serif);
  transition: color 0.25s var(--ease);
  font-weight: 300;
}
.footer-list a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.footer .muted { color: var(--nezumi); }
.footer em { color: var(--gold); font-style: normal; font-family: var(--jp); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ============ SELECTION ============ */
::selection {
  background: var(--gold);
  color: var(--sumi);
}
