/* ============================================================
   KUMO SUSHI — Collingwood. POC by Hey Sage. v3 "kumo mono".
   Retuned to the live kumosushi.com.au identity:
   DM Mono, white paper, true black, gold #b89055. Square edges,
   hairline rules, one accent doing all the work.
   ============================================================ */

:root {
  --black: #000000;
  --ink: #101012;
  --ink-2: #17171a;
  --paper: #ffffff;
  --paper-2: #f4f2ed;
  --gold: #b89055;
  --gold-lift: #cba469;
  --red: #e4212a;            /* the logo hinomaru, used once */
  --grey: #6d6b66;
  --grey-dim: #8d8b85;
  --on-dark: rgba(255, 255, 255, 0.66);
  --on-dark-soft: rgba(255, 255, 255, 0.44);
  --line: rgba(0, 0, 0, 0.14);
  --line-soft: rgba(0, 0, 0, 0.08);
  --line-light: rgba(255, 255, 255, 0.16);
  --line-light-soft: rgba(255, 255, 255, 0.09);
  --mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --jp: "Shippori Mincho", "Hiragino Mincho ProN", serif;
  --nav-h: 74px;
  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--mono);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
video { display: block; }
a { color: inherit; }
ul { list-style: none; }
figure { margin: 0; }

.wrap { width: min(1180px, 90vw); margin-inline: auto; }

::selection { background: var(--gold); color: var(--black); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 300;
  background: var(--black);
  color: #fff;
  padding: 12px 20px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- Loader ---------- */

.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--black);
  display: grid;
  place-items: center;
  transition: opacity 0.7s ease, visibility 0s 0.7s;
}
.loader-inner { text-align: center; }
.loader-kanji {
  display: block;
  font-family: var(--jp);
  font-size: clamp(56px, 10vw, 92px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
  opacity: 0;
  transform: translateY(10px);
  animation: loaderKanji 0.9s var(--ease-out) 0.1s forwards;
}
.loader-word {
  display: block;
  margin-top: 20px;
  font-weight: 500;
  letter-spacing: 0.44em;
  text-transform: lowercase;
  font-size: 11px;
  color: var(--on-dark-soft);
  opacity: 0;
  animation: loaderFade 0.6s ease 0.45s forwards;
}
.loader-word em { font-style: normal; color: var(--gold); }
.loader-line {
  display: block;
  width: 92px;
  height: 1px;
  margin: 22px auto 0;
  background: var(--line-light);
  overflow: hidden;
}
.loader-line i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: translateX(-100%);
  animation: loaderLine 1.1s var(--ease-soft) 0.3s forwards;
}
@keyframes loaderKanji { to { opacity: 1; transform: none; } }
@keyframes loaderFade { to { opacity: 1; } }
@keyframes loaderLine { to { transform: translateX(0); } }

body.is-ready .loader { opacity: 0; visibility: hidden; }
body.is-loading { overflow: hidden; }
body.menu-open { overflow: hidden; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), background 0.3s ease,
    color 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}
.btn-sm { padding: 11px 18px; font-size: 11px; letter-spacing: 0.16em; }

/* gold: the primary action */
.btn-red { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-red:hover { background: var(--gold-lift); border-color: var(--gold-lift); }

/* outline on dark */
.btn-ghost { border-color: var(--line-light); color: #fff; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* solid on light */
.btn-ink { background: var(--black); color: #fff; border-color: var(--black); }
.btn-ink:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* outline on light */
.btn-line { border-color: rgba(0, 0, 0, 0.3); color: var(--black); }
.btn-line:hover { border-color: var(--gold); color: var(--gold); }

.link-arrow {
  display: inline-block;
  margin-top: 22px;
  color: inherit;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  padding-bottom: 5px;
}
.link-arrow::before { content: "\2192\00a0\00a0"; color: var(--gold); }
.link-arrow::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}
.link-arrow:hover::after { transform: scaleX(1); transform-origin: left; }

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.45s ease, box-shadow 0.45s ease;
}
.nav-in {
  width: min(1320px, 94vw);
  margin-inline: auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav.is-scrolled {
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line-light-soft);
}
.nav-brand img {
  width: auto;
  height: 34px;
  transition: height 0.4s var(--ease-out);
}
.nav.is-scrolled .nav-brand img { height: 27px; }

.nav-links { display: flex; gap: 30px; }
.nav-links a {
  color: var(--on-dark);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-light);
  background: transparent;
  cursor: pointer;
  position: relative;
}
.burger span {
  position: absolute;
  left: 12px; right: 12px;
  height: 1px;
  background: #fff;
  transition: transform 0.4s var(--ease-out), top 0.4s var(--ease-out);
}
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 24px; }
body.menu-open .burger span:nth-child(1) { top: 20px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2) { top: 20px; transform: rotate(-45deg); }

