/* ═══════════════════════════════════════════════════════════
   Umami House — Design System (vanilla CSS)
   Dark cinematic luxury · gold + vermilion on near-black
   ═══════════════════════════════════════════════════════════ */
:root {
  --black: #faf3e6;         /* washi paper (page bg) */
  --charcoal: #fffaf0;      /* light panel */
  --charcoal-2: #f2e7d3;
  --line: rgba(43, 30, 19, 0.15);          /* hairline kombu borders */
  --gold: #a5691b;          /* toasted miso (secondary accent) */
  --gold-bright: #c9871f;
  --vermilion: #c8401f;     /* tare red (primary accent) */
  --vermilion-deep: #a83217;
  --white: #2b1e13;         /* kombu ink (text) */
  --gray: rgba(43, 30, 19, 0.62);
  --gray-dim: rgba(43, 30, 19, 0.42);
  --scallion: #6f9a4d;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;
  --font-jp: 'Hiragino Mincho ProN', 'Yu Mincho', 'Noto Serif JP', serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--vermilion); color: var(--white); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f2e7d3; }
::-webkit-scrollbar-thumb {
  background: #c59b55;
  border-radius: 999px;
  border: 2px solid #f2e7d3;
}

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

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.ic { width: 1.25rem; height: 1.25rem; }
.font-jp { font-family: var(--font-jp); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--white);
}
h2 { font-size: clamp(2.6rem, 4.5vw, 3.9rem); line-height: 1.05; }
h2 em { font-style: italic; color: var(--gold); }

