/* ============================================================
   KURO 黒 — Modern Omakase
   Dark editorial design · serif + kanji · scroll choreography
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg: #030303;
  --bg-soft: #090908;
  --panel: #0d0d0c;
  --ink: #ede8de;
  --ink-dim: rgba(237, 232, 222, 0.6);
  --ink-faint: rgba(237, 232, 222, 0.34);
  --hairline: rgba(237, 232, 222, 0.12);
  --accent: #e2492f;
  --accent-soft: rgba(226, 73, 47, 0.85);
  --gold: #c9a15e;

  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --font-jp: "Noto Serif JP", "Hiragino Mincho ProN", serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --pad: clamp(1.25rem, 4vw, 4rem);
}

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

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  min-height: 100vh;
}

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

::selection { background: var(--accent); color: #0b0503; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2a26; border-radius: 5px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #3a3a34; }

:focus-visible { outline: 1px solid var(--accent); outline-offset: 4px; }

/* ---------- Preloader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: visibility 0s 1.35s;
}
.loader-curtain {
  position: absolute;
  inset: 0;
  background: var(--bg);
  transform-origin: top;
  z-index: -1;
}
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.loader-kanji {
  font-family: var(--font-jp);
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 1;
  animation: loader-breathe 2.2s var(--ease-out) infinite;
}
.loader-word {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.55em;
  text-indent: 0.55em;
  color: var(--ink-dim);
}
.loader-count {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
@keyframes loader-breathe {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.985); }
}
.loader.done .loader-inner { opacity: 0; transform: translateY(-24px); transition: all 0.5s var(--ease-out); }
.loader.done {
  transform: translateY(-100%);
  transition: transform 0.9s 0.45s var(--ease-expo), visibility 0s 1.35s;
  visibility: hidden;
}

/* ---------- Cursor ---------- */
.cursor { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 400;
    pointer-events: none;
  }
  .cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    margin: -3px 0 0 -3px;
    border-radius: 50%;
    background: var(--accent);
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out),
                margin 0.3s var(--ease-out), opacity 0.3s;
  }
  .cursor.is-hover .cursor-dot {
    width: 14px; height: 14px; margin: -7px 0 0 -7px;
  }
  .cursor.is-down .cursor-dot { opacity: 0.55; }
  body.native-cursor-off, body.native-cursor-off a,
  body.native-cursor-off button { cursor: none; }
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9em 2.1em;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  text-transform: uppercase;
  border-radius: 100px;
  overflow: hidden;
  transition: color 0.45s var(--ease-out), border-color 0.45s, background-color 0.45s;
  white-space: nowrap;
}
.btn span { position: relative; z-index: 1; }
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--ink);
  transform: translateY(102%);
  transition: transform 0.55s var(--ease-expo);
}
.btn:hover::before { transform: translateY(0); }

.btn-fill { background: var(--accent); color: #16070a; }
.btn-fill:hover { color: #0b0503; }
.btn-fill.big { padding: 1.25em 3.2em; font-size: 0.8rem; }

.btn-ghost { border: 1px solid var(--hairline); color: var(--ink); }
.btn-ghost:hover { color: var(--bg); border-color: var(--ink); }

.btn-line { border: 1px solid var(--hairline); color: var(--ink); padding: 0.7em 1.6em; }
.btn-line:hover { color: var(--bg); border-color: var(--ink); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem var(--pad);
  transition: transform 0.6s var(--ease-out), background-color 0.4s, padding 0.4s;
}
.nav.is-hidden { transform: translateY(-110%); }
.nav.is-scrolled {
  padding: 0.9rem var(--pad);
  background: rgba(8, 8, 7, 0.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(237, 232, 222, 0.06);
}
.nav-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
}
.nav-logo-kanji { font-family: var(--font-jp); font-size: 1.5rem; line-height: 1; }
.nav-logo-word {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
}
.nav-links { display: flex; gap: clamp(1.2rem, 3vw, 2.8rem); }
.nav-link {
  position: relative;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding: 0.4em 0;
  transition: color 0.35s;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-expo);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-right { display: flex; align-items: center; gap: 1.2rem; }
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px;
  height: 44px;
  align-items: center;
}
.nav-burger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.45s var(--ease-out), opacity 0.3s;
}
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(4.25px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { transform: translateY(-4.25px) rotate(-45deg); }

/* ---------- Overlay menu ---------- */
.overlay-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(8, 8, 7, 0.97);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pad);
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  transition: clip-path 0.75s var(--ease-expo), visibility 0s 0.75s;
}
body.menu-open .overlay-menu {
  clip-path: inset(0 0 0% 0);
  visibility: visible;
  transition: clip-path 0.75s var(--ease-expo), visibility 0s;
}
.overlay-kanji {
  position: absolute;
  right: -4rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-jp);
  font-size: 60vh;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(237, 232, 222, 0.07);
  pointer-events: none;
}
.overlay-links { display: flex; flex-direction: column; gap: 0.4rem; }
.overlay-links a {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 9vw, 4.5rem);
  font-weight: 300;
  line-height: 1.15;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), color 0.3s;
}
.overlay-links a em {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.overlay-links a:hover { color: var(--accent); }
body.menu-open .overlay-links a {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(0.25s + var(--i) * 0.07s);
}
.overlay-foot {
  position: absolute;
  bottom: 2rem;
  left: var(--pad);
  right: var(--pad);
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
  text-transform: uppercase;
}

/* ---------- Shared section bits ---------- */
.section { padding: clamp(6rem, 12vw, 11rem) var(--pad); position: relative; }
.section-head { margin-bottom: clamp(3rem, 6vw, 5.5rem); max-width: 1600px; margin-inline: auto; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.6rem;
}
.eyebrow.center { justify-content: center; }
.eyebrow-line { display: inline-block; width: 3rem; height: 1px; background: var(--accent); opacity: 0.7; }

.section-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
}
.section-title em { color: var(--accent-soft); }
.section-sub {
  max-width: 34em;
  margin-top: 1.6rem;
  color: var(--ink-dim);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
}