/* ---------- Mobile menu ---------- */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 8vw 48px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0s 0.45s;
  overflow: hidden;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; transition: opacity 0.45s ease; }
.mm-link {
  display: block;
  font-size: clamp(24px, 6.6vw, 36px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.7;
  text-transform: lowercase;
  color: #fff;
  text-decoration: none;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.6s var(--ease-out), opacity 0.6s ease, color 0.25s ease;
}
.mm-link:hover { color: var(--gold); }
.mm-link-ext { color: var(--gold); }
body.menu-open .mm-link { transform: none; opacity: 1; }
body.menu-open .mm-link:nth-child(1) { transition-delay: 0.06s; }
body.menu-open .mm-link:nth-child(2) { transition-delay: 0.12s; }
body.menu-open .mm-link:nth-child(3) { transition-delay: 0.18s; }
body.menu-open .mm-link:nth-child(4) { transition-delay: 0.24s; }
body.menu-open .mm-link:nth-child(5) { transition-delay: 0.3s; }
body.menu-open .mm-link:nth-child(6) { transition-delay: 0.36s; }
.mm-foot {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light-soft);
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--on-dark-soft);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.6s ease 0.42s;
}
body.menu-open .mm-foot { opacity: 1; }
.mm-foot a { color: var(--gold); text-decoration: none; }
.mm-kanji {
  position: absolute;
  right: -8vw;
  bottom: -12vh;
  font-family: var(--jp);
  font-size: 52vw;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
  user-select: none;
}

/* ---------- Hero (full bleed, their photograph) ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--black);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  transform: scale(1.03);
  animation: heroDrift 26s var(--ease-soft) infinite alternate;
}
/* kept shallow: the client's hero is 1575px wide, so we never scale far past it */
@keyframes heroDrift {
  from { transform: scale(1.03) translate3d(0, 0, 0); }
  to { transform: scale(1.09) translate3d(-1.2%, -1%, 0); }
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.6) 42%, rgba(0, 0, 0, 0.28) 72%, rgba(0, 0, 0, 0.5) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.12) 34%, rgba(0, 0, 0, 0.72) 100%);
}
.hero-kanji {
  position: absolute;
  top: 6%;
  right: -4%;
  z-index: -1;
  font-family: var(--jp);
  font-size: clamp(280px, 40vw, 560px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.11);
  pointer-events: none;
  user-select: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: clamp(48px, 7vw, 86px);
}
.hero-over {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}
.hero-over i { width: 46px; height: 1px; background: var(--gold); opacity: 0.6; }
.hero-title {
  font-family: var(--mono);
  font-weight: 300;
  font-size: clamp(34px, 5.4vw, 74px);
  line-height: 1.14;
  letter-spacing: -0.045em;
  text-transform: lowercase;
  max-width: 17ch;
  margin-bottom: 30px;
}
.hero-sub {
  max-width: 48ch;
  font-size: clamp(14px, 1.5vw, 15.5px);
  line-height: 1.85;
  color: var(--on-dark);
  margin-bottom: 36px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light-soft);
  max-width: 640px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}
.hero-meta i { width: 4px; height: 4px; background: var(--gold); flex: none; }

.hero-scroll {
  position: absolute;
  right: 5vw;
  bottom: 26px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  writing-mode: vertical-rl;
  font-size: 9.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  pointer-events: none;
}
.hero-scroll span { display: block; }
.hero-scroll i {
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.4s var(--ease-soft) infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); opacity: 0; }
  40% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ---------- Marquee ---------- */

