:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --ink: #f0e8d8;
  --ink-dim: rgba(240, 232, 216, 0.6);
  --ink-faint: rgba(240, 232, 216, 0.3);
  --gold: #d4a574;
  --gold-deep: #a37e4f;
  --line: rgba(240, 232, 216, 0.12);
  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --container: 1400px;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.5;
  cursor: none;
  overflow-x: hidden;
}

@media (max-width: 1024px) { body { cursor: auto; } }

.container { max-width: var(--container); margin: 0 auto; padding: 0 2.5rem; }

/* ============ CURSOR ============ */
.cursor {
  position: fixed; top: 0; left: 0; width: 32px; height: 32px;
  border: 1px solid var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .4s var(--ease), height .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
  mix-blend-mode: difference;
}
.cursor.hover { width: 70px; height: 70px; background: var(--gold); border-color: var(--gold); }
.cursor-dot {
  position: fixed; top: 0; left: 0; width: 4px; height: 4px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
}
@media (max-width: 1024px) { .cursor, .cursor-dot { display: none; } }

/* ============ NOISE ============ */
.noise {
  position: fixed; inset: 0; z-index: 100; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.04;
}

/* ============ PRELOADER ============ */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .8s var(--ease), visibility .8s var(--ease);
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-mark {
  font-family: var(--font-serif); font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: .3em; color: var(--gold);
  animation: pulse 1.5s ease-in-out infinite;
}
.preloader-line {
  width: 100px; height: 1px; background: var(--line);
  margin: 2rem auto 0; overflow: hidden; position: relative;
}
.preloader-line::after {
  content: ''; position: absolute; inset: 0;
  background: var(--gold);
  animation: slide 1.4s var(--ease) infinite;
}
@keyframes pulse { 0%, 100% { opacity: .4; } 50% { opacity: 1; } }
@keyframes slide { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 1.8rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: padding .4s var(--ease), background .4s var(--ease), backdrop-filter .4s;
}
.nav.scrolled {
  padding: 1.2rem 2.5rem;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  display: flex; align-items: center; gap: .8rem;
  font-family: var(--font-serif); font-size: 1.3rem;
  letter-spacing: .3em; color: var(--ink);
}
.logo-jp {
  font-size: 1.6rem; color: var(--gold);
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
}
.nav-menu { display: flex; gap: 2.5rem; }
.nav-link {
  font-size: .8rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-dim); position: relative; padding: .5rem 0;
  transition: color .3s;
}
.nav-link span { color: var(--gold); margin-right: .5rem; font-size: .7rem; }
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .4s var(--ease);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  padding: .9rem 1.6rem; background: var(--ink); color: var(--bg);
  font-size: .75rem; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; border: 1px solid var(--ink);
  transition: all .4s var(--ease);
}
.nav-cta:hover { background: var(--gold); border-color: var(--gold); }
.nav-burger { display: none; }

/* ============ MOBILE MENU ============ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 49;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .5s, visibility .5s;
}
.mobile-menu.open { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-serif); font-size: 2.5rem;
  color: var(--ink); transition: color .3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-cta {
  margin-top: 1rem; padding: 1rem 2rem; background: var(--gold); color: var(--bg) !important;
  font-size: 1rem !important; font-family: var(--font-sans) !important;
  letter-spacing: .2em; text-transform: uppercase;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh; min-height: 100svh;
  position: relative; display: flex; align-items: center;
  justify-content: center; padding: 8rem 2.5rem 4rem;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.5) saturate(1.1);
  transform: scale(1.1);
  animation: kenburns 20s ease-in-out infinite alternate;
}
@keyframes kenburns { from { transform: scale(1.05); } to { transform: scale(1.2); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.4) 0%, rgba(10,10,10,.6) 50%, var(--bg) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 1100px;
}
.hero-meta {
  display: inline-flex; align-items: center; gap: 1rem;
  font-size: .7rem; letter-spacing: .4em; text-transform: uppercase;
  color: var(--ink-dim); margin-bottom: 2.5rem;
  opacity: 0; animation: fadeIn 1s .3s forwards;
}
.hero-meta .dot {
  width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; animation: blink 2s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

.hero-title {
  font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(3rem, 9vw, 9rem);
  line-height: .95; letter-spacing: -.02em;
  margin-bottom: 2.5rem;
}
.hero-line { display: block; overflow: hidden; }
.hero-line em { font-style: italic; color: var(--gold); }
.hero-line.italic { font-style: italic; }
.hero-line:nth-child(1) { animation: heroIn 1s .5s var(--ease) backwards; }
.hero-line:nth-child(2) { animation: heroIn 1s .7s var(--ease) backwards; }
.hero-line:nth-child(3) { animation: heroIn 1s .9s var(--ease) backwards; }
@keyframes heroIn {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeIn { to { opacity: 1; } }

.hero-sub {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  color: var(--ink-dim); max-width: 540px;
  margin: 0 auto 3rem; line-height: 1.6;
  opacity: 0; animation: fadeIn 1s 1.2s forwards;
}
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeIn 1s 1.4s forwards;
}
.btn {
  display: inline-flex; align-items: center; gap: 1rem;
  padding: 1.1rem 2rem; font-size: .8rem;
  font-weight: 500; letter-spacing: .25em; text-transform: uppercase;
  border: 1px solid transparent; transition: all .4s var(--ease);
  position: relative; overflow: hidden;
}
.btn svg { width: 18px; height: 18px; transition: transform .4s var(--ease); }
.btn:hover svg { transform: translateX(5px); }
.btn-light { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn-light:hover { background: var(--gold); border-color: var(--gold); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn.full { width: 100%; justify-content: center; padding: 1.3rem; }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
  font-size: .65rem; letter-spacing: .4em; text-transform: uppercase;
  color: var(--ink-faint);
  opacity: 0; animation: fadeIn 1s 1.8s forwards;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(180deg, transparent, var(--gold));
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 20px; background: var(--ink);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(300%); }
}

/* ============ TICKER ============ */
.ticker {
  background: var(--gold); color: var(--bg);
  padding: 1.5rem 0; overflow: hidden;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}