/* Image frames */
.img-frame {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  background: var(--panel);
}
.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  transition: transform 1.4s var(--ease-out);
  will-change: transform;
}
.img-frame img[data-prlx-img],
.chef-band img[data-prlx-img] {
  transition: none;
  transform-origin: top center;
  will-change: transform;
}
.gl-distort {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease-out;
}
.img-frame figcaption {
  position: absolute;
  z-index: 2;
  left: 1rem;
  bottom: 0.9rem;
  right: 1rem;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(237, 232, 222, 0.85);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.img-frame:hover figcaption { opacity: 1; transform: translateY(0); }
.img-frame:hover img:not([data-prlx-img]) { transform: scale(1.05); }

/* ---------- Reveal system ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 1s var(--ease-out) var(--d, 0s),
              transform 1s var(--ease-out) var(--d, 0s);
  will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: translateY(0); }

[data-reveal="clip"] {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.2s var(--ease-expo) var(--d, 0s);
}
[data-reveal="clip"].is-in { clip-path: inset(0 0 0% 0); }
[data-reveal="clip"].is-in img:not([data-prlx-img]) { transform: scale(1.02); }
.img-frame[data-reveal="clip"].is-in:hover img:not([data-prlx-img]) { transform: scale(1.06); }

/* Split-line titles */
.line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.line-inner { display: block; will-change: transform; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(7rem, 12vh, 9rem) var(--pad) 4rem;
  overflow: hidden;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-watermark {
  position: absolute;
  right: -0.08em;
  bottom: -0.22em;
  font-family: var(--font-jp);
  font-size: clamp(18rem, 42vw, 44rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(237, 232, 222, 0.055);
  pointer-events: none;
  user-select: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.2rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(3.4rem, 8.2vw, 8rem);
  line-height: 1;
  letter-spacing: -0.015em;
}
.hero-title em { color: var(--accent-soft); }
.hero-sub {
  max-width: 30em;
  margin-top: 2.2rem;
  color: var(--ink-dim);
  font-size: clamp(0.95rem, 1.25vw, 1.1rem);
  line-height: 1.75;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.6rem; }
.hero-meta {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-top: 3.2rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero-meta-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  justify-content: flex-end;
}
.hero-media {
  position: relative;
  width: 100%;
  max-width: 640px;
  perspective: 1200px;
}
.hero-media-tilt {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}
.hero-media video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 4px;
  filter: brightness(0.96) contrast(1.04);
}
.hero-media-frame {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(226, 73, 47, 0.55);
  border-radius: 4px;
  transform: translate(16px, 16px) translateZ(-40px);
  pointer-events: none;
  transition: transform 0.6s var(--ease-out);
}
.hero-media:hover .hero-media-frame { transform: translate(10px, 10px) translateZ(-40px); }
.hero-media-caption {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  flex: 0 0 auto;
}
.hero-vertical-jp {
  font-family: var(--font-jp);
  writing-mode: vertical-rl;
  font-size: 1.05rem;
  letter-spacing: 0.55em;
  color: var(--ink-dim);
}
.hero-vertical-en {
  writing-mode: vertical-rl;
  font-size: 0.56rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero-scroll {
  position: absolute;
  left: var(--pad);
  bottom: 2.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-faint);
  transition: color 0.3s;
}
.hero-scroll:hover { color: var(--ink); }
.hero-scroll-line {
  position: relative;
  width: 56px;
  height: 1px;
  background: var(--hairline);
  overflow: hidden;
}
.hero-scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  animation: scroll-line 2.2s var(--ease-out) infinite;
}
@keyframes scroll-line {
  0% { transform: translateX(-100%); }
  55% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* Hero entrance choreography */
.hero-anim {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 1.1s var(--ease-out) calc(var(--d, 0s) + 0.5s),
              transform 1.1s var(--ease-out) calc(var(--d, 0s) + 0.5s);
}
.hero-title .line-inner.hero-anim { transform: translateY(110%); opacity: 1; }
body.loaded .hero-anim { opacity: 1; transform: translateY(0); }
body.loaded .hero-title .line-inner.hero-anim { transform: translateY(0); }

/* ---------- Marquee ---------- */
.marquee {
  position: relative;
  padding: clamp(1.6rem, 3vw, 2.6rem) 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
  background: var(--bg);
}
.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.marquee-set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.marquee-set span, .marquee-set i {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
  padding: 0 clamp(1.4rem, 3vw, 2.8rem);
  white-space: nowrap;
}
.marquee-set i {
  font-family: var(--font-jp);
  font-size: clamp(1.5rem, 3.2vw, 2.6rem);
  color: var(--accent);
}
.marquee-set .hollow {
  color: transparent;
  -webkit-text-stroke: 1px rgba(237, 232, 222, 0.5);
}

/* ---------- Philosophy ---------- */
.philosophy { background: var(--bg); }
.philosophy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
}
.philosophy-media { position: relative; }
.img-frame.tall { aspect-ratio: 3 / 4; max-width: 520px; }
.img-frame.float-card {
  position: absolute;
  right: -12%;
  bottom: -10%;
  width: 46%;
  aspect-ratio: 4 / 3;
  border: 6px solid var(--bg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}
.statement {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.7rem, 3.2vw, 2.9rem);
  line-height: 1.35;
  letter-spacing: 0;
}
.statement em { color: var(--accent-soft); }
.statement .w {
  opacity: 0.12;
  transition: opacity 0.5s var(--ease-out);
}
.statement .w.on { opacity: 1; }
.philosophy-stats {
  display: flex;
  gap: clamp(2rem, 5vw, 4.5rem);
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-top: 2.2rem;
  border-top: 1px solid var(--hairline);
}
.stat { display: flex; flex-direction: column; gap: 0.5rem; }
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stat-num::after { content: ""; }
.stat-label {
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  max-width: 9em;
}

/* ---------- Horizontal menu ---------- */
.h-scroll { position: relative; background: var(--bg-soft); }
.h-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.h-track {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  padding: 0 var(--pad);
  will-change: transform;
}
.h-progress {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: 2.2rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  z-index: 5;
}
.h-progress-count {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.h-progress-bar {
  flex: 1;
  height: 1px;
  background: var(--hairline);
  position: relative;
}
.h-progress-bar i {
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform-origin: left;
  transform: scaleX(0);
}

.h-intro { flex: 0 0 auto; width: min(560px, 78vw); }
.h-intro-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(3rem, 6.5vw, 6rem);
  line-height: 0.98;
}
.h-intro-title em { color: var(--accent-soft); }
.h-intro-sub { max-width: 26em; margin-top: 1.8rem; color: var(--ink-dim); }
.h-intro-hint {
  margin-top: 2.4rem;
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  animation: hint-pulse 2s ease-in-out infinite;
}
@keyframes hint-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.dish {
  flex: 0 0 auto;
  width: min(420px, 74vw);
  will-change: transform;
}
.dish-media {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 4 / 5;
  background: var(--panel);
}
.dish-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 1s var(--ease-out), filter 0.6s;
  filter: saturate(0.96);
}
.dish:hover .dish-media img { transform: scale(1.12); filter: saturate(1.08); }
.dish-body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.3rem 1.2rem;
  margin-top: 1.4rem;
  align-items: baseline;
}
.dish-num {
  grid-row: 1 / 3;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--accent);
}
.dish-name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}
.dish-name i {
  font-family: var(--font-jp);
  font-style: normal;
  font-size: 0.62em;
  color: var(--ink-faint);
}
.dish-desc { color: var(--ink-dim); font-size: 0.88rem; max-width: 30em; }