.marquee {
  position: relative;
  background: var(--black);
  border-top: 1px solid var(--line-light-soft);
  border-bottom: 1px solid var(--line-light-soft);
  overflow: hidden;
  padding: 15px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee-track.slow { animation-duration: 58s; }
.marquee-track span {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  white-space: nowrap;
}
.marquee-track b { width: 4px; height: 4px; background: var(--gold); flex: none; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Shared section bits ---------- */

.overline {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.sec-head { margin-bottom: 56px; }
.sec-head h2 {
  font-family: var(--mono);
  font-weight: 300;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.16;
  letter-spacing: -0.045em;
  text-transform: lowercase;
}
.sec-note { margin-top: 18px; color: var(--grey); font-size: 14px; }
.serif { font-weight: 300; letter-spacing: -0.035em; }
.lede { font-size: clamp(15px, 1.7vw, 17px); line-height: 1.8; letter-spacing: -0.01em; }
.lede.light { color: var(--on-dark); }
.red-under { position: relative; white-space: nowrap; }
.red-under::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0.02em;
  height: 1px;
  background: var(--gold);
}

/* ---------- Story ---------- */

.story {
  position: relative;
  background: var(--paper);
  overflow: hidden;
}
.story-vertical {
  position: absolute;
  top: 120px;
  right: 3vw;
  writing-mode: vertical-rl;
  font-family: var(--jp);
  font-size: 13px;
  letter-spacing: 0.6em;
  color: rgba(0, 0, 0, 0.22);
  z-index: 1;
}
.story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  padding: clamp(84px, 11vw, 148px) 0;
}
.story-copy h2 {
  font-family: var(--mono);
  font-weight: 300;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.24;
  letter-spacing: -0.045em;
  text-transform: lowercase;
  margin-bottom: 28px;
  max-width: 20ch;
}
.story-copy .lede { margin-bottom: 20px; color: #26261f; }
.story-copy .body { color: var(--grey); max-width: 50ch; font-size: 14px; }
.story-facts {
  display: flex;
  gap: clamp(20px, 4vw, 44px);
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.story-facts b {
  display: block;
  font-family: var(--mono);
  font-weight: 400;
  font-size: clamp(17px, 2vw, 22px);
  letter-spacing: -0.03em;
  line-height: 1.3;
}
.story-facts > div:last-child b { font-family: var(--jp); font-size: clamp(20px, 2.3vw, 26px); color: var(--gold); }
.story-facts span {
  display: block;
  margin-top: 4px;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-dim);
}

.story-media { position: relative; min-height: 430px; }
.story-card {
  position: relative;
  z-index: 2;
  width: 74%;
  margin-left: auto;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--ink);
}
.story-card img,
.story-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-card video { opacity: 0; transition: opacity 1.1s ease; }
.story-card video.is-playing { opacity: 1; }
.story-img-back {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: -5%;
  width: 44%;
  overflow: hidden;
  border: 6px solid var(--paper);
  background: var(--paper-2);
}
.story-dot {
  position: absolute;
  z-index: 4;
  top: -16px;
  right: 8%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
}

/* ---------- Signatures ---------- */

.sigs {
  background: var(--black);
  color: #fff;
  padding: clamp(84px, 11vw, 148px) 0 0;
}
.sigs .sec-head { margin-bottom: 20px; }
.sigs .sec-head h2 { color: #fff; }
.sig-stack { position: relative; }
.sig-card {
  position: sticky;
  top: var(--nav-h);
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: center;
  background: var(--black);
}
.sig-card:nth-child(even) { background: var(--ink); }
.sig-in {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding: 48px 0;
  border-top: 1px solid var(--line-light-soft);
  width: min(1180px, 90vw);
}
.sig-index {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 22px;
}
.sig-text h3 {
  font-family: var(--mono);
  font-weight: 300;
  font-size: clamp(26px, 3.6vw, 46px);
  line-height: 1.14;
  letter-spacing: -0.045em;
  text-transform: lowercase;
  margin-bottom: 18px;
}
.sig-text p { color: var(--on-dark); max-width: 38ch; font-size: 14px; }
.sig-price {
  margin-top: 20px;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}
.sig-price b {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--gold);
  margin-left: 8px;
}
.sig-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ink-2);
}
.sig-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line-light-soft);
  pointer-events: none;
}
.sig-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease-out);
}
.sig-card:hover .sig-img img { transform: scale(1.04); }

/* ---------- Menu ---------- */

.menu {
  position: relative;
  background: var(--paper-2);
  padding: clamp(84px, 11vw, 148px) 0;
  /* no overflow:hidden here — it would make .menu a scroll container and
     kill the sticky category chips. The ::before wash is inset-bounded. */
}
/* their own contour-wave motif, the way their menu page uses it */
.menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/kumo-sushi/assets/waves.jpg") center / cover no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.07;
  pointer-events: none;
}
.menu > .wrap { position: relative; z-index: 1; }
.menu .sec-head { text-align: center; margin-bottom: 40px; }
.menu .sec-head h2 { font-size: clamp(34px, 5.4vw, 68px); }

.chips {
  position: sticky;
  top: calc(var(--nav-h) + 6px);
  z-index: 20;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 12px 4px;
  margin-bottom: 52px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  mask-image: linear-gradient(to right, transparent, black 16px, black calc(100% - 16px), transparent);
}
.chips::-webkit-scrollbar { display: none; }
.chips a {
  flex: none;
  padding: 9px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}
