/* ============================================================
   UMU — Japanese & Thai · Wesley Chapel
   Scroll-cinematic brand site
   ============================================================ */

:root {
  --ink:      #0a0908;
  --coal:     #13100e;
  --char:     #1c1815;
  --smoke:    #2a2521;
  --ivory:    #f2ebdf;
  --ivory-70: rgba(242, 235, 223, .70);
  --ivory-45: rgba(242, 235, 223, .55); /* "45" kept as the token name; bumped to .55 for WCAG AA (≈5.4:1) */
  --ivory-20: rgba(242, 235, 223, .20);
  --line:     rgba(242, 235, 223, .12);
  --sand:     #cdbb9c;
  --amber:    #d9962e;
  --amber-2:  #f0b95a;
  --lacquer:  #c9402a;

  /* Type: Shippori Mincho — a Japanese Mincho whose Latin is a refined, slightly calligraphic serif.
     Zen Kaku Gothic New — clean Japanese gothic for body + spaced-caps labels. No mono, no italics. */
  --font-display: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", "Times New Roman", serif;
  --font-body:    "Zen Kaku Gothic New", "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
  --font-mono:    "Zen Kaku Gothic New", "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;

  --gutter: clamp(20px, 5vw, 96px);
  --ease:  cubic-bezier(.22, .61, .36, 1);
  --ease-out-expo: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; background: var(--ink); color: var(--ivory); }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--amber); color: var(--ink); }

/* film grain — subtle, fixed */
body::after {
  content: "";
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 200;
  opacity: .055;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  animation: grain 1.2s steps(6) infinite;
}
@keyframes grain {
  0%   { transform: translate(0,0); }
  20%  { transform: translate(-3%,2%); }
  40%  { transform: translate(2%,-4%); }
  60%  { transform: translate(-4%,-2%); }
  80%  { transform: translate(3%,3%); }
  100% { transform: translate(-1%,1%); }
}

/* ---------- type ---------- */
/* Labels: spaced caps in the gothic (weight 500) — everything that used to be mono. */
.eyebrow, .mono, .price, .nav-links a, .btn, .hud, .tag, .gf, .num,
.section-head .head-r, .cut-table th, .thai-menu .price-row span, .info-card a.link,
.masonry figcaption, .photo-stack figcaption, .foot, .loader small, .vert-label,
.hours div span:first-child, .brand-text small, .set-card .price {
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--amber);
}
.eyebrow.muted { color: var(--ivory-45); }
.display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.005em;
  margin: 0;
}
.display em { font-style: normal; font-weight: 400; color: var(--sand); }
h2.display { font-size: clamp(36px, 5.4vw, 80px); }
h3.display { font-size: clamp(26px, 3vw, 42px); }
.lede {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.7;
  color: var(--ivory-70);
  max-width: 58ch;
  margin: 0;
}
.mono { font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; }
.price { font-family: var(--font-mono); font-size: 13px; letter-spacing: .08em; color: var(--sand); white-space: nowrap; }
em { font-style: normal; }

.poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 300; background: var(--amber); color: var(--ink); padding: 10px 16px; border-radius: 4px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; }
.skip:focus { top: 12px; }
:focus-visible { outline: 2px solid var(--amber-2); outline-offset: 3px; border-radius: 4px; }
.btn:focus-visible { outline-offset: 4px; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform 1s var(--ease-out-expo); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px var(--gutter);
  transition: background .5s var(--ease), backdrop-filter .5s, padding .4s var(--ease), border-color .5s;
  border-bottom: 1px solid transparent;
}
.nav.solid {
  background: rgba(10, 9, 8, .78);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  padding: 12px var(--gutter);
  border-bottom-color: var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 34px; height: 52px;
  border: 1.5px solid var(--ivory);
  position: relative;
  display: grid; place-items: center;
}
.brand-mark::before, .brand-mark::after {
  content: ""; position: absolute; top: 5px; bottom: 5px; width: 3px; background: var(--ivory);
}
.brand-mark::before { left: 4px; } .brand-mark::after { right: 4px; }
.brand-mark span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px; line-height: .8;
  writing-mode: vertical-rl; text-orientation: upright;
  letter-spacing: -.08em;
  transform: translateY(0px);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text b { font-family: var(--font-display); font-weight: 600; font-size: 20px; letter-spacing: .2em; }