.ticker-track {
  display: inline-flex; gap: 3rem; align-items: center;
  font-family: var(--font-serif); font-size: 1.6rem;
  letter-spacing: .15em; white-space: nowrap;
  animation: ticker 35s linear infinite;
  padding-right: 3rem;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ SECTIONS COMMON ============ */
section { position: relative; }
.section-head {
  padding: 8rem 0 4rem; max-width: 900px;
}
.eyebrow {
  display: inline-block; font-size: .7rem;
  letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem;
}
.eyebrow.light { color: var(--gold-light); }
.title {
  font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 1; letter-spacing: -.02em;
}
.title span { display: block; }
.title em { font-style: italic; color: var(--gold); }
.title.light { color: var(--ink); }

/* ============ STORY ============ */
.story { padding: 4rem 0 8rem; }
.story-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 5rem; align-items: start;
}
.story-text p { font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.5rem; color: var(--ink-dim); }
.story-text .lead { font-size: 1.5rem; color: var(--ink); font-weight: 300; line-height: 1.6; }
.story-text .drop {
  float: left; font-family: var(--font-serif);
  font-size: 5rem; line-height: .8; padding: .1em .15em 0 0;
  color: var(--gold);
}
.story-visual { position: relative; padding-top: 3rem; }
.story-img {
  width: 100%; aspect-ratio: 4/5; overflow: hidden;
  background: var(--bg-2);
}
.story-img.small {
  position: absolute; bottom: -3rem; left: -3rem;
  width: 50%; aspect-ratio: 1/1; border: 1px solid var(--gold);
}
.story-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.story-img:hover img { transform: scale(1.05); }
.story-caption {
  margin-top: 5rem; display: flex; align-items: center; gap: 1rem;
  font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-dim);
}
.caption-line { width: 40px; height: 1px; background: var(--gold); }

/* ============ MENU ============ */
.menu { padding: 4rem 0 8rem; background: var(--bg-2); }
.menu-list { border-top: 1px solid var(--line); }
.menu-row {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 2rem; align-items: center;
  padding: 2.5rem 0; border-bottom: 1px solid var(--line);
  transition: padding-left .5s var(--ease);
  position: relative;
}
.menu-row::before {
  content: ''; position: absolute; left: -1rem; top: 50%;
  width: 4px; height: 0; background: var(--gold);
  transform: translateY(-50%); transition: height .4s var(--ease);
}
.menu-row:hover { padding-left: 1rem; }
.menu-row:hover::before { height: 60%; }
.menu-num {
  font-family: var(--font-serif); font-style: italic;
  font-size: 2.5rem; color: var(--gold); font-weight: 300;
}
.menu-body h3 { font-family: var(--font-serif); font-size: clamp(1.4rem, 2.2vw, 2rem); font-weight: 400; margin-bottom: .3rem; }
.menu-body p { font-size: .9rem; color: var(--ink-dim); }
.menu-meta {
  display: flex; flex-direction: column; align-items: flex-end; gap: .3rem;
  font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--ink-faint);
}
.menu-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 4rem; flex-wrap: wrap; gap: 2rem;
}
.menu-footer p { font-family: var(--font-serif); font-size: 1.1rem; color: var(--ink-dim); max-width: 500px; }