.chips a:hover { border-color: var(--black); }
.chips a.is-active { background: var(--black); color: #fff; border-color: var(--black); }

.menu-grid {
  columns: 2;
  column-gap: clamp(36px, 5vw, 72px);
}
.menu-cat {
  break-inside: avoid;
  margin-bottom: 54px;
  scroll-margin-top: calc(var(--nav-h) + 80px);
}
.cat-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  border-bottom: 1px solid var(--black);
  padding-bottom: 12px;
  margin-bottom: 18px;
}
.cat-kanji {
  font-family: var(--jp);
  font-size: 22px;
  color: var(--gold);
  line-height: 1;
  transform: translateY(2px);
}
.cat-head h3 {
  font-family: var(--mono);
  font-weight: 400;
  font-size: clamp(17px, 2vw, 21px);
  letter-spacing: 0.02em;
  text-transform: lowercase;
  line-height: 1.2;
}
.cat-note {
  margin-left: auto;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-dim);
  white-space: nowrap;
}
.cat-sub {
  margin: 26px 0 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}
.menu-cat li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 6px 0;
  font-size: 13.5px;
  line-height: 1.6;
}
.menu-cat li span { color: #24241f; }
.menu-cat li span em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-dim);
  margin-left: 6px;
}
.menu-cat li i {
  flex: 1;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.26);
  transform: translateY(-4px);
}
.menu-cat li b {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 13.5px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  color: var(--black);
}
.menu-cat li b::before { content: "$"; color: var(--gold); margin-right: 1px; }
.menu-foot {
  margin-top: 10px;
  text-align: center;
  color: var(--grey-dim);
  font-size: 11px;
  letter-spacing: 0.1em;
}

/* ---------- Miso interstitial (contained card, per brand ruling) ---------- */

.miso {
  position: relative;
  background: var(--black);
  color: #fff;
  overflow: hidden;
}
.miso-in {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  padding: clamp(84px, 11vw, 140px) 0;
}
.miso-media {
  position: relative;
  aspect-ratio: 3 / 4;
  max-height: 560px;
  overflow: hidden;
  background: var(--ink);
}
.miso-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line-light-soft);
  pointer-events: none;
}
.miso-media img,
.miso-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.miso-media video { opacity: 0; transition: opacity 1.1s ease; }
.miso-media video.is-playing { opacity: 1; }
.miso-copy .serif {
  font-family: var(--mono);
  font-size: clamp(24px, 3.4vw, 42px);
  line-height: 1.22;
  letter-spacing: -0.045em;
  text-transform: lowercase;
  max-width: 18ch;
}
.miso-note { margin-top: 22px; color: var(--on-dark); max-width: 40ch; font-size: 14px; }
.miso-price {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light-soft);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}
.miso-price b { color: var(--gold); font-weight: 400; font-size: 18px; letter-spacing: -0.02em; }

/* ---------- Catering ---------- */

.catering {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
}
.catering-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  padding: clamp(84px, 11vw, 148px) 0;
}
.catering-img {
  position: relative;
  max-width: 400px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--paper-2);
}
.catering-img img,
.catering-img video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* the loop is this exact still in motion, so it cross-fades cleanly */
.catering-img video { opacity: 0; transition: opacity 1.1s ease; }
.catering-img video.is-playing { opacity: 1; }
.catering-copy h2 {
  font-family: var(--mono);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.16;
  letter-spacing: -0.045em;
  text-transform: lowercase;
  margin-bottom: 24px;
  max-width: 16ch;
}
.catering-copy .lede { max-width: 44ch; margin-bottom: 22px; color: #26261f; }
.catering-copy .lede.light { color: #26261f; }
.catering-list {
  margin-bottom: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
}
.catering-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
}
.catering-list li::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--gold);
  flex: none;
}
.catering-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.catering-kanji {
  position: absolute;
  bottom: -12%;
  right: -3%;
  font-family: var(--jp);
  font-size: clamp(200px, 30vw, 400px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.07);
  pointer-events: none;
  user-select: none;
}

/* ---------- Find us ---------- */

.find {
  background: var(--paper-2);
  position: relative;
  padding: clamp(84px, 11vw, 148px) 0;
}
.find-address {
  font-family: var(--mono);
  font-weight: 300;
  font-size: clamp(26px, 4vw, 50px);
  line-height: 1.2;
  letter-spacing: -0.045em;
  text-transform: lowercase;
  max-width: 22ch;
  margin-bottom: 58px;
}
.find-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  padding-top: 42px;
  border-top: 1px solid var(--line);
}
.find-block h3 {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hours li,
.contact li { padding: 6px 0; font-size: 14px; }
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
  padding: 11px 0;
}
.hours span { color: var(--grey); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
.hours b { font-weight: 400; font-variant-numeric: tabular-nums; }
.contact a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.28s ease, color 0.28s ease;
}
.contact a:hover { color: var(--gold); border-color: var(--gold); }
.find-note { color: var(--grey); margin-bottom: 26px; max-width: 28ch; font-size: 14px; }