.brand-text small { font-family: var(--font-mono); font-size: 9px; letter-spacing: .34em; text-transform: uppercase; color: var(--ivory-45); }

.nav-links { display: flex; gap: 32px; justify-content: center; }
.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ivory-70);
  position: relative; padding: 6px 0;
  transition: color .3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--amber);
  transition: right .35s var(--ease);
}
.nav-links a:hover { color: var(--ivory); }
.nav-links a:hover::after { right: 0; }
.nav-cta { display: flex; gap: 10px; justify-content: flex-end; align-items: center; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  padding: 13px 22px;
  border: 1px solid var(--ivory-20);
  color: var(--ivory);
  border-radius: 999px;
  transition: background .3s var(--ease), color .3s, border-color .3s, transform .3s var(--ease);
  white-space: nowrap;
}
.btn:hover { border-color: var(--ivory); transform: translateY(-1px); }
.btn.solid { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.btn.solid:hover { background: var(--amber-2); border-color: var(--amber-2); }
.btn.amber { background: var(--amber); color: var(--ink); border-color: var(--amber); }
.btn.amber:hover { background: var(--amber-2); }
.btn svg { width: 14px; height: 14px; }
.btn.lg { padding: 17px 30px; font-size: 12px; }

.nav-toggle {
  display: none; width: 44px; height: 44px; margin-left: 4px;
  border: 1px solid var(--ivory-20); border-radius: 999px; background: transparent;
  place-items: center; position: relative; color: var(--ivory);
}
.nav-toggle span { position: absolute; left: 13px; right: 13px; height: 1.5px; background: currentColor; transition: transform .35s var(--ease), top .35s var(--ease), opacity .3s; }
.nav-toggle span:first-child { top: 17px; } .nav-toggle span:last-child { top: 25px; }
.nav-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child  { top: 21px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(10, 9, 8, .96);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  display: flex; flex-direction: column; justify-content: center; gap: 24px;
  padding: 96px var(--gutter) 32px;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .4s var(--ease), visibility .4s, transform .5s var(--ease-out-expo);
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
.mobile-links { display: grid; gap: 4px; }
.mobile-links a {
  display: flex; align-items: baseline; gap: 18px;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(26px, 6.8vw, 40px); line-height: 1.15;
  padding: 6px 0; border-bottom: 1px solid var(--line);
  opacity: 0; transform: translateY(12px);
  transition: opacity .5s var(--ease), transform .6s var(--ease-out-expo);
}
.mobile-links a .num { font-size: 11px; letter-spacing: .3em; color: var(--amber); width: 26px; }
.mobile-menu.open .mobile-links a { opacity: 1; transform: none; }
.mobile-menu.open .mobile-links a:nth-child(1) { transition-delay: .06s; }
.mobile-menu.open .mobile-links a:nth-child(2) { transition-delay: .10s; }
.mobile-menu.open .mobile-links a:nth-child(3) { transition-delay: .14s; }
.mobile-menu.open .mobile-links a:nth-child(4) { transition-delay: .18s; }
.mobile-menu.open .mobile-links a:nth-child(5) { transition-delay: .22s; }
.mobile-menu.open .mobile-links a:nth-child(6) { transition-delay: .26s; }
.mobile-menu.open .mobile-links a:nth-child(7) { transition-delay: .30s; }
.mobile-menu.open .mobile-links a:nth-child(8) { transition-delay: .34s; }
.mobile-cta { display: grid; gap: 10px; }
.mobile-cta .btn { justify-content: center; }
.mobile-foot { font-family: var(--font-mono); font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: var(--ivory-45); text-align: center; font-weight: 500; }
body.menu-open { overflow: hidden; }

/* ---------- cinematic scrub sections ---------- */
.cinematic { position: relative; height: 520vh; }
.cinematic.short { height: 440vh; }
.cinematic .sticky {
  position: sticky; top: 0; height: 100vh; height: 100svh;
  overflow: hidden;
  background: var(--ink);
}
.cinematic canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 45%, transparent 45%, rgba(10,9,8,.72) 100%),
    linear-gradient(to bottom, rgba(10,9,8,.55) 0%, transparent 22%, transparent 70%, rgba(10,9,8,.85) 100%);
}
.overlay {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  padding: 0 var(--gutter);
  pointer-events: none;
}
.overlay .line {
  grid-area: 1 / 1;
  text-align: center;
  opacity: 0;
  will-change: opacity, transform;
  max-width: 1100px;
  padding: 48px 56px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(10,9,8,.62), rgba(10,9,8,.38) 55%, rgba(10,9,8,0) 100%);
}
.overlay .line.left, .overlay .line.right { border-radius: 40px; background: radial-gradient(farthest-side, rgba(10,9,8,.6), rgba(10,9,8,.3) 60%, rgba(10,9,8,0) 100%); }
.overlay .line h1, .overlay .line .h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 5.6vw, 90px);
  line-height: 1.04;
  letter-spacing: -.005em;
  margin: 18px 0 0;
  max-width: none;
  color: var(--ivory);
  text-wrap: balance;
  text-shadow: 0 2px 40px rgba(0,0,0,.6);
}
.overlay .line.left .h1, .overlay .line.right .h1 { margin-left: 0; margin-right: 0; }
.overlay .line h1 em, .overlay .line .h1 em { font-style: normal; font-weight: 400; color: var(--sand); }
.overlay .line .h1.giant {
  font-size: clamp(80px, 20vw, 290px);
  font-weight: 500;
  letter-spacing: .14em;
  line-height: .9;
  margin: 0 -.14em 0 0; /* optically re-center: cancel trailing tracking */
}
.overlay .line .eyebrow { text-shadow: 0 1px 14px rgba(0,0,0,.9), 0 0 2px rgba(0,0,0,.8); }
.overlay .line p { text-shadow: 0 1px 18px rgba(0,0,0,.8); }
.overlay .line p { margin: 20px auto 0; max-width: 62ch; color: var(--ivory-70); font-size: clamp(15px, 1.2vw, 19px); }
.overlay .line .btn { pointer-events: auto; margin-top: 26px; }
.overlay .line.left { text-align: left; justify-self: start; max-width: 620px; }
.overlay .line.left h1, .overlay .line.left .h1 { font-size: clamp(32px, 4.4vw, 68px); }
.overlay .line.left p { margin-left: 0; }
.overlay .line.left .rule { width: 56px; height: 1px; background: var(--amber); margin: 22px 0 0; }
.overlay .line.right { text-align: right; justify-self: end; max-width: 620px; }
.overlay .line.right h1, .overlay .line.right .h1 { font-size: clamp(32px, 4.4vw, 68px); }
.overlay .line.right p { margin-right: 0; }