.h-outro {
  flex: 0 0 auto;
  width: min(520px, 80vw);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  padding-right: clamp(2rem, 6vw, 6rem);
}
.h-outro-jp {
  font-family: var(--font-jp);
  font-size: 1rem;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  color: var(--accent);
}
.h-outro-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
}

/* ---------- Experience ---------- */
.experience { background: var(--bg); max-width: none; }
.experience .section-head { max-width: 1600px; }
.course-list {
  max-width: 1600px;
  margin: 0 auto;
  border-top: 1px solid var(--hairline);
}
.course {
  position: relative;
  display: grid;
  grid-template-columns: 4rem minmax(0, 1.1fr) minmax(0, 1.4fr) 3rem;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  padding: clamp(1.6rem, 3vw, 2.6rem) 0.5rem;
  border-bottom: 1px solid var(--hairline);
  transition: background-color 0.4s, padding-left 0.5s var(--ease-out);
}
.course:hover { background: rgba(237, 232, 222, 0.025); padding-left: 1.4rem; }
.course-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-faint);
  transition: color 0.3s;
}
.course:hover .course-num { color: var(--accent); }
.course-name {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.7rem, 3.4vw, 2.9rem);
  line-height: 1.05;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  transition: transform 0.5s var(--ease-out);
}
.course-name i {
  font-family: var(--font-jp);
  font-style: normal;
  font-size: 0.55em;
  color: var(--ink-faint);
}
.course-desc { color: var(--ink-dim); font-size: 0.92rem; max-width: 36em; }
.course-arrow {
  font-size: 1.3rem;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity 0.4s, transform 0.5s var(--ease-out);
}
.course:hover .course-arrow { opacity: 1; transform: translateX(0); }