/* ---------- Footer (their black band) ---------- */

.footer {
  background: var(--black);
  color: var(--on-dark);
  overflow: hidden;
}
.footer-marquee {
  border-bottom: 1px solid var(--line-light-soft);
  padding: 15px 0;
  overflow: hidden;
}
.footer-marquee span { font-family: var(--jp); letter-spacing: 0.4em; text-transform: none; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  padding: 68px 0 52px;
}
.footer-brand img { width: auto; height: 54px; margin-bottom: 22px; }
.footer-brand p { font-size: 13px; max-width: 26ch; color: var(--on-dark-soft); }
.footer-col h3 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.footer-col p { font-size: 12.5px; margin-bottom: 14px; line-height: 1.9; }
.footer-col p.fc-caps { font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-col a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.28s ease;
}
.footer-col a:hover { border-color: var(--gold); }
.footer-legal {
  border-top: 1px solid var(--line-light-soft);
  padding: 22px 0 30px;
}
.footer-legal p { font-size: 11px; line-height: 1.8; color: rgba(255, 255, 255, 0.36); }
.footer-legal a { color: var(--on-dark-soft); }

/* ---------- Reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease var(--d, 0s), transform 0.9s var(--ease-out) var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* Clip the MEDIA, never the observed element itself.
   `clip-path` on the target collapses its intersection area to zero, so an
   IntersectionObserver with a non-zero threshold (script.js uses 0.05) never
   fires for it — the element hides itself and can never be told to come back.
   Keeping the figure unclipped leaves it a real box to intersect with, and its
   background shows through as the media wipes in. */
.reveal-img > img,
.reveal-img > video {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.2s var(--ease-out) var(--d, 0s);
}
.reveal-img.in > img,
.reveal-img.in > video { clip-path: inset(0 0 0% 0); }

/* split headline words */
.w {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}
.wi {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
}
.in .wi,
.w.in .wi { transform: none; }

/* menu list stagger */
.menu-cat li { opacity: 0; transform: translateY(8px); transition: opacity 0.6s ease, transform 0.6s var(--ease-out); }
.menu-cat.in li { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */

@media (max-width: 1020px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .hero-title { max-width: 16ch; }
  .story-grid { grid-template-columns: 1fr; }
  /* the vertical caption collides with the full-width media below 1020 */
  .story-vertical { display: none; }
  /* narrower section, taller `cover` scale, heavier contour lines */
  .menu::before { opacity: 0.05; }
  .story-media { order: -1; min-height: 0; padding-bottom: 9%; }
  .story-card { width: 82%; }
  .story-img-back { width: 42%; bottom: 0; }
  .sig-in { grid-template-columns: 1fr; gap: 26px; padding: 40px 0 60px; }
  .sig-img { order: -1; aspect-ratio: 16 / 10; }
  .miso-in { grid-template-columns: 1fr; gap: 32px; }
  .miso-media { max-width: 420px; }
  .catering-grid { grid-template-columns: 1fr; }
  .catering-img { max-width: 360px; }
  .find-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 14px; }
  .menu-grid { columns: 1; }
  /* `cover` scales the contour lines right up on a narrow, tall section */
  .menu::before { opacity: 0.045; }
  .story-vertical { display: none; }
  .hero-grid { padding-top: calc(var(--nav-h) + 24px); padding-bottom: 56px; }
  .hero-kanji { font-size: 300px; top: 3%; right: -16%; }
  .hero-title { max-width: 100%; letter-spacing: -0.05em; }
  .hero-ctas .btn { flex: 1 1 auto; }
  .hero-scroll { display: none; }
  .story-facts { flex-wrap: wrap; gap: 22px 30px; }
  .footer-grid { grid-template-columns: 1fr; padding: 54px 0 42px; }
  .nav-actions .btn { padding: 10px 14px; font-size: 10px; letter-spacing: 0.12em; }
  .sig-card { position: relative; top: 0; min-height: 0; }
  .miso-media { max-width: none; aspect-ratio: 4 / 5; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; flex-wrap: wrap; }
  .hero-media img { animation: none; transform: none; }
  .hero-scroll i { animation: none; }
  .reveal, .reveal-img, .reveal-img > img, .reveal-img > video, .menu-cat li, .wi {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    transition: none !important;
  }
  .loader { display: none; }
  body.is-loading { overflow: auto; }
}