/* HUD chrome */
.hud {
  position: absolute; left: var(--gutter); right: var(--gutter);
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--ivory-45);
  display: flex; justify-content: space-between; align-items: flex-end;
  pointer-events: none;
}
.hud.bottom { bottom: 26px; }
.hud b { color: var(--ivory); font-weight: 500; }
.hud .frame-readout { min-width: 190px; }
.scroll-hint {
  display: inline-flex; align-items: center; gap: 12px;
  transition: opacity .5s;
}
.scroll-hint i {
  display: block; width: 1px; height: 38px; background: var(--ivory-45);
  position: relative; overflow: hidden;
}
.scroll-hint i::after {
  content: ""; position: absolute; left: 0; top: -100%; width: 100%; height: 100%;
  background: var(--amber);
  animation: drop 1.8s var(--ease) infinite;
}
@keyframes drop { 0% { top: -100%; } 60% { top: 100%; } 100% { top: 100%; } }
.progress {
  position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: rgba(242,235,223,.08);
}
.progress-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--amber), var(--amber-2)); transition: width .08s linear; }

.vert-label {
  position: absolute; left: var(--gutter); top: 50%; transform: translateY(-50%);
  writing-mode: vertical-rl; text-orientation: mixed;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: .4em; text-transform: uppercase;
  color: var(--ivory-45);
  display: flex; align-items: center; gap: 16px;
  pointer-events: none;
}
.vert-label::before { content: ""; width: 1px; height: 64px; background: var(--ivory-20); }
.vert-label .jp { font-family: var(--font-display); font-size: 17px; letter-spacing: .3em; color: var(--sand); text-orientation: upright; font-weight: 500; }