.course-preview {
  position: fixed;
  top: 0;
  left: 0;
  width: min(300px, 24vw);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
  pointer-events: none;
  z-index: 60;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  will-change: transform;
}
.course-preview.on { opacity: 1; }

/* ---------- Chef ---------- */
.chef { background: var(--bg-soft); }
.chef-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
}
.chef-media { position: relative; }
.chef-knives {
  position: absolute;
  left: -10%;
  bottom: -12%;
  width: 52%;
  aspect-ratio: 3 / 2;
  border: 6px solid var(--bg-soft);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}
.chef-text { max-width: 34rem; }
.chef-jp {
  font-family: var(--font-jp);
  color: var(--ink-faint);
  letter-spacing: 0.4em;
  margin-top: 0.8rem;
  font-size: 0.95rem;
}
.chef-bio { margin-top: 2rem; color: var(--ink-dim); line-height: 1.85; }
.chef-quote {
  margin-top: 2.4rem;
  padding-left: 1.6rem;
  border-left: 1px solid var(--accent);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.2rem, 1.9vw, 1.5rem);
  line-height: 1.5;
  color: var(--ink);
}
.chef-sign {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.4rem;
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.chef-sign-line { width: 3rem; height: 1px; background: var(--hairline); }

.chef-band {
  position: relative;
  margin: clamp(5rem, 10vw, 9rem) auto 0;
  max-width: 1600px;
  height: clamp(320px, 60vh, 640px);
  overflow: hidden;
  border-radius: 3px;
}
.chef-band img {
  width: 100%;
  height: 116%;
  object-fit: cover;
  will-change: transform;
}
.chef-band-caption {
  position: absolute;
  left: clamp(1.2rem, 3vw, 2.4rem);
  bottom: clamp(1rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(237, 232, 222, 0.9);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

/* ---------- Space / gallery ---------- */
.space { background: var(--bg); }
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.5vw, 2.4rem);
  max-width: 1600px;
  margin: 0 auto;
  align-items: start;
}
.gallery-col {
  display: flex;
  flex-direction: column;
  gap: clamp(1.2rem, 2.5vw, 2.4rem);
  will-change: transform;
}
.gallery-col:nth-child(2) { margin-top: clamp(3rem, 7vw, 6rem); }
.gallery-col:nth-child(3) { margin-top: clamp(1.5rem, 3.5vw, 3rem); }
.gallery .img-frame { aspect-ratio: 3 / 4; }
.gallery .img-frame:nth-child(even) { aspect-ratio: 4 / 5; }

/* ---------- Reserve ---------- */
.reserve {
  position: relative;
  padding: clamp(7rem, 14vw, 13rem) var(--pad);
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 50% 110%, rgba(226, 73, 47, 0.13), transparent 70%),
    var(--bg-soft);
}
.reserve-watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-jp);
  font-size: clamp(16rem, 38vw, 36rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(237, 232, 222, 0.05);
  pointer-events: none;
  white-space: nowrap;
}
.reserve-inner { position: relative; max-width: 900px; margin: 0 auto; }
.reserve-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(3.2rem, 9vw, 8rem);
  line-height: 1;
}
.reserve-title em { color: var(--accent-soft); }
.reserve-sub {
  margin-top: 2rem;
  color: var(--ink-dim);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.9;
}
.reserve-cta { margin-top: 3rem; }
.reserve-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: clamp(4rem, 8vw, 6rem);
  padding-top: 2.6rem;
  border-top: 1px solid var(--hairline);
  text-align: left;
}
.reserve-details span {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.reserve-details p { color: var(--ink-dim); font-size: 0.92rem; line-height: 1.75; }

/* ---------- Footer ---------- */
.footer {
  position: relative;
  padding: clamp(4rem, 7vw, 6rem) var(--pad) 1.6rem;
  border-top: 1px solid var(--hairline);
  background: var(--bg);
  overflow: hidden;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1600px;
  margin: 0 auto;
}
.footer-kanji { font-family: var(--font-jp); font-size: 2.6rem; line-height: 1; display: block; margin-bottom: 1.2rem; }
.footer-brand p { color: var(--ink-faint); font-size: 0.85rem; line-height: 1.8; }
.footer-col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col span {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.footer-col a {
  color: var(--ink-dim);
  font-size: 0.86rem;
  width: fit-content;
  transition: color 0.3s, transform 0.3s var(--ease-out);
}
.footer-col a:hover { color: var(--ink); transform: translateX(4px); }
.footer-word {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(6rem, 22vw, 22rem);
  line-height: 0.8;
  text-align: center;
  margin-top: clamp(3rem, 6vw, 5rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(237, 232, 222, 0.14);
  letter-spacing: 0.04em;
  user-select: none;
  transition: color 1s var(--ease-out);
}
.footer-word:hover { color: rgba(237, 232, 222, 0.07); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1600px;
  margin: 2.5rem auto 0;
  padding-top: 1.4rem;
  border-top: 1px solid var(--hairline);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .hero { padding-bottom: 6rem; }
  .hero-right { justify-content: flex-start; }
  .hero-vertical { display: none; }
  .hero-watermark { font-size: 30rem; }
  .philosophy-grid, .chef-grid { grid-template-columns: 1fr; }
  .img-frame.tall { max-width: 560px; }
  .chef-text { max-width: 40rem; }
}

/* No-pin fallback (reduced motion on desktop) */
.h-scroll.no-pin .h-sticky { position: relative; height: auto; padding: clamp(5rem, 10vw, 8rem) 0; }
.h-scroll.no-pin .h-track { overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1rem; }
.h-scroll.no-pin .h-intro, .h-scroll.no-pin .dish, .h-scroll.no-pin .h-outro { scroll-snap-align: center; }
.h-scroll.no-pin .h-progress { display: none; }

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

  /* Horizontal section falls back to native swipe */
  .h-scroll { height: auto !important; }
  .h-sticky { position: relative; height: auto; padding: clamp(5rem, 10vw, 8rem) 0; }
  .h-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    scrollbar-width: none;
  }
  .h-track::-webkit-scrollbar { display: none; }
  .h-intro, .dish, .h-outro { scroll-snap-align: center; }
  .h-progress { display: none; }

  .course {
    grid-template-columns: 2.6rem 1fr;
    grid-template-rows: auto auto;
    row-gap: 0.5rem;
  }
  .course-num { grid-row: 1; }
  .course-name { grid-column: 2; }
  .course-desc { grid-column: 2; }
  .course-arrow { display: none; }
  .course-preview { display: none; }

  .reserve-details { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .hero-title { font-size: clamp(3rem, 14vw, 4.4rem); }
  .hero-media { max-width: none; }
  .float-card { right: 0; }
  .chef-knives { left: 0; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery-col:nth-child(3) { display: none; }
  .statement { font-size: 1.6rem; }
  .philosophy-stats { flex-wrap: wrap; gap: 1.8rem 2.4rem; }
  .stat-label { max-width: none; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 0.4rem; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
    scroll-behavior: auto !important;
  }
  [data-reveal], .hero-anim, .statement .w { opacity: 1 !important; transform: none !important; clip-path: none !important; }
}