.kicker {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold);
}
.section-head { max-width: 40rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 1rem; }
.section-sub { color: var(--gray); margin-top: 1rem; max-width: 32rem; font-size: 1.02rem; }
.section-head.center .section-sub { margin-inline: auto; }
.stars { color: var(--gold); letter-spacing: 0.2em; font-size: 0.85rem; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.95rem 2.1rem;
  font-weight: 500; font-size: 0.95rem; letter-spacing: 0.08em;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.15s;
}
.btn:active { transform: scale(0.97); }
.btn-vermilion { background: var(--vermilion); color: #fff; }
.btn-vermilion:hover { background: var(--vermilion-deep); }
.btn-ghost { border: 1px solid var(--gold); color: var(--gold); }
.btn-ghost:hover { background: var(--gold); color: var(--black); }
.btn-block { width: 100%; }

/* reveal on scroll */
[data-reveal] {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ═══════════ HEADER ═══════════ */
.nav {
  position: fixed; inset-inline: 0; top: 0; z-index: 50;
  background: rgba(250, 243, 230, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(250, 243, 230, 0.96);
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(43, 30, 19, 0.08);
}
.nav-inner {
  max-width: 1380px; margin: 0 auto; padding: 0.75rem 1.5rem;
  display: flex; align-items: center; gap: 2rem;
}
.nav-links { display: flex; gap: 2rem; margin-left: auto; }

/* bilingual roll-flip links: EN at rest, JP in tare red on hover/active */
.nlink { display: inline-block; overflow: hidden; height: 1.5em; }
.nlink .flip {
  display: flex; flex-direction: column; align-items: center;
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.nlink .en, .nlink .jp { height: 1.5em; line-height: 1.5em; white-space: nowrap; }
.nlink .en { font-size: 0.92rem; font-weight: 400; letter-spacing: 0.06em; color: var(--white); }
.nlink .jp { font-size: 0.85rem; letter-spacing: 0.2em; color: var(--vermilion); }
.nlink:hover .flip, .nlink.active .flip { transform: translateY(-1.5em); }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-cta { padding: 0.6rem 1.5rem; font-size: 0.85rem; }

/* brand — vertical noren plaque + serif wordmark */
.brand { display: inline-flex; align-items: center; gap: 0.75rem; }
.plaque {
  display: grid; place-items: center;
  width: 2.3rem; height: 3.2rem;
  border-radius: 6px;
  background: var(--vermilion); color: #fff7ea;
  writing-mode: vertical-rl; text-orientation: upright;
  font-size: 1rem; font-weight: 600; letter-spacing: 0.12em;
  box-shadow: inset 0 0 0 1.5px rgba(255, 247, 234, 0.4), 0 6px 14px rgba(43, 30, 19, 0.18);
  transition: transform 0.3s;
}
.nav.scrolled .plaque { transform: scale(0.9); }
.plaque-lg { width: 3.8rem; height: 5.6rem; font-size: 1.7rem; border-radius: 8px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.35rem; letter-spacing: 0.01em; color: var(--white);
  white-space: nowrap;
}
.brand-sub {
  margin-top: 0.32rem;
  font-family: var(--font-jp); font-size: 0.62rem; letter-spacing: 0.28em;
  color: var(--gray-dim);
}

.burger {
  display: none; width: 2.6rem; height: 2.6rem;
  place-items: center; border-radius: 50%;
  border: 1px solid var(--line); color: var(--white);
}
.burger:hover { border-color: var(--vermilion); color: var(--vermilion); }

@media (max-width: 1023px) {
  .nav-links { display: none; }
  .nav-actions { margin-left: auto; }
  .burger { display: grid; }
}
@media (max-width: 560px) { .nav-cta { display: none; } }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 60;
  background: var(--black); color: var(--white);
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-head { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; }
.btn-close {
  display: grid; place-items: center; width: 2.6rem; height: 2.6rem;
  border-radius: 50%; border: 1px solid var(--line);
}
.btn-close:hover { border-color: var(--gold); color: var(--gold); }
.mobile-links { display: flex; flex-direction: column; padding: 1.5rem; margin-top: 0.5rem; }
.mobile-links a {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 1.15rem 0; border-bottom: 1px solid var(--line);
  transform: translateX(-30px); opacity: 0;
  transition: transform 0.4s, opacity 0.4s;
}
.mobile-menu.open .mobile-links a { transform: none; opacity: 1; }
.mobile-menu.open .mobile-links a:nth-child(2) { transition-delay: 0.05s; }
.mobile-menu.open .mobile-links a:nth-child(3) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-links a:nth-child(4) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-links a:nth-child(5) { transition-delay: 0.2s; }
.mobile-links a span { font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; }
.mobile-links a:hover span { color: var(--gold); }
.mobile-links a small { font-family: var(--font-jp); font-size: 0.8rem; color: var(--gray-dim); letter-spacing: 0.2em; }
.mobile-foot { margin-top: auto; padding: 0 1.5rem 2.5rem; }
.mobile-foot p { text-align: center; margin-top: 1rem; font-size: 0.85rem; color: var(--gray-dim); letter-spacing: 0.05em; }

/* ═══════════ HERO — FULL-BLEED CAROUSEL ═══════════ */
.hero {
  position: relative; overflow: hidden;
  height: 100svh; min-height: 640px;
}
.hero-slides { position: absolute; inset: 0; will-change: transform; }
.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.07);
  transition: opacity 1.2s ease, transform 6.5s ease;
}
.slide.on { opacity: 1; transform: scale(1); }

/* warm cinematic shade — kombu brown, not black */
.hero-shade {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(24, 14, 7, 0.78) 0%, rgba(24, 14, 7, 0.45) 42%, rgba(24, 14, 7, 0.12) 72%),
    linear-gradient(180deg, rgba(24, 14, 7, 0.45) 0%, rgba(24, 14, 7, 0.05) 30%, rgba(24, 14, 7, 0.66) 100%);
}

/* vertical brand motto — cream on photo */
.hero-motto {
  position: absolute; right: 2.2rem; top: 50%; z-index: 4;
  transform: translateY(-55%);
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  writing-mode: vertical-rl; text-orientation: upright;
  font-size: 0.95rem; letter-spacing: 0.55em;
  color: rgba(250, 243, 230, 0.7);
  pointer-events: none;
}
.motto-rule { width: 1px; height: 3.2rem; background: #e0572b; }
@media (max-width: 1279px) { .hero-motto { display: none; } }

/* left content over photo */
.hero-content {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; align-items: flex-start;
  justify-content: center;
  height: 100%;
  padding-top: 3rem;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(250, 243, 230, 0.75);
}
.eyebrow-rule { display: inline-block; width: 2.4rem; height: 1px; background: #e0572b; }

.hero-content h1 {
  margin-top: 1.5rem;
  font-size: clamp(3.4rem, 5.8vw, 5.6rem);
  font-weight: 600; line-height: 1.02;
  color: #fdf8ef;
  text-shadow: 0 4px 30px rgba(24, 14, 7, 0.4);
}
.hero-content h1 em { font-style: italic; color: #e88a54; }
.hero-sub {
  margin-top: 1.5rem; max-width: 24rem;
  font-size: 1.04rem; line-height: 1.75;
  color: rgba(250, 243, 230, 0.8);
}
.hero-ctas { display: flex; align-items: center; gap: 1.8rem; margin-top: 2.4rem; }
.link-arrow {
  font-size: 0.92rem; font-weight: 500; letter-spacing: 0.06em;
  color: #fdf8ef;
  border-bottom: 1px solid rgba(250, 243, 230, 0.4);
  padding-bottom: 0.2rem;
  transition: color 0.2s, border-color 0.2s;
}
.link-arrow:hover { color: #e88a54; border-color: #e88a54; }

/* bottom bar: numbered dish index + live meta */
.hero-bottom {
  position: absolute; inset-inline: 0; bottom: 2.1rem; z-index: 4;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.dish-index { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.dish {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.18em;
  color: rgba(250, 243, 230, 0.55);
  padding-bottom: 0.35rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.dish:hover { color: #fdf8ef; }
.dish.active { color: #fdf8ef; border-color: #e0572b; }
.hero-meta {
  font-size: 0.8rem; letter-spacing: 0.1em;
  color: rgba(250, 243, 230, 0.75);
  white-space: nowrap;
}
.hero-meta .font-jp { color: #e88a54; letter-spacing: 0.2em; margin-right: 0.4rem; }
@media (max-width: 700px) { .hero-meta { display: none; } }

/* ═══════════ MENU ═══════════ */
.menu-section { padding: 7rem 0; }
.tabs {
  display: flex; gap: 2.5rem; margin-top: 3rem;
  border-bottom: 1px solid var(--line);
}
.tab {
  position: relative; padding: 0 0 1rem;
  font-size: 0.95rem; font-weight: 400; letter-spacing: 0.1em;
  color: var(--gray);
  transition: color 0.2s;
}
.tab small {
  margin-left: 0.4rem;
  font-family: var(--font-jp); font-size: 0.68rem; color: var(--gray-dim);
}
.tab::after {
  content: ''; position: absolute; left: 0; bottom: -1px;
  width: 0; height: 2px; background: var(--vermilion);
  transition: width 0.3s;
}
.tab:hover { color: var(--white); }
.tab.active { color: var(--white); }
.tab.active::after { width: 100%; }

.menu-list {
  display: grid; gap: 0 4rem; margin-top: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .menu-list { grid-template-columns: 1fr 1fr; } }

.menu-item {
  display: flex; gap: 1.4rem; align-items: flex-start;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(165, 105, 27, 0.12);
  animation: item-in 0.5s ease backwards;
}
@keyframes item-in { from { opacity: 0; transform: translateY(18px); } }
.menu-item .thumb {
  position: relative; flex-shrink: 0;
  width: 5.2rem; height: 5.2rem; border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line);
  display: grid; place-items: center;
}
.menu-item .thumb img { width: 100%; height: 100%; object-fit: cover; }
.menu-item .thumb .jp-fill {
  font-family: var(--font-jp); font-size: 1.6rem; color: var(--gold);
}
.menu-item .body { flex: 1; }
.menu-item .row1 {
  display: flex; align-items: baseline; gap: 0.9rem;
}
.menu-item h3 {
  font-size: 1.45rem; font-weight: 600; letter-spacing: 0.02em;
  white-space: nowrap;
}
.menu-item .leader {
  flex: 1; border-bottom: 1px dotted rgba(165, 105, 27, 0.35);
  transform: translateY(-4px);
}
.menu-item .price {
  font-family: var(--font-display); font-size: 1.45rem; font-weight: 600;
  color: var(--gold);
}
.menu-item .sub {
  margin-top: 0.15rem;
  font-family: var(--font-jp); font-size: 0.75rem; letter-spacing: 0.18em;
  color: var(--gray-dim);
}
.menu-item .desc { margin-top: 0.55rem; font-size: 0.92rem; line-height: 1.6; color: var(--gray); }
.menu-item .meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.9rem;
  margin-top: 0.75rem;
}
.menu-item .tag {
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gray-dim);
}
.menu-item .flag {
  font-size: 0.66rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.2rem 0.6rem; border: 1px solid;
}
.flag-new { color: var(--vermilion); border-color: rgba(200, 64, 31, 0.5); }
.flag-sig { color: var(--gold); border-color: rgba(165, 105, 27, 0.5); }
.spice { display: inline-flex; gap: 0.1rem; }
.spice svg { width: 0.9rem; height: 0.9rem; }
.spice .on { color: var(--vermilion); }
.spice .off { color: rgba(43, 30, 19, 0.15); }
.spice-mild { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--scallion); }

/* ═══════════ STORY ═══════════ */
.story { padding: 7rem 0; background: var(--charcoal); border-block: 1px solid var(--line); }
.story-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .story-grid { grid-template-columns: 0.9fr 1.1fr; } }
.story-art { position: relative; }
.story-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  padding: 0.9rem;
  background: var(--black);
}
.story-photo img { width: 100%; height: auto; filter: saturate(0.92); }
.story-stamp {
  position: absolute; right: -1.2rem; bottom: -1.2rem;
  display: grid; place-items: center;
  width: 5rem; height: 5rem; border-radius: 50%;
  background: var(--vermilion); color: #fff;
  font-size: 2rem; font-weight: 600;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}
.story h2 { margin-top: 1rem; }
.story-copy > div { margin-top: 1.75rem; display: grid; gap: 1.1rem; font-size: 1.05rem; line-height: 1.75; color: var(--gray); }
.story blockquote {
  margin-top: 2.25rem; padding-left: 1.4rem;
  border-left: 2px solid var(--gold);
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; font-style: italic;
  color: var(--white);
}
.story blockquote footer {
  margin-top: 0.6rem; font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 400; font-style: normal;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-dim);
}

/* ═══════════ CRAFT ═══════════ */
.craft { padding: 7rem 0; }
.craft-grid {
  display: grid; gap: 1px; margin-top: 4rem;
  background: var(--line);
  border: 1px solid var(--line);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .craft-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .craft-grid { grid-template-columns: repeat(4, 1fr); } }
.craft-card {
  position: relative; background: var(--black);
  padding: 2.6rem 2rem 2.4rem;
  transition: background 0.3s;
}
.craft-card:hover { background: var(--charcoal); }
.craft-jp {
  display: block; font-size: 2.1rem; color: var(--gold);
  line-height: 1;
}
.craft-num {
  position: absolute; top: 1.6rem; right: 1.6rem;
  font-family: var(--font-display); font-size: 1rem; font-style: italic;
  color: var(--gray-dim);
}
.craft-card h3 { margin-top: 1.4rem; font-size: 1.5rem; }
.craft-card p { margin-top: 0.8rem; font-size: 0.92rem; line-height: 1.65; color: var(--gray); }

/* ═══════════ REVIEWS ═══════════ */
.reviews { padding: 7rem 0 6rem; background: var(--charcoal); border-block: 1px solid var(--line); }
.reviews-carousel { position: relative; margin-top: 3.5rem; }
.reviews-rail {
  display: flex; gap: 1.25rem;
  padding: 0 max(1.5rem, calc((100vw - 1280px) / 2 + 1.5rem)) 1rem;
  overflow-x: auto; scrollbar-width: none; scroll-behavior: smooth;
}
.reviews-rail::-webkit-scrollbar { display: none; }
.carousel-arrow {
  position: absolute; top: 40%; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 50%;
  background: var(--black); color: var(--white);
  border: 1px solid var(--line);
  cursor: pointer; transition: background 0.2s, border-color 0.2s, opacity 0.2s;
}
.carousel-arrow svg { width: 1.2rem; height: 1.2rem; }
.carousel-arrow:hover { background: var(--vermilion); border-color: var(--vermilion); color: #fff; }
.carousel-arrow.disabled { opacity: 0.35; pointer-events: none; }
.carousel-arrow.prev { left: 1rem; }
.carousel-arrow.next { right: 1rem; }
@media (min-width: 1024px) {
  .carousel-arrow.prev { left: max(0.5rem, calc((100vw - 1280px) / 2 - 1.5rem)); }
  .carousel-arrow.next { right: max(0.5rem, calc((100vw - 1280px) / 2 - 1.5rem)); }
}
@media (max-width: 640px) {
  .carousel-arrow { width: 2.5rem; height: 2.5rem; }
}
/* touch devices: cards nearly fill the width, so overlay arrows would
   sit on top of card text — swipe/scroll natively instead */
@media (pointer: coarse) {
  .carousel-arrow { display: none; }
}
.review {
  flex-shrink: 0; display: flex; flex-direction: column;
  width: 84vw; max-width: 23rem;
  border: 1px solid var(--line);
  background: var(--black);
  padding: 2.2rem;
}
.review.accent { border-color: rgba(200, 64, 31, 0.45); }
.review blockquote {
  flex: 1; margin-top: 1.2rem;
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 500;
  line-height: 1.4; color: var(--white);
}
.review figcaption { margin-top: 1.8rem; }
.review figcaption strong { font-weight: 500; letter-spacing: 0.04em; }
.review figcaption span {
  display: block; margin-top: 0.2rem;
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gray-dim);
}

/* ═══════════ VISIT ═══════════ */
.visit { padding: 7rem 0; }
.visit-grid { display: grid; gap: 1.5rem; }
@media (min-width: 1024px) { .visit-grid { grid-template-columns: 1fr 1fr; } }
.visit-card, .reserve-card {
  border: 1px solid var(--line);
  background: var(--charcoal);
  padding: 3rem 2.5rem;
}
.visit-card h2 { margin-top: 1rem; }
.visit-card address {
  margin-top: 2rem; font-style: normal; line-height: 1.8; color: var(--gray);
}
.visit-card address strong {
  color: var(--white); font-family: var(--font-display);
  font-size: 1.2rem; letter-spacing: 0.06em;
}
.visit-card address a { color: var(--gold); }
.visit-card address a:hover { color: var(--gold-bright); }
.map {
  position: relative; margin-top: 2rem;
  border: 1px solid var(--line); overflow: hidden;
}
.map svg { width: 100%; height: 10rem; display: block; }
.map-note {
  position: absolute; bottom: 0.6rem; right: 0.8rem;
  border: 1px solid var(--line); background: rgba(0, 0, 0, 0.55);
  padding: 0.22rem 0.7rem; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gray);
}
.visit-card h3 { margin-top: 2.2rem; font-size: 1.35rem; }
.visit-card h3 small { font-size: 0.8rem; color: var(--gray-dim); margin-left: 0.5rem; }
.hours { margin-top: 0.9rem; }
.hours div {
  display: flex; justify-content: space-between;
  padding: 0.55rem 0; font-size: 0.9rem; letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(165, 105, 27, 0.1);
}
.hours dt { color: var(--gray); }
.hours dd { color: var(--white); }
.hours .closed { color: var(--vermilion); }

.reserve-card h3 { margin-top: 1rem; font-size: 2rem; }
.reserve-card form { margin-top: 2rem; display: grid; gap: 1.3rem; }
.reserve-card label {
  display: block; font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray);
}
.reserve-card input, .reserve-card select, .reserve-card textarea {
  width: 100%; margin-top: 0.5rem;
  border: 1px solid rgba(165, 105, 27, 0.25);
  background: var(--black); padding: 0.9rem 1rem;
  font-size: 0.98rem; font-family: inherit; font-weight: 300;
  color: var(--white);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  color-scheme: light;
}
.reserve-card input:focus, .reserve-card select:focus, .reserve-card textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(165, 105, 27, 0.12);
}
.form-row { display: grid; gap: 1.3rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.time-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: -0.4rem; }
.time-pills button {
  padding: 0.5rem 1rem;
  font-size: 0.82rem; letter-spacing: 0.08em;
  border: 1px solid rgba(165, 105, 27, 0.25); color: var(--gray);
  transition: all 0.2s;
}
.time-pills button:hover { border-color: var(--gold); color: var(--white); }
.time-pills button.active { background: var(--vermilion); border-color: var(--vermilion); color: #fff; }

.reserve-done {
  margin-top: 2rem; text-align: center;
  border: 1px solid rgba(111, 154, 77, 0.4);
  padding: 2.5rem; animation: item-in 0.35s ease;
}
.done-check {
  display: grid; place-items: center; margin: 0 auto;
  width: 3.6rem; height: 3.6rem; border-radius: 50%;
  background: var(--scallion); color: #fff; font-size: 1.5rem;
}
.reserve-done h4 { margin-top: 1.1rem; font-size: 1.6rem; }
.reserve-done p { margin-top: 0.5rem; color: var(--gray); }
.reserve-done .btn { margin-top: 1.6rem; }

/* ═══════════ NEWSLETTER ═══════════ */
.newsletter { padding: 7rem 1.5rem; }
.news-card {
  max-width: 62rem; margin: 0 auto;
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 50% -20%, rgba(165, 105, 27, 0.12), transparent 60%),
    var(--charcoal);
  padding: 4rem 2rem; text-align: center;
}
.news-card h2 { margin-top: 1rem; }
.news-card .section-sub { margin-inline: auto; }
.news-form {
  display: flex; flex-direction: column; gap: 0.7rem;
  max-width: 28rem; margin: 2.2rem auto 0;
}
@media (min-width: 640px) { .news-form { flex-direction: row; } }
.news-form input {
  flex: 1;
  border: 1px solid rgba(165, 105, 27, 0.3); background: var(--black);
  padding: 0.95rem 1.3rem; font-size: 0.95rem; font-family: inherit; font-weight: 300;
  color: var(--white); outline: none;
  transition: border-color 0.2s;
}
.news-form input:focus { border-color: var(--gold); }
.news-form .btn.is-loading { cursor: default; opacity: 0.7; }
.news-done {
  display: inline-block; margin-top: 2rem;
  border: 1px solid var(--gold); color: var(--gold);
  padding: 0.9rem 2rem; letter-spacing: 0.1em;
  animation: item-in 0.35s ease;
}

/* ═══════════ FOOTER ═══════════ */
.footer { border-top: 1px solid var(--line); }
.footer-grid {
  display: grid; gap: 3rem; padding: 4.5rem 1.5rem 3.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer-brand p { margin-top: 1.4rem; max-width: 20rem; line-height: 1.7; color: var(--gray); }
.footer-brand .socials-row { margin-top: 1.8rem; }
.footer-col h4 {
  font-size: 0.8rem; font-weight: 500; font-family: var(--font-body);
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
}
.footer-col h4 small { margin-left: 0.4rem; color: var(--gray-dim); }
.footer-col a {
  display: block; margin-top: 0.9rem; font-size: 0.92rem;
  color: var(--gray); transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  border-top: 1px solid rgba(165, 105, 27, 0.1);
  padding: 1.8rem 1.5rem; font-size: 0.78rem; letter-spacing: 0.06em;
  color: var(--gray-dim);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom a { margin: 0 0.7rem; }
.footer-bottom a:hover { color: var(--gold); }

/* ═══════════ CUSTOM CURSOR ═══════════ */
@media (pointer: fine) {
  .cursor {
    position: fixed; left: 0; top: 0; z-index: 120;
    width: 2.4rem; height: 2.4rem; border-radius: 50%;
    border: 1px solid rgba(200, 64, 31, 0.55);
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width 0.25s, height 0.25s, border-color 0.25s, background 0.25s, opacity 0.3s;
  }
  .cursor-dot {
    position: fixed; left: 0; top: 0; z-index: 120;
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--gold);
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  .cursor.hot {
    width: 3.6rem; height: 3.6rem;
    border-color: var(--vermilion);
    background: rgba(200, 64, 31, 0.12);
  }
  .cursor.hidden, .cursor-dot.hidden { opacity: 0; }
}
@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor, .cursor-dot { display: none; }
}



/* ═══════════ STATS BAND ═══════════ */
.stats-band {
  border-bottom: 1px solid var(--line);
  background: var(--black);
  padding: 3.2rem 0;
}
.stats-inner {
  display: grid; gap: 2.5rem 1rem;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}
@media (min-width: 800px) { .stats-inner { grid-template-columns: repeat(4, 1fr); } }
.stat-n {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.6rem, 4.5vw, 3.8rem); line-height: 1;
  color: var(--white);
}
.stat-unit {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.3rem; color: var(--gold); margin-left: 0.25rem;
}
.stat p {
  margin-top: 0.6rem;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gray-dim);
}