/* ---------- generic section chrome ---------- */
section.block { position: relative; padding: clamp(96px, 12vw, 180px) var(--gutter); }
section.block.tight { padding-top: clamp(72px, 8vw, 120px); padding-bottom: clamp(72px, 8vw, 120px); }
.section-head {
  display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 32px;
  margin-bottom: clamp(48px, 6vw, 88px);
}
.section-head .head-l { display: grid; gap: 18px; }
.section-head .head-r { text-align: right; color: var(--ivory-45); font-family: var(--font-mono); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; }
.rule-h { height: 1px; background: var(--line); }
.num { font-family: var(--font-mono); font-size: 11px; letter-spacing: .3em; color: var(--ivory-45); }

.story-grid > *, .sushi-grid > *, .nigiri-grid > *, .visit-grid > *, .sake-grid > *, .thai-menu > * { min-width: 0; }

/* ---------- STORY ---------- */
.story { background: var(--coal); }
.story-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px, 6vw, 110px);
  align-items: start;
  padding-bottom: clamp(8px, 2vw, 32px);
}
.story blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 3.1vw, 48px);
  line-height: 1.22;
  letter-spacing: 0;
  text-wrap: balance;
}
.story blockquote em { color: var(--sand); font-weight: 500; }
.story blockquote::before { content: "“"; color: var(--amber); }
.story blockquote::after  { content: "”"; color: var(--amber); }
.story-copy { display: grid; gap: 22px; padding-top: 12px; }
.story-copy p { margin: 0; color: var(--ivory-70); font-size: 17px; }

/* ---------- SUSHI BAR ---------- */
.sushi { background: var(--ink); }
.sushi-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.menu-list { border-top: 1px solid var(--line); }
.menu-item {
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .4s var(--ease), background .4s;
  position: relative;
  cursor: default;
}
.menu-item::before {
  content: ""; position: absolute; left: -22px; top: 50%; width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber); transform: translateY(-50%) scale(0); transition: transform .35s var(--ease);
}
.menu-item:hover { padding-left: 10px; }
.menu-item:hover::before { transform: translateY(-50%) scale(1); left: -12px; }
.menu-item h3 { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: clamp(22px, 1.9vw, 28px); letter-spacing: 0; line-height: 1.15; }
.menu-item h3 .tag { display: inline-block; vertical-align: middle; margin-left: 10px; font-family: var(--font-mono); font-size: 9px; letter-spacing: .2em; padding: 3px 7px; border: 1px solid var(--ivory-20); border-radius: 999px; color: var(--ivory-45); text-transform: uppercase; }
.menu-item p { margin: 6px 0 0; color: var(--ivory-45); font-size: 14.5px; max-width: 56ch; }
.menu-item .price { font-size: 15px; }
.sushi-side { position: sticky; top: 96px; display: grid; gap: 18px; }
.photo-stack { position: relative; aspect-ratio: 1 / 1; }
.photo-stack figure { position: absolute; margin: 0; overflow: hidden; border-radius: 6px; border: 1px solid var(--line); }
.photo-stack img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.03); transition: transform 1.2s var(--ease-out-expo), opacity .6s; }
.photo-stack figure.one { inset: 0 0 auto 0; aspect-ratio: 3 / 2; }
.photo-stack figure.two { inset: auto -8% 0 22%; aspect-ratio: 3 / 2; box-shadow: 0 30px 80px rgba(0,0,0,.65); }
.photo-stack figcaption {
  position: absolute; left: 16px; bottom: 14px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--ivory); background: rgba(10,9,8,.55); backdrop-filter: blur(8px); padding: 8px 12px; border-radius: 3px;
}
.photo-stack figure:hover img { transform: scale(1.0); }
.side-note { display: grid; gap: 10px; padding-top: 24px; }
.side-note p { margin: 0; color: var(--ivory-70); font-size: 15px; }