/* ============ CHEF ============ */
.chef { padding: 8rem 0; }
.chef-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }
.chef-image {
  position: relative; overflow: hidden; background: var(--bg-2);
}
.chef-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
  transition: transform 1.5s var(--ease);
}
.chef-image:hover img { transform: scale(1.03); }
.chef-stamp {
  position: absolute; top: 2rem; right: 2rem;
  padding: .6rem 1.2rem; background: var(--bg);
  border: 1px solid var(--gold); color: var(--gold);
  font-size: .65rem; letter-spacing: .3em; text-transform: uppercase;
}
.chef-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem 5rem; background: var(--bg);
}
.chef-content .eyebrow { color: var(--gold); }
.chef-content .title { margin-bottom: 2.5rem; }
.chef-quote {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.5; color: var(--ink);
  margin-bottom: 2rem; padding-left: 1.5rem;
  border-left: 1px solid var(--gold);
}
.chef-bio { font-size: 1rem; color: var(--ink-dim); line-height: 1.8; margin-bottom: 3rem; }
.chef-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; padding-top: 2rem; border-top: 1px solid var(--line);
}
.chef-stats > div { display: flex; flex-direction: column; }
.chef-stats span {
  font-family: var(--font-serif); font-size: 2.5rem;
  color: var(--gold); line-height: 1; margin-bottom: .5rem;
}
.chef-stats small { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-dim); }

/* ============ VISIT ============ */
.visit { padding: 4rem 0 8rem; }
.visit-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 2rem;
}
.visit-card { position: relative; overflow: hidden; }
.visit-img {
  aspect-ratio: 4/5; overflow: hidden; background: var(--bg-2);
  position: relative;
}
.visit-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.visit-card:hover .visit-img img { transform: scale(1.08); }
.visit-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,.6) 100%);
}
.visit-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem; z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(10,10,10,.95));
}
.visit-info h3 {
  font-family: var(--font-serif); font-size: 1.5rem;
  margin-bottom: .5rem; font-weight: 400;
}
.visit-info p { font-size: .85rem; color: var(--ink-dim); line-height: 1.6; }
.visit-info em { color: var(--gold); font-family: var(--font-serif); font-style: italic; }

/* ============ RESERVE ============ */
.reserve {
  position: relative; padding: 8rem 0;
  overflow: hidden;
}
.reserve-bg { position: absolute; inset: 0; z-index: 0; }
.reserve-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.3); }
.reserve-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, var(--bg), transparent 30%, transparent 70%, var(--bg)); }
.reserve-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; text-align: center; }
.reserve-inner .title { margin-bottom: 1.5rem; }
.reserve-text {
  font-family: var(--font-serif); font-size: 1.1rem;
  color: var(--ink-dim); margin-bottom: 3rem; line-height: 1.7;
}
.reserve-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { position: relative; }
.form-field input, .form-field select {
  width: 100%; padding: 1.2rem 0; background: transparent;
  border: none; border-bottom: 1px solid var(--line);
  color: var(--ink); font-size: 1rem; outline: none;
  transition: border-color .3s; cursor: none;
  -webkit-appearance: none; appearance: none;
}
.form-field select { cursor: none; }
.form-field label {
  position: absolute; left: 0; top: 1.2rem;
  font-size: .7rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ink-faint);
  pointer-events: none; transition: all .3s var(--ease);
}
.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label,
.form-field select:focus ~ label,
.form-field select:valid ~ label,
.form-field .static-label {
  top: -.4rem; font-size: .65rem; color: var(--gold);
}
.form-field input:focus, .form-field select:focus { border-color: var(--gold); }
.form-note { font-size: .7rem; color: var(--ink-faint); letter-spacing: .1em; margin-top: .5rem; }

/* ============ FOOTER ============ */
.footer { padding: 6rem 0 2rem; background: #050505; border-top: 1px solid var(--line); }
.footer-top {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 4rem; padding-bottom: 4rem;
  border-bottom: 1px solid var(--line); margin-bottom: 2rem;
}
.footer-brand .logo-jp.big {
  font-size: 3rem; color: var(--gold);
  display: inline-block; margin-bottom: 1rem;
}
.footer-brand h2 {
  font-family: var(--font-serif); font-size: 3rem;
  letter-spacing: .15em; margin-bottom: .5rem;
}
.footer-brand p { color: var(--ink-faint); font-size: .85rem; letter-spacing: .1em; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-cols h4 {
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.footer-cols a {
  display: block; font-size: .9rem; color: var(--ink-dim);
  margin-bottom: .8rem; transition: color .3s;
}
.footer-cols a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .7rem; color: var(--ink-faint); letter-spacing: .1em;
}

/* ============ REVEAL ANIMATIONS ============ */
[data-reveal] {
  opacity: 0; transform: translateY(50px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}
[data-reveal].in { opacity: 1; transform: translateY(0); }