/* ═══════════ HANKO STAMP ═══════════ */
.hanko {
  display: grid; place-items: center;
  width: 4.6rem; height: 4.6rem;
  background: var(--vermilion); color: #fff;
  border-radius: 10px;
  font-size: 2rem; font-weight: 600;
  transform: rotate(-7deg);
  box-shadow: inset 0 0 0 2.5px rgba(255, 255, 255, 0.35), inset 0 0 14px rgba(95, 45, 22, 0.5), 0 12px 30px rgba(43, 30, 19, 0.18);
}
.story-hanko { position: absolute; right: -1.1rem; bottom: -1.1rem; }
.hanko-sm {
  width: 1.7rem; height: 1.7rem; border-radius: 4px;
  font-size: 0.85rem; display: inline-grid;
  vertical-align: middle; margin-right: 0.6rem;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.35);
}
.footer-jp { font-family: var(--font-jp); display: flex; align-items: center; }

/* ═══════════ FLOATING MENU PREVIEW ═══════════ */
.menu-preview {
  position: fixed; z-index: 90;
  width: 14.5rem; aspect-ratio: 1;
  padding: 0.5rem;
  background: var(--black);
  border: 1px solid var(--gold);
  pointer-events: none;
  opacity: 0; transform: scale(0.88) rotate(4deg);
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.menu-preview.show { opacity: 1; transform: scale(1) rotate(2deg); }
.menu-preview img { width: 100%; height: 100%; object-fit: cover; }
@media (pointer: coarse) { .menu-preview { display: none; } }

/* ═══════════ NORI FOOTER (dark, warm) ═══════════ */
.footer { background: #221610; color: #f5ead9; }
.footer .brand-name { color: #f5ead9; }
.footer .brand-sub { color: rgba(245, 234, 217, 0.5); }
.footer-brand p { color: rgba(245, 234, 217, 0.6); }
.footer-col h4 { color: #d99a2e; }
.footer-col h4 small { color: rgba(245, 234, 217, 0.4); }
.footer-col a { color: rgba(245, 234, 217, 0.6); }
.footer-col a:hover { color: #f5ead9; }
.footer-bottom { color: rgba(245, 234, 217, 0.4); border-top-color: rgba(245, 234, 217, 0.12); }
.footer-bottom a:hover { color: #d99a2e; }
.footer .socials-row a { border-color: rgba(245, 234, 217, 0.28); color: rgba(245, 234, 217, 0.6); }
.footer .socials-row a:hover { border-color: var(--vermilion); color: #fff; background: var(--vermilion); }

/* ═══════════ MULTI-PAGE ADDITIONS ═══════════ */

/* page header band (menu / story / visit) */
.page-head {
  padding: 9rem 0 3.5rem;
  background: var(--charcoal);
  border-bottom: 1px solid var(--line);
}
.page-head h1 {
  margin-top: 1rem;
  font-size: clamp(2.9rem, 5vw, 4.4rem);
  font-weight: 600; line-height: 1.02;
}
.page-head h1 em { font-style: italic; color: var(--vermilion); }

/* nav active state holds the JP flip */
.nlink.active .flip { transform: translateY(-1.5em); }

/* featured bowls (home) */
.featured { padding: 6.5rem 0; }
.feat-grid {
  display: grid; gap: 1.5rem; margin-top: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .feat-grid { grid-template-columns: repeat(3, 1fr); } }
.feat-card {
  display: block;
  background: var(--charcoal);
  border: 1px solid var(--line);
  padding: 0.6rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 50px -22px rgba(43, 30, 19, 0.35);
}
.feat-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.feat-body {
  display: flex; align-items: baseline; gap: 0.7rem;
  padding: 0.9rem 0.35rem 0.35rem;
}
.feat-body .cap-jp { font-size: 0.8rem; letter-spacing: 0.2em; color: var(--vermilion); }
.feat-body strong { font-family: var(--font-display); font-size: 1.12rem; font-weight: 700; }
.feat-body .cap-sub { margin-left: auto; font-size: 0.85rem; color: var(--gray); }
.featured-cta { text-align: center; margin-top: 2.8rem; }
.link-arrow.dark {
  color: var(--white);
  border-bottom-color: var(--line);
}
.link-arrow.dark:hover { color: var(--vermilion); border-color: var(--vermilion); }

/* realistic street map */
.map-wide { margin-bottom: 2rem; }
.citymap {
  width: 100%; height: auto; display: block;
  border: 1px solid var(--line);
  box-shadow: 0 24px 50px -28px rgba(43, 30, 19, 0.3);
}
.map-caption {
  margin-top: 0.8rem;
  font-size: 0.8rem; letter-spacing: 0.08em;
  color: var(--gray-dim);
}

/* ═══════════ GALLERY ═══════════ */
.gallery-section { padding: 5rem 0 6.5rem; }
.gallery-grid { columns: 1; column-gap: 1.4rem; }
@media (min-width: 640px) { .gallery-grid { columns: 2; } }
@media (min-width: 1024px) { .gallery-grid { columns: 3; } }
.g-item {
  break-inside: avoid; margin: 0 0 1.4rem;
  background: var(--charcoal);
  border: 1px solid var(--line);
  padding: 0.55rem;
  cursor: zoom-in;
  transition: transform 0.3s, box-shadow 0.3s;
}
.g-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 45px -22px rgba(43, 30, 19, 0.35);
}
.g-item img { width: 100%; display: block; }
.g-item figcaption {
  display: flex; align-items: baseline; gap: 0.6rem;
  padding: 0.7rem 0.3rem 0.25rem;
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
}
.g-item figcaption .font-jp { font-size: 0.72rem; letter-spacing: 0.2em; color: var(--vermilion); }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 90;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  background: rgba(24, 14, 7, 0.92);
  padding: 3rem 1.5rem;
  animation: fade-in-lb 0.25s ease;
}
.lightbox[hidden] { display: none; }
@keyframes fade-in-lb { from { opacity: 0; } }
.lightbox img {
  max-width: min(92vw, 1000px); max-height: 76vh;
  border: 6px solid #fffaf0;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
}
.lightbox-cap {
  color: rgba(250, 243, 230, 0.85);
  font-family: var(--font-display); font-size: 1.15rem; font-style: italic;
}
.lightbox-close {
  position: absolute; top: 1.2rem; right: 1.6rem;
  font-size: 2.4rem; line-height: 1; color: rgba(250, 243, 230, 0.8);
  transition: color 0.2s;
}
.lightbox-close:hover { color: #fff; }

/* ═══════════ CONTACT / FAQ ═══════════ */
.contact-section .visit-card h3 { margin-top: 2.2rem; }
.faq { margin-top: 1rem; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
}
.faq summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 500; font-size: 0.95rem; letter-spacing: 0.03em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-size: 1.25rem; color: var(--vermilion);
  transition: transform 0.25s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin-top: 0.6rem; font-size: 0.9rem; line-height: 1.65;
  color: var(--gray);
}

/* ═══════════ HOME: GALLERY STRIP ═══════════ */
.photo-strip-section { padding: 6.5rem 0 5.5rem; background: var(--charcoal); border-block: 1px solid var(--line); overflow: hidden; }
.strip-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2.6rem;
}
.photo-strip {
  padding: 0 0 0.5rem;
}
.strip-item {
  flex-shrink: 0; display: block;
  transition: transform 0.3s, box-shadow 0.3s;
}
.strip-item:hover {
  transform: translateY(-5px);
}
.strip-item img { display: block; height: 15rem; width: auto; object-fit: cover; }
.strip-item.tall img { height: 18.5rem; }
@media (max-width: 700px) {
  .strip-item img { height: 11rem; }
  .strip-item.tall img { height: 13.5rem; }
}

/* ═══════════ HOME: VISIT BAND (dark) ═══════════ */
.visit-band {
  background: #221610; color: #f5ead9;
  padding: 6.5rem 0;
}
.visit-band h2 { color: #f9f1e2; margin-top: 1rem; }
.visit-band h2 em { color: #e8794b; }
.band-grid {
  display: grid; gap: 3rem; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .band-grid { grid-template-columns: 1.15fr 0.85fr; } }
.band-sub { margin-top: 1.2rem; max-width: 26rem; line-height: 1.75; color: rgba(245, 234, 217, 0.7); }
.link-arrow.light {
  color: #f9f1e2; border-bottom-color: rgba(245, 234, 217, 0.35);
}
.link-arrow.light:hover { color: #e8794b; border-color: #e8794b; }
.band-info {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid rgba(245, 234, 217, 0.15);
  padding-left: 2.5rem;
}
@media (max-width: 899px) { .band-info { border-left: 0; padding-left: 0; } }
.band-info h4 {
  font-size: 0.78rem; font-weight: 500; font-family: var(--font-body);
  letter-spacing: 0.28em; text-transform: uppercase; color: #d99a2e;
}
.band-info h4 small { margin-left: 0.35rem; color: rgba(245, 234, 217, 0.4); }
.band-info p { margin-top: 0.9rem; line-height: 1.8; color: rgba(245, 234, 217, 0.75); }

/* GSAP takes over reveals when active */
.gsap-on [data-reveal] { opacity: 1; transform: none; transition: none; }
/* overflow guard for clip/parallax layers */
.story-photo { overflow: hidden; }


/* ═══════════ FLOATING INGREDIENT LINE-ART ═══════════ */
.stats-band, .featured, .craft, .reviews, .newsletter, .story, .visit-band { position: relative; }
.float-deco {
  position: absolute; z-index: 0;
  pointer-events: none; user-select: none;
  color: rgba(43, 30, 19, 0.14);
}
.float-deco svg { width: 100%; height: auto; display: block; }
.fd-verm { color: rgba(200, 64, 31, 0.2); }
.fd-gold { color: rgba(165, 105, 27, 0.22); }
.fd-cream { color: rgba(245, 234, 217, 0.16); }
/* content always layers above the line-art */
.stats-band .container, .featured .container, .craft .container,
.reviews .container, .reviews-rail, .newsletter .news-card,
.story .container, .visit-band .container {
  position: relative; z-index: 1;
}
@media (max-width: 760px) { .float-deco { display: none; } }

/* ═══════════ GALLERY STRIP — MARQUEE LOOP ═══════════ */
.photo-strip { overflow: hidden; padding-bottom: 0.5rem; }
.photo-track {
  display: flex; width: max-content;
  animation: photo-marquee 46s linear infinite;
  will-change: transform;
}
.photo-track:hover { animation-play-state: paused; }
.photo-track .strip-item { margin-right: 1.2rem; flex-shrink: 0; }
@keyframes photo-marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .photo-track { animation: none; } }