/* ---------- THAI KITCHEN ---------- */
.thai { background: var(--coal); }
.thai-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 20px; }
.dish {
  margin: 0;
  min-width: 0;
  grid-column: span 4;
  position: relative; overflow: hidden; border-radius: 6px;
  height: clamp(260px, 30vw, 380px);
  background: var(--char);
  border: 1px solid var(--line);
}
.dish.wide { grid-column: span 7; height: clamp(300px, 36vw, 460px); }
.dish.tall { grid-column: span 5; height: clamp(300px, 36vw, 460px); }
.dish.text { display: grid; align-content: end; padding: 28px; }
.dish img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-out-expo), filter .8s; filter: saturate(.92); }
.dish:hover img { transform: scale(1.06); filter: saturate(1.05); }
.dish .cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 24px;
  background: linear-gradient(to top, rgba(10,9,8,.92), rgba(10,9,8,0));
  display: flex; justify-content: space-between; align-items: end; gap: 12px;
}
.dish .cap h3 { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: 23px; line-height: 1.1; }
.dish .cap small { display: block; color: var(--ivory-45); font-size: 12.5px; margin-top: 4px; font-family: var(--font-body); }
.thai-menu { margin-top: 20px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 clamp(32px, 5vw, 80px); border-top: 1px solid var(--line); }
.thai-menu .menu-item h3 { font-size: clamp(20px, 1.7vw, 25px); }
.thai-menu .price-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.thai-menu .price-row span { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; color: var(--sand); }
.thai-menu .price-row span b { color: var(--ivory-45); font-weight: 400; margin-right: 6px; }
.gf { display: inline-block; font-family: var(--font-mono); font-size: 9px; letter-spacing: .18em; border: 1px solid var(--amber); color: var(--amber); border-radius: 999px; padding: 2px 6px; margin-left: 8px; vertical-align: middle; }

/* ---------- OMAKASE / NIGIRI ---------- */
.nigiri { background: var(--ink); }
.nigiri-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.nigiri-photo { position: sticky; top: 96px; overflow: hidden; border-radius: 6px; aspect-ratio: 4/5; border: 1px solid var(--line); }
.nigiri-photo img { width: 100%; height: 100%; object-fit: cover; }
.nigiri-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,9,8,.96) 0%, rgba(10,9,8,.86) 18%, rgba(10,9,8,.45) 42%, rgba(10,9,8,.06) 68%, rgba(10,9,8,0) 100%); pointer-events: none; }
.nigiri-photo .cap { position: absolute; left: 20px; bottom: 18px; display: grid; gap: 4px; z-index: 1; }
.nigiri-photo .cap b { font-family: var(--font-display); font-weight: 500; font-size: 26px; }
.cut-table { width: 100%; border-collapse: collapse; }
.cut-table th, .cut-table td { text-align: left; padding: 14px 0; border-bottom: 1px solid var(--line); vertical-align: baseline; }
.cut-table th { font-family: var(--font-mono); font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: var(--ivory-45); font-weight: 400; padding-bottom: 12px; }
.cut-table td.name { font-family: var(--font-display); font-size: clamp(19px, 1.6vw, 23px); font-weight: 500; }
.cut-table td.name small { display: block; font-family: var(--font-body); font-size: 12.5px; color: var(--ivory-45); margin-top: 2px; }
.cut-table td.p { font-family: var(--font-mono); font-size: 13px; letter-spacing: .06em; color: var(--sand); text-align: right; width: 72px; }
.cut-table tr:hover td { color: var(--ivory); }
.cut-table tr:hover td.p { color: var(--amber-2); }
.set-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.set-card {
  padding: 26px 24px 24px; border: 1px solid var(--line); border-radius: 6px; background: var(--coal);
  display: grid; gap: 10px; align-content: start;
  transition: border-color .4s, transform .5s var(--ease-out-expo), background .5s;
}
.set-card:hover { border-color: rgba(217,150,46,.5); transform: translateY(-4px); background: var(--char); }
.set-card h3 { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: 23px; line-height: 1.12; }
.set-card p { margin: 0; color: var(--ivory-45); font-size: 13.5px; }
.set-card .price { font-size: 19px; color: var(--ivory); font-family: var(--font-display); font-weight: 500; letter-spacing: 0; }

/* ---------- GALLERY ---------- */
.gallery { background: var(--coal); }
.masonry { columns: 3; column-gap: 16px; }
.masonry figure { margin: 0 0 16px; break-inside: avoid; position: relative; overflow: hidden; border-radius: 6px; border: 1px solid var(--line); }
.masonry img { width: 100%; height: auto; transition: transform 1.3s var(--ease-out-expo), filter .8s; filter: saturate(.95); }
.masonry figure:hover img { transform: scale(1.05); filter: saturate(1.05); }
.masonry figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 18px 16px;
  background: linear-gradient(to top, rgba(10,9,8,.85), transparent);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--ivory);
  opacity: 0; transform: translateY(6px); transition: opacity .4s, transform .5s var(--ease);
}
.masonry figure:hover figcaption { opacity: 1; transform: none; }

/* ---------- LUNCH ---------- */
.lunch { background: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.lunch-grid { display: grid; grid-template-columns: .9fr 1.5fr; gap: clamp(40px, 6vw, 110px); align-items: start; }
.lunch-head { display: grid; gap: 18px; position: sticky; top: 96px; }
.lunch-cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 3vw, 48px); }
.lunch-col h3 { margin: 0 0 8px; font-family: var(--font-display); font-weight: 500; font-size: 24px; }
.lunch-col ul { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.lunch-col li { display: flex; justify-content: space-between; gap: 14px; align-items: baseline; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.lunch-col li span small { display: block; color: var(--ivory-45); font-size: 12px; }
.lunch-note { margin: 8px 0 12px; color: var(--ivory-45); font-size: 13px; line-height: 1.6; }

/* ---------- FAQ ---------- */
.faq { background: var(--coal); }
.faq-list { margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 clamp(32px, 5vw, 80px); border-top: 1px solid var(--line); }
.faq-item { padding: 26px 0; border-bottom: 1px solid var(--line); }
.faq-item dt { font-family: var(--font-display); font-weight: 500; font-size: clamp(20px, 1.7vw, 24px); line-height: 1.25; margin: 0 0 10px; }
.faq-item dd { margin: 0; color: var(--ivory-70); font-size: 15px; line-height: 1.65; max-width: 62ch; }
.faq-item dd a { color: var(--amber); }
.faq-item dd a:hover { color: var(--amber-2); }

/* ---------- SAKE ---------- */
.sake { background: var(--ink); }
.sake-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 64px); }
.sake-col h3 { margin: 0 0 22px; font-family: var(--font-display); font-weight: 500; font-size: 28px; display: flex; align-items: baseline; gap: 14px; }
.sake-col h3 .jp { font-size: 15px; color: var(--sand); letter-spacing: .3em; font-weight: 400; }
.sake-col ul { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.sake-col li { display: flex; justify-content: space-between; gap: 16px; align-items: baseline; padding: 14px 0; border-bottom: 1px solid var(--line); }
.sake-col li span { font-size: 15.5px; }
.sake-col li span small { display: block; color: var(--ivory-45); font-size: 12px; margin-top: 2px; }
.sake-col li .price { font-size: 13px; }

/* ---------- VISIT ---------- */
.visit { background: var(--coal); overflow: hidden; }
.visit-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px, 6vw, 110px); align-items: start; }
.visit .wordmark {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(110px, 18vw, 270px); line-height: .86; letter-spacing: .12em; margin: 0 0 24px -.03em;
  color: transparent; -webkit-text-stroke: 1px var(--ivory-20);
  position: relative;
}
.visit .wordmark::after {
  content: attr(data-text); position: absolute; inset: 0;
  color: var(--ivory); -webkit-text-stroke: 0;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.6s var(--ease-out-expo);
}
.visit .wordmark.in::after { clip-path: inset(0 0 0 0); }
.hours { display: grid; gap: 0; border-top: 1px solid var(--line); }
.hours div { display: grid; grid-template-columns: 110px 1fr; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.hours div span:first-child { color: var(--ivory-45); font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; padding-top: 3px; }
.hours div span:last-child { color: var(--ivory); }
.hours .closed span:last-child { color: var(--ivory-45); }
.info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.info-card { padding: 22px; border: 1px solid var(--line); border-radius: 6px; display: grid; gap: 8px; align-content: start; }
.info-card b { font-family: var(--font-display); font-weight: 500; font-size: 22px; }
.info-card p { margin: 0; color: var(--ivory-70); font-size: 15px; }
.info-card a.link { color: var(--amber); font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; }
.info-card a.link:hover { color: var(--amber-2); }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }

/* ---------- FOOTER ---------- */
footer { padding: 36px var(--gutter) 40px; border-top: 1px solid var(--line); background: var(--ink); }
.foot { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--ivory-45); }
.foot a:hover { color: var(--ivory); }

/* ---------- loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 300;
  background: var(--ink);
  display: grid; place-items: center;
  transition: opacity .8s var(--ease), visibility .8s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-inner { display: grid; justify-items: center; gap: 22px; }
.loader .brand-mark { width: 44px; height: 68px; }
.loader .brand-mark span { font-size: 18px; }
.loader-bar { width: 160px; height: 1px; background: var(--ivory-20); position: relative; overflow: hidden; }
.loader-bar i { position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: var(--amber); transition: width .25s linear; }
.loader small { font-family: var(--font-mono); font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--ivory-45); }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  body::after { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .scroll-hint i::after { animation: none; }
  * { scroll-behavior: auto !important; }
}

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .nav-links { gap: 22px; }
  .sushi-grid, .nigiri-grid, .visit-grid { grid-template-columns: 1fr; }
  .sushi-side, .nigiri-photo { position: relative; top: auto; }
  .nigiri-photo { aspect-ratio: 4 / 5; max-width: 620px; }
  .photo-stack { max-width: 640px; }
  .masonry { columns: 2; }
  .sake-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1100px) {
  .lunch-grid { grid-template-columns: 1fr; }
  .lunch-head { position: static; }
  .faq-list { grid-template-columns: 1fr; }
}
@media (max-width: 1500px) {
  .nav-links { gap: 22px; }
  .nav-links a { font-size: 10.5px; letter-spacing: .2em; }
}
@media (max-width: 1280px) {
  .nav-cta .btn:not(.solid) { display: none; }   /* Reserve moves to the Visit section / mobile menu */
}
@media (max-width: 1024px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .nav-links { display: none; }
  .nav-toggle { display: grid; }
}
@media (max-width: 860px) {
  .lunch-cols { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .thai-grid .dish { grid-column: span 6; }
  .thai-grid .dish.wide, .thai-grid .dish.tall { grid-column: span 12; height: clamp(260px, 50vw, 420px); }
  .thai-menu { grid-template-columns: 1fr; }
  .set-cards { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; }
  .section-head .head-r { text-align: left; }
  .vert-label { display: none; }
  .hud .frame-readout { display: none; }
  .overlay .line.left, .overlay .line.right { text-align: center; justify-self: center; }
  .overlay .line.left .rule { margin-inline: auto; }
  .cinematic { height: 420vh; }
  .cinematic.short { height: 380vh; }
}
@media (max-width: 560px) {
  .nav-cta .btn.solid { padding: 11px 16px; font-size: 10px; }
  .overlay .line { padding: 32px 18px; }
  .overlay .line h1, .overlay .line .h1, .overlay .line.left .h1, .overlay .line.right .h1 { font-size: clamp(34px, 10vw, 48px); }
  .overlay .line .h1.giant { font-size: clamp(88px, 28vw, 140px); }
  .hud.bottom > span:last-child { display: none; }
  .thai-grid .dish { grid-column: span 12; height: clamp(240px, 70vw, 360px); }
  .masonry { columns: 1; }
  .brand-text { display: none; }
}
